@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 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;
}

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -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(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.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(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

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

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

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

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

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

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

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

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

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

.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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

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

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

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

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

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

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

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

.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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

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

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

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

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

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

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

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

.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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

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

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

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

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

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

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

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

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

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

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.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-duration: 0.75s;
    animation-duration: 0.75s;
    -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-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

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

@-webkit-keyframes lightSpeedOut {
    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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        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-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

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

/* 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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.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(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

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

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

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

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

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

    to {
        opacity: 0;
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.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.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.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.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.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(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.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(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.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.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.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.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-display: swap;
    font-family: FontAwesome;
    src: url(../fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'), url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'), url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'), url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul > li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-close:before, .fa-remove:before, .fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-cog:before, .fa-gear:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-repeat:before, .fa-rotate-right:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before, .fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-image:before, .fa-photo:before, .fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before, .fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-exclamation-triangle:before, .fa-warning:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-cogs:before, .fa-gears:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before, .fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before, .fa-users:before {
    content: "\f0c0"
}

.fa-chain:before, .fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before, .fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before, .fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-floppy-o:before, .fa-save:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-bars:before, .fa-navicon:before, .fa-reorder:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-sort:before, .fa-unsorted:before {
    content: "\f0dc"
}

.fa-sort-desc:before, .fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-asc:before, .fa-sort-up:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before, .fa-undo:before {
    content: "\f0e2"
}

.fa-gavel:before, .fa-legal:before {
    content: "\f0e3"
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-bolt:before, .fa-flash:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-clipboard:before, .fa-paste:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before, .fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-chain-broken:before, .fa-unlink:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-caret-square-o-down:before, .fa-toggle-down:before {
    content: "\f150"
}

.fa-caret-square-o-up:before, .fa-toggle-up:before {
    content: "\f151"
}

.fa-caret-square-o-right:before, .fa-toggle-right:before {
    content: "\f152"
}

.fa-eur:before, .fa-euro:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before, .fa-usd:before {
    content: "\f155"
}

.fa-inr:before, .fa-rupee:before {
    content: "\f156"
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen:before {
    content: "\f157"
}

.fa-rouble:before, .fa-rub:before, .fa-ruble:before {
    content: "\f158"
}

.fa-krw:before, .fa-won:before {
    content: "\f159"
}

.fa-bitcoin:before, .fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before, .fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-caret-square-o-left:before, .fa-toggle-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-try:before, .fa-turkish-lira:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-bank:before, .fa-institution:before, .fa-university:before {
    content: "\f19c"
}

.fa-graduation-cap:before, .fa-mortar-board:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before, .fa-car:before {
    content: "\f1b9"
}

.fa-cab:before, .fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-image-o:before, .fa-file-photo-o:before, .fa-file-picture-o:before {
    content: "\f1c5"
}

.fa-file-archive-o:before, .fa-file-zip-o:before {
    content: "\f1c6"
}

.fa-file-audio-o:before, .fa-file-sound-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-ring:before, .fa-life-saver:before, .fa-support:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before, .fa-rebel:before, .fa-resistance:before {
    content: "\f1d0"
}

.fa-empire:before, .fa-ge:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before, .fa-y-combinator-square:before, .fa-yc-square:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before, .fa-weixin:before {
    content: "\f1d7"
}

.fa-paper-plane:before, .fa-send:before {
    content: "\f1d8"
}

.fa-paper-plane-o:before, .fa-send-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-futbol-o:before, .fa-soccer-ball-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-ils:before, .fa-shekel:before, .fa-sheqel:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before, .fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-bed:before, .fa-hotel:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-y-combinator:before, .fa-yc:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before, .fa-battery-full:before, .fa-battery:before {
    content: "\f240"
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before, .fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before, .fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before, .fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-paper-o:before, .fa-hand-stop-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-television:before, .fa-tv:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before {
    content: "\f2a3"
}

.fa-deaf:before, .fa-deafness:before, .fa-hard-of-hearing:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-sign-language:before, .fa-signing:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before, .fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-address-card:before, .fa-vcard:before {
    content: "\f2bb"
}

.fa-address-card-o:before, .fa-vcard-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before, .fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before, .fa-thermometer-full:before, .fa-thermometer:before {
    content: "\f2c7"
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bath:before, .fa-bathtub:before, .fa-s15:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before, .fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

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

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

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

[hidden], template {
    display: none
}

a {
    background-color: transparent
}

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

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

b, strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

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

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

small {
    font-size: 80%
}

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

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

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

figure {
    margin: 1em 40px
}

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

pre {
    overflow: auto
}

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

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

button {
    overflow: visible
}

button, select {
    text-transform: none
}

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

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

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

input {
    line-height: normal
}

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

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

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

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

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

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

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

td, th {
    padding: 0
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
    *, :after, :before {
        background: 0 0 !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: ""
    }

    blockquote, pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img, tr {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .table-bordered td, .table-bordered th {
        border: 1px solid #ddd !important
    }
}

@font-face {
    font-display: swap;
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/bootstrap/glyphicons-halflings-regular.eot);
    src: url(../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/bootstrap/glyphicons-halflings-regular.woff2) format("woff2"), url(../fonts/bootstrap/glyphicons-halflings-regular.woff) format("woff"), url(../fonts/bootstrap/glyphicons-halflings-regular.ttf) format("truetype"), url(../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
    content: "\002a"
}

.glyphicon-plus:before {
    content: "\002b"
}

.glyphicon-eur:before, .glyphicon-euro:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.glyphicon-cd:before {
    content: "\e201"
}

.glyphicon-save-file:before {
    content: "\e202"
}

.glyphicon-open-file:before {
    content: "\e203"
}

.glyphicon-level-up:before {
    content: "\e204"
}

.glyphicon-copy:before {
    content: "\e205"
}

.glyphicon-paste:before {
    content: "\e206"
}

.glyphicon-alert:before {
    content: "\e209"
}

.glyphicon-equalizer:before {
    content: "\e210"
}

.glyphicon-king:before {
    content: "\e211"
}

.glyphicon-queen:before {
    content: "\e212"
}

.glyphicon-pawn:before {
    content: "\e213"
}

.glyphicon-bishop:before {
    content: "\e214"
}

.glyphicon-knight:before {
    content: "\e215"
}

.glyphicon-baby-formula:before {
    content: "\e216"
}

.glyphicon-tent:before {
    content: "\26fa"
}

.glyphicon-blackboard:before {
    content: "\e218"
}

.glyphicon-bed:before {
    content: "\e219"
}

.glyphicon-apple:before {
    content: "\f8ff"
}

.glyphicon-erase:before {
    content: "\e221"
}

.glyphicon-hourglass:before {
    content: "\231b"
}

.glyphicon-lamp:before {
    content: "\e223"
}

.glyphicon-duplicate:before {
    content: "\e224"
}

.glyphicon-piggy-bank:before {
    content: "\e225"
}

.glyphicon-scissors:before {
    content: "\e226"
}

.glyphicon-bitcoin:before {
    content: "\e227"
}

.glyphicon-btc:before {
    content: "\e227"
}

.glyphicon-xbt:before {
    content: "\e227"
}

.glyphicon-yen:before {
    content: "\00a5"
}

.glyphicon-jpy:before {
    content: "\00a5"
}

.glyphicon-ruble:before {
    content: "\20bd"
}

.glyphicon-rub:before {
    content: "\20bd"
}

.glyphicon-scale:before {
    content: "\e230"
}

.glyphicon-ice-lolly:before {
    content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232"
}

.glyphicon-education:before {
    content: "\e233"
}

.glyphicon-option-horizontal:before {
    content: "\e234"
}

.glyphicon-option-vertical:before {
    content: "\e235"
}

.glyphicon-menu-hamburger:before {
    content: "\e236"
}

.glyphicon-modal-window:before {
    content: "\e237"
}

.glyphicon-oil:before {
    content: "\e238"
}

.glyphicon-grain:before {
    content: "\e239"
}

.glyphicon-sunglasses:before {
    content: "\e240"
}

.glyphicon-text-size:before {
    content: "\e241"
}

.glyphicon-text-color:before {
    content: "\e242"
}

.glyphicon-text-background:before {
    content: "\e243"
}

.glyphicon-object-align-top:before {
    content: "\e244"
}

.glyphicon-object-align-bottom:before {
    content: "\e245"
}

.glyphicon-object-align-horizontal:before {
    content: "\e246"
}

.glyphicon-object-align-left:before {
    content: "\e247"
}

.glyphicon-object-align-vertical:before {
    content: "\e248"
}

.glyphicon-object-align-right:before {
    content: "\e249"
}

.glyphicon-triangle-right:before {
    content: "\e250"
}

.glyphicon-triangle-left:before {
    content: "\e251"
}

.glyphicon-triangle-bottom:before {
    content: "\e252"
}

.glyphicon-triangle-top:before {
    content: "\e253"
}

.glyphicon-console:before {
    content: "\e254"
}

.glyphicon-superscript:before {
    content: "\e255"
}

.glyphicon-subscript:before {
    content: "\e256"
}

.glyphicon-menu-left:before {
    content: "\e257"
}

.glyphicon-menu-right:before {
    content: "\e258"
}

.glyphicon-menu-down:before {
    content: "\e259"
}

.glyphicon-menu-up:before {
    content: "\e260"
}

* {
    box-sizing: border-box
}

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

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: MyriadPro, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    color: #333;
    background-color: #fff
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #3d78b1;
    text-decoration: none
}

a:focus, a:hover {
    color: #295178;
    text-decoration: underline
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

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

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

[role=button] {
    cursor: pointer
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
    font-weight: 400;
    line-height: 1;
    color: #777
}

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
    font-size: 65%
}

.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

.h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
    font-size: 75%
}

.h1, h1 {
    font-size: 36px
}

.h2, h2 {
    font-size: 30px
}

.h3, h3 {
    font-size: 24px
}

.h4, h4 {
    font-size: 18px
}

.h5, h5 {
    font-size: 14px
}

.h6, h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px
    }
}

.small, small {
    font-size: 85%
}

.mark, mark {
    background-color: #fcf8e3;
    padding: .2em
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.initialism, .text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #3d78b1
}

a.text-primary:focus, a.text-primary:hover {
    color: #305e8b
}

.text-success {
    color: #3c763d
}

a.text-success:focus, a.text-success:hover {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:focus, a.text-info:hover {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:focus, a.text-warning:hover {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:focus, a.text-danger:hover {
    color: #843534
}

.bg-primary {
    color: #fff
}

.bg-primary {
    background-color: #3d78b1
}

a.bg-primary:focus, a.bg-primary:hover {
    background-color: #305e8b
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:focus, a.bg-success:hover {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:focus, a.bg-info:hover {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:focus, a.bg-warning:hover {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:focus, a.bg-danger:hover {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ol, ul {
    margin-top: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
}

ol ol, ol ul, ul ol, ul ul {
    margin-bottom: 0
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dd, dt {
    line-height: 1.42857
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

.dl-horizontal dd:after, .dl-horizontal dd:before {
    content: " ";
    display: table
}

.dl-horizontal dd:after {
    clear: both
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[data-original-title], abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

blockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child {
    margin-bottom: 0
}

blockquote .small, blockquote footer, blockquote small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777
}

blockquote .small:before, blockquote footer:before, blockquote small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse, blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right
}

.blockquote-reverse .small:before, .blockquote-reverse footer:before, .blockquote-reverse small:before, blockquote.pull-right .small:before, blockquote.pull-right footer:before, blockquote.pull-right small:before {
    content: ''
}

.blockquote-reverse .small:after, .blockquote-reverse footer:after, .blockquote-reverse small:after, blockquote.pull-right .small:after, blockquote.pull-right footer:after, blockquote.pull-right small:after {
    content: '\00A0 \2014'
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857
}

code, kbd, pre, samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.container:after, .container:before {
    content: " ";
    display: table
}

.container:after {
    clear: both
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
    .ae-price-table .essay-price-new-table form.analysis .first-time-order-wrap {
        top: 10px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.container-fluid:after, .container-fluid:before {
    content: " ";
    display: table
}

.container-fluid:after {
    clear: both
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.row:after, .row:before {
    content: " ";
    display: table
}

.row:after {
    clear: both
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    float: left
}

.col-xs-1 {
    width: 8.33333%
}

.col-xs-2 {
    width: 16.66667%
}

.col-xs-3 {
    width: 25%
}

.col-xs-4 {
    width: 33.33333%
}

.col-xs-5 {
    width: 41.66667%
}

.col-xs-6 {
    width: 50%
}

.col-xs-7 {
    width: 58.33333%
}

.col-xs-8 {
    width: 66.66667%
}

.col-xs-9 {
    width: 75%
}

.col-xs-10 {
    width: 83.33333%
}

.col-xs-11 {
    width: 91.66667%
}

.col-xs-12 {
    width: 100%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-pull-1 {
    right: 8.33333%
}

.col-xs-pull-2 {
    right: 16.66667%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-4 {
    right: 33.33333%
}

.col-xs-pull-5 {
    right: 41.66667%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-7 {
    right: 58.33333%
}

.col-xs-pull-8 {
    right: 66.66667%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-10 {
    right: 83.33333%
}

.col-xs-pull-11 {
    right: 91.66667%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-push-1 {
    left: 8.33333%
}

.col-xs-push-2 {
    left: 16.66667%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-4 {
    left: 33.33333%
}

.col-xs-push-5 {
    left: 41.66667%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-7 {
    left: 58.33333%
}

.col-xs-push-8 {
    left: 66.66667%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-10 {
    left: 83.33333%
}

.col-xs-push-11 {
    left: 91.66667%
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-offset-0 {
    margin-left: 0
}

.col-xs-offset-1 {
    margin-left: 8.33333%
}

.col-xs-offset-2 {
    margin-left: 16.66667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.33333%
}

.col-xs-offset-5 {
    margin-left: 41.66667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.33333%
}

.col-xs-offset-8 {
    margin-left: 66.66667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.33333%
}

.col-xs-offset-11 {
    margin-left: 91.66667%
}

.col-xs-offset-12 {
    margin-left: 100%
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left
    }

    .col-sm-1 {
        width: 8.33333%
    }

    .col-sm-2 {
        width: 16.66667%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-4 {
        width: 33.33333%
    }

    .col-sm-5 {
        width: 41.66667%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-7 {
        width: 58.33333%
    }

    .col-sm-8 {
        width: 66.66667%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-10 {
        width: 83.33333%
    }

    .col-sm-11 {
        width: 91.66667%
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-pull-1 {
        right: 8.33333%
    }

    .col-sm-pull-2 {
        right: 16.66667%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-4 {
        right: 33.33333%
    }

    .col-sm-pull-5 {
        right: 41.66667%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-7 {
        right: 58.33333%
    }

    .col-sm-pull-8 {
        right: 66.66667%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-10 {
        right: 83.33333%
    }

    .col-sm-pull-11 {
        right: 91.66667%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-push-1 {
        left: 8.33333%
    }

    .col-sm-push-2 {
        left: 16.66667%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-4 {
        left: 33.33333%
    }

    .col-sm-push-5 {
        left: 41.66667%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-7 {
        left: 58.33333%
    }

    .col-sm-push-8 {
        left: 66.66667%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-10 {
        left: 83.33333%
    }

    .col-sm-push-11 {
        left: 91.66667%
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }

    .col-sm-offset-1 {
        margin-left: 8.33333%
    }

    .col-sm-offset-2 {
        margin-left: 16.66667%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333%
    }

    .col-sm-offset-5 {
        margin-left: 41.66667%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333%
    }

    .col-sm-offset-8 {
        margin-left: 66.66667%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333%
    }

    .col-sm-offset-11 {
        margin-left: 91.66667%
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left
    }

    .col-md-1 {
        width: 8.33333%
    }

    .col-md-2 {
        width: 16.66667%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-4 {
        width: 33.33333%
    }

    .col-md-5 {
        width: 41.66667%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-7 {
        width: 58.33333%
    }

    .col-md-8 {
        width: 66.66667%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-10 {
        width: 83.33333%
    }

    .col-md-11 {
        width: 91.66667%
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-pull-1 {
        right: 8.33333%
    }

    .col-md-pull-2 {
        right: 16.66667%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-4 {
        right: 33.33333%
    }

    .col-md-pull-5 {
        right: 41.66667%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-7 {
        right: 58.33333%
    }

    .col-md-pull-8 {
        right: 66.66667%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-10 {
        right: 83.33333%
    }

    .col-md-pull-11 {
        right: 91.66667%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-push-1 {
        left: 8.33333%
    }

    .col-md-push-2 {
        left: 16.66667%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-4 {
        left: 33.33333%
    }

    .col-md-push-5 {
        left: 41.66667%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-7 {
        left: 58.33333%
    }

    .col-md-push-8 {
        left: 66.66667%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-10 {
        left: 83.33333%
    }

    .col-md-push-11 {
        left: 91.66667%
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-offset-0 {
        margin-left: 0
    }

    .col-md-offset-1 {
        margin-left: 8.33333%
    }

    .col-md-offset-2 {
        margin-left: 16.66667%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-4 {
        margin-left: 33.33333%
    }

    .col-md-offset-5 {
        margin-left: 41.66667%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-7 {
        margin-left: 58.33333%
    }

    .col-md-offset-8 {
        margin-left: 66.66667%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-10 {
        margin-left: 83.33333%
    }

    .col-md-offset-11 {
        margin-left: 91.66667%
    }

    .col-md-offset-12 {
        margin-left: 100%
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left
    }

    .col-lg-1 {
        width: 8.33333%
    }

    .col-lg-2 {
        width: 16.66667%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-4 {
        width: 33.33333%
    }

    .col-lg-5 {
        width: 41.66667%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-7 {
        width: 58.33333%
    }

    .col-lg-8 {
        width: 66.66667%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-10 {
        width: 83.33333%
    }

    .col-lg-11 {
        width: 91.66667%
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-pull-1 {
        right: 8.33333%
    }

    .col-lg-pull-2 {
        right: 16.66667%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-4 {
        right: 33.33333%
    }

    .col-lg-pull-5 {
        right: 41.66667%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-7 {
        right: 58.33333%
    }

    .col-lg-pull-8 {
        right: 66.66667%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-10 {
        right: 83.33333%
    }

    .col-lg-pull-11 {
        right: 91.66667%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-push-1 {
        left: 8.33333%
    }

    .col-lg-push-2 {
        left: 16.66667%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-4 {
        left: 33.33333%
    }

    .col-lg-push-5 {
        left: 41.66667%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-7 {
        left: 58.33333%
    }

    .col-lg-push-8 {
        left: 66.66667%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-10 {
        left: 83.33333%
    }

    .col-lg-push-11 {
        left: 91.66667%
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }

    .col-lg-offset-1 {
        margin-left: 8.33333%
    }

    .col-lg-offset-2 {
        margin-left: 16.66667%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333%
    }

    .col-lg-offset-5 {
        margin-left: 41.66667%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333%
    }

    .col-lg-offset-8 {
        margin-left: 66.66667%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333%
    }

    .col-lg-offset-11 {
        margin-left: 91.66667%
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }
}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table > caption + thead > tr:first-child > td, .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > td, .table > thead:first-child > tr:first-child > th {
    border-top: 0
}

.table > tbody + tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border-bottom-width: 2px
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5
}

table col[class*=col-] {
    position: static;
    float: none;
    display: table-column
}

table td[class*=col-], table th[class*=col-] {
    position: static;
    float: none;
    display: table-cell
}

.table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > thead > tr > td.active, .table > thead > tr > th.active {
    background-color: #f5f5f5
}

.table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover {
    background-color: #e8e8e8
}

.table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > thead > tr > td.success, .table > thead > tr > th.success {
    background-color: #dff0d8
}

.table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover {
    background-color: #d0e9c6
}

.table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > thead > tr > td.info, .table > thead > tr > th.info {
    background-color: #d9edf7
}

.table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover {
    background-color: #c4e3f3
}

.table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > thead > tr > td.warning, .table > thead > tr > th.warning {
    background-color: #fcf8e3
}

.table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover {
    background-color: #faf2cc
}

.table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > thead > tr > td.danger, .table > thead > tr > th.danger {
    background-color: #f2dede
}

.table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover {
    background-color: #ebcccc
}

.table-responsive {
    overflow-x: auto;
    min-height: .01%
}
.navbar-header > a {
    color: #333333;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 18px auto 0;
    display: block;
    width: 135px;
}
@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }
    .table-responsive > .table {
        margin-bottom: 0
    }

    .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > thead > tr > th {
        white-space: nowrap
    }

    .table-responsive > .table-bordered {
        border: 0
    }

    .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > thead > tr > th:first-child {
        border-left: 0
    }

    .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > thead > tr > th:last-child {
        border-right: 0
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0
    }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

input[type=search] {
    box-sizing: border-box
}

input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

input[type=file] {
    display: block
}

input[type=range] {
    display: block;
    width: 100%
}

select[multiple], select[size] {
    height: auto
}

input[type=checkbox]:focus, input[type=file]:focus, input[type=radio]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #3d78b1;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control::-ms-expand {
    border: 0;
    background-color: transparent
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

input[type=search] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type=date].form-control, input[type=datetime-local].form-control, input[type=month].form-control, input[type=time].form-control {
        line-height: 34px
    }

    .input-group-sm input[type=date], .input-group-sm input[type=datetime-local], .input-group-sm input[type=month], .input-group-sm input[type=time], .input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm > .input-group-btn > input[type=datetime-local].btn, .input-group-sm > .input-group-btn > input[type=month].btn, .input-group-sm > .input-group-btn > input[type=time].btn, .input-group-sm > input[type=date].form-control, .input-group-sm > input[type=date].input-group-addon, .input-group-sm > input[type=datetime-local].form-control, .input-group-sm > input[type=datetime-local].input-group-addon, .input-group-sm > input[type=month].form-control, .input-group-sm > input[type=month].input-group-addon, .input-group-sm > input[type=time].form-control, .input-group-sm > input[type=time].input-group-addon, input[type=date].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm, input[type=time].input-sm {
        line-height: 30px
    }

    .input-group-lg input[type=date], .input-group-lg input[type=datetime-local], .input-group-lg input[type=month], .input-group-lg input[type=time], .input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg > .input-group-btn > input[type=datetime-local].btn, .input-group-lg > .input-group-btn > input[type=month].btn, .input-group-lg > .input-group-btn > input[type=time].btn, .input-group-lg > input[type=date].form-control, .input-group-lg > input[type=date].input-group-addon, .input-group-lg > input[type=datetime-local].form-control, .input-group-lg > input[type=datetime-local].input-group-addon, .input-group-lg > input[type=month].form-control, .input-group-lg > input[type=month].input-group-addon, .input-group-lg > input[type=time].form-control, .input-group-lg > input[type=time].input-group-addon, input[type=date].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg, input[type=time].input-lg {
        line-height: 46px
    }
}

.form-group {
    margin-bottom: 15px
}

.checkbox, .radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.checkbox label, .radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9
}

.checkbox + .checkbox, .radio + .radio {
    margin-top: -5px
}

.checkbox-inline, .radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer
}

.checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
    margin-top: 0;
    margin-left: 10px
}

fieldset[disabled] input[type=checkbox], fieldset[disabled] input[type=radio], input[type=checkbox].disabled, input[type=checkbox][disabled], input[type=radio].disabled, input[type=radio][disabled] {
    cursor: not-allowed
}

.checkbox-inline.disabled, .radio-inline.disabled, fieldset[disabled] .checkbox-inline, fieldset[disabled] .radio-inline {
    cursor: not-allowed
}

.checkbox.disabled label, .radio.disabled label, fieldset[disabled] .checkbox label, fieldset[disabled] .radio label {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px
}

.form-control-static.input-lg, .form-control-static.input-sm, .input-group-lg > .form-control-static.form-control, .input-group-lg > .form-control-static.input-group-addon, .input-group-lg > .input-group-btn > .form-control-static.btn, .input-group-sm > .form-control-static.form-control, .input-group-sm > .form-control-static.input-group-addon, .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn, .input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.input-group-sm > .input-group-btn > select.btn, .input-group-sm > select.form-control, .input-group-sm > select.input-group-addon, select.input-sm {
    height: 30px;
    line-height: 30px
}

.input-group-sm > .input-group-btn > select[multiple].btn, .input-group-sm > .input-group-btn > textarea.btn, .input-group-sm > select[multiple].form-control, .input-group-sm > select[multiple].input-group-addon, .input-group-sm > textarea.form-control, .input-group-sm > textarea.input-group-addon, select[multiple].input-sm, textarea.input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm select[multiple].form-control, .form-group-sm textarea.form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn, .input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px
}

.input-group-lg > .input-group-btn > select.btn, .input-group-lg > select.form-control, .input-group-lg > select.input-group-addon, select.input-lg {
    height: 46px;
    line-height: 46px
}

.input-group-lg > .input-group-btn > select[multiple].btn, .input-group-lg > .input-group-btn > textarea.btn, .input-group-lg > select[multiple].form-control, .input-group-lg > select[multiple].input-group-addon, .input-group-lg > textarea.form-control, .input-group-lg > textarea.input-group-addon, select[multiple].input-lg, textarea.input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px
}

.form-group-lg select[multiple].form-control, .form-group-lg textarea.form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.33333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.form-group-lg .form-control + .form-control-feedback, .input-group-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, .input-lg + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.form-group-sm .form-control + .form-control-feedback, .input-group-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, .input-sm + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.checkbox label, .has-warning.checkbox-inline label, .has-warning.radio label, .has-warning.radio-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label ~ .form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .form-inline .input-group .form-control, .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn {
        width: auto
    }

    .form-inline .input-group > .form-control {
        width: 100%
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .checkbox, .form-inline .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .checkbox label, .form-inline .radio label {
        padding-left: 0
    }

    .form-inline .checkbox input[type=checkbox], .form-inline .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .checkbox, .form-horizontal .radio {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

.form-horizontal .form-group:after, .form-horizontal .form-group:before {
    content: " ";
    display: table
}

.form-horizontal .form-group:after {
    clear: both
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    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;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn.focus, .btn:focus, .btn:hover {
    color: #333;
    text-decoration: none
}

.btn.active, .btn:active {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    box-shadow: none
}

a.btn.disabled, fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default.focus, .btn-default:focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default.active, .btn-default:active, .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .btn-default.dropdown-toggle.focus, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle:hover {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c
}

.btn-default.active, .btn-default:active, .open > .btn-default.dropdown-toggle {
    background-image: none
}

.btn-default.disabled.focus, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default[disabled].focus, .btn-default[disabled]:focus, .btn-default[disabled]:hover, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:hover {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #3d78b1;
    border-color: #366b9e
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #305e8b;
    border-color: #162b3f
}

.btn-primary:hover {
    color: #fff;
    background-color: #305e8b;
    border-color: #274c71
}

.btn-primary.active, .btn-primary:active, .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #305e8b;
    border-color: #274c71
}

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .btn-primary.dropdown-toggle.focus, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle:hover {
    color: #fff;
    background-color: #274c71;
    border-color: #162b3f
}

.btn-primary.active, .btn-primary:active, .open > .btn-primary.dropdown-toggle {
    background-image: none
}

.btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
    background-color: #3d78b1;
    border-color: #366b9e
}

.btn-primary .badge {
    color: #3d78b1;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success.focus, .btn-success:focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success.active, .btn-success:active, .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open > .btn-success.dropdown-toggle.focus, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle:hover {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success.active, .btn-success:active, .open > .btn-success.dropdown-toggle {
    background-image: none
}

.btn-success.disabled.focus, .btn-success.disabled:focus, .btn-success.disabled:hover, .btn-success[disabled].focus, .btn-success[disabled]:focus, .btn-success[disabled]:hover, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:hover {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info.focus, .btn-info:focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info.active, .btn-info:active, .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .btn-info.dropdown-toggle.focus, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle:hover {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85
}

.btn-info.active, .btn-info:active, .open > .btn-info.dropdown-toggle {
    background-image: none
}

.btn-info.disabled.focus, .btn-info.disabled:focus, .btn-info.disabled:hover, .btn-info[disabled].focus, .btn-info[disabled]:focus, .btn-info[disabled]:hover, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:hover {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning.focus, .btn-warning:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning.active, .btn-warning:active, .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open > .btn-warning.dropdown-toggle.focus, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle:hover {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d
}

.btn-warning.active, .btn-warning:active, .open > .btn-warning.dropdown-toggle {
    background-image: none
}

.btn-warning.disabled.focus, .btn-warning.disabled:focus, .btn-warning.disabled:hover, .btn-warning[disabled].focus, .btn-warning[disabled]:focus, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:hover {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger.focus, .btn-danger:focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger.active, .btn-danger:active, .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open > .btn-danger.dropdown-toggle.focus, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle:hover {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19
}

.btn-danger.active, .btn-danger:active, .open > .btn-danger.dropdown-toggle {
    background-image: none
}

.btn-danger.disabled.focus, .btn-danger.disabled:focus, .btn-danger.disabled:hover, .btn-danger[disabled].focus, .btn-danger[disabled]:focus, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:hover {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    color: #3d78b1;
    font-weight: 400;
    border-radius: 0
}

.btn-link, .btn-link.active, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none
}

.btn-link, .btn-link:active, .btn-link:focus, .btn-link:hover {
    border-color: transparent
}

.btn-link:focus, .btn-link:hover {
    color: #295178;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:focus, .btn-link[disabled]:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:hover {
    color: #777;
    text-decoration: none
}

.btn-group-lg > .btn, .btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px
}

.btn-group-sm > .btn, .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-group-xs > .btn, .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block + .btn-block {
    margin-top: 5px
}

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: .35s;
    transition-timing-function: ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropdown, .dropup {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857;
    color: #333;
    white-space: nowrap
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #3d78b1
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
    color: #777
}

.dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed
}

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857;
    color: #777;
    white-space: nowrap
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group-vertical > .btn, .btn-group > .btn {
    position: relative;
    float: left
}

.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
    z-index: 2
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar:after, .btn-toolbar:before {
    content: " ";
    display: table
}

.btn-toolbar:after {
    clear: both
}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
    float: left
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
    margin-left: 5px
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group-lg.btn-group > .btn + .dropdown-toggle, .btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-group-lg > .btn .caret, .btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-group-lg > .btn .caret, .dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before {
    content: " ";
    display: table
}

.btn-group-vertical > .btn-group:after {
    clear: both
}

.btn-group-vertical > .btn-group > .btn {
    float: none
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified > .btn-group .btn {
    width: 100%
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto
}

[data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*=col-] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell
}

.input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #3d78b1;
    border-radius: 4px
}

.input-group-addon.input-sm, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
    margin-top: 0
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
    z-index: 2
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

.nav:after, .nav:before {
    content: " ";
    display: table
}

.nav:after {
    clear: both
}

.nav > li {
    position: relative;
    display: block
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav > li > a:focus, .nav > li > a:hover {
    text-decoration: none;
    background-color: #eee
}

.nav > li.disabled > a {
    color: #777
}

.nav > li.disabled > a:focus, .nav > li.disabled > a:hover {
    color: #777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
    background-color: #eee;
    border-color: #3d78b1
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav > li > a > img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-pills > li {
    float: left
}

.nav-pills > li > a {
    border-radius: 4px
}

.nav-pills > li + li {
    margin-left: 2px
}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    color: #fff;
    background-color: #3d78b1
}

.nav-stacked > li {
    float: none
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified, .nav-tabs.nav-justified {
    width: 100%
}

.nav-justified > li, .nav-tabs.nav-justified > li {
    float: none
}

.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0
    }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
    border-bottom: 0
}

.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
        border-bottom-color: #fff
    }
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

.navbar:after, .navbar:before {
    content: " ";
    display: table
}

.navbar:after {
    clear: both
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px
    }
}

.navbar-header:after, .navbar-header:before {
    content: " ";
    display: table
}

.navbar-header:after {
    clear: both
}

@media (min-width: 768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse:after, .navbar-collapse:before {
    content: " ";
    display: table
}

.navbar-collapse:after {
    clear: both
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important
    }

    .navbar-collapse.in {
        overflow-y: visible
    }

    .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 340px
}

@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
        max-height: 200px
    }
}

.container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width: 768px) {
    .container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-bottom, .navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width: 768px) {
    .navbar-fixed-bottom, .navbar-fixed-top {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px
}

.navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none
}

.navbar-brand > img {
    display: block
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 7.5px -15px
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none
    }

    .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a {
        padding: 5px 15px 5px 25px
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px
    }

    .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-nav .open .dropdown-menu > li > a:hover {
        background-image: none
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }

    .navbar-nav > li {
        float: left
    }

    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    margin-top: 8px;
    margin-bottom: 8px
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .form-control-static {
        display: inline-block
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .navbar-form .input-group .form-control, .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn {
        width: auto
    }

    .navbar-form .input-group > .form-control {
        width: 100%
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .checkbox, .navbar-form .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .checkbox label, .navbar-form .radio label {
        padding-left: 0
    }

    .navbar-form .checkbox input[type=checkbox], .navbar-form .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px
}

.btn-group-sm > .navbar-btn.btn, .navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px
}

.btn-group-xs > .navbar-btn.btn, .navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0
    }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
    color: #5e5e5e;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav > li > a {
    color: #777
}

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
    color: #333;
    background-color: transparent
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    color: #555;
    background-color: #e7e7e7
}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:focus, .navbar-default .navbar-nav > .disabled > a:hover {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
    background-color: #e7e7e7;
    color: #555
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
        color: #333;
        background-color: transparent
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: #555;
        background-color: #e7e7e7
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:focus, .navbar-default .btn-link:hover {
    color: #333
}

.navbar-default .btn-link[disabled]:focus, .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:focus, fieldset[disabled] .navbar-default .btn-link:hover {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #090909
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > li > a:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
    color: #fff;
    background-color: #090909
}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:focus, .navbar-inverse .navbar-nav > .disabled > a:hover {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
    background-color: #090909;
    color: #fff
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #090909
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
        color: #fff;
        background-color: transparent
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: #fff;
        background-color: #090909
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:focus, .navbar-inverse .btn-link:hover {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:focus, .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:focus, fieldset[disabled] .navbar-inverse .btn-link:hover {
    color: #444
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px
}

.breadcrumb > li {
    display: inline-block
}

.breadcrumb > li + li:before {
    content: "/ ";
    padding: 0 5px;
    color: #ccc
}

.breadcrumb > .active {
    color: #777
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination > li {
    display: inline
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #3d78b1;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
    z-index: 2;
    color: #295178;
    background-color: #eee;
    border-color: #ddd
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    background-color: #3d78b1;
    border-color: #3d78b1;
    cursor: default
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center
}

.pager:after, .pager:before {
    content: " ";
    display: table
}

.pager:after {
    clear: both
}

.pager li {
    display: inline
}

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li > a:focus, .pager li > a:hover {
    text-decoration: none;
    background-color: #eee
}

.pager .next > a, .pager .next > span {
    float: right
}

.pager .previous > a, .pager .previous > span {
    float: left
}

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
    color: #777;
    background-color: #fff;
    cursor: not-allowed
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

a.label:focus, a.label:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label-default {
    background-color: #777
}

.label-default[href]:focus, .label-default[href]:hover {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #3d78b1
}

.label-primary[href]:focus, .label-primary[href]:hover {
    background-color: #305e8b
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:focus, .label-success[href]:hover {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:focus, .label-info[href]:hover {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:focus, .label-warning[href]:hover {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:focus, .label-danger[href]:hover {
    background-color: #c9302c
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-group-xs > .btn .badge, .btn-xs .badge {
    top: 0;
    padding: 1px 5px
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
    color: #3d78b1;
    background-color: #fff
}

.list-group-item > .badge {
    float: right
}

.list-group-item > .badge + .badge {
    margin-right: 5px
}

.nav-pills > li > a > .badge {
    margin-left: 3px
}

a.badge:focus, a.badge:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.jumbotron .h1, .jumbotron h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.jumbotron > hr {
    border-top-color: #d5d5d5
}

.container .jumbotron, .container-fluid .jumbotron {
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron, .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }

    .jumbotron .h1, .jumbotron h1 {
        font-size: 63px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border .2s ease-in-out
}

.thumbnail a > img, .thumbnail > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto
}

.thumbnail .caption {
    padding: 9px;
    color: #333
}

a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
    border-color: #3d78b1
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: 700
}

.alert > p, .alert > ul {
    margin-bottom: 0
}

.alert > p + p {
    margin-top: 5px
}

.alert-dismissable, .alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #3d78b1;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    transition: width .6s ease
}

.progress-bar-striped, .progress-striped .progress-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 40px 40px
}

.progress-bar.active, .progress.active .progress-bar {
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media, .media-body {
    zoom: 1;
    overflow: hidden
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right, .media > .pull-right {
    padding-left: 10px
}

.media-left, .media > .pull-left {
    padding-right: 10px
}

.media-body, .media-left, .media-right {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

a.list-group-item, button.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
    background-color: #eee;
    color: #777;
    cursor: not-allowed
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
    color: #777
}

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    background-color: #3d78b1;
    border-color: #3d78b1
}

.list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > small {
    color: inherit
}

.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
    color: #cde
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success, button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:focus, button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover, button.list-group-item-success.active, button.list-group-item-success.active:focus, button.list-group-item-success.active:hover {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info, button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:focus, a.list-group-item-info:hover, button.list-group-item-info:focus, button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover, button.list-group-item-info.active, button.list-group-item-info.active:focus, button.list-group-item-info.active:hover {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning, button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:focus, a.list-group-item-warning:hover, button.list-group-item-warning:focus, button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover, button.list-group-item-warning.active, button.list-group-item-warning.active:focus, button.list-group-item-warning.active:hover {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger, button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:focus, a.list-group-item-danger:hover, button.list-group-item-danger:focus, button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover, button.list-group-item-danger.active, button.list-group-item-danger.active:focus, button.list-group-item-danger.active:hover {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
}

.panel-body {
    padding: 15px
}

.panel-body:after, .panel-body:before {
    content: " ";
    display: table
}

.panel-body:after {
    clear: both
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title > .small, .panel-title > .small > a, .panel-title > a, .panel-title > small, .panel-title > small > a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .list-group, .panel > .panel-collapse > .list-group {
    margin-bottom: 0
}

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group + .panel-footer {
    border-top-width: 0
}

.panel > .panel-collapse > .table, .panel > .table, .panel > .table-responsive > .table {
    margin-bottom: 0
}

.panel > .panel-collapse > .table caption, .panel > .table caption, .panel > .table-responsive > .table caption {
    padding-left: 15px;
    padding-right: 15px
}

.panel > .table-responsive:first-child > .table:first-child, .panel > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table:first-child > thead:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel > .table-responsive:last-child > .table:last-child, .panel > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px
}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd
}

.panel > .table > tbody:first-child > tr:first-child td, .panel > .table > tbody:first-child > tr:first-child th {
    border-top: 0
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0
}

.panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 0
}

.panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: 0
}

.panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
    border-bottom: 0
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0
}

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel + .panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #3d78b1
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #3d78b1;
    border-color: #3d78b1
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #3d78b1
}

.panel-primary > .panel-heading .badge {
    color: #3d78b1;
    background-color: #fff
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #3d78b1
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6
}

.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc
}

.panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1
}

.panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, .15)
}

.well-lg {
    padding: 24px;
    border-radius: 6px
}

.well-sm {
    padding: 9px;
    border-radius: 3px
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20)
}

.close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    transform: translate(0, -25%);
    transition: transform .3s ease-out
}

.modal.in .modal-dialog {
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50)
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header:after, .modal-header:before {
    content: " ";
    display: table
}

.modal-header:after {
    clear: both
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer:after, .modal-footer:before {
    content: " ";
    display: table
}

.modal-footer:after {
    clear: both
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: MyriadPro, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .9;
    filter: alpha(opacity=90)
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: MyriadPro, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 14px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover > .arrow {
    border-width: 11px
}

.popover > .arrow:after {
    border-width: 10px;
    content: ""
}

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    bottom: -11px
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25)
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
    top: -11px
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25)
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

.carousel-inner > .item {
    display: none;
    position: relative;
    transition: .6s ease-in-out left
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img {
    display: block;
    max-width: 100%;
    height: auto;
    line-height: 1
}

@media all and (transform-3d),(-webkit-transform-3d) {
    .carousel-inner > .item {
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        perspective: 1000px
    }

    .carousel-inner > .item.active.right, .carousel-inner > .item.next {
        transform: translate3d(100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.active.left, .carousel-inner > .item.prev {
        transform: translate3d(-100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right {
        transform: translate3d(0, 0, 0);
        left: 0
    }
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    left: 0
}

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: transparent
}

.carousel-control.left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
}

.carousel-control:focus, .carousel-control:hover {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block
}

.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px
}

.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-next, .carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix:after, .clearfix:before {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important
}

.affix {
    position: fixed
}

@-ms-viewport {
    width: device-width
}

.visible-xs {
    display: none !important
}

.visible-sm {
    display: none !important
}

.visible-md {
    display: none !important
}

.visible-lg {
    display: none !important
}

.visible-lg-block, .visible-lg-inline, .visible-lg-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block {
    display: none !important
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    td.visible-xs, th.visible-xs {
        display: table-cell !important
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    td.visible-sm, th.visible-sm {
        display: table-cell !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    td.visible-md, th.visible-md {
        display: table-cell !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    td.visible-lg, th.visible-lg {
        display: table-cell !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    td.visible-print, th.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}

body {
    min-width: 320px;
    max-width: 1920px;
    margin: 0 auto
}

.clear-padding {
    padding: 0
}

.padding {
    padding: 15px
}

.padding-horizontal {
    padding-left: 15px;
    padding-right: 15px
}

.padding-vertical {
    padding-top: 15px;
    padding-bottom: 15px
}

.padding-top {
    padding-top: 15px
}

.padding-right {
    padding-right: 15px
}

.padding-bottom {
    padding-bottom: 15px
}

.padding-left {
    padding-left: 15px
}

#svg-balance .st0b {
    enable-background: new
}

#svg-balance .stb {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fff
}

#svg-balance .stb2 {
    fill-rule: evenodd;
    clip-rule: evenodd
}

#competancy_1 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fff
}

#competancy_1 .st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #322925
}

#competancy_1 .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #e2bea6
}

#competancy_1 .st3 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #efd1b9
}

#competancy_1 .st4 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f5b136
}

#competancy_1 .st5 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #e2ab2a
}

#competancy_1 .st6 {
    fill: #caa32e
}

#competancy_1 .st7 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: url(#SVGID_1_);
    stroke: url(#SVGID_2_);
    stroke-miterlimit: 100
}

#competancy_1 .st8 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #c5d8d6
}

#competancy_1 .st9 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #b3c6c4
}

#competancy_1 .st10 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #9eaead
}

#competancy_1 .st11 {
    fill-rule: evenodd;
    clip-rule: evenodd
}

#competancy_1 .st12 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #5f972c
}

#competancy_1 .st13 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d2ae98
}

#competancy_1 .st14 {
    fill: #c19383
}

#competancy_1 .st15 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #c5030e
}

#competancy_1 .st16 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #313a46
}

#competancy_1 .st17 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #345079
}

#competancy_1 .st18 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f3ffe8
}

#competancy_1 .st19 {
    -webkit-clip-path: url(#SVGID_4_);
    clip-path: url(#SVGID_4_);
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #af0011
}

#competancy_1 .st20 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #c5030e;
    stroke: #000;
    stroke-miterlimit: 100
}

#competancy_1 .st21 {
    fill: #353e49;
    stroke: #000;
    stroke-miterlimit: 10
}

#competancy_1 .st22 {
    fill: #fff
}

#competancy_1 .st23 {
    -webkit-clip-path: url(#SVGID_6_);
    clip-path: url(#SVGID_6_)
}

#competancy_1 .st24 {
    fill: #c7d0ce
}

#competancy_1 .st25 {
    opacity: .5;
    fill: #d0d7d7
}

#competancy_1 .st26 {
    fill: #f5ae00
}

#competancy_1 .st27 {
    opacity: .35;
    fill: #2f6e85
}

#competancy_1 .st28 {
    fill: #e4e0d0;
    stroke: #000;
    stroke-miterlimit: 10
}

#competancy_1 .st29 {
    fill: #9d0009;
    stroke: #000;
    stroke-miterlimit: 10
}

#competancy_1 .st30 {
    opacity: .25;
    fill: #25b1b6
}

#competancy_1 .st31 {
    fill: none
}

#competancy_1 .st32 {
    -webkit-clip-path: url(#SVGID_8_);
    clip-path: url(#SVGID_8_)
}

#competancy_1 .st33 {
    fill: #df0031;
    stroke: #000;
    stroke-miterlimit: 10
}

#competancy_1 .st34 {
    -webkit-clip-path: url(#SVGID_10_);
    clip-path: url(#SVGID_10_)
}

#competancy_1 .st35 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #00a55e
}

#competancy_1 .st36 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #00a55e;
    stroke: #000;
    stroke-miterlimit: 10
}

#competancy_1 .st37 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #e75460
}

#reliability_2 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fff
}

#reliability_2 .st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f0bb9c
}

#reliability_2 .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #e4a989
}

#reliability_2 .st3 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #c5030e;
    stroke: #000;
    stroke-miterlimit: 10
}

#reliability_2 .st4 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #9d0009
}

#reliability_2 .st5 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #322925
}

#reliability_2 .st6 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #544741
}

#reliability_2 .st7 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #80171e
}

#reliability_2 .st8 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #e22f0f
}

#reliability_2 .st9 {
    fill: #d98a5a
}

#reliability_2 .st10 {
    fill-rule: evenodd;
    clip-rule: evenodd
}

#reliability_2 .st11 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fdfeff
}

#reliability_2 .st12 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #345079
}

#reliability_2 .st13 {
    fill: #fff
}

#reliability_2 .st14 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #566e90
}

#reliability_2 .st15 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #7b8da6
}

#reliability_2 .st16 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    stroke: #000;
    stroke-miterlimit: 10
}

#expirience_1 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fff
}

#expirience_1 .st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #c5030e
}

#expirience_1 .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f0bb9c
}

#expirience_1 .st3 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #faeb2e
}

#expirience_1 .st4 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f7af36
}

#expirience_1 .st5 {
    fill-rule: evenodd;
    clip-rule: evenodd
}

#expirience_1 .st6 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #9d0009
}

#expirience_1 .st7 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f0d1b5
}

#expirience_1 .st8 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f6f1d4
}

#expirience_1 .st9 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fbf9ed
}

#expirience_1 .st10 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #cbcab5
}

#expirience_1 .st11 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #e4a989
}

#expirience_1 .st12 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #345079
}

#expirience_1 .st13 {
    fill: #fff
}

#expirience_1 .st14 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #0f1216
}

#expirience_1 .st15 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000;
    stroke-miterlimit: 100
}

#success_1 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fff
}

#success_1 .st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #c5030e
}

#success_1 .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f0bb9c
}

#success_1 .st3 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #322925
}

#success_1 .st4 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #faad37
}

#success_1 .st5 {
    fill: #e4a989
}

#success_1 .st6 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #e4a989
}

#success_1 .st7 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #8b6439
}

#success_1 .st8 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #b0855a
}

#success_1 .st9 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #68411a
}

#success_1 .st10 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #213655
}

#success_1 .st11 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #345079
}

#success_1 .st12 {
    fill: none;
    stroke: #000;
    stroke-miterlimit: 100
}

#success_1 .st13 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #566e90
}

#success_1 .st14 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f5b136
}

#success_1 .st15 {
    fill: #e3e3e3
}

#success_1 .st16 {
    fill-rule: evenodd;
    clip-rule: evenodd
}

#success_1 .st17 {
    enable-background: new
}

#success_1 .st18 {
    fill: #fff
}

#success_1 .st19 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #010101
}

#success_1 .st20 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #af0c1d
}

#success_1 .st21 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #faeb2e
}

#success_1 .st22 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f7af36
}

#success_1 .st23 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #ffe7c0
}

#success_1 .st24 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f0bb9c;
    stroke: #000;
    stroke-miterlimit: 100
}

#home-map .st0 {
    fill: #ccdfed;
    stroke: #000;
    stroke-width: .75;
    stroke-miterlimit: 10
}

#home-map .st1 {
    fill: #c8dfed;
    stroke: #000;
    stroke-width: .75;
    stroke-miterlimit: 10
}

#home-map .st2 {
    fill: #d9edfc;
    stroke: #000;
    stroke-width: .75;
    stroke-miterlimit: 10
}

#home-map .st3 {
    fill: #d9eaf9;
    stroke: #000;
    stroke-width: .75;
    stroke-miterlimit: 10
}

#home-map .st4 {
    opacity: .23;
    fill: #5d5d5d
}

#home-map .st5 {
    fill: #020003
}

#home-map .st6 {
    fill: #f3eddb
}

#home-map .st7 {
    fill: #e0d7bb
}

#home-map .st8 {
    fill: #b17f4a
}

#home-map .st9 {
    fill: #67625d
}

#home-map .st10 {
    opacity: .4;
    fill: #b17f4a
}

#home-map .st11 {
    fill: #413d33
}

#home-map .st12 {
    fill: #fff
}

#home-map .st13 {
    fill: #ececec
}

#home-map .st14 {
    fill: #1d1d1b
}

#home-map .st15 {
    fill: #f3eddb;
    stroke: #000;
    stroke-width: .5;
    stroke-miterlimit: 10
}

#home-map .st16 {
    fill: none;
    stroke: #000;
    stroke-width: .5;
    stroke-miterlimit: 10
}

#home-map .st17 {
    fill: #fff;
    stroke: #070707;
    stroke-width: .75;
    stroke-miterlimit: 10
}

#home-map .st18 {
    fill: none;
    stroke: #070707;
    stroke-width: .5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10
}

#home-map .st19 {
    fill: #fff;
    stroke: #000;
    stroke-width: .75;
    stroke-miterlimit: 10
}

#home-map .st20 {
    fill: none;
    stroke: #070707;
    stroke-width: .75;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10
}

#home-map .st21 {
    fill: #404c0f
}

#home-map .st22 {
    fill: #5b6d14
}

#home-map .st23 {
    fill: #757e52
}

#home-map .st24 {
    fill: #57612c
}

#home-map .st25 {
    fill: #66703f
}

#home-map .st26 {
    fill: #515c25
}

#home-map .st27 {
    fill: #353935
}

#home-map .st28 {
    fill: #d7d8d8
}

#home-map .st29 {
    fill: #f3f3f2
}

#home-map .st30 {
    fill: #474d47;
    stroke: #000;
    stroke-width: .5;
    stroke-miterlimit: 10
}

#home-map .st31 {
    fill: #647c35;
    stroke: #000;
    stroke-width: .5;
    stroke-miterlimit: 10
}

#home-map .st32 {
    fill: #4c6c21
}

#home-map .st33 {
    fill: #5c4701;
    stroke: #000;
    stroke-width: .5;
    stroke-miterlimit: 10
}

#home-map .st34 {
    fill: #4d3b02
}

#home-map .st35 {
    fill: #77a226;
    stroke: #000;
    stroke-width: .5;
    stroke-miterlimit: 10
}

#home-map .st36 {
    opacity: .1;
    fill: #fff
}

#home-map .st37 {
    fill: #cf3d22;
    stroke: #000;
    stroke-width: .5;
    stroke-miterlimit: 10
}

#home-map .st38 {
    fill: #414042
}

#home-map .st39 {
    fill: #e44326;
    stroke: #000;
    stroke-width: .5;
    stroke-miterlimit: 10
}

#home-map.essays-map #essaysmap {
    fill: #c52127
}

#home-map.proof-map #proofread {
    fill: #c52127
}

#home-map.rewriting-map #rewriting {
    fill: #c52127
}

#home-map.researchprop-map #researchprop {
    fill: #c52127
}

#home-map.coursework-map #coursework {
    fill: #c52127
}

#home-map.dissertations-map #dissertations {
    fill: #c52127
}

#home-map.thesis-map #thesis {
    fill: #c52127
}

#home-map.editing-map #editing {
    fill: #c52127
}

#Layer_1 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_1 .st1 {
    -webkit-clip-path: url(#SVGID_2_);
    clip-path: url(#SVGID_2_)
}

#Layer_2 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_3 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_4 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_4 .st1 {
    -webkit-clip-path: url(#SVGID_2_);
    clip-path: url(#SVGID_2_)
}

#Layer_5 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_5 .st1 {
    -webkit-clip-path: url(#SVGID_2_);
    clip-path: url(#SVGID_2_)
}

#Layer_6 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_6 .st1 {
    -webkit-clip-path: url(#SVGID_2_);
    clip-path: url(#SVGID_2_)
}

#Layer_7 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_8 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_9 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_10 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_11 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

#Layer_12 .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #d9eaf9
}

@font-face {
    font-display: swap;
    font-family: Oswald;
    src: url(../fonts/Oswald.ttf)
}

@font-face {
    font-display: swap;
    font-family: Montserrat;
    src: url(../fonts/Montserrat.ttf)
}

.header-first-line .header-contact {
    padding: 22px 0 15px
}

.header-first-line .header-contact a {
    color: #333;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 300;
    display: inline-block;
    margin-right: 35px;
    vertical-align: middle
}

.header-first-line .header-contact a i {
    color: #c5030e;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    padding-right: 10px
}

.header-first-line .header-btn {
    padding: 22px 0 0
}

.header-first-line .header-btn a {
    display: inline-block
}

.header-first-line .header-btn a span {
    color: #fff;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #fff;
    background-color: #345079;
    padding: 5px 15px
}

.header-first-line .header-btn a i {
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    background-color: #345079;
    padding: 5px 8px 4px;
    line-height: 1.52857143
}

.header-first-line .header-btn a.chat-btn {
    margin-right: 35px
}

.header-first-line .header-btn a.chat-btn span {
    background-color: #c5030e
}

.header-first-line .header-btn a.chat-btn i {
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    background-color: #c5030e;
    padding: 5px 8px 3px;
    line-height: 1.52857143
}

.header-logo {
    margin-top: -55px
}

.header-menu {
    height: 55px;
    background-color: #345079
}

.header-menu .header-menu-right ul {
    text-align: left
}

.header-menu ul {
    margin: 0;
    padding: 0;
    font-size: 0;
    text-align: right
}

.header-menu ul li {
    display: inline-block;
    font-size: 0;
    padding: 0
}

.header-menu ul li a {
    color: #fff;
    font-family: Oswald;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 20px;
    position: relative
}

.header-menu ul li a:hover {
    background-color: #243a59
}

.header-menu ul li a:before {
    content: '|';
    font-family: Oswald;
    font-size: 16px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 13px
}

.header-menu ul li:first-child a:before {
    display: none
}

.header-menu ul.dropdown-menu {
    border-radius: 0;
    border: none
}

.header-menu ul.dropdown-menu li {
    display: block;
    background: #345079
}

.header-menu ul.dropdown-menu li a {
    border-bottom: 2px solid transparent;
    display: block
}

.header-menu ul.dropdown-menu li a:before {
    display: none
}

.header-menu ul.dropdown-menu li a:hover {
    background-color: transparent;
    border-bottom: 2px solid #fff;
    color: #cecece
}

@keyframes path-animation {
    0% {
        bottom: -2px;
        right: 0;
        opacity: 0
    }
    5% {
        opacity: .5
    }
    15% {
        opacity: 1
    }
    100% {
        bottom: -2px;
        right: 55%
    }
}

.home-calc {
    height: 565px
}
.home-calc.visible {
    background: #F2F8FF url(../../files/img/bg-header.png);
}
@media all and (max-width: 414px) {
    .home-calc.visible {
        /*background: url(../../files/img/adaptive-bg-header.png)no-repeat center;*/
        background: #D1E7FE;
        background-size: cover;
    }
}
.home-calc .home-calc-bg {
    background: url(../../files/img/header-calc-repeat.png);
    height: 565px;
    background-repeat-y: no-repeat;
    background-position: 0 100%;
    position: relative
}

.home-calc .home-calc-bg:after {
    content: url(../../files/img/ship.svg);
    display: block;
    width: 144px;
    height: 95px;
    position: absolute;
    bottom: -2px;
    right: 55%;
    animation: path-animation 8.4s linear;
    -webkit-animation: path-animation 8.4s linear;
    animation-delay: 7s;
}

.home-calc .home-calc-bg .island-block {
    position: absolute;
    display: inline-block;
    width: 307px;
    height: 409px;
    /*background: url(../../files/img/island-move.svg);*/
    left: -17px;
    bottom: -16px
}

.home-calc .home-calc-bg .treasure-block {
    position: absolute;
    display: inline-block;
    width: 70px;
    height: 70px;
    left: 143px;
    bottom: 17px
}
.home-calc .home-calc-bg .treasure-block.visible {
    background: url(../../files/img/treasure.svg);
}
.home-calc .home-calc-bg .spear-block {
    position: absolute;
    display: inline-block;
    width: 70px;
    height: 70px;
    background: url(../../files/img/spear.svg);
    left: 6%;
    bottom: 20px;
    transform: rotate(-135deg) scale(.9);
    animation: spear-animation 3.4s linear 3;
    -webkit-animation: spear-animation 3.4s linear 3;
    -webkit-animation-delay: 16s;
    -moz-animation-delay: 16s;
    -o-animation-delay: 16s;
    opacity: 0
}

.home-calc .home-calc-bg .diamond-block {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(../../files/img/diamond.svg);
    left: 155px;
    bottom: 38px;
    transform: scale(.7);
    animation: diamond-animation 3.4s linear infinite;
    -webkit-animation: diamond-animation 3.4s linear infinite;
    -webkit-animation-delay: 19.2s;
    -moz-animation-delay: 19.2s;
    -o-animation-delay: 19.2s;
    opacity: 0
}

.home-calc .home-calc-bg .diamond-block a {
    display: inline-block;
    width: 50px;
    height: 50px
}

.home-calc .home-calc-bg .diamond-block a:hover {
    cursor: pointer
}

@keyframes diamond-animation {
    0% {
        transform: scale(.7);
        opacity: 1
    }
    50% {
        transform: scale(1.5);
        opacity: 1
    }
    100% {
        transform: scale(.7);
        opacity: 1
    }
}

@keyframes spear-animation {
    0% {
        left: 40%;
        bottom: 17px;
        transform: rotate(-55deg) scale(.1);
        opacity: 1
    }
    20% {
        left: 33.4%;
        bottom: 43px;
        transform: rotate(-65deg) scale(.5);
        opacity: 1
    }
    40% {
        left: 27.6%;
        bottom: 80px;
        transform: rotate(-79deg) scale(.9);
        opacity: 1
    }
    50% {
        left: 22.2%;
        bottom: 95px;
        transform: rotate(-90deg) scale(1);
        opacity: 1
    }
    60% {
        left: 17.6%;
        bottom: 80px;
        transform: rotate(-101deg) scale(.9);
        opacity: 1
    }
    80% {
        left: 11%;
        bottom: 43px;
        transform: rotate(-108deg) scale(.9);
        opacity: .5
    }
    100% {
        left: 6%;
        bottom: 20px;
        transform: rotate(-111deg) scale(.9);
        opacity: 0
    }
}

.main-text-block-1 {
    background-color: #345079;
    padding: 30px 0
}

.main-text-block-1 h2 {
    color: #fff;
    font-family: Oswald;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin: 0 0 50px 0
}

.main-text-block-1 h2:before {
    content: url(../../files/img/home-h2-before.png);
    position: absolute;
    bottom: -30px;
    left: 41%
}

.main-text-block-1 p {
    color: #fff;
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    line-height: 19px
}

.main-text-block-2.home-services-block {
    background-color: #fff;
    background-image: url(../../files/img/repeat-part.svg);
    background-size: 16px;
    background-repeat: repeat-x
}

.main-text-block-2.home-services-block .home-services a {
    font-family: Oswald;
    font-size: 21px;
    font-weight: 500;
    line-height: 58px;
    text-transform: uppercase;
    color: #282f39;
    display: block
}

.main-text-block-2.home-services-block .home-services a:hover {
    text-decoration: none;
    color: #c52127;
    cursor: pointer
}

.main-text-block-2.home-services-block .home-services a span.point-selected:after {
    transform: rotate(-90deg);
    transition: 1.1s;
    top: -11px;
    left: 28px;
    display: block
}

.main-text-block-2.home-services-block .home-services a span {
    display: inline-block;
    height: auto;
    color: #c52127;
    position: relative
}

.main-text-block-2.home-services-block .home-services a span:after {
    position: absolute;
    display: block;
    border-right: 3px dashed #c52127;
    height: 43px;
    width: 3px;
    content: '';
    top: 18px;
    left: 8px;
    transform: rotate(0);
    transition: 1.1s
}

.main-text-block-2.home-services-block .home-services-map {
    position: relative
}

.main-text-block-2.home-services-block .home-services-map #map-popup {
    position: absolute
}

.main-text-block-2 {
    background-color: #d9eaf9;
    padding: 30px 0
}

.main-text-block-2 h2 {
    color: #363e4f;
    font-family: Oswald;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px 0;
    position: relative
}

.main-text-block-2 h2:before {
    content: url(../../files/img/home-h2-before-2.png);
    position: absolute;
    bottom: -30px;
    left: 42.8%
}

.main-text-block-2 h4 {
    color: #c5030e;
    font-family: Oswald;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase
}

.main-text-block-2 p {
    color: #000;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 400
}

.main-text-block-2 span {
    display: block;
    width: 70px;
    height: 70px;
    margin: 10px auto 20px auto
}

.main-text-block-2 span svg {
    width: 100%
}

.main-text-block-2 span .st0 {
    display: block
}

.home-benefits-item span {
    width: 150px;
    height: 150px;
    margin-bottom: 50px
}

.home-discount-features {
    background-color: #345079;
    padding: 55px 0 30px 0;
    background-image: url(../../files/img/repeat-part.svg);
    background-size: 16px;
    background-repeat: repeat-x
}

.home-discount-features h3 {
    color: #fff;
    font-family: Oswald;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 30px
}

.home-discount-features .discount-digit {
    border: 2px dashed #fff;
    border-radius: 50%;
    height: 162px
}

@media (max-width: 1200px) {
    .home-discount-features .discount-digit {
        border: none
    }
}

.home-discount-features .discount-digit span {
    color: #fff;
    font-family: Oswald;
    font-size: 55px;
    font-weight: 700;
    display: inline-block;
    padding-top: 36px;
    text-shadow: 4px 4px 3px #000
}

.home-discount-features p {
    color: #fff;
    font-family: Montserrat;
    font-size: 15px
}

.home-discount-features .read-more-btn {
    color: #fff;
    font-family: Oswald;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #fff;
    margin: 10px 0;
    margin-left: 36px;
    position: relative
}

.home-discount-features .read-more-btn:before {
    content: '\f101';
    display: block;
    width: 36px;
    height: 37px;
    border: 1px solid #fff;
    color: #fff;
    font-family: FontAwesome;
    font-size: 18px;
    position: absolute;
    left: -36px;
    top: -1px;
    line-height: 37px;
    text-align: center
}

.home-main-text {
    padding: 50px 0
}

.home-main-text .main-text-block h1 {
    color: #282f39;
    font-family: Oswald;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    text-align: center
}

.home-main-text .main-text-block h1:before {
    content: url(../../files/img/home-h2-before-2.png);
    position: absolute;
    bottom: -30px;
    left: 42.8%
}

.home-main-text .main-text-block p {
    color: #000;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px
}

.home-main-text .main-text-block ul {
    padding: 0;
    margin: 10px 0 0 0;
    font-size: 0
}

.home-main-text .main-text-block ul li {
    display: inline-block;
    width: 33.33%;
    font-size: 0
}

.home-main-text .main-text-block ul li span {
    color: #000;
    font-family: Oswald;
    font-size: 19px;
    font-weight: 400;
    line-height: 25px
}

@media (max-width: 1200px) {
    .home-main-text .main-text-block ul li span {
        font-size: 17px
    }
}

.home-main-text .main-text-block ul li svg {
    width: 12%
}

.home-step {
    height: 490px;
    padding-top: 40px
}
.home-step.visible {
    background: url(../../files/img/home-step-bg.png);
    background-repeat: no-repeat;
}
.home-step .home-step-body h2 {
    color: #363e4f;
    font-family: Oswald;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    text-align: center
}

.home-step .home-step-body h2:before {
    content: url(../../files/img/home-h2-before-2.png);
    position: absolute;
    bottom: -30px;
    left: 42.8%
}

.home-step .home-step-item {
    background-color: #fff;
    box-shadow: 4px 4px 1px #cbdef6;
    padding: 15px;
    min-height: 125px;
    position: relative;
    margin-top: 95px
}

.home-step .home-step-item.itemstep1:before {
    content: url(../../files/img/step1.svg);
    position: absolute;
    display: block;
    width: 55px;
    height: 90px;
    bottom: -75px;
    left: 102px
}

@media (max-width: 1200px) {
    .home-step .home-step-item.itemstep1:before {
        left: 74px
    }
}

.home-step .home-step-item.itemstep1:after {
    position: absolute;
    content: '01';
    color: #c5030e;
    font-family: Oswald;
    font-size: 50px;
    font-weight: 700;
    top: -70px;
    left: 101px
}

@media (max-width: 1200px) {
    .home-step .home-step-item.itemstep1:after {
        left: 77px
    }
}

.home-step .home-step-item.itemstep2:before {
    content: url(../../files/img/step2.svg);
    position: absolute;
    display: block;
    width: 55px;
    height: 90px;
    left: 102px;
    top: -99px
}

@media (max-width: 1200px) {
    .home-step .home-step-item.itemstep2:before {
        left: 74px
    }
}

.home-step .home-step-item.itemstep2:after {
    position: absolute;
    content: '02';
    color: #282f39;
    font-family: Oswald;
    font-size: 50px;
    font-weight: 700;
    bottom: -70px;
    left: 101px
}

@media (max-width: 1200px) {
    .home-step .home-step-item.itemstep2:after {
        left: 77px
    }
}

.home-step .home-step-item.itemstep3:before {
    content: url(../../files/img/step3.svg);
    position: absolute;
    display: block;
    width: 55px;
    height: 90px;
    bottom: -75px;
    left: 102px
}

@media (max-width: 1200px) {
    .home-step .home-step-item.itemstep3:before {
        left: 74px
    }
}

.home-step .home-step-item.itemstep3:after {
    position: absolute;
    content: '03';
    color: #282f39;
    font-family: Oswald;
    font-size: 50px;
    font-weight: 700;
    top: -70px;
    left: 101px
}

@media (max-width: 1200px) {
    .home-step .home-step-item.itemstep3:after {
        left: 77px
    }
}

.home-step .home-step-item.itemstep4:before {
    content: url(../../files/img/step4.svg);
    position: absolute;
    display: block;
    width: 55px;
    height: 90px;
    left: 102px;
    top: -75px
}

@media (max-width: 1200px) {
    .home-step .home-step-item.itemstep4:before {
        left: 74px
    }
}

.home-step .home-step-item.itemstep4:after {
    position: absolute;
    content: '04';
    color: #282f39;
    font-family: Oswald;
    font-size: 50px;
    font-weight: 700;
    bottom: -70px;
    left: 101px
}

@media (max-width: 1200px) {
    .home-step .home-step-item.itemstep4:after {
        left: 77px
    }
}

.home-step .home-step-item p {
    color: #282f39;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400
}

.home-testimonials {
    padding: 40px 0
}

.home-testimonials .home-testim-body h2 {
    color: #363e4f;
    font-family: Oswald;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    text-align: center
}

.home-testimonials .home-testim-body h2:before {
    content: url(../../files/img/home-h2-before-2.png);
    position: absolute;
    bottom: -30px;
    left: 42.8%
}

.home-testimonials .home-testim-body p {
    color: #000;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 300;
    text-align: center
}

.home-testimonials .home-testim-body p.author-testim {
    color: #282f39;
    font-family: Oswald;
    font-size: 21px;
    font-weight: 700;
    text-align: center
}

.home-testimonials .read-more-btn {
    color: #fff;
    font-family: Oswald;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #fff;
    margin: 10px 0;
    margin-left: 36px;
    position: relative;
    background-color: #345079
}

.home-testimonials .read-more-btn:before {
    content: '\f101';
    display: block;
    width: 36px;
    height: 37px;
    border: 1px solid #fff;
    color: #fff;
    font-family: FontAwesome;
    font-size: 18px;
    position: absolute;
    left: -36px;
    top: -1px;
    line-height: 37px;
    text-align: center;
    background-color: #345079
}

.carousel {
    position: relative;
    width: 75%;
    margin: 0 auto;
    background-repeat: no-repeat;
    min-height: 228px;
    padding: 45px 100px
}
.carousel.visible {
    background-image: url(../../files/img/tesimonials-bg.svg);
}

.carousel-control {
    position: absolute;
    color: #fff;
    text-align: center;
    text-shadow: none;
    opacity: 1;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    background-color: #c5030e;
    font-size: 18px;
    font-weight: 400;

}

.carousel-control.right {
    right: -50px;
    left: auto;
    background-image: none;
    background-image: none;
    background-image: none;
    background-image: none;
    top: 97px
}

.carousel-control.left {
    left: -50px;
    right: auto;
    background-image: none;
    background-image: none;
    background-image: none;
    background-image: none;
    top: 97px
}

.glyphicon-chevron-right:before {
    content: "\f101";
    font-family: FontAwesome
}

.glyphicon-chevron-left:before {
    content: "\f100";
    font-family: FontAwesome
}

.carousel-control .glyphicon-chevron-right {
    right: 33%;
    top: 23%
}

.carousel-control .glyphicon-chevron-left {
    left: 33%;
    top: 23%
}

.home-services-map {
    position: relative
}

.home-services-map .popover {
    position: absolute;
    width: 300px;
    padding: 10px;
    background: #353935;
    border-radius: 0
}

.home-services-map .popover p {
    color: #fff;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400
}

.home-services-map .popover p.color-red {
    color: #c5030e;
    text-align: center;
    font-size: 21px
}

.home-services-map .popover.essays-hint {
    top: 50%;
    height: 300px;
    left: 70%
}

@media (max-width: 1200px) {
    .home-services-map .popover.essays-hint {
        left: 55%
    }
}

.home-services-map .popover.essays-hint:before {
    position: absolute;
    display: block;
    width: 75px;
    height: 75px;
    content: url(../../files/img/sign-map.svg);
    left: -230px;
    top: -80px
}

@media (max-width: 1200px) {
    .home-services-map .popover.essays-hint:before {
        left: -120px
    }
}

.home-services-map .popover.thesis-hint {
    top: 50%;
    height: 300px;
    left: 70%
}

@media (max-width: 1200px) {
    .home-services-map .popover.thesis-hint {
        left: 55%
    }
}

.home-services-map .popover.thesis-hint:before {
    position: absolute;
    display: block;
    width: 75px;
    height: 75px;
    content: url(../../files/img/sign-map.svg);
    left: -131px;
    top: -280px
}

@media (max-width: 1200px) {
    .home-services-map .popover.thesis-hint:before {
        left: -23px;
        top: -240px
    }
}

.home-services-map .popover.proofreading-hint {
    top: 50%;
    height: 300px;
    left: 70%
}

@media (max-width: 1200px) {
    .home-services-map .popover.proofreading-hint {
        left: 55%
    }
}

.home-services-map .popover.proofreading-hint:before {
    position: absolute;
    display: block;
    width: 75px;
    height: 75px;
    content: url(../../files/img/sign-map.svg);
    left: -455px;
    top: -273px
}

@media (max-width: 1200px) {
    .home-services-map .popover.proofreading-hint:before {
        left: -315px;
        top: -252px
    }
}

.home-services-map .popover.editing-hint {
    top: 50%;
    height: 300px;
    left: 70%
}

@media (max-width: 1200px) {
    .home-services-map .popover.editing-hint {
        left: 55%
    }
}

.home-services-map .popover.editing-hint:before {
    position: absolute;
    display: block;
    width: 75px;
    height: 75px;
    content: url(../../files/img/sign-map.svg);
    left: -120%;
    top: -115%
}

@media (max-width: 1200px) {
    .home-services-map .popover.editing-hint:before {
        left: -80%;
        top: -100%
    }
}

.home-services-map .popover.dissertation-hint {
    top: 50%;
    height: 300px;
    left: 70%
}

@media (max-width: 1200px) {
    .home-services-map .popover.dissertation-hint {
        left: 55%
    }
}

.home-services-map .popover.dissertation-hint:before {
    position: absolute;
    display: block;
    width: 75px;
    height: 75px;
    content: url(../../files/img/sign-map.svg);
    left: 47%;
    top: -130%
}

@media (max-width: 1200px) {
    .home-services-map .popover.dissertation-hint:before {
        left: 75%;
        top: -75%
    }
}

.home-services-map .popover.coursework-hint {
    top: 50%;
    height: 300px;
    left: 70%
}

@media (max-width: 1200px) {
    .home-services-map .popover.coursework-hint {
        left: 50%
    }
}

.home-services-map .popover.coursework-hint:before {
    position: absolute;
    display: block;
    width: 75px;
    height: 75px;
    content: url(../../files/img/sign-map.svg);
    left: -131px;
    top: -207px
}

@media (max-width: 1200px) {
    .home-services-map .popover.coursework-hint:before {
        left: -23px
    }
}

.home-services-map .popover.research-hint {
    top: 50%;
    height: 300px;
    left: 70%
}

@media (max-width: 1200px) {
    .home-services-map .popover.research-hint {
        left: 55%
    }
}

.home-services-map .popover.research-hint:before {
    position: absolute;
    display: block;
    width: 75px;
    height: 75px;
    content: url(../../files/img/sign-map.svg);
    left: -300px;
    top: -280px
}

@media (max-width: 1200px) {
    .home-services-map .popover.research-hint:before {
        left: -200px;
        top: -240px
    }
}

.home-services-map .popover.rewriting-hint {
    top: 55%;
    height: 300px;
    left: 70%
}

@media (max-width: 1200px) {
    .home-services-map .popover.rewriting-hint {
        left: 50%
    }
}

.home-services-map .popover.rewriting-hint:before {
    position: absolute;
    display: block;
    width: 75px;
    height: 75px;
    content: url(../../files/img/sign-map.svg);
    left: -125%;
    top: -50px
}

.footer-contact {
    background-color: #345079;
    padding: 20px 0
}

.footer-contact .footer-phone a, .footer-contact .footer-phone p {
    color: #fff;
    font-family: Oswald;
    font-size: 18px;
    font-weight: 300;
    display: inline-block;
    margin: 0
}

.footer-contact .footer-phone a i, .footer-contact .footer-phone p i {
    color: #dd0512;
    font-size: 18px;
    font-weight: 400
}

.footer-contact .footer-social a {
    display: inline-block;
    width: 26px;
    height: 26px;
    border: 1px solid #fff;
    background-color: #243a59;
    padding-top: 3px;
    transition: 1.2s
}

.footer-contact .footer-social a:hover {
    background-color: #fff;
    color: #243a59;
    border: 1px solid #fff;
    transition: 1.2s
}

.footer-contact .footer-social a:hover i {
    color: #243a59;
    transition: 1.2s
}

.footer-contact .footer-social a i {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    transition: 1.2s
}

.footer-contact .footer-search {
    text-align: center
}

.footer-contact .footer-search input {
    outline: 0
}

.footer-contact .footer-search input[type=submit] {
    color: #dd0512;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    background: 0 0;
    border: none;
    border-bottom: 1px solid #fff
}

.footer-contact .footer-search input[type=text] {
    color: #fff;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    background: 0 0;
    border: none;
    border-bottom: 1px solid #fff;
    width: 90%;
    padding-left: 15px
}

@media (max-width: 1200px) {
    .footer-contact .footer-search input[type=text] {
        width: 88%
    }
}

.footer-main-block {
    background: #243a59;
    padding: 30px 0
}

.footer-main-block .footer-menu {
    text-align: center;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 400;
    color: #fff
}

.footer-main-block .footer-menu a {
    display: inline-block;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 400;
    color: #fff
}

.footer-main-block .footer-menu a.order_menu {
    color: #ff2431
}

.footer-main-block .footer-menu a:hover {
    text-decoration: none;
    color: #ff2431
}

.footer-main-block .footer-articles {
    padding: 10px 0
}

.footer-main-block .footer-articles ul {
    margin: 0;
    padding: 0
}

.footer-main-block .footer-articles ul li {
    display: inline-block;
    font-size: 0;
    width: 25%
}

.footer-main-block .footer-articles ul li a {
    color: #6f7c8d;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 16px
}

.footer-main-block .footer-articles ul li a:hover {
    text-decoration: none;
    color: #ff000f
}

.footer-main-block .payment-block {
    text-align: right;
    padding-top: 15px;
    margin: 0 0 12px;
}

.footer-main-block .payment-block span {
    color: #fff;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 300;
    display: inline-block;
    vertical-align: bottom;
    margin: 0 4px 0 0;
}
.footer-main-block .ws-payment-icons{
    display: inline-block;
}
.footer-main-block .ws-payment-icons img{
    margin: 0 4px;
}
.footer-main-block .ws-payment-icons img:last-child, .footer-main-block .ws-payment-icons img:nth-child(8){
    display: none;
}
.footer-main-block .payment-block .payment-card {
    display: inline-block;
    width: 445px;
    height: 32px;
}
.footer-main-block .payment-block .payment-card.visible {
    background: url(../../files/img/payment-pic.svg) no-repeat center bottom
}
@media (max-width: 1200px) {
    .footer-main-block .payment-block .payment-card {
        width: 380px;
        height: 32px;
    }
}

.footer-main-block .copyright {
    padding-top: 25px
}

.footer-main-block .copyright p {
    color: #fff;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 300
}

.first-discount {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    top: 0;
    position: fixed
}

.first-discount .first-order-discount {
    position: absolute;
    top: 20%;
    width: 466px;
    left: calc(50% - 233px);
    height: 350px;
    background: url(../../files/img/first-order-bg.svg);
    padding: 10px 70px
}

.first-discount .first-order-discount h2 {
    color: #c5030e;
    font-family: Oswald;
    font-size: 25px;
    font-weight: 700;
    line-height: 27px;
    text-align: center;
    margin-top: 4px
}

.first-discount .close-first-order {
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background: #b87f49;
    top: 21%;
    left: 62%
}

.first-discount .close-first-order:hover {
    cursor: pointer
}

.first-discount .close-first-order:hover i {
    color: #89030a
}

.first-discount .close-first-order i {
    color: #c5030e;
    font-size: 30px
}
.text-page-header.visible {
    /*background: url(../../files/img/bg-header.png);*/
}
.text-page-header {
    padding: 25px 0;
    background-color: #DAECFE;
}
@media all and (max-width: 414px) {
    .text-page-header {
        background: #D1E7FE!important;
    }
}
.text-page-header a, .text-page-header span {
    color: #000;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px
}

.text-page-header b {
    font-size: 22px
}

.text-page-header .header-title h1 {
    color: #282f39;
    font-family: Oswald;
    font-size: 30px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase
}

.text-page-wrapper {
    padding: 25px 0
}

.text-page-wrapper p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400
}

.text-page-wrapper h2 {
    margin: 20px 0;
    color: #c5030e;
    font-family: Oswald;
    font-size: 25px;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase
}

.text-page-wrapper ul {
    margin: 0 0 10px 0;
    padding: 0
}

.text-page-wrapper ul li {
    color: #000;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 400;
    list-style: none;
    position: relative;
    padding-left: 25px;
    padding-bottom: 10px
}

.text-page-wrapper ul li:before {
    content: '\f058';
    font-family: FontAwesome;
    color: #c5030e;
    position: absolute;
    left: 0
}

.text-page-wrapper ol {
    margin: 0 0 10px 0;
    padding: 0
}

.text-page-wrapper ol li {
    color: #000;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 400
}

.text-page-wrapper .blog-item .post {
    border: 1px solid #dfebf1;
    padding-bottom: 25px;
    margin-bottom: 25px;
    min-height: 600px
}

.text-page-wrapper .blog-item hr {
    border-color: #a6c1d0;
    width: 93%
}

.text-page-wrapper .blog-item img {
    width: 100%;
    height: auto
}

.text-page-wrapper .blog-item h5 a {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    padding: 0 15px
}

.text-page-wrapper .blog-item p {
    color: #000;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    padding: 0 15px
}

.text-page-wrapper .blog-item p.post-date {
    color: #a6c1d0;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400
}

.text-page-wrapper .blog-item p.post-date a {
    float: right;
    color: #a6c1d0;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400
}

.text-page-wrapper .blog-item .blog-img {
    position: relative
}

.text-page-wrapper .blog-item .blog-img a:hover .img-hover {
    display: block
}

.text-page-wrapper .blog-item .blog-img a:hover span {
    display: block
}

.text-page-wrapper .blog-item .blog-img .img-hover {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    border: 20px solid #fff;
    background-color: #345079;
    opacity: .63;
    top: 0
}

.text-page-wrapper .blog-item .blog-img span {
    position: absolute;
    display: none;
    width: 98px;
    height: 98px;
    background: url(../../files/img/blog-more.png);
    top: calc(50% - 49px);
    left: calc(50% - 49px)
}

.pagination-block ul.pagination li:before {
    display: none
}

.pagination-block ul.pagination li:first-child a, .pagination-block ul.pagination li:first-child span, .pagination-block ul.pagination li:last-child a, .pagination-block ul.pagination li:last-child span {
    border-radius: 0;
    display: inline-block;
    margin: 0 5px
}

.blog-post-single img {
    width: 100%;
    height: auto
}

.blog-post-single hr {
    border-top: 2px solid #a6c1d0
}

.blog-post-single p.post-date {
    color: #a6c1d0;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px
}

.blog-post-single p.post-date a {
    float: right;
    color: #a6c1d0;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400
}

.categories a.btn.btn-link {
    font-family: Oswald;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase
}

@media (max-width: 1200px) {
    .header-first-line .header-contact a {
        font-size: 16px
    }

    .home-services-map .popover {
        left: 55%
    }

    .home-services-map .popover.rewriting-hint:before {
        left: -70%
    }
}

.first-order-discount p {
    font-family: Oswald;
    font-size: 21px;
    font-weight: 500;
    padding-top: 15px;
    text-align: center
}

.first-order-discount a {
    color: #fff;
    font-family: Oswald;
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #fff;
    background-color: #c5030e;
    padding: 10px 25px;
    transition: .8s
}

.first-order-discount p.voice {
    font-weight: 700;
    color: #c5030e;
    font-size: 27px;
    text-shadow: 2px 2px 1px #333;
    letter-spacing: 4px
}

@media (max-width: 1200px) {
    .header-first-line .header-contact a {
        font-size: 14px
    }

    .header-first-line .header-contact a {
        margin-right: 1px
    }
}

@media (max-width: 992px) {
    .home-testim-body #myCarousel .carousel-control {
        display: none;
    }

,.header-menu ul li a {
     padding: 15px 10px
 }

    .header-first-line .header-contact a {
        font-size: 15px
    }

    .header-logo {
        margin-top: -33px
    }

    .home-calc .home-calc-bg .diamond-block, .home-calc .home-calc-bg .island-block, .home-calc .home-calc-bg .spear-block, .home-calc .home-calc-bg .treasure-block, .home-calc .home-calc-bg:after {
        display: none
    }

    .main-text-block-2.home-services-block .home-services a {
        float: left;
        width: 50%
    }

    .home-services {
        overflow: hidden;
        margin-left: 17%
    }

    .home-main-text .main-text-block ul li {
        display: inline-block;
        width: 50%;
        font-size: 0
    }

    .header-menu-right .dropdown-menu {
        left: auto;
        right: 0
    }

    .home-step .home-step-item {
        margin-top: 15px
    }

    .home-step .home-step-item.itemstep1:before, .home-step .home-step-item.itemstep2:before, .home-step .home-step-item.itemstep3:before, .home-step .home-step-item.itemstep4:before {
        display: none
    }

    .home-step .home-step-item.itemstep1:after, .home-step .home-step-item.itemstep2:after, .home-step .home-step-item.itemstep3:after, .home-step .home-step-item.itemstep4:after {
        color: #c5030e
    }

    .home-step .home-step-item.itemstep1:after, .home-step .home-step-item.itemstep2:after, .home-step .home-step-item.itemstep3:after, .home-step .home-step-item.itemstep4:after {
        left: 5px;
        top: 0
    }

    .home-step .home-step-item p {
        padding-left: 50px
    }

    .home-testimonials {
        padding: 20px 0
    }

    .carousel-control.left {
        left: 45px;
        top: 25px
    }

    .carousel-control.right {
        right: 45px;
        top: 25px
    }

    .carousel {
        width: 100%;
        padding: 30px 45px
    }

    .footer-contact .footer-search {
        text-align: center;
        padding: 10px 0
    }

    .footer-main-block .copyright p, .footer-main-block .payment-block {
        text-align: center
    }
}

@media (max-width: 640px) {
    .header-logo {
        margin-top: -66px
    }

    .header-logo svg {
        width: 50%
    }

    .header-first-line .header-btn {
        padding: 22px 0 17px
    }

    .header-menu .header-responsive-menu ul li {
        display: block
    }

    .header-menu .header-responsive-menu ul li a:before {
        display: none
    }

    .header-menu .header-responsive-menu ul li a {
        padding: 10px;
        width: 100%
    }

    .navbar-collapse.in {
        overflow-y: inherit
    }

    .home-benefits-item {
        min-height: 350px
    }

    .carousel-control .glyphicon-chevron-left {
        left: 63%;
        top: 42%
    }

    .carousel-control .glyphicon-chevron-right {
        right: 63%;
        top: 42%
    }
}

@media (max-width: 568px) {
    .home-benefits-item {
        min-height: 360px
    }

    .home-main-text .main-text-block ul li span {
        font-size: 14px
    }

    .home-step .home-step-item {
        margin-top: 15px;
        min-height: 160px
    }

    .home-step {
        padding-top: 5px
    }

    .carousel {
        width: 100%;
        padding: 40px 45px;
        background-size: 144%
    }

    .footer-main-block .footer-articles ul li {
        width: auto
    }
}

@media (max-width: 480px) {
    .payment-block {
        display: none
    }
}

@media (max-width: 480px) {
    .col-xxs {
        display: block;
        float: none;
        width: 100%
    }

    .benefits-block {
        display: none
    }

    .home-step .home-step-body h2:before {
        display: none
    }

    .home-step .home-step-body h2 {
        margin: 10px 0
    }

    .home-step .home-step-item {
        min-height: auto
    }

    .home-step {
        height: 580px;
        background-size: 740%;
        background-position: 50%
    }

    .footer-main-block .footer-menu, .home-main-text .main-text-block h1:before, .home-testimonials .home-testim-body h2:before, .main-text-block-1 h2:before, .main-text-block-2 h2:before {
        display: none
    }

    .home-main-text {
        padding: 10px 0
    }

    .carousel {
        padding: 60px 10px 40px 50px;
        background-size: 387%;
        min-height: 344px
    }

    .carousel-control.left {
        left: 24px;
        bottom: 83px;
        top: auto;
    }

    .carousel-control.right {
        right: 10px;
        top: auto;
        left: auto;
        bottom: 83px;
    }
}

@media (max-width: 320px) {
    .header-first-line .header-btn a.chat-btn {
        display: none
    }

    .header-logo {
        margin-top: -56px
    }

    .header-logo svg {
        width: 90%
    }

    .home-discount-features .discount-digit span {
        font-size: 30px;
        padding-top: 0
    }

    .home-discount-features .discount-digit {
        height: 60px
    }

    .home-main-text .main-text-block ul li {
        width: 100%
    }
}

.text-page-wrapper h3 {
    color: #345079;
    font-family: Oswald;
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
}

.essay-1 {
    text-align: center
}

@media (max-width: 767px) {
    .essay-1 img {
        width: 100%;
        height: auto
    }
}

.wrapper-steps {
    margin-top: 30px;
}

.header-first-line .header-contact .header_order i {
    background: #c5030e;
    vertical-align: sub;
    color: white;
    height: 26px;
    line-height: 31px;
    border-right: 1px solid white;
    margin-right: 6px;
    padding-right: 6px;
}

.header-first-line .header-contact .header_order {
    color: white;
    background: #c5030e;
    height: 31px;
    line-height: 31px;
    font-family: Oswald;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 6px;
    vertical-align: middle;
}


#bs-example-navbar-collapse-1 .header_order i {
    background: #c5030e;
    vertical-align: sub;
    color: white;
    height: 46px;
    line-height: 46px;
    border-right: 1px solid white;
    margin-right: 6px;
    padding-right: 6px;
    vertical-align: top;
}

#bs-example-navbar-collapse-1 .header_order {
    color: white;
    background: #c5030e;
    height: 46px;
    line-height: 46px;
    font-family: Oswald;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 6px;
    vertical-align: middle;
    width: 135px;
    display: block;
    margin: 0 0 10px 0;
}

.wrapper-steps .hidden-span {
    display: none;
}

.wrapper-steps .support-bg {
    text-align: center;
    margin-top: 25px;
}

.wrapper-steps .bg-main {
    margin: 0 auto;
}

.wrapper-steps span {
    color: #2a2b38;
    font-weight: 600;
    font-size: 17px;
    font-family: Calibri;
}

.wrapper-steps span.header-steps {
    color: #c5030e;
    font-weight: 800;
    font-size: 17px;
    font-family: Calibri;
    text-transform: uppercase;
}

.wrapper-steps .wrapper-text-steps {
    width: 140px;
    margin: 0 auto 15px auto;
    padding-top: 10px;
    text-align: center;
}

.wrapper-steps .item .bg-item {
    height: 120px;
    width: 130px;
    background: url("/files/Submit-the-Order-Form.svg") no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    position: relative;
}

.wrapper-steps .item-2 .bg-item {
    height: 120px;
    width: 121px;
    background: url("/files/Proceed-With-Payment.svg") no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}

.wrapper-steps .item-3 .bg-item {
    height: 120px;
    width: 112px;
    background: url("/files/Enjoy-Your-Completed-Paper.svg") no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}

.wrapper-steps .item, .wrapper-steps .item-2 {
    position: relative;
}

.wrapper-steps .item img, .wrapper-steps .item-2 img {
    position: absolute;
    right: 1px;
    top: 75px;
    height: 40px;
}

#bs-example-navbar-collapse-1 ul > li > a:before {
    font-family: FontAwesome;
    color: white;
    font-size: 18px;
    margin-right: 15px;
    width: 25px;
    display: inline-block;
    text-align: center;
}

.header-menu-left ul > li > a.order_menu,
#bs-example-navbar-collapse-1 ul > li > a.order_menu {
    color: #ff3737;
}

#bs-example-navbar-collapse-1 ul > li > a[href="/"]:before {
    content: "\f015";
}

#bs-example-navbar-collapse-1 ul > li.dropdown > .dropdown-menu {
    padding-left: 40px;
}

#bs-example-navbar-collapse-1 ul > li.dropdown > a:before {
    content: "";
}

#bs-example-navbar-collapse-1 ul > li > a[href="/about-us.html"]:before {
    content: "\f129";
}

#bs-example-navbar-collapse-1 ul > li > a[href="/prices.html"]:before {
    content: "\f155";
}

#bs-example-navbar-collapse-1 ul > li > a.order_menu:before {
    content: "\f07a";
}

#bs-example-navbar-collapse-1 ul > li > a[href="/contact-us.html"]:before {
    content: "\f1d8";

}

#bs-example-navbar-collapse-1 ul > li > a {

}

.button_chat {
    right: 13px;
    position: fixed;
    width: 49px;
    height: 49px;
    background: #1eba59;
    bottom: 169px;
    z-index: 100;
    text-align: center;
    line-height: 36px;
    font-size: 23px;
    color: #fff;
    border-radius: 50%;
    border: 4px solid white;
    -webkit-box-shadow: 0px 0px 4px 2px rgba(52, 80, 121, 1);
    -moz-box-shadow: 0px 0px 4px 2px rgba(52, 80, 121, 1);
    box-shadow: 0px 0px 4px 2px rgba(52, 80, 121, 1);
    cursor: pointer;
}

.vip_contact {
    background: url("../../files/img/img_bg (1).svg") no-repeat, #e6f2ff;
    padding: 23px 21px;
    background-position: 50%;
    margin: 20px 0;
}

.vip_contact .vip_button a.order_btn:hover,
.vip_contact .vip_button a.order_btn:fcous {
    background: white;
    color: #c5030e;
}

.vip_contact .vip_button a:focus,
.vip_contact .vip_button a:hover {
    background: white;
    color: #345079;
}

.vip_contact .vip_button a {
    text-align: center;
    width: 140px;
    height: 40px;
    background-color: #345079;
    border: 1px solid #345079;
    display: block;
    color: #ffffff;
    font-family: Oswald;
    font-size: 16px;
    font-weight: 500;
    line-height: 38px;
    text-transform: uppercase;
    margin: 15px 0;
    transition: 0.2s;
}

.vip_contact .vip_button a.order_btn {
    background-color: #c5030e;
    border: 1px solid #c5030e;
}

.vip_contact .vip_button {
    float: right;
    margin: 13px 0;
}

.vip_contact .vip_contact_info a.contact_phone:before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    left: 0px;
    top: -16px;
    text-align: center;
    line-height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='phone--icon' x='0px' y='0px' viewBox='0 0 30 30' style='enable-background:new 0 0 30 30;' xml:space='preserve'%3E%3Crect style='fill:%23345079;' width='30' height='30'/%3E%3Cpath id='phone--icon_1_' style='fill:%23FFFFFF;' d='M23.518,18.661c-2.985-2.4-4.166-1.201-5.303-0.044l-0.209,0.209 c-0.094,0.092-0.515,0.045-1.295-0.461c-0.74-0.482-1.658-1.272-2.729-2.347c-3.269-3.266-2.813-4.018-2.807-4.024l0.204-0.204 c1.162-1.142,2.363-2.324-0.039-5.308c-0.812-1.013-1.621-1.523-2.475-1.559C7.606,4.866,6.704,5.849,5.964,6.626L5.909,6.685 C5.808,6.791,5.71,6.895,5.612,6.991C4.719,7.886,4.695,9.772,5.55,12.037c0.908,2.409,2.7,5.026,5.044,7.369 c2.342,2.343,4.96,4.133,7.369,5.041c1.096,0.414,2.127,0.633,2.983,0.633c0.896,0,1.609-0.238,2.059-0.689 c0.091-0.09,0.187-0.182,0.286-0.277l0.079-0.075c0.781-0.743,1.754-1.667,1.703-2.905C25.041,20.285,24.533,19.476,23.518,18.661z M8.817,6.159c0.46,0.018,1,0.397,1.563,1.095c1.702,2.117,1.211,2.599,0.135,3.655l-0.214,0.209 c-1.024,1.028-0.158,2.808,2.808,5.775c1.153,1.15,2.139,1.994,2.931,2.507c1.261,0.819,2.217,0.918,2.84,0.296l0.213-0.214 c1.059-1.073,1.541-1.561,3.653,0.138c0.708,0.57,1.076,1.096,1.096,1.561c0.027,0.681-0.69,1.36-1.323,1.961l-0.387,0.372 c-0.506,0.508-2.04,0.417-3.733-0.221c-2.245-0.847-4.706-2.537-6.931-4.762c-2.222-2.218-3.912-4.679-4.76-6.93 C5.959,9.617,6.056,8.295,6.481,7.868c0.125-0.123,0.252-0.254,0.377-0.39c0.588-0.618,1.254-1.319,1.92-1.319 C8.778,6.159,8.817,6.159,8.817,6.159z'/%3E%3C/svg%3E");
}

.vip_contact .vip_contact_info a.contact_mail:before {
    content: "";
    font-family: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='mail--icon' x='0px' y='0px' viewBox='0 0 30 30' style='enable-background:new 0 0 30 30;' xml:space='preserve'%3E%3Crect style='fill:%23345079;' width='30' height='30'/%3E%3Cpath id='mail--icon_1_' style='fill:%23FFFFFF;' d='M22.615,8.289H7.385c-0.948,0-1.72,0.772-1.72,1.72v9.981 c0,0.948,0.772,1.72,1.72,1.72h15.23c0.948,0,1.72-0.771,1.72-1.72v-9.981C24.335,9.06,23.563,8.289,22.615,8.289z M6.764,10.176 l5.384,4.696l-3.15,2.951c-0.106,0.101-0.167,0.239-0.17,0.386s0.05,0.285,0.149,0.389c0.104,0.111,0.247,0.172,0.402,0.172 c0.14,0,0.274-0.053,0.375-0.149l3.226-3.023l0.778,0.678c0.331,0.291,0.773,0.45,1.243,0.45c0.469,0,0.911-0.161,1.244-0.452 l0.777-0.678l3.223,3.023c0.102,0.097,0.236,0.15,0.377,0.15c0.154,0,0.297-0.061,0.4-0.171c0.208-0.219,0.199-0.568-0.022-0.778 l-3.147-2.949l5.384-4.695v9.812c0,0.342-0.279,0.622-0.622,0.622H7.385c-0.343,0-0.621-0.279-0.621-0.622 C6.764,19.989,6.764,10.176,6.764,10.176z M15.523,15.448c-0.278,0.241-0.767,0.242-1.045,0.001L7.532,9.387h14.94L15.523,15.448z'/%3E%3C/svg%3E");
}

.vip_contact .vip_contact_info a.contact_mail {
    margin-top: 15px;
}

.vip_contact .vip_contact_info a {
    color: #000000;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 400;
    display: block;
    line-height: 24px;
    position: relative;
    padding-left: 45px;
}

.custom_full_calc .header,
.vip_contact .vip_contact_info .title {
    color: #c5030e;
    font-family: Oswald;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.custom_full_calc .header {
    display: block !important;
    margin-bottom: 0 !important;
}

.vip_contact .vip_contact_info {
    display: inline-block;
}

.benefits_services .orage_text {
    color: #f5b136 !important;
}

.benefits_services .red_text {
    color: #c5030e !important;
}

.benefits_services {
    border: 1px solid #c8d7ea;
    background-color: #ffffff;
    padding: 25px 25px 25px 150px;
    background: url("../../files/img/banner_illustration.svg") no-repeat;
    background-position: 25px 50%;
    background-size: auto 100px;
    box-shadow: 5px 4px 0px 1px #c8d7ea;
    margin: 20px auto;
}

.benefits_services .benefits_text {
    width: calc(100% - 130px);
    display: inline-block;
    vertical-align: middle;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.benefits_services .benefits_text p {
    margin-bottom: 0;
}

.benefits_services .benefits_btn {
    display: inline-block;
    vertical-align: middle;
    width: 120px;
}

.benefits_services .title {
    color: #345079;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 15px;
    display: inline-block;
}

.btn_box .liveChat {
    width: 150px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    margin: 10px;
    background: #013765;
    color: white;
    font-weight: bold;
}

.btn_box .btn_order {
    width: 150px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    margin: 10px;
    background: #c5030e;
    color: white;
    font-weight: bold;
}

.btn_box {
    text-align: center;
}

.benefits_services .btn_help {
    border: 1px solid #ffffff;
    background-color: #345079;
    width: 110px;
    height: 34px;
    color: #ffffff;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    line-height: 34px;
    display: inline-block;
    margin: 5px auto;
    vertical-align: middle;
}

.benefits_services .btn_order {
    border: 1px solid #ffffff;
    background-color: #c5030e;
    width: 110px;
    height: 34px;
    color: #ffffff;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    line-height: 34px;
    display: inline-block;
    margin: 5px auto;
    vertical-align: middle;
}

.social_link:focus,
.social_link:hover {
    color: #ff000f;
}

.social_link {
    color: white;
    margin: 0 10px;
    font-size: 18px;
}

.images_float img {
    margin-bottom: 0 !important;
}

.images_float {
    float: left;
    width: 50%;
    margin: 0 35px 25px 0;
}

@keyframes rotate {
    90% {

        height: 49px;
        line-height: 36px;
        transform: scaleX(1);
    }
    94.5% {
        margin-top: -7px;
        height: 35px;
        line-height: 28px;
        transform: scaleX(-1);
    }

    97% {
        margin-top: 0;
        height: 49px;
        line-height: 36px;
        transform: scaleX(1);
    }
}

.info_block_crono a {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    font-family: Oswald;
    font-size: 15px;
    font-weight: 400;
    line-height: 45px;
    width: 160px;
    color: white;
    height: 45px;
    margin: 0 65px;
    background-color: #c5030e;
}

.info_block_crono p .blue_text {
    color: #345079;
}

.info_block_crono p .red_text {
    color: #c5030e;
}

.info_block_crono p {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 295px);
    margin: 0;
    color: #000000;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.scial_view {
    display: inline-block;
    float: right;
}

.info_block_crono {
    background: url("../../files/img/icon.png") no-repeat white;
    background-position: 33px 50%;
    padding: 22px 0 22px 115px;
    margin: 20px auto;
    box-shadow: 4px 4px 0px 2px rgb(168, 187, 206);
    position: relative;
    z-index: 1;
}

.scial_view {
    display: inline-block;
    float: right;
}

@media all and (max-width: 1319px) {
    .wrapper-steps .item .bg-item:after, .wrapper-steps .item-2 .bg-item:after {
        right: -120px;
    }
}

@media all and (max-width: 1082px) {
    .wrapper-steps span {
        font-size: 15px;
    }

    .wrapper-steps span.header-steps {
        font-size: 17px;
    }

    .wrapper-steps .item .wrapper-text-steps, .wrapper-steps .item-2 .wrapper-text-steps, .wrapper-steps .item-3 .wrapper-text-steps {
        padding: 10px 0 0 0;
    }

    .wrapper-steps .item img, .wrapper-steps .item-2 img {
        right: -43px;
    }
}

@media all and (max-width: 1014px) {
    .info_block_crono a {
        margin: 0 20px;
    }

    .info_block_crono p {
        width: calc(100% - 205px);
    }

    .wrapper-steps .item .bg-item:after, .wrapper-steps .item-2 .bg-item:after {
        right: -84px;
    }
}
@media all and (max-width: 991px){
    .page-calculator .ae-miniorder{
        width: 523px;
        max-width: 100%;
        margin: 0 auto;
        display: block !important;
    }
}

@media all and (max-width: 768px) {
    .vip_contact {
        background-position: 70% 100%;
        background-size: auto 75%;
    }

    .vip_contact .vip_button a {
        border: 1px solid white !important;
    }

    .ae-miniorder {
        width: 523px;
        max-width: 100%;
        margin: 0 auto;
        display: block !important;
    }
}

@media all and (max-width: 766px) {

    .wrapper-steps .item .bg-item, .wrapper-steps .item-2 .bg-item, .wrapper-steps .item-3 .bg-item {
        float: none;
        height: 82px;
        display: block;
        margin: 0 auto;
    }

    .wrapper-steps .item-2, .wrapper-steps .item, .wrapper-steps .item-3 {
        text-align: center;
    }

    .wrapper-steps .item .wrapper-text-steps, .wrapper-steps .item-2 .wrapper-text-steps, .wrapper-steps .item-3 .wrapper-text-steps {
        padding: 0;
    }

    .wrapper-steps .support-bg {
        margin-top: 10px;
    }

    .wrapper-steps .item img, .wrapper-steps .item-2 img {
        right: -31px;
    }
}

@media all and (max-width: 685px) {
    .wrapper-steps .item .bg-item:after, .wrapper-steps .item-2 .bg-item:after {
        display: none;
    }

    .wrapper-steps .item img, .wrapper-steps .item-2 img {
        right: -20px;
        top: 66px;
    }
}

@media all and (max-width: 640px) {
    .info_block_crono .container {
        margin: auto;
        max-width: 100%;
    }

    .info_block_crono a {
        display: block;
        margin: 5px auto;
        text-align: center;
    }

    .info_block_crono p {
        width: 100%;
        display: block;
        margin: 10px 0;
        text-align: center;
        padding-right: 0;
        padding: 0 20px;
    }

    .info_block_crono {
        background-position: 50% 20px;
        padding: 80px 0 15px 0;
    }

    .benefits_services .benefits_btn {
        margin: 10px auto;
    }

    .benefits_services .benefits_btn,
    .benefits_services .benefits_text {
        display: block;
        width: 100%;
        text-align: center;
    }

    .button_chat {
        line-height: 27px;
        width: 35px;
        height: 35px;
        bottom: 200px;
        right: 17px;
    }

    @keyframes rotate {
        90% {

            height: 35px;
            line-height: 27px;
            transform: scaleX(1);
        }
        94.5% {
            margin-top: -7px;
            height: 25px;
            line-height: 21px;
            transform: scaleX(-1);
        }

        97% {
            margin-top: 0;
            height: 35px;
            line-height: 27px;
            transform: scaleX(1);
        }
    }
}

@media all and (max-width: 600px) {
    .vip_contact .vip_button {
        display: block;
        float: none;
    }

    .vip_contact {
        background-position: 71px 100%;
        background-size: auto 162px;
    }

    #up-btn.hide-btn-up, #up-btn.show-btn-up {
        bottom: 250px;
    }

    .wrapper-steps .support-bg {
        text-align: center;
        margin-top: 15px;
    }

    .wrapper-steps .item img, .wrapper-steps .item-2 img {
        height: 20px;
    }

    .wrapper-steps .hidden-span-1 {
        display: none;
    }

    .text-page-header .header-title h1 {
        margin: 0;
    }

    .text-page-header .breadcrumbs {
        padding-top: 0;
    }
}

@media all and (max-width: 530px) {
    .benefits_services {
        padding: 135px 20px 20px 20px;
        background-position: 50% 20px;
    }

    .wrapper-steps .bg-main {
        width: auto;
        height: 85px;
    }

    .wrapper-steps span.header-steps {
        display: block;
    }

    .wrapper-steps .wrapper-text-steps {
        width: auto;
    }

    .wrapper-steps .item .bg-item, .wrapper-steps .item-2 .bg-item, .wrapper-steps .item-3 .bg-item {
        width: auto;
        background-position-y: 0;

    }

    .wrapper-steps .wrapper-text-steps {
        line-height: 1;
    }

    .wrapper-steps .item img, .wrapper-steps .item-2 img {
        display: none;
    }

    .wrapper-steps .item, .wrapper-steps .item-2, .wrapper-steps .item-3 {
        padding: 0;
    }

    .wrapper-steps {
        margin-top: 0;
    }
}

/*Start Banner*/
#footer-baner .banner_img {
    overflow: hidden;
}

#footer-baner .baner_content a {
    transition: 0.5s;
    display: block;
}

#footer-baner .baner_content .banner_s {
    display: none;
}

#footer-baner .baner_content .banner_img .banner_xs {
    display: none;
}

#footer-baner {
    position: fixed;
    bottom: 0;
    transition: 0.5s;
    z-index: 100;
    width: 100%;
    display: block;
    margin-left: -101% !important;
    margin-right: 101% !important;
}

#footer-baner.footer-show-line {
    margin: 0 !important;
}

#footer-baner .baner_content a img {
    width: 100%;
    display: block;
}

#footer-baner .baner_content {
    position: relative;
}

.footer-hidden {
    margin-left: -101% !important;
    transition: 0.5s;
    margin-right: 101% !important;
}

.banner_button {
    text-align: center;
    line-height: 26px;
    position: absolute;
    bottom: -32px;
    right: 3px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-family: monospace;
    font-weight: 800;
    font-size: 20px;
    z-index: 999;
    cursor: pointer;
}

.banner_button_show {
    display: block;
    border-radius: 3px;
    background: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%2070%2070%22%20style%3D%22enable-background%3Anew%200%200%2070%2070%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text/css%22%3E%0A%09.st0%7Bfill%3A%23AF1032%3B%7D%0A%09.st1%7Bfill%3A%23FFFFFF%3B%7D%0A%09.st2%7Benable-background%3Anew%20%20%20%20%3B%7D%0A%3C/style%3E%0A%3Cg%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M35%2C1.1c-1.6%2C0-2.9%2C1.3-2.9%2C2.9c0%2C1.7%2C1.3%2C3%2C2.9%2C3s2.9-1.3%2C2.9-2.9S36.6%2C1.1%2C35%2C1.1z%20M35%2C4.2%0A%09%09c-0.4%2C0-0.8-0.4-0.8-0.8s0.4-0.8%2C0.8-0.8c0.4%2C0%2C0.8%2C0.4%2C0.8%2C0.8C35.8%2C3.9%2C35.4%2C4.2%2C35%2C4.2z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M28.9%2C1.7c-1.6%2C0.3-2.7%2C1.8-2.4%2C3.4c0.3%2C1.6%2C1.8%2C2.7%2C3.4%2C2.4c1.6-0.3%2C2.7-1.8%2C2.4-3.4%0A%09%09C32.1%2C2.5%2C30.5%2C1.4%2C28.9%2C1.7z%20M29.5%2C4.7c-0.4%2C0.1-0.9-0.2-0.9-0.7c-0.1-0.4%2C0.2-0.9%2C0.7-0.9c0.4-0.1%2C0.9%2C0.2%2C0.9%2C0.7%0A%09%09C30.2%2C4.2%2C29.9%2C4.7%2C29.5%2C4.7z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M23.1%2C3.2c-1.5%2C0.6-2.3%2C2.2-1.7%2C3.7c0.6%2C1.5%2C2.2%2C2.3%2C3.8%2C1.7c1.5-0.6%2C2.3-2.2%2C1.7-3.8%0A%09%09C26.3%2C3.5%2C24.6%2C2.7%2C23.1%2C3.2z%20M24.1%2C6.2c-0.4%2C0.2-0.9-0.1-1-0.5c-0.2-0.4%2C0.1-0.9%2C0.5-1c0.4-0.2%2C0.9%2C0.1%2C1%2C0.5%0A%09%09C24.8%2C5.5%2C24.6%2C6%2C24.1%2C6.2z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M17.6%2C5.8c-1.4%2C0.8-1.9%2C2.6-1.1%2C4s2.6%2C1.9%2C4%2C1.1c1.4-0.8%2C1.9-2.6%2C1.1-4C20.8%2C5.5%2C19%2C5%2C17.6%2C5.8z%20M19.1%2C8.5%0A%09%09c-0.4%2C0.2-0.9%2C0.1-1.1-0.3c-0.2-0.4-0.1-0.9%2C0.3-1.1s0.9-0.1%2C1.1%2C0.3S19.5%2C8.3%2C19.1%2C8.5z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M12.6%2C9.3c-1.2%2C1-1.4%2C2.9-0.4%2C4.1s2.9%2C1.4%2C4.1%2C0.4s1.4-2.9%2C0.4-4.1C15.7%2C8.4%2C13.8%2C8.3%2C12.6%2C9.3z%20M14.6%2C11.7%0A%09%09c-0.3%2C0.3-0.8%2C0.2-1.1-0.1s-0.2-0.8%2C0.1-1.1s0.8-0.2%2C1.1%2C0.1C15%2C10.9%2C14.9%2C11.4%2C14.6%2C11.7z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M8.3%2C13.6c-1%2C1.2-0.9%2C3.1%2C0.4%2C4.1c1.2%2C1%2C3.1%2C0.9%2C4.1-0.4c1-1.2%2C0.9-3.1-0.4-4.1C11.2%2C12.2%2C9.3%2C12.4%2C8.3%2C13.6z%0A%09%09%20M10.7%2C15.6c-0.3%2C0.3-0.8%2C0.4-1.1%2C0.1c-0.3-0.3-0.4-0.8-0.1-1.1c0.3-0.3%2C0.8-0.4%2C1.1-0.1C10.9%2C14.7%2C11%2C15.2%2C10.7%2C15.6z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M4.8%2C18.6c-0.8%2C1.4-0.3%2C3.2%2C1.1%2C4s3.2%2C0.3%2C4-1.1c0.8-1.4%2C0.3-3.2-1.1-4C7.4%2C16.7%2C5.6%2C17.2%2C4.8%2C18.6z%20M7.5%2C20.1%0A%09%09c-0.2%2C0.4-0.7%2C0.5-1.1%2C0.3s-0.5-0.7-0.3-1.1s0.7-0.5%2C1.1-0.3S7.7%2C19.7%2C7.5%2C20.1z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M2.2%2C24.1c-0.6%2C1.5%2C0.2%2C3.2%2C1.7%2C3.8c1.5%2C0.6%2C3.2-0.2%2C3.8-1.7C8.3%2C24.7%2C7.5%2C23%2C6%2C22.4S2.8%2C22.6%2C2.2%2C24.1z%0A%09%09%20M5.2%2C25.1c-0.2%2C0.4-0.6%2C0.6-1%2C0.5c-0.4-0.2-0.6-0.6-0.5-1c0.2-0.4%2C0.6-0.6%2C1-0.5C5.1%2C24.3%2C5.3%2C24.7%2C5.2%2C25.1z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M0.7%2C29.9c-0.3%2C1.6%2C0.8%2C3.1%2C2.4%2C3.4s3.1-0.8%2C3.4-2.4s-0.8-3.1-2.4-3.4C2.5%2C27.3%2C1%2C28.4%2C0.7%2C29.9z%20M3.7%2C30.5%0A%09%09c-0.1%2C0.4-0.5%2C0.7-0.9%2C0.7c-0.4-0.1-0.7-0.5-0.7-0.9c0.1-0.4%2C0.5-0.7%2C0.9-0.7C3.5%2C29.6%2C3.8%2C30%2C3.7%2C30.5z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M0.1%2C36c0%2C1.6%2C1.3%2C2.9%2C2.9%2C2.9c1.7%2C0%2C3-1.3%2C3-2.9s-1.3-2.9-2.9-2.9S0.1%2C34.4%2C0.1%2C36z%20M3.2%2C36%0A%09%09c0%2C0.4-0.4%2C0.8-0.8%2C0.8S1.6%2C36.4%2C1.6%2C36s0.4-0.8%2C0.8-0.8C2.9%2C35.2%2C3.2%2C35.6%2C3.2%2C36z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M0.7%2C42.1c0.3%2C1.6%2C1.8%2C2.7%2C3.4%2C2.4s2.7-1.8%2C2.4-3.4c-0.3-1.6-1.8-2.7-3.4-2.4C1.5%2C38.9%2C0.4%2C40.5%2C0.7%2C42.1z%0A%09%09%20M3.7%2C41.5c0.1%2C0.4-0.2%2C0.9-0.7%2C0.9c-0.4%2C0.1-0.9-0.2-0.9-0.7c-0.1-0.4%2C0.2-0.9%2C0.7-0.9C3.2%2C40.8%2C3.7%2C41.1%2C3.7%2C41.5z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M2.2%2C47.9c0.6%2C1.5%2C2.2%2C2.3%2C3.8%2C1.7c1.5-0.6%2C2.3-2.2%2C1.7-3.8c-0.6-1.5-2.2-2.3-3.8-1.7%0A%09%09C2.5%2C44.7%2C1.7%2C46.4%2C2.2%2C47.9z%20M5.2%2C46.9c0.2%2C0.4-0.1%2C0.9-0.5%2C1c-0.4%2C0.2-0.9-0.1-1-0.5c-0.2-0.4%2C0.1-0.9%2C0.5-1%0A%09%09C4.5%2C46.2%2C5%2C46.4%2C5.2%2C46.9z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M4.8%2C53.4c0.8%2C1.4%2C2.6%2C1.9%2C4%2C1.1c1.4-0.8%2C1.9-2.6%2C1.1-4c-0.8-1.4-2.6-1.9-4-1.1C4.5%2C50.2%2C4%2C52%2C4.8%2C53.4z%0A%09%09%20M7.5%2C51.9c0.2%2C0.4%2C0.1%2C0.9-0.3%2C1.1c-0.4%2C0.2-0.9%2C0.1-1.1-0.3c-0.2-0.4-0.1-0.9%2C0.3-1.1C6.8%2C51.4%2C7.3%2C51.5%2C7.5%2C51.9z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M8.3%2C58.4c1%2C1.2%2C2.9%2C1.4%2C4.1%2C0.4s1.4-2.9%2C0.4-4.1c-1-1.2-2.9-1.4-4.1-0.4C7.4%2C55.3%2C7.3%2C57.2%2C8.3%2C58.4z%0A%09%09%20M10.7%2C56.4c0.3%2C0.3%2C0.2%2C0.8-0.1%2C1.1s-0.8%2C0.2-1.1-0.1s-0.2-0.8%2C0.1-1.1C9.9%2C56%2C10.4%2C56.1%2C10.7%2C56.4z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M12.6%2C62.7c1.2%2C1%2C3.1%2C0.9%2C4.1-0.4c1-1.2%2C0.9-3.1-0.4-4.1c-1.2-1-3.1-0.9-4.1%2C0.4%0A%09%09C11.2%2C59.8%2C11.4%2C61.7%2C12.6%2C62.7z%20M14.6%2C60.3c0.3%2C0.3%2C0.4%2C0.8%2C0.1%2C1.1c-0.3%2C0.3-0.8%2C0.4-1.1%2C0.1c-0.3-0.3-0.4-0.8-0.1-1.1%0A%09%09C13.7%2C60.1%2C14.2%2C60%2C14.6%2C60.3z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M17.6%2C66.2c1.4%2C0.8%2C3.2%2C0.3%2C4-1.1s0.3-3.2-1.1-4s-3.2-0.3-4%2C1.1C15.7%2C63.6%2C16.2%2C65.4%2C17.6%2C66.2z%20M19.1%2C63.5%0A%09%09c0.4%2C0.2%2C0.5%2C0.7%2C0.3%2C1.1s-0.7%2C0.5-1.1%2C0.3s-0.5-0.7-0.3-1.1S18.7%2C63.3%2C19.1%2C63.5z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M23.1%2C68.7c1.5%2C0.6%2C3.2-0.2%2C3.8-1.7c0.6-1.5-0.2-3.2-1.7-3.8s-3.2%2C0.2-3.8%2C1.7C20.8%2C66.5%2C21.6%2C68.2%2C23.1%2C68.7z%0A%09%09%20M24.1%2C65.8c0.4%2C0.2%2C0.6%2C0.6%2C0.5%2C1c-0.2%2C0.4-0.6%2C0.6-1%2C0.5c-0.4-0.2-0.6-0.6-0.5-1C23.3%2C65.9%2C23.7%2C65.7%2C24.1%2C65.8z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M32.3%2C67.9c0.3-1.6-0.8-3.1-2.4-3.4c-1.6-0.3-3.1%2C0.8-3.4%2C2.4c-0.2%2C1.3%2C0.5%2C2.5%2C1.6%2C3.1h2.7%0A%09%09C31.5%2C69.6%2C32.1%2C68.8%2C32.3%2C67.9z%20M29.3%2C68.9c-0.4-0.1-0.7-0.5-0.7-0.9c0-0.5%2C0.4-0.8%2C0.9-0.7c0.4%2C0.1%2C0.7%2C0.5%2C0.7%2C0.9%0A%09%09C30.1%2C68.6%2C29.7%2C68.9%2C29.3%2C68.9z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M35%2C65.1c-1.6%2C0-2.9%2C1.3-2.9%2C2.9c0%2C0.7%2C0.3%2C1.5%2C0.8%2C2h4.2c0.5-0.5%2C0.8-1.2%2C0.8-2C37.9%2C66.4%2C36.6%2C65.1%2C35%2C65.1z%0A%09%09%20M35%2C69.3c-0.4%2C0-0.8-0.4-0.8-0.8s0.4-0.8%2C0.8-0.8s0.8%2C0.4%2C0.8%2C0.8S35.4%2C69.3%2C35%2C69.3z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M43.5%2C66.9c-0.3-1.6-1.8-2.7-3.4-2.4c-1.6%2C0.3-2.7%2C1.8-2.4%2C3.4c0.1%2C0.9%2C0.7%2C1.7%2C1.5%2C2.1h2.7%0A%09%09C43.1%2C69.4%2C43.7%2C68.2%2C43.5%2C66.9z%20M40.7%2C68.9c-0.4%2C0.1-0.9-0.2-0.9-0.7c0-0.4%2C0.3-0.9%2C0.7-0.9c0.4-0.1%2C0.9%2C0.2%2C0.9%2C0.7%0A%09%09C41.5%2C68.4%2C41.2%2C68.9%2C40.7%2C68.9z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M46.9%2C68.7c1.5-0.6%2C2.3-2.2%2C1.7-3.8c-0.6-1.5-2.2-2.3-3.8-1.7c-1.5%2C0.6-2.3%2C2.2-1.7%2C3.8%0A%09%09C43.7%2C68.5%2C45.4%2C69.3%2C46.9%2C68.7z%20M45.9%2C65.8c0.4-0.2%2C0.9%2C0.1%2C1%2C0.5c0.2%2C0.4-0.1%2C0.9-0.5%2C1c-0.4%2C0.2-0.9-0.1-1-0.5%0A%09%09C45.2%2C66.4%2C45.4%2C66%2C45.9%2C65.8z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M52.4%2C66.2c1.4-0.8%2C1.9-2.6%2C1.1-4c-0.8-1.4-2.6-1.9-4-1.1c-1.4%2C0.8-1.9%2C2.6-1.1%2C4C49.2%2C66.5%2C51%2C67%2C52.4%2C66.2z%0A%09%09%20M50.9%2C63.5c0.4-0.2%2C0.9-0.1%2C1.1%2C0.3c0.2%2C0.4%2C0.1%2C0.9-0.3%2C1.1c-0.4%2C0.2-0.9%2C0.1-1.1-0.3C50.4%2C64.2%2C50.5%2C63.7%2C50.9%2C63.5z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M57.4%2C62.7c1.2-1%2C1.4-2.9%2C0.4-4.1c-1-1.2-2.9-1.4-4.1-0.4c-1.2%2C1-1.4%2C2.9-0.4%2C4.1%0A%09%09C54.3%2C63.6%2C56.2%2C63.7%2C57.4%2C62.7z%20M55.4%2C60.3c0.3-0.3%2C0.8-0.2%2C1.1%2C0.1s0.2%2C0.8-0.1%2C1.1s-0.8%2C0.2-1.1-0.1%0A%09%09C55%2C61.1%2C55.1%2C60.6%2C55.4%2C60.3z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M61.7%2C58.4c1-1.2%2C0.9-3.1-0.4-4.1c-1.2-1-3.1-0.9-4.1%2C0.4c-1%2C1.2-0.9%2C3.1%2C0.4%2C4.1%0A%09%09C58.8%2C59.8%2C60.7%2C59.6%2C61.7%2C58.4z%20M59.3%2C56.4c0.3-0.3%2C0.8-0.4%2C1.1-0.1c0.3%2C0.3%2C0.4%2C0.8%2C0.1%2C1.1c-0.3%2C0.3-0.8%2C0.4-1.1%2C0.1%0A%09%09C59.1%2C57.3%2C59%2C56.7%2C59.3%2C56.4z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M65.2%2C53.4c0.8-1.4%2C0.3-3.2-1.1-4s-3.2-0.3-4%2C1.1c-0.8%2C1.4-0.3%2C3.2%2C1.1%2C4C62.6%2C55.3%2C64.4%2C54.8%2C65.2%2C53.4z%0A%09%09%20M62.5%2C51.9c0.2-0.4%2C0.7-0.5%2C1.1-0.3c0.4%2C0.2%2C0.5%2C0.7%2C0.3%2C1.1c-0.2%2C0.4-0.7%2C0.5-1.1%2C0.3S62.3%2C52.3%2C62.5%2C51.9z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M67.7%2C47.9c0.6-1.5-0.2-3.2-1.7-3.8s-3.2%2C0.2-3.8%2C1.7s0.2%2C3.2%2C1.7%2C3.8C65.5%2C50.2%2C67.2%2C49.4%2C67.7%2C47.9z%0A%09%09%20M64.8%2C46.9c0.2-0.4%2C0.6-0.6%2C1-0.5c0.4%2C0.2%2C0.6%2C0.6%2C0.5%2C1c-0.2%2C0.4-0.6%2C0.6-1%2C0.5C64.9%2C47.7%2C64.7%2C47.3%2C64.8%2C46.9z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M69.3%2C42.1c0.3-1.6-0.8-3.1-2.4-3.4c-1.6-0.3-3.1%2C0.8-3.4%2C2.4c-0.3%2C1.6%2C0.8%2C3.1%2C2.4%2C3.4%0A%09%09C67.5%2C44.7%2C69%2C43.6%2C69.3%2C42.1z%20M66.3%2C41.5c0.1-0.4%2C0.5-0.7%2C0.9-0.7c0.4%2C0.1%2C0.7%2C0.5%2C0.7%2C0.9c-0.1%2C0.4-0.5%2C0.7-0.9%2C0.7%0A%09%09C66.5%2C42.4%2C66.2%2C42%2C66.3%2C41.5z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M69.9%2C36c0-1.6-1.3-2.9-2.9-2.9s-2.9%2C1.3-2.9%2C2.9c0%2C1.6%2C1.3%2C2.9%2C2.9%2C2.9C68.5%2C38.9%2C69.9%2C37.6%2C69.9%2C36z%0A%09%09%20M66.7%2C36c0-0.4%2C0.4-0.8%2C0.8-0.8s0.8%2C0.4%2C0.8%2C0.8c0%2C0.4-0.4%2C0.8-0.8%2C0.8S66.7%2C36.4%2C66.7%2C36z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M69.3%2C29.9c-0.3-1.6-1.8-2.7-3.4-2.4c-1.6%2C0.3-2.7%2C1.8-2.4%2C3.4s1.8%2C2.7%2C3.4%2C2.4C68.5%2C33.1%2C69.6%2C31.5%2C69.3%2C29.9%0A%09%09z%20M66.3%2C30.5c-0.1-0.4%2C0.2-0.9%2C0.7-0.9c0.4-0.1%2C0.9%2C0.2%2C0.9%2C0.7c0.1%2C0.4-0.2%2C0.9-0.7%2C0.9C66.8%2C31.2%2C66.3%2C30.9%2C66.3%2C30.5z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M67.7%2C24.1c-0.6-1.5-2.2-2.3-3.7-1.7c-1.5%2C0.6-2.3%2C2.2-1.7%2C3.8c0.6%2C1.5%2C2.2%2C2.3%2C3.8%2C1.7%0A%09%09C67.5%2C27.3%2C68.3%2C25.6%2C67.7%2C24.1z%20M64.8%2C25.1c-0.2-0.4%2C0.1-0.9%2C0.5-1c0.4-0.2%2C0.9%2C0.1%2C1%2C0.5c0.2%2C0.4-0.1%2C0.9-0.5%2C1%0A%09%09C65.4%2C25.8%2C65%2C25.6%2C64.8%2C25.1z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M65.2%2C18.6c-0.8-1.4-2.6-1.9-4-1.1s-1.9%2C2.6-1.1%2C4c0.8%2C1.4%2C2.6%2C1.9%2C4%2C1.1C65.5%2C21.8%2C66%2C20%2C65.2%2C18.6z%0A%09%09%20M62.5%2C20.1c-0.2-0.4-0.1-0.9%2C0.3-1.1c0.4-0.2%2C0.9-0.1%2C1.1%2C0.3c0.2%2C0.4%2C0.1%2C0.9-0.3%2C1.1S62.7%2C20.5%2C62.5%2C20.1z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M61.7%2C13.6c-1-1.2-2.9-1.4-4.1-0.4c-1.2%2C1-1.4%2C2.9-0.4%2C4.1s2.9%2C1.4%2C4.1%2C0.4C62.6%2C16.7%2C62.7%2C14.8%2C61.7%2C13.6z%0A%09%09%20M59.3%2C15.6c-0.3-0.3-0.2-0.8%2C0.1-1.1s0.8-0.2%2C1.1%2C0.1s0.2%2C0.8-0.1%2C1.1C60.1%2C16%2C59.6%2C15.9%2C59.3%2C15.6z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M57.4%2C9.3c-1.2-1-3.1-0.9-4.1%2C0.4c-1%2C1.2-0.9%2C3.1%2C0.4%2C4.1c1.2%2C1%2C3.1%2C0.9%2C4.1-0.4C58.8%2C12.2%2C58.6%2C10.3%2C57.4%2C9.3%0A%09%09z%20M55.4%2C11.7c-0.3-0.3-0.4-0.8-0.1-1.1c0.3-0.3%2C0.8-0.4%2C1.1-0.1c0.3%2C0.3%2C0.4%2C0.8%2C0.1%2C1.1C56.3%2C11.9%2C55.7%2C12%2C55.4%2C11.7z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M52.4%2C5.8c-1.4-0.8-3.2-0.3-4%2C1.1s-0.3%2C3.2%2C1.1%2C4c1.4%2C0.8%2C3.2%2C0.3%2C4-1.1S53.8%2C6.6%2C52.4%2C5.8z%20M50.9%2C8.5%0A%09%09c-0.4-0.2-0.5-0.7-0.3-1.1s0.7-0.5%2C1.1-0.3c0.4%2C0.2%2C0.5%2C0.7%2C0.3%2C1.1C51.8%2C8.6%2C51.3%2C8.7%2C50.9%2C8.5z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M46.9%2C3.2c-1.5-0.6-3.2%2C0.2-3.7%2C1.7c-0.6%2C1.5%2C0.2%2C3.2%2C1.7%2C3.8c1.5%2C0.6%2C3.2-0.2%2C3.8-1.7%0A%09%09C49.2%2C5.5%2C48.4%2C3.8%2C46.9%2C3.2z%20M45.9%2C6.2c-0.4-0.2-0.6-0.6-0.5-1c0.2-0.4%2C0.6-0.6%2C1-0.5c0.4%2C0.2%2C0.6%2C0.6%2C0.5%2C1%0A%09%09C46.7%2C6.1%2C46.3%2C6.3%2C45.9%2C6.2z%22/%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M41.1%2C1.7c-1.6-0.3-3.1%2C0.8-3.4%2C2.4c-0.3%2C1.6%2C0.8%2C3.1%2C2.4%2C3.4c1.6%2C0.3%2C3.1-0.8%2C3.4-2.4%0A%09%09C43.7%2C3.5%2C42.6%2C2%2C41.1%2C1.7z%20M40.5%2C4.7c-0.4-0.1-0.7-0.5-0.7-0.9c0.1-0.4%2C0.5-0.7%2C0.9-0.7c0.4%2C0.1%2C0.7%2C0.5%2C0.7%2C0.9%0A%09%09C41.4%2C4.5%2C41%2C4.8%2C40.5%2C4.7z%22/%3E%0A%3C/g%3E%0A%3Ccircle%20class%3D%22st0%22%20cx%3D%2235%22%20cy%3D%2236%22%20r%3D%2231.8%22/%3E%0A%3Cg%3E%0A%09%3Cpath%20class%3D%22st1%22%20d%3D%22M35.4%2C66.2c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.1%2C0.1-0.2%2C0.2-0.2c0.5%2C0%2C0.9%2C0%2C1.4%2C0c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2%0A%09%09c0%2C0.1-0.1%2C0.2-0.2%2C0.2C36.3%2C66.2%2C35.9%2C66.2%2C35.4%2C66.2C35.4%2C66.2%2C35.4%2C66.2%2C35.4%2C66.2z%20M34.1%2C66.2C34.1%2C66.2%2C34.1%2C66.2%2C34.1%2C66.2%0A%09%09c-0.5%2C0-0.9%2C0-1.4-0.1c-0.1%2C0-0.2-0.1-0.2-0.2s0.1-0.2%2C0.2-0.2c0.4%2C0%2C0.9%2C0.1%2C1.3%2C0.1c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2%0A%09%09C34.2%2C66.1%2C34.2%2C66.2%2C34.1%2C66.2z%20M38.1%2C66c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.1%2C0.1-0.2%2C0.2-0.2c0.5%2C0%2C0.9-0.1%2C1.3-0.2%0A%09%09c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2s-0.1%2C0.2-0.2%2C0.2C39.1%2C65.9%2C38.6%2C66%2C38.1%2C66C38.1%2C66%2C38.1%2C66%2C38.1%2C66z%20M31.3%2C66C31.3%2C66%2C31.3%2C66%2C31.3%2C66%0A%09%09c-0.5-0.1-0.9-0.1-1.4-0.2c-0.1%2C0-0.2-0.1-0.2-0.2s0.1-0.2%2C0.2-0.2c0.4%2C0.1%2C0.9%2C0.1%2C1.3%2C0.2c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2%0A%09%09C31.5%2C65.9%2C31.4%2C66%2C31.3%2C66z%20M40.8%2C65.6c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.1%2C0-0.2%2C0.2-0.2c0.4-0.1%2C0.9-0.2%2C1.3-0.3c0.1%2C0%2C0.2%2C0%2C0.2%2C0.1%0A%09%09c0%2C0.1%2C0%2C0.2-0.1%2C0.2C41.8%2C65.4%2C41.3%2C65.5%2C40.8%2C65.6C40.8%2C65.6%2C40.8%2C65.6%2C40.8%2C65.6z%20M28.7%2C65.5C28.6%2C65.5%2C28.6%2C65.5%2C28.7%2C65.5%0A%09%09c-0.5-0.1-0.9-0.2-1.4-0.3c-0.1%2C0-0.2-0.1-0.1-0.2c0-0.1%2C0.1-0.2%2C0.2-0.1c0.4%2C0.1%2C0.9%2C0.2%2C1.3%2C0.3c0.1%2C0%2C0.2%2C0.1%2C0.1%2C0.2%0A%09%09C28.8%2C65.5%2C28.8%2C65.5%2C28.7%2C65.5z%20M43.5%2C65c-0.1%2C0-0.2-0.1-0.2-0.1c0-0.1%2C0-0.2%2C0.1-0.2c0.4-0.1%2C0.9-0.3%2C1.3-0.4%0A%09%09c0.1%2C0%2C0.2%2C0%2C0.2%2C0.1c0%2C0.1%2C0%2C0.2-0.1%2C0.2C44.4%2C64.7%2C44%2C64.8%2C43.5%2C65C43.5%2C65%2C43.5%2C65%2C43.5%2C65z%20M26%2C64.8C26%2C64.8%2C26%2C64.8%2C26%2C64.8%0A%09%09c-0.5-0.1-0.9-0.3-1.4-0.4c-0.1%2C0-0.2-0.1-0.1-0.3c0-0.1%2C0.2-0.2%2C0.2-0.1c0.4%2C0.2%2C0.8%2C0.3%2C1.3%2C0.4c0.1%2C0%2C0.2%2C0.1%2C0.1%2C0.2%0A%09%09C26.2%2C64.8%2C26.1%2C64.8%2C26%2C64.8z%20M46%2C64.1c-0.1%2C0-0.2%2C0-0.2-0.1c0-0.1%2C0-0.2%2C0.1-0.3c0.4-0.2%2C0.8-0.3%2C1.2-0.5c0.1%2C0%2C0.2%2C0%2C0.3%2C0.1%0A%09%09s0%2C0.2-0.1%2C0.3C46.9%2C63.7%2C46.5%2C63.9%2C46%2C64.1C46.1%2C64.1%2C46.1%2C64.1%2C46%2C64.1z%20M23.5%2C63.9C23.4%2C63.9%2C23.4%2C63.9%2C23.5%2C63.9%0A%09%09c-0.5-0.2-0.9-0.4-1.3-0.6c-0.1%2C0-0.1-0.2-0.1-0.3c0-0.1%2C0.2-0.1%2C0.3-0.1c0.4%2C0.2%2C0.8%2C0.4%2C1.2%2C0.5c0.1%2C0%2C0.1%2C0.2%2C0.1%2C0.3%0A%09%09C23.6%2C63.9%2C23.5%2C63.9%2C23.5%2C63.9z%20M48.5%2C63c-0.1%2C0-0.1%2C0-0.2-0.1c0-0.1%2C0-0.2%2C0.1-0.3c0.4-0.2%2C0.8-0.4%2C1.2-0.6%0A%09%09c0.1-0.1%2C0.2%2C0%2C0.3%2C0.1c0.1%2C0.1%2C0%2C0.2-0.1%2C0.3C49.4%2C62.5%2C49%2C62.8%2C48.5%2C63C48.6%2C63%2C48.5%2C63%2C48.5%2C63z%20M21%2C62.7%0A%09%09C21%2C62.7%2C20.9%2C62.7%2C21%2C62.7c-0.5-0.2-0.9-0.5-1.3-0.7c-0.1-0.1-0.1-0.2-0.1-0.3c0.1-0.1%2C0.2-0.1%2C0.3-0.1c0.4%2C0.2%2C0.8%2C0.4%2C1.2%2C0.7%0A%09%09c0.1%2C0%2C0.1%2C0.2%2C0.1%2C0.3C21.1%2C62.7%2C21.1%2C62.7%2C21%2C62.7z%20M50.9%2C61.7c-0.1%2C0-0.1%2C0-0.2-0.1c-0.1-0.1%2C0-0.2%2C0.1-0.3%0A%09%09c0.4-0.2%2C0.8-0.5%2C1.1-0.7c0.1-0.1%2C0.2%2C0%2C0.3%2C0c0.1%2C0.1%2C0%2C0.2%2C0%2C0.3c-0.4%2C0.3-0.8%2C0.5-1.1%2C0.8C50.9%2C61.6%2C50.9%2C61.7%2C50.9%2C61.7z%0A%09%09%20M18.7%2C61.4c0%2C0-0.1%2C0-0.1%2C0c-0.4-0.3-0.8-0.5-1.1-0.8c-0.1-0.1-0.1-0.2%2C0-0.3s0.2-0.1%2C0.3%2C0c0.4%2C0.3%2C0.7%2C0.5%2C1.1%2C0.8%0A%09%09c0.1%2C0.1%2C0.1%2C0.2%2C0.1%2C0.3C18.8%2C61.3%2C18.7%2C61.4%2C18.7%2C61.4z%20M53.1%2C60.1c-0.1%2C0-0.1%2C0-0.2-0.1c-0.1-0.1%2C0-0.2%2C0-0.3%0A%09%09c0.4-0.3%2C0.7-0.6%2C1.1-0.8c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3c-0.4%2C0.3-0.7%2C0.6-1.1%2C0.9C53.2%2C60.1%2C53.1%2C60.1%2C53.1%2C60.1z%0A%09%09%20M16.4%2C59.8c0%2C0-0.1%2C0-0.1%2C0c-0.4-0.3-0.7-0.6-1.1-0.9c-0.1-0.1-0.1-0.2%2C0-0.3c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.3%2C0.3%2C0.7%2C0.6%2C1%2C0.9%0A%09%09c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3C16.6%2C59.7%2C16.5%2C59.8%2C16.4%2C59.8z%20M55.2%2C58.4c-0.1%2C0-0.1%2C0-0.1-0.1c-0.1-0.1-0.1-0.2%2C0-0.3%0A%09%09c0.3-0.3%2C0.7-0.6%2C1-0.9c0.1-0.1%2C0.2-0.1%2C0.3%2C0s0.1%2C0.2%2C0%2C0.3c-0.3%2C0.3-0.7%2C0.6-1%2C0.9C55.3%2C58.4%2C55.2%2C58.4%2C55.2%2C58.4z%20M14.4%2C58%0A%09%09c0%2C0-0.1%2C0-0.1-0.1c-0.3-0.3-0.7-0.6-1-1c-0.1-0.1-0.1-0.2%2C0-0.3c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.3%2C0.3%2C0.6%2C0.6%2C1%2C1c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3%0A%09%09C14.5%2C58%2C14.4%2C58%2C14.4%2C58z%20M57.1%2C56.5c0%2C0-0.1%2C0-0.1-0.1c-0.1-0.1-0.1-0.2%2C0-0.3c0.3-0.3%2C0.6-0.7%2C0.9-1c0.1-0.1%2C0.2-0.1%2C0.3%2C0%0A%09%09c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3c-0.3%2C0.3-0.6%2C0.7-0.9%2C1C57.2%2C56.4%2C57.2%2C56.5%2C57.1%2C56.5z%20M12.5%2C56c-0.1%2C0-0.1%2C0-0.1-0.1%0A%09%09c-0.3-0.3-0.6-0.7-0.9-1c-0.1-0.1-0.1-0.2%2C0-0.3c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.3%2C0.4%2C0.6%2C0.7%2C0.9%2C1c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3%0A%09%09C12.6%2C56%2C12.5%2C56%2C12.5%2C56z%20M58.9%2C54.4c0%2C0-0.1%2C0-0.1%2C0c-0.1-0.1-0.1-0.2%2C0-0.3c0.3-0.4%2C0.5-0.7%2C0.8-1.1c0.1-0.1%2C0.2-0.1%2C0.3%2C0%0A%09%09c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3c-0.3%2C0.4-0.5%2C0.7-0.8%2C1.1C59%2C54.3%2C58.9%2C54.4%2C58.9%2C54.4z%20M10.8%2C53.9c-0.1%2C0-0.1%2C0-0.2-0.1%0A%09%09c-0.3-0.4-0.5-0.7-0.8-1.1c-0.1-0.1%2C0-0.2%2C0.1-0.3c0.1-0.1%2C0.2%2C0%2C0.3%2C0.1c0.3%2C0.4%2C0.5%2C0.7%2C0.8%2C1.1c0.1%2C0.1%2C0%2C0.2%2C0%2C0.3%0A%09%09C10.9%2C53.9%2C10.8%2C53.9%2C10.8%2C53.9z%20M60.4%2C52.1c0%2C0-0.1%2C0-0.1%2C0c-0.1-0.1-0.1-0.2-0.1-0.3c0.2-0.4%2C0.5-0.8%2C0.7-1.2%0A%09%09c0.1-0.1%2C0.2-0.1%2C0.3-0.1c0.1%2C0.1%2C0.1%2C0.2%2C0.1%2C0.3c-0.2%2C0.4-0.5%2C0.8-0.7%2C1.2C60.5%2C52.1%2C60.5%2C52.1%2C60.4%2C52.1z%20M9.3%2C51.7%0A%09%09c-0.1%2C0-0.1%2C0-0.2-0.1c-0.2-0.4-0.5-0.8-0.7-1.2c-0.1-0.1%2C0-0.2%2C0.1-0.3c0.1-0.1%2C0.2%2C0%2C0.3%2C0.1C9%2C50.6%2C9.2%2C51%2C9.5%2C51.4%0A%09%09c0.1%2C0.1%2C0%2C0.2-0.1%2C0.3C9.4%2C51.7%2C9.3%2C51.7%2C9.3%2C51.7z%20M61.8%2C49.8C61.7%2C49.8%2C61.7%2C49.8%2C61.8%2C49.8c-0.2-0.1-0.2-0.2-0.2-0.3%0A%09%09c0.2-0.4%2C0.4-0.8%2C0.6-1.2c0-0.1%2C0.2-0.1%2C0.3-0.1c0.1%2C0%2C0.1%2C0.2%2C0.1%2C0.3c-0.2%2C0.4-0.4%2C0.8-0.6%2C1.2C61.9%2C49.7%2C61.8%2C49.8%2C61.8%2C49.8z%0A%09%09%20M8%2C49.3c-0.1%2C0-0.1%2C0-0.2-0.1c-0.2-0.4-0.4-0.8-0.6-1.2c0-0.1%2C0-0.2%2C0.1-0.3c0.1%2C0%2C0.2%2C0%2C0.3%2C0.1C7.8%2C48.2%2C8%2C48.6%2C8.2%2C49%0A%09%09C8.2%2C49.1%2C8.2%2C49.2%2C8%2C49.3C8.1%2C49.3%2C8%2C49.3%2C8%2C49.3z%20M62.9%2C47.3C62.9%2C47.3%2C62.8%2C47.3%2C62.9%2C47.3c-0.2-0.1-0.2-0.2-0.2-0.3%0A%09%09c0.2-0.4%2C0.3-0.8%2C0.5-1.3c0-0.1%2C0.1-0.2%2C0.2-0.1c0.1%2C0%2C0.2%2C0.1%2C0.1%2C0.2c-0.1%2C0.4-0.3%2C0.9-0.5%2C1.3C63%2C47.2%2C63%2C47.3%2C62.9%2C47.3z%0A%09%09%20M6.9%2C46.8c-0.1%2C0-0.2%2C0-0.2-0.1c-0.2-0.4-0.3-0.9-0.5-1.3c0-0.1%2C0-0.2%2C0.1-0.2c0.1%2C0%2C0.2%2C0%2C0.2%2C0.1c0.1%2C0.4%2C0.3%2C0.9%2C0.4%2C1.3%0A%09%09C7.1%2C46.6%2C7.1%2C46.7%2C6.9%2C46.8C7%2C46.8%2C6.9%2C46.8%2C6.9%2C46.8z%20M63.8%2C44.7C63.8%2C44.7%2C63.7%2C44.7%2C63.8%2C44.7c-0.2%2C0-0.2-0.1-0.2-0.3%0A%09%09c0.1-0.4%2C0.2-0.9%2C0.4-1.3c0-0.1%2C0.1-0.2%2C0.2-0.1c0.1%2C0%2C0.2%2C0.1%2C0.1%2C0.2c-0.1%2C0.4-0.2%2C0.9-0.4%2C1.3C63.9%2C44.7%2C63.9%2C44.7%2C63.8%2C44.7z%0A%09%09%20M6.1%2C44.2c-0.1%2C0-0.2-0.1-0.2-0.1c-0.1-0.4-0.2-0.9-0.3-1.3c0-0.1%2C0-0.2%2C0.1-0.2c0.1%2C0%2C0.2%2C0%2C0.2%2C0.1C6%2C43.1%2C6.1%2C43.5%2C6.3%2C44%0A%09%09C6.3%2C44.1%2C6.2%2C44.2%2C6.1%2C44.2C6.1%2C44.2%2C6.1%2C44.2%2C6.1%2C44.2z%20M64.4%2C42.1C64.4%2C42.1%2C64.4%2C42.1%2C64.4%2C42.1c-0.1%2C0-0.2-0.1-0.2-0.2%0A%09%09c0.1-0.4%2C0.2-0.9%2C0.2-1.3c0-0.1%2C0.1-0.2%2C0.2-0.2c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2c-0.1%2C0.5-0.1%2C0.9-0.2%2C1.3C64.6%2C42%2C64.5%2C42.1%2C64.4%2C42.1z%0A%09%09%20M5.5%2C41.5c-0.1%2C0-0.2-0.1-0.2-0.2c-0.1-0.4-0.2-0.9-0.2-1.4c0-0.1%2C0.1-0.2%2C0.2-0.2c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2c0.1%2C0.4%2C0.1%2C0.9%2C0.2%2C1.3%0A%09%09C5.7%2C41.4%2C5.6%2C41.5%2C5.5%2C41.5C5.5%2C41.5%2C5.5%2C41.5%2C5.5%2C41.5z%20M64.8%2C39.4C64.8%2C39.4%2C64.8%2C39.4%2C64.8%2C39.4c-0.1%2C0-0.2-0.1-0.2-0.2%0A%09%09c0-0.4%2C0.1-0.9%2C0.1-1.3c0-0.1%2C0.1-0.2%2C0.2-0.2c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2c0%2C0.5-0.1%2C0.9-0.1%2C1.4C65%2C39.3%2C64.9%2C39.4%2C64.8%2C39.4z%0A%09%09%20M5.1%2C38.9c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.5-0.1-0.9-0.1-1.4c0-0.1%2C0.1-0.2%2C0.2-0.2c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2c0%2C0.5%2C0%2C0.9%2C0.1%2C1.3%0A%09%09C5.3%2C38.7%2C5.2%2C38.8%2C5.1%2C38.9C5.1%2C38.9%2C5.1%2C38.9%2C5.1%2C38.9z%20M65%2C36.7C65%2C36.7%2C65%2C36.7%2C65%2C36.7c-0.1%2C0-0.2-0.1-0.2-0.2%0A%09%09c0-0.2%2C0-0.3%2C0-0.5c0-0.3%2C0-0.6%2C0-0.9c0-0.1%2C0.1-0.2%2C0.2-0.2c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2c0%2C0.3%2C0%2C0.6%2C0%2C0.9c0%2C0.2%2C0%2C0.3%2C0%2C0.5%0A%09%09C65.2%2C36.6%2C65.1%2C36.7%2C65%2C36.7z%20M5%2C36.1L5%2C36.1c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.5%2C0-0.9%2C0-1.4c0-0.1%2C0.1-0.2%2C0.2-0.2%0A%09%09c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2c0%2C0.4%2C0%2C0.9%2C0%2C1.4C5.2%2C36%2C5.1%2C36.1%2C5%2C36.1z%20M64.9%2C34c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.5-0.1-0.9-0.1-1.3%0A%09%09c0-0.1%2C0.1-0.2%2C0.2-0.2c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2c0.1%2C0.5%2C0.1%2C0.9%2C0.1%2C1.4C65.1%2C33.8%2C65%2C33.9%2C64.9%2C34C64.9%2C34%2C64.9%2C34%2C64.9%2C34z%0A%09%09%20M5.1%2C33.4C5.1%2C33.4%2C5.1%2C33.4%2C5.1%2C33.4c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.5%2C0.1-0.9%2C0.2-1.4c0-0.1%2C0.1-0.2%2C0.2-0.2c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2%0A%09%09c-0.1%2C0.4-0.1%2C0.9-0.2%2C1.3C5.3%2C33.3%2C5.2%2C33.4%2C5.1%2C33.4z%20M64.6%2C31.3c-0.1%2C0-0.2-0.1-0.2-0.2c-0.1-0.4-0.2-0.9-0.3-1.3%0A%09%09c0-0.1%2C0-0.2%2C0.2-0.2c0.1%2C0%2C0.2%2C0%2C0.2%2C0.1c0.1%2C0.4%2C0.2%2C0.9%2C0.3%2C1.3C64.8%2C31.1%2C64.7%2C31.2%2C64.6%2C31.3C64.6%2C31.2%2C64.6%2C31.3%2C64.6%2C31.3z%0A%09%09%20M5.5%2C30.7C5.5%2C30.7%2C5.5%2C30.7%2C5.5%2C30.7c-0.1%2C0-0.2-0.1-0.2-0.2c0.1-0.5%2C0.2-0.9%2C0.3-1.3c0-0.1%2C0.1-0.2%2C0.2-0.1%0A%09%09C5.9%2C29%2C6%2C29.1%2C6%2C29.2c-0.1%2C0.4-0.2%2C0.9-0.3%2C1.3C5.7%2C30.7%2C5.6%2C30.7%2C5.5%2C30.7z%20M64%2C28.6c-0.1%2C0-0.2-0.1-0.2-0.1%0A%09%09c-0.1-0.4-0.2-0.9-0.4-1.3c0-0.1%2C0-0.2%2C0.1-0.2c0.1%2C0%2C0.2%2C0%2C0.2%2C0.1c0.1%2C0.4%2C0.3%2C0.9%2C0.4%2C1.3C64.2%2C28.5%2C64.2%2C28.6%2C64%2C28.6%0A%09%09C64.1%2C28.6%2C64%2C28.6%2C64%2C28.6z%20M6.1%2C28.1C6.1%2C28.1%2C6.1%2C28.1%2C6.1%2C28.1c-0.2%2C0-0.2-0.1-0.2-0.2C6%2C27.4%2C6.2%2C27%2C6.3%2C26.5%0A%09%09c0-0.1%2C0.1-0.2%2C0.2-0.1c0.1%2C0%2C0.2%2C0.1%2C0.1%2C0.2c-0.1%2C0.4-0.3%2C0.9-0.4%2C1.3C6.3%2C28%2C6.2%2C28.1%2C6.1%2C28.1z%20M63.2%2C26c-0.1%2C0-0.2%2C0-0.2-0.1%0A%09%09c-0.2-0.4-0.3-0.8-0.5-1.3c0-0.1%2C0-0.2%2C0.1-0.3c0.1%2C0%2C0.2%2C0%2C0.3%2C0.1c0.2%2C0.4%2C0.3%2C0.8%2C0.5%2C1.3C63.4%2C25.8%2C63.4%2C25.9%2C63.2%2C26%0A%09%09C63.3%2C26%2C63.2%2C26%2C63.2%2C26z%20M7%2C25.5C6.9%2C25.5%2C6.9%2C25.5%2C7%2C25.5c-0.2-0.1-0.2-0.2-0.2-0.3c0.2-0.4%2C0.3-0.9%2C0.5-1.3%0A%09%09c0-0.1%2C0.2-0.1%2C0.3-0.1c0.1%2C0%2C0.1%2C0.2%2C0.1%2C0.3c-0.2%2C0.4-0.4%2C0.8-0.5%2C1.3C7.1%2C25.4%2C7%2C25.5%2C7%2C25.5z%20M62.2%2C23.5c-0.1%2C0-0.1%2C0-0.2-0.1%0A%09%09c-0.2-0.4-0.4-0.8-0.6-1.2c0-0.1%2C0-0.2%2C0.1-0.3c0.1-0.1%2C0.2%2C0%2C0.3%2C0.1c0.2%2C0.4%2C0.4%2C0.8%2C0.6%2C1.2C62.4%2C23.3%2C62.4%2C23.4%2C62.2%2C23.5%0A%09%09C62.2%2C23.5%2C62.2%2C23.5%2C62.2%2C23.5z%20M8.1%2C23C8%2C23%2C8%2C23%2C8.1%2C23c-0.2-0.1-0.2-0.2-0.2-0.3c0.2-0.4%2C0.4-0.8%2C0.6-1.2%0A%09%09c0.1-0.1%2C0.2-0.1%2C0.3-0.1c0.1%2C0.1%2C0.1%2C0.2%2C0.1%2C0.3c-0.2%2C0.4-0.4%2C0.8-0.6%2C1.2C8.2%2C23%2C8.1%2C23%2C8.1%2C23z%20M60.9%2C21.1%0A%09%09c-0.1%2C0-0.1%2C0-0.2-0.1c-0.2-0.4-0.5-0.8-0.7-1.1c-0.1-0.1%2C0-0.2%2C0.1-0.3c0.1-0.1%2C0.2%2C0%2C0.3%2C0.1c0.2%2C0.4%2C0.5%2C0.8%2C0.7%2C1.2%0A%09%09C61.1%2C20.9%2C61.1%2C21%2C60.9%2C21.1C61%2C21.1%2C61%2C21.1%2C60.9%2C21.1z%20M9.4%2C20.6c0%2C0-0.1%2C0-0.1%2C0c-0.1-0.1-0.1-0.2-0.1-0.3%0A%09%09c0.2-0.4%2C0.5-0.8%2C0.7-1.2c0.1-0.1%2C0.2-0.1%2C0.3-0.1c0.1%2C0.1%2C0.1%2C0.2%2C0.1%2C0.3c-0.3%2C0.4-0.5%2C0.8-0.7%2C1.1C9.5%2C20.6%2C9.4%2C20.6%2C9.4%2C20.6z%0A%09%09%20M59.4%2C18.8c-0.1%2C0-0.1%2C0-0.2-0.1c-0.3-0.4-0.5-0.7-0.8-1.1c-0.1-0.1-0.1-0.2%2C0-0.3c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.3%2C0.4%2C0.6%2C0.7%2C0.8%2C1.1%0A%09%09c0.1%2C0.1%2C0%2C0.2%2C0%2C0.3C59.5%2C18.8%2C59.5%2C18.8%2C59.4%2C18.8z%20M10.9%2C18.3c0%2C0-0.1%2C0-0.1%2C0c-0.1-0.1-0.1-0.2%2C0-0.3c0.3-0.4%2C0.6-0.7%2C0.8-1.1%0A%09%09c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3c-0.3%2C0.3-0.6%2C0.7-0.8%2C1.1C11%2C18.3%2C10.9%2C18.3%2C10.9%2C18.3z%20M57.8%2C16.7%0A%09%09c-0.1%2C0-0.1%2C0-0.1-0.1c-0.3-0.3-0.6-0.7-0.9-1c-0.1-0.1-0.1-0.2%2C0-0.3c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.3%2C0.3%2C0.6%2C0.7%2C0.9%2C1%0A%09%09c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3C57.9%2C16.6%2C57.8%2C16.7%2C57.8%2C16.7z%20M12.6%2C16.2c0%2C0-0.1%2C0-0.1%2C0c-0.1-0.1-0.1-0.2%2C0-0.3c0.3-0.3%2C0.6-0.7%2C0.9-1%0A%09%09c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3c-0.3%2C0.3-0.6%2C0.7-0.9%2C1C12.7%2C16.2%2C12.7%2C16.2%2C12.6%2C16.2z%20M55.9%2C14.7%0A%09%09c0%2C0-0.1%2C0-0.1-0.1c-0.3-0.3-0.7-0.6-1-0.9c-0.1-0.1-0.1-0.2%2C0-0.3c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.3%2C0.3%2C0.7%2C0.6%2C1%2C0.9%0A%09%09c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3C56%2C14.7%2C56%2C14.7%2C55.9%2C14.7z%20M14.5%2C14.3c-0.1%2C0-0.1%2C0-0.1-0.1c-0.1-0.1-0.1-0.2%2C0-0.3c0.3-0.3%2C0.7-0.6%2C1-0.9%0A%09%09c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3c-0.3%2C0.3-0.7%2C0.6-1%2C0.9C14.6%2C14.3%2C14.5%2C14.3%2C14.5%2C14.3z%20M53.9%2C12.9c0%2C0-0.1%2C0-0.1%2C0%0A%09%09c-0.4-0.3-0.7-0.6-1.1-0.8c-0.1-0.1-0.1-0.2%2C0-0.3c0.1-0.1%2C0.2-0.1%2C0.3%2C0c0.4%2C0.3%2C0.7%2C0.6%2C1.1%2C0.8c0.1%2C0.1%2C0.1%2C0.2%2C0%2C0.3%0A%09%09C54%2C12.8%2C53.9%2C12.9%2C53.9%2C12.9z%20M16.6%2C12.5c-0.1%2C0-0.1%2C0-0.2-0.1c-0.1-0.1-0.1-0.2%2C0-0.3c0.4-0.3%2C0.7-0.6%2C1.1-0.8%0A%09%09c0.1-0.1%2C0.2%2C0%2C0.3%2C0c0.1%2C0.1%2C0%2C0.2%2C0%2C0.3c-0.4%2C0.3-0.7%2C0.5-1.1%2C0.8C16.6%2C12.5%2C16.6%2C12.5%2C16.6%2C12.5z%20M51.7%2C11.3c0%2C0-0.1%2C0-0.1%2C0%0A%09%09c-0.4-0.3-0.8-0.5-1.1-0.7c-0.1-0.1-0.1-0.2-0.1-0.3c0.1-0.1%2C0.2-0.1%2C0.3-0.1c0.4%2C0.2%2C0.8%2C0.5%2C1.2%2C0.7c0.1%2C0.1%2C0.1%2C0.2%2C0.1%2C0.3%0A%09%09C51.8%2C11.2%2C51.7%2C11.3%2C51.7%2C11.3z%20M18.8%2C11c-0.1%2C0-0.1%2C0-0.2-0.1c-0.1-0.1%2C0-0.2%2C0.1-0.3c0.4-0.2%2C0.8-0.5%2C1.2-0.7%0A%09%09c0.1-0.1%2C0.2%2C0%2C0.3%2C0.1c0.1%2C0.1%2C0%2C0.2-0.1%2C0.3c-0.4%2C0.2-0.8%2C0.5-1.1%2C0.7C18.9%2C10.9%2C18.8%2C11%2C18.8%2C11z%20M49.4%2C9.8%0A%09%09C49.3%2C9.8%2C49.3%2C9.8%2C49.4%2C9.8c-0.5-0.2-0.9-0.4-1.3-0.6C48%2C9.2%2C47.9%2C9%2C48%2C8.9c0-0.1%2C0.2-0.1%2C0.3-0.1c0.4%2C0.2%2C0.8%2C0.4%2C1.2%2C0.6%0A%09%09c0.1%2C0.1%2C0.1%2C0.2%2C0.1%2C0.3C49.5%2C9.8%2C49.4%2C9.8%2C49.4%2C9.8z%20M21.1%2C9.6c-0.1%2C0-0.1%2C0-0.2-0.1c0-0.1%2C0-0.2%2C0.1-0.3%0A%09%09c0.4-0.2%2C0.8-0.4%2C1.2-0.6c0.1%2C0%2C0.2%2C0%2C0.3%2C0.1c0%2C0.1%2C0%2C0.2-0.1%2C0.3C22%2C9.2%2C21.6%2C9.4%2C21.1%2C9.6C21.2%2C9.6%2C21.2%2C9.6%2C21.1%2C9.6z%0A%09%09%20M46.9%2C8.7C46.9%2C8.7%2C46.9%2C8.6%2C46.9%2C8.7c-0.5-0.2-0.9-0.4-1.3-0.5c-0.1%2C0-0.2-0.2-0.1-0.3c0-0.1%2C0.1-0.1%2C0.3-0.1%0A%09%09c0.4%2C0.2%2C0.9%2C0.3%2C1.3%2C0.5c0.1%2C0%2C0.1%2C0.2%2C0.1%2C0.3C47.1%2C8.6%2C47%2C8.7%2C46.9%2C8.7z%20M23.6%2C8.4c-0.1%2C0-0.1%2C0-0.2-0.1c0-0.1%2C0-0.2%2C0.1-0.3%0A%09%09c0.4-0.2%2C0.8-0.3%2C1.3-0.5c0.1%2C0%2C0.2%2C0%2C0.2%2C0.1c0%2C0.1%2C0%2C0.2-0.1%2C0.2C24.5%2C8.1%2C24.1%2C8.3%2C23.6%2C8.4C23.6%2C8.4%2C23.6%2C8.4%2C23.6%2C8.4z%0A%09%09%20M44.4%2C7.7C44.3%2C7.7%2C44.3%2C7.7%2C44.4%2C7.7c-0.5-0.1-0.9-0.3-1.4-0.4c-0.1%2C0-0.2-0.1-0.1-0.2c0-0.1%2C0.1-0.2%2C0.2-0.1%0A%09%09C43.6%2C7%2C44%2C7.2%2C44.4%2C7.3c0.1%2C0%2C0.2%2C0.1%2C0.1%2C0.2C44.5%2C7.6%2C44.4%2C7.7%2C44.4%2C7.7z%20M26.1%2C7.5c-0.1%2C0-0.2-0.1-0.2-0.1c0-0.1%2C0-0.2%2C0.1-0.2%0A%09%09C26.5%2C7%2C27%2C6.9%2C27.4%2C6.8c0.1%2C0%2C0.2%2C0%2C0.2%2C0.1c0%2C0.1%2C0%2C0.2-0.1%2C0.2C27.1%2C7.3%2C26.6%2C7.4%2C26.1%2C7.5C26.2%2C7.5%2C26.2%2C7.5%2C26.1%2C7.5z%20M41.7%2C7%0A%09%09C41.7%2C7%2C41.7%2C7%2C41.7%2C7c-0.5-0.1-0.9-0.2-1.4-0.3c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.1%2C0.1-0.2%2C0.2-0.2c0.5%2C0.1%2C0.9%2C0.2%2C1.3%2C0.3%0A%09%09c0.1%2C0%2C0.2%2C0.1%2C0.1%2C0.2C41.9%2C6.9%2C41.8%2C7%2C41.7%2C7z%20M28.8%2C6.8c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.1%2C0-0.2%2C0.1-0.2c0.4-0.1%2C0.9-0.2%2C1.3-0.3%0A%09%09c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2c0%2C0.1-0.1%2C0.2-0.2%2C0.2C29.7%2C6.7%2C29.3%2C6.7%2C28.8%2C6.8C28.8%2C6.8%2C28.8%2C6.8%2C28.8%2C6.8z%20M39.1%2C6.5%0A%09%09C39.1%2C6.5%2C39.1%2C6.5%2C39.1%2C6.5c-0.5-0.1-0.9-0.1-1.4-0.2c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.1%2C0.1-0.2%2C0.2-0.2c0.5%2C0%2C0.9%2C0.1%2C1.4%2C0.2%0A%09%09c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2C39.2%2C6.4%2C39.2%2C6.5%2C39.1%2C6.5z%20M31.5%2C6.4c-0.1%2C0-0.2-0.1-0.2-0.2c0-0.1%2C0.1-0.2%2C0.2-0.2%0A%09%09c0.5-0.1%2C0.9-0.1%2C1.4-0.1C32.9%2C5.9%2C33%2C6%2C33%2C6.1c0%2C0.1-0.1%2C0.2-0.2%2C0.2C32.4%2C6.3%2C31.9%2C6.3%2C31.5%2C6.4C31.5%2C6.4%2C31.5%2C6.4%2C31.5%2C6.4z%0A%09%09%20M36.4%2C6.2C36.4%2C6.2%2C36.4%2C6.2%2C36.4%2C6.2c-0.7%2C0-1.5%2C0-2.2%2C0c0%2C0%2C0%2C0%2C0%2C0C34.1%2C6.2%2C34%2C6.1%2C34%2C6c0-0.1%2C0.1-0.2%2C0.2-0.2%0A%09%09c0.7%2C0%2C1.5%2C0%2C2.2%2C0c0.1%2C0%2C0.2%2C0.1%2C0.2%2C0.2C36.5%2C6.1%2C36.5%2C6.2%2C36.4%2C6.2z%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%09%3Cg%20class%3D%22st2%22%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M17.5%2C26.9c-0.3%2C0.1-0.5%2C0-0.7-0.1c0.4-0.4%2C0.7-1.1%2C0.7-1.6c0-0.6-0.3-1-1.2-0.8c-0.9%2C0.2-1.5%2C0.9-1.5%2C1.8%0A%09%09%09c0%2C2.5%2C3.6%2C1.7%2C3.6%2C5.3c0%2C2.3-1.7%2C4.2-4.3%2C4.9c-1.3%2C0.4-3.6%2C0.7-3.6-1.6c0-1.5%2C1.1-2.6%2C2.4-3c0.7-0.2%2C1.2-0.1%2C1.3%2C0.5%0A%09%09%09c-1.3%2C0.5-1.9%2C1.2-1.9%2C2.3c0%2C1.1%2C0.8%2C1.3%2C1.6%2C1.1c1.3-0.3%2C1.8-1.6%2C1.8-2.8c0-3-3.5-2.8-3.5-5.2c0-1.7%2C1.9-3.5%2C3.9-4.1%0A%09%09%09c0.9-0.2%2C2.7-0.6%2C2.7%2C1.2C18.9%2C25.8%2C18.4%2C26.7%2C17.5%2C26.9z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M22.7%2C26l-0.1%2C0.3c0.3-0.3%2C0.7-0.5%2C1.1-0.6c1.7-0.5%2C2.5-0.1%2C2.5%2C1.6c0%2C0.3%2C0%2C0.7-0.1%2C1.2%0A%09%09%09c-0.5%2C3.6-1.9%2C5.2-3.6%2C5.6c-0.5%2C0.1-1%2C0.1-1.5-0.1l-0.8%2C4.2l-2.4%2C1.3l2.6-12.9L22.7%2C26z%20M24%2C29.2c0.1-0.8%2C0.2-1.3%2C0.2-1.7%0A%09%09%09c0-1-0.4-1.1-0.9-0.9c-0.3%2C0.1-0.6%2C0.3-0.9%2C0.6L21.3%2C33c0.4%2C0.2%2C0.8%2C0.1%2C1.1%2C0C23.1%2C32.8%2C23.5%2C31.9%2C24%2C29.2z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M30.1%2C30.9c0.8-0.2%2C2.2-1.5%2C2.7-2.9l0.7-0.2c-0.9%2C1.9-2.5%2C4-4.6%2C4.6c-1.6%2C0.4-2.4-0.5-2.4-1.9%0A%09%09%09c0-2.1%2C0.9-5.9%2C3.8-6.7c1.3-0.4%2C2.1%2C0%2C2.1%2C1.1c0%2C2-2.1%2C3.7-3.7%2C4.3c0%2C0.3%2C0%2C0.5%2C0%2C0.7C28.8%2C30.9%2C29.5%2C31.1%2C30.1%2C30.9z%20M31%2C24.4%0A%09%09%09c-0.9%2C0.2-1.7%2C2.3-2%2C3.9c1.5-0.4%2C2.5-2%2C2.6-3.1C31.5%2C24.8%2C31.5%2C24.3%2C31%2C24.4z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M37.8%2C23c0-0.4-0.2-0.5-0.6-0.4c-1.4%2C0.4-2.2%2C3.3-2.2%2C5c0%2C1%2C0.2%2C1.7%2C1.2%2C1.4c1.2-0.3%2C2.1-1.2%2C2.8-2.3l0.6-0.2%0A%09%09%09c-0.8%2C1.1-1.7%2C3.4-4.5%2C4.1c-1.3%2C0.4-2.2-0.1-2.2-2.1c0-2.4%2C1-5.8%2C4.2-6.6c0.9-0.2%2C1.8-0.3%2C1.8%2C0.6c0%2C0.2%2C0%2C0.3-0.1%2C0.6%0A%09%09%09c-0.1%2C0-0.2%2C0-0.4%2C0c-0.1%2C0-0.3%2C0.1-0.5%2C0.2C37.7%2C23.3%2C37.8%2C23.1%2C37.8%2C23z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M42.2%2C20.7L41%2C26.5c0%2C0.2-0.1%2C0.4-0.1%2C0.5c0%2C0.4%2C0.2%2C0.6%2C0.8%2C0.4s1.5-1.3%2C2.1-2l0.6-0.2%0A%09%09%09c-0.7%2C0.9-2.6%2C3.6-3.8%2C4c-1.2%2C0.3-2%2C0-2-1.2c0-0.2%2C0-0.5%2C0.1-0.9l1.2-5.8L42.2%2C20.7z%20M41.4%2C17.4c0.7-0.2%2C1.3%2C0.2%2C1.3%2C0.9%0A%09%09%09s-0.6%2C1.4-1.3%2C1.6c-0.7%2C0.2-1.3-0.2-1.3-0.9S40.7%2C17.6%2C41.4%2C17.4z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M50.6%2C18.4l-1.2%2C5.8c0%2C0.2-0.1%2C0.4-0.1%2C0.5c0%2C0.4%2C0.2%2C0.6%2C0.8%2C0.4s1.5-1.3%2C2.1-2l0.6-0.2%0A%09%09%09c-0.7%2C0.9-2.6%2C3.6-3.8%2C4c-1.1%2C0.3-1.8%2C0.1-2-0.7c-0.5%2C0.8-1.2%2C1.7-2.2%2C1.9c-1.6%2C0.4-2-0.6-2-1.5c0-2.8%2C1-6.4%2C4.3-7.3%0A%09%09%09c0.4-0.1%2C0.8-0.1%2C1.1%2C0.1l0.1-0.4L50.6%2C18.4z%20M45.1%2C25.6c0%2C1%2C0.5%2C1%2C0.9%2C0.9c0.4-0.1%2C0.7-0.6%2C1-1.1c0-0.2%2C0-0.4%2C0.1-0.6l0.9-4.5%0A%09%09%09c-0.3-0.2-0.6-0.1-0.8-0.1C46%2C20.5%2C45.1%2C23.4%2C45.1%2C25.6z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M53.7%2C23c0%2C0.2-0.1%2C0.4-0.1%2C0.6c0%2C0.3%2C0.1%2C0.6%2C0.6%2C0.4c0.1%2C0%2C0.3-0.1%2C0.4-0.2c-0.5%2C1.5-1.1%2C1.8-1.7%2C2%0A%09%09%09c-1.2%2C0.3-1.7-0.3-1.7-1.3c0-0.3%2C0-0.5%2C0.1-0.8l1.8-8.9l2.4-1L53.7%2C23z%22/%3E%0A%09%3C/g%3E%0A%09%3Cg%20class%3D%22st2%22%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M17.8%2C40.5c1.1-0.3%2C1.9-0.2%2C2.4%2C0.2c0.6%2C0.4%2C0.8%2C1%2C0.8%2C2c0%2C0.3%2C0%2C0.7-0.1%2C1.1l-1.3%2C7.5%0A%09%09%09c-0.2%2C1.1-0.6%2C2.1-1.2%2C2.9c-0.6%2C0.8-1.4%2C1.3-2.5%2C1.6c-1.1%2C0.3-2%2C0.3-2.5-0.1c-0.5-0.4-0.8-1-0.8-1.9c0-0.2%2C0-0.4%2C0-0.6%0A%09%09%09c0-0.2%2C0-0.4%2C0.1-0.6L14%2C45c0.2-1.2%2C0.6-2.2%2C1.2-2.9C15.9%2C41.4%2C16.7%2C40.8%2C17.8%2C40.5z%20M17.7%2C42.8c-0.4%2C0.1-0.7%2C0.3-0.9%2C0.6%0A%09%09%09c-0.2%2C0.3-0.4%2C0.6-0.4%2C1.1l-1.4%2C7.6c0%2C0.1%2C0%2C0.2-0.1%2C0.4c0%2C0.1%2C0%2C0.2%2C0%2C0.3c0%2C0.3%2C0.1%2C0.6%2C0.3%2C0.7c0.2%2C0.2%2C0.5%2C0.2%2C0.8%2C0.1%0A%09%09%09c0.4-0.1%2C0.7-0.3%2C0.9-0.6c0.2-0.3%2C0.4-0.7%2C0.5-1.1l1.4-7.5c0-0.2%2C0.1-0.5%2C0.1-0.7c0-0.3-0.1-0.6-0.2-0.8%0A%09%09%09C18.3%2C42.7%2C18%2C42.7%2C17.7%2C42.8z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M25.6%2C40.7l-0.8%2C4.1l3.6-1L28%2C46l-3.6%2C1l-1.2%2C6.6l-2.2%2C0.6L23.7%2C39l6.4-1.7l-0.4%2C2.2L25.6%2C40.7z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M33.4%2C38.5l-0.8%2C4.1l3.6-1l-0.4%2C2.2l-3.6%2C1L31%2C51.5l-2.2%2C0.6l2.8-15.2l6.4-1.7l-0.4%2C2.2L33.4%2C38.5z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M36.7%2C49.9l2.8-15.2l6.4-1.7l-0.4%2C2.2l-4.2%2C1.1l-0.8%2C4.1l3.6-1l-0.4%2C2.2l-3.6%2C1l-0.8%2C4.4l4.2-1.1l-0.4%2C2.2%0A%09%09%09L36.7%2C49.9z%22/%3E%0A%09%09%3Cpath%20class%3D%22st1%22%20d%3D%22M50.4%2C31.8c1-0.3%2C1.8-0.3%2C2.4%2C0.1c0.6%2C0.3%2C0.8%2C1.1%2C0.8%2C2.2c0%2C1.3-0.2%2C2.4-0.7%2C3.3c-0.4%2C0.9-1.1%2C1.6-1.9%2C2.2%0A%09%09%09l0.9%2C6.2l-2.3%2C0.6L49%2C40.6l-1.1%2C0.3l-1.1%2C6.3l-2.2%2C0.6l2.8-15.2L50.4%2C31.8z%20M49.2%2C34.2l-0.8%2C4.5l0.9-0.2c0.6-0.2%2C1.1-0.5%2C1.6-1.1%0A%09%09%09c0.4-0.6%2C0.6-1.3%2C0.6-2.2c0-1-0.5-1.4-1.6-1.1L49.2%2C34.2z%22/%3E%0A%09%3C/g%3E%0A%3C/g%3E%0A%3C/svg%3E%0A");
    width: 70px;
    height: 70px;
    transition: 0.5s;
    position: fixed;
    transform: rotate(-45deg);
    bottom: 20px !important;
    left: 20px;
}

.banner_button_hidden:before {
    content: "\f00d";
    color: white;
    background: #af1032;
    font-family: FontAwesome;
    display: block;
    border-radius: 50%;
    border: 2px solid white;
}

#footer-baner .banner_button_hidden {
    display: block;
}

#footer-baner.footer-hidden .banner_button_hidden {
    display: block;
}

.banner_content {
    position: relative;
    overflow: hidden;
}

.banner_button_hidden {
    top: -35px;
    bottom: auto;
}

.hide_show_button .banner_button_hidden {
    bottom: calc(65% - 15px);
    top: auto;
}

#footer-baner.hide_show_button .banner_button.banner_button_show {
    display: none;
}

.header-first-line .header-contact > span {
    display: inline-block;
    width: 195px;
    vertical-align: middle;
}

.breadcrumbs a:after {
    content: "/";
    margin: 0 5px;
}

.breadcrumbs a,
.breadcrumbs span {
    text-transform: capitalize;
}

@media screen and (max-width: 768px) {
    #footer-baner .baner_content .banner_l {
        display: none;
    }

    #footer-baner .baner_content .banner_s {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .time .time_content:after,
    .time .time_content:before,
    .time .time_content > img {
        display: none;
    }

    .bredcrums {
        min-height: 110px;
        height: auto;
        margin-bottom: 20px;
    }

    .step-block .col-item .step-body {
        padding-top: 5px;
    }

    .step-block .col-item .step-body .step-content br {
        display: none;
    }

    .bredcrums .breadcrumbs {
        margin-top: 20px;
    }

    .bredcrums h1 {
        margin-top: 5px;
    }
}

@media screen and (max-width: 480px) {
    .data-table .actions .drop-down > div {
        left: 0;
        margin: 0;
    }

    footer .footer_cop > img {
        height: auto;
        width: 90%;
        margin-left: 5%;
    }

    .banner_button.banner_button_hidden {
        bottom: auto;
        top: -35px;
        right: 3px;
    }

    .hide_show_button .banner_button.banner_button_hidden {
        right: 2px;
        bottom: 2px;
    }

    #footer-baner .baner_content .banner_s {
        display: none;
    }

    #footer-baner .baner_content .banner_img .banner_xs {
        display: block;
        width: 100%;
    }
}

/*End Banner*/
/*VIP Services Offer*/
.vip-offer-cnt {
    margin: 30px 0;
}

.vip-offer-block {
    border-left: 5px solid #345079;
    background: #f4faff;
    padding: 24px;
}

.vip-offer-hdr {
    display: block;
    color: #345079;
    font-family: Oswald;
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.vip-offer-txt {
    margin-bottom: 5px;
}

.vip-offer-red {
    color: #c5030e;
}

.vip-offer-lnk {
    font-weight: 700;
    color: #c5030e;
}

/*END VIP Services Offer*/


/*banner discount*/
.discounts-shortcode {
    display: flex;
    max-width: 905px;
    margin: 40px auto;
    justify-content: space-around;
}

.discounts-shortcode div {
    border: 9px solid #f0f7fd;
    width: 235px;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
    position: relative;
}

.discounts-shortcode div:first-child:after {
    position: absolute;
    content: '';
    display: block;
    height: 60px;
    width: 1px;
    right: -43px;
    background-color: #c2cad7;
}

.discounts-shortcode div:nth-last-of-type(2):after {
    position: absolute;
    content: '';
    display: block;
    height: 60px;
    width: 1px;
    right: -43px;
    background-color: #c2cad7;
}

.discounts-shortcode div:hover {
    transform: scale(1.04);
    transition: .3s;
    box-shadow: 0 3px 10px 1px #013765;
}

.discounts-shortcode div .title {
    font-weight: 300;
    color: #000;
    font-size: 18px;
    font-family: 'Montserrat';
    margin-bottom: 0;
    margin-top: 15px;
}

.discounts-shortcode div .text {
    font-weight: 600;
    color: #000;
    font-size: 18px;
    font-family: 'Montserrat';
    margin-top: 0;
}

@media all and (max-width: 992px) {

}

/* END banner discount*/

/*main page main-text-block-1*/

@media all and (max-width: 425px) {
    .main-text-block-1 h1 {
        margin-top: 50px !important;
    }
}

/* END main page main-text-block-1*/
/*REVIEWS*/
.star {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: 15px;
    background-repeat: no-repeat;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPBAMAAADJ+Ih5AAAALVBMVEUAAAD8vCn8vCn8vCn8vCn8vCn8vCn8vCn8vCn8vCn8vCn8vCn8vCn8vCn8vCktclJHAAAADnRSTlMAmSIR7ndmRN1VzDO7qsycqi4AAABdSURBVAjXYwACJgYoUIQx5BQgNLNfAITB+s4BRG0vjXj3MLLcgEHuHQg82cDABmYsBsqlAOk3BkAGJ5CxAEiD5RpADEYg4xGIwfEk6d4zEENPmIGzEcRQB2JLBgYAkHglJ2+MkVEAAAAASUVORK5CYII=');
    margin: 0 2px;
}

.star.empty {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPBAMAAADJ+Ih5AAAALVBMVEUAAAC1r6+1r6+1r6+1r6+1r6+1r6+1r6+1r6+1r6+1r6+1r6+1r6+1r6+1r6/ksdroAAAADnRSTlMAmSIR7ndmRN1VzDO7qsycqi4AAABdSURBVAjXYwACJgYoUIQx5BQgNLNfAITB+s4BRG0vjXj3MLLcgEHuHQg82cDABmYsBsqlAOk3BkAGJ5CxAEiD5RpADEYg4xGIwfEk6d4zEENPmIGzEcRQB2JLBgYAkHglJ2+MkVEAAAAASUVORK5CYII=');
}

.review-link-icon {
    background-image: url("/files/img/spritesheet-logos.png");
    background-repeat: no-repeat;
    display: inline-block
}

.review-link-icon-sj {
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: -2px -2px;
    background: none;
    font-size: 20px;
    font-weight: 700;
    color: #3d3d3c;
}
.review-link-icon-sj:before{
    content: url(/files/img/sitejabber.svg);
    line-height: 0;
    margin: 0 3px 0 0;
}

.review-link-icon-tp {
    width: 112px;
    height: 29px;
    background-position: -140px -2px
}

.review-page-content {
    margin: 52px 0 50px 0;
}

.review-page-content, .review-page-content * {
    box-sizing: border-box;
}

.review-page-content .container {
    max-width: 1140px;
    width: 100%;
}

.review-text .container {
    padding-bottom: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}

.review-text .h2 {
    font-size: 24px;
    line-height: 34px;
    color: #000;
    font-family: Oswald, sans-serif;
    margin: 0 0 17px 0;
}

.review-text p {
    font-size: 15px;
    line-height: 26px;
    color: #000;
    font-family: Montserrat, sans-serif;
    font-weight: 100;
}

.reviews-items {
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-gap: 0;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    margin: -15px;
}

.reviews-items .reviews-item {
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    padding: 15px 15px;
}

.reviews-items .reviews-item-content {
    position: relative;
    padding: 26px 29px 20px 29px;
    border: 1px solid #DFEBF1;
    background: #fff;
}

.reviews-items .reviews-item-content .lbl {
    font-size: 15px;
    line-height: 15px;
    display: block;
    margin: 0 0 10px 0;
    color: #8d8d8d;
    font-family: Montserrat, sans-serif;
}

.reviews-items .reviews-item-content .name, .reviews-items .reviews-item-content .type {
    font-size: 13px;
    line-height: 22px;
    color: #a6c1d0;
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 100;
}

.reviews-items .reviews-item-content .p {
    margin: 30px 0 28px 0;
}

.reviews-items .reviews-item-content .p p {
    margin: 0;
    font-size: 15px;
    line-height: 22px;
    color: #000;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

.reviews-items .reviews-item-content .ans-block {
    padding: 25px 0 15px 0;
    margin: 24px 0 0 0;
    border-top: 1px solid #e5e5e5;
}

.reviews-items .reviews-item-content .ans-button {
    font-size: 13px;
    line-height: 13px;
    color: #6caeff;
    font-family: Montserrat, sans-serif;
    position: relative;
    padding: 0 10px 0 0;
    color: #6caeff;
    cursor: pointer;
}

.reviews-items .reviews-item-content .ans-button:before {
    position: absolute;
    top: 4px;
    right: 0;
    display: inline-block;
    content: '';
    border: solid #6caeff;
    border-width: 0 1px 1px 0;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all .3s linear;
}

.reviews-items .reviews-item-content .ans-content {
    position: relative;
    padding: 0 0 0 55px;
    font-size: 13px;
    line-height: 20px;
    color: #000;
    font-family: Montserrat, sans-serif;
    font-weight: 100;
    display: none;
    margin: 21px 0 0 0;
}

.reviews-items .reviews-item-content .ans-content.active {
    display: block;
}

.reviews-items .reviews-item-content .ans-content:before {
    position: absolute;
    left: 0;
    top: -10px;
    display: inline-block;
    content: '';
    background-image: url("/files/img/support_icon.png");
    background-repeat: no-repeat;
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
}

.review-links .text_right, .review-links .text_left {
    text-align: right;
}

.review-link {
    display: inline-block;
}

.review-link .lbl {
    font-size: 15px;
    line-height: 15px;
    color: #595959;
    display: block;
    margin: 0 0 8px 0;
    text-align: left;
}

.review-link .lbl b {
    color: #243a59;
}

.review-link .review-link-img a {
    display: block;
    width: 200px;
    height: 76px;
    border: 1px solid #000032;
    background: #000032;
    position: relative;
    padding: 21px 5px 10px 5px;
    text-align: center;
}

.review-link.review-link-sj .review-link-img a {
    padding-top: 26px;
}

.review-link .review-link-img {
    position: relative;
    display: inline-block;
}

.review-link .review-link-img:before {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 100%;
    height: 100%;
    background: #eaf4ff;
    display: block;
    content: '';
}

.review-link.review-link-sj .review-link-img a {
    background: #fff;
    border-color: #e5e5e5;
}
.review-link.review-link-sj .review-link-img a:hover{
    text-decoration: none;
}

.review-link.review-link-tp {
    text-align: right;
    margin: 0 10px 26px 0;
}

.review-link.review-link-sj {
    margin: 0 10px 0 0;
}

.review-links {
    max-width: 380px;
    margin: 19px 0 0 auto;
}

.reviews-filters {
    margin: 0 0 50px 0;
}

.reviews-filters .label {
    display: block;
    margin: 0 0 17px 0;
    font-size: 15px;
    line-height: 15px;
    color: #878787;
    font-family: Montserrat, sans-serif;
    text-align: left;
    font-weight: normal;
    padding: 0;
}

.reviews-filters select {
    width: 100%;
    padding: 8px 15px;
    font-size: 15px;
    line-height: 15px;
    color: #010101;
    font-family: Montserrat, sans-serif;
    border: 1px solid #58606b;
    height: 40px;
    box-shadow: none;
    outline: none;
}

.reviews-filters .container {
    padding: 0;
}

.reviews-paging .pagination {
    margin: 45px 0 0 0;
    text-align: center;
}

h2.nothing-fount-title {
    font-size: 24px;
    line-height: 34px;
    color: #000;
    font-family: Oswald, sans-serif;
    margin: 30px 0 30px 0;
    text-align: center;
}

.reviews-filters .container .col-lg-4 {
    width: 33.333333333%;
    float: left;
}

#footer-row {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 100;
}

#footer-row .icon-close {
    border-radius: 4px;
    width: 35px;
    height: 35px;
    display: block;
    line-height: 35px;
    position: absolute;
    top: 4px;
    right: 15px;
    text-align: center;
    background: #c5030e;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
@media all and (max-width: 991px) {
    #footer-row.first-banner-300writers .icon-close {
        top: -18px;
    }
}
@media all and (max-width: 768px) {
    #footer-row .icon-close {
        top: -4px;
    }
}
@media all and (max-width: 600px) {
    #footer-row.first-banner-300writers {
        display:none !important;
    }
}
@media all and (max-width: 414px) {
    #footer-row .icon-close {
        top: -30px;
    }
}
#footer-row {
    display: block;
    cursor: pointer;
}

#footer-row img {
    width: 100%;

}

#special-offer {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #c5030e;
    color: white;
    padding: 19px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    transform: rotate(-16deg);
    cursor: pointer;
    z-index: 100;
}

.how_its_successful .title .red_text,
.benefits_block .contetn_block .title .red_text {
    color: #c5030e;
}

.aff_block .title:after,
.how_its_successful .title:after,
.benefits_block .contetn_block .title:after {
    content: "";
    width: 170px;
    height: 10px;
    display: block;
    background: url("../../files/img/benefits_title.png");
    margin: 20px 0;
}

.benefits_block .contetn_block .title {
    font-size: 26px;
    color: #243a59;
    font-weight: 400;
    font-family: "Oswald";
}

.benefits_block .contetn_block ul li:before {
    content: "\f00c";
    margin: 0 15px 0 0;
    font-family: "FontAwesome";
    background: #f8faf4;
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    color: #7fa833;
    position: static;
    line-height: 19px;
    border-radius: 50%;
    padding-left: 2px;
}

.benefits_block .contetn_block ul li {
    font-size: 15px;
    line-height: 40px;
    color: #000000;
    font-weight: 500;
    font-family: "Montserrat";
    padding: 0;
    margin: 0;
}

.benefits_block .contetn_block ul {
    padding-left: 0;
}

.benefits_block .contetn_block {
    filter: drop-shadow(0px 5px 10px rgba(36, 58, 89, 0.05));
    background-color: #ffffff;
    border: 1px solid #f6f6f6;
    margin: 40px 100px;
    display: inline-block;
    min-width: 474px;
    padding: 30px;
}

.benefits_block {
    background: url("../../files/img/300benefits.png") no-repeat;
    margin: 20px 0;
}

.how_its_successful .row .title_block {
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    font-family: "Oswald";
}

.how_its_successful .row p {
    font-size: 15px;
    line-height: 26px;
    color: #000000;
    font-weight: 400;
    font-family: "Montserrat";
}

.how_its_successful .title_block:before {
    content: "";
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    background: url("../../files/img/quetions_label.png");
}

.how_its_successful .title_block {
    font-size: 34px;
    color: #243a59;
    font-weight: 400;
    font-family: "Oswald";
    margin-bottom: 25px;
    display: inline-block;
}

.how_its_successful .white_block {
    background: white;
    padding: 45px;
}

.how_its_successful .content_block {

}

.how_its_successful .title {
    font-size: 34px;
    color: #243a59;
    font-weight: 400;
    font-family: "Oswald";
    line-height: 1.5;
    margin: 33px 0;
    padding: 0 45px;
}

.how_its_successful .title:after {
    margin: 10px 0;
}

.how_its_successful:after,
.how_its_successful:before {
    background: url("../../files/img/border_old.png") no-repeat;
    width: 100%;
    display: block;
    height: 20px;
    content: "";
    background-size: 100%;
}

.how_its_successful {
    margin: 25px 0;
    background: url("../../files/img/300success.png") no-repeat;
    background-size: 100% auto;

}

.aff_block:after {
    content: "";
    background: url("../../files/img/img2 (1).svg") no-repeat;
    width: 77px;
    height: 77px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: auto;
}

.aff_block {
    position: relative;
    background: url("../../files/img/img1.svg") no-repeat;
    margin: 25px auto;
}

.aff_block .title:after {
    margin: 40px auto;
}

.aff_block .title {
    font-size: 30px;
    color: #363e4f;
    font-weight: 500;
    font-family: "Oswald";
    display: block;
    text-align: center;
}

.aff_block p .red_text {
    font-weight: bold;
    color: #c5030e;
}

.aff_block p {
    font-size: 20px;
    line-height: 34px;
    color: #000000;
    font-weight: 300;
    font-family: "Montserrat";
    text-align: center;
}

.info_block {
    border-bottom: 1px solid #333;
    margin: 35px auto;
    position: relative;
}

.info_block li:before {
    background: #c5030e;
    display: block;
    width: 30px;
    height: 30px;
    content: "";
    position: absolute;
    left: -32px;
    z-index: -1;
    top: 6px;
}

.info_block:after {
    width: 25%;
    height: 278px;
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    bottom: 5%;
    left: 0;
    background: url("../../files/img/Infografika (3) copy-02.svg") no-repeat;
}

.info_block li p {
    margin: 0;
}

.info_block li {
    font-family: Oswald;
    color: white !important;
    position: relative;
    list-style-type: decimal-leading-zero;
    border-bottom: 2px solid #f2f8ff;
    padding: 12px 0 12px 10px;
}

.info_block li:last-child {
    border-bottom: none;

}

.info_block ol {
    padding-left: 40px;
    border-top: 1px solid #333;
    margin-bottom: 0;
}

.info_block .title {
    background: #345079;
    color: white;
    display: block;
    background: #345079;
    color: white;
    display: block;
    font-size: 20px;
    padding: 20px 20px 50px 20px;
    font-family: Oswald;
}

@media all and (max-width: 1199px) {
    .aff_block {
        background-size: 34%;
        background-position: 0 50%;
    }

    .how_its_successful .title br {
        display: none
    }

    .review-links {
        max-width: 100%;
        margin: 30px 0 0 0;
        text-align: center;
    }

    .review-links .text_right, .review-links .text_left {
        text-align: left;
        display: inline-block;
        margin: 0 15px;
        vertical-align: middle;
    }

    .review-link.review-link-tp {
        margin: 0;
        position: relative;
        /*top: -5px;*/
    }

    .review-text .container {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .review-link.review-link-sj {
        margin: 0;
    }
}

@media all and (max-width: 991px) {
    .aff_block {
        background-size: 34%;
        background-position: 0 0;
    }

    .how_its_successful {
        background-size: auto 215px;
    }

    .how_its_successful .title br {
        display: block;
    }

    .how_its_successful .title {
        margin: 10px 0;
        line-height: 1;
    }

    .how_its_successful .white_block {
        background: white;
        padding: 15px;
    }

    .benefits_block {
        background-size: 100%;
        background-position: 100% 100%;
    }

    .reviews-filters {
        margin: 0 0 40px 0;
    }

    .reviews-items {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
    }
}

@media all and (max-width: 768px) {
    .info_block:after {
        display: none;
    }

    .info_block .title {
        padding: 20px;
    }
}

@media all and (max-width: 568px) {
    .reviews-items {
        column-count: 1;
        -webkit-column-count: 1;
        -moz-column-count: 1;
    }

    .reviews-filters .container .col-lg-4 {
        width: 100%;
        padding-bottom: 15px;
    }

    .reviews-filters {
        margin: 0;
    }

    .reviews-filters .label {
        margin: 0 0 8px 0;
    }

    .review-links .text_right, .review-links .text_left {
        display: block;
        text-align: center;
    }

    .review-link .review-link-img a {
        padding: 10px 5px 10px 5px;
        width: 160px;
        height: 55px;
    }

    .review-link.review-link-sj .review-link-img a {
        padding-top: 14px;
    }

    .review-link.review-link-tp {
        top: auto;
        margin: 0 0 20px 0;
    }

    .review-text .container {
        padding-bottom: 35px;
        margin-bottom: 30px;
    }

    .review-page-content {
        margin: 25px 0 45px 0;
    }

    .reviews-items .reviews-item-content {
        padding: 20px 15px 20px 15px;
    }

    .reviews-items .reviews-item-content .p {
        margin: 15px 0 15px 0;
    }

    .reviews-items .reviews-item-content .ans-block {
        padding: 15px 0 0 0;
        margin: 15px 0 0 0;
    }
}

/*REVIEWS*/

@media only screen and (min-width: 767px) and (max-width: 991px) {
    .essay-vip-account .vip-account-list > li {
        width: calc((100% / 3) - 27px) !important;
        margin: 10px 10px !important;
    }
}

/* affiliate-program-block */
.affiliate-program-block {
    margin: 25px auto;
    display: flex;
    justify-content: space-between;
}

.affiliate-program-block .data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.affiliate-program-block .data .data-img {
    position: absolute;
    right: 0;
    top: 16px;
}

.affiliate-program-block .data .title {
    text-align: center;
    font-family: Oswald;
    font-weight: 600;
    color: #363e4f;
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 35px;
}

.affiliate-program-block .data .title:after {
    position: absolute;
    display: block;
    bottom: -34px;
    content: url("/files/Untitled-1.jpg");
    left: 0;
    right: 0;
}

.affiliate-program-block .data .text {
    font-size: 20px;
    font-family: Montserrat;
    font-weight: 400;
    text-align: center;
}

.affiliate-program-block .data .text span {
    font-family: Montserrat;
    font-weight: 700;
    color: #c52127;
    line-height: 1.5;
}

.affiliate-program-block .wrap-img .small-img {
    display: none;
}

@media only screen and (min-width: 767px) and (max-width: 930px) {
    .affiliate-program-block .wrap-img .large-img {
        max-width: 350px;
    }

    .affiliate-program-block .data .text {
        font-size: 16px;
    }
}

@media all and (max-width: 766px) {
    .affiliate-program-block .wrap-img .small-img {
        display: block;
        max-height: 210px;
    }

    .affiliate-program-block .wrap-img .large-img, .affiliate-program-block .data .data-img {
        display: none;
    }

    .affiliate-program-block .data .text {
        text-align: left;
        font-size: 13.89px;
        line-height: 2.6;
    }

    .affiliate-program-block .data {
        margin-top: -46px;
        padding-left: 11px;
    }

    .affiliate-program-block .data .title {
        font-size: 26.39px;
        top: -11px;
        left: -40px;
    }

    .affiliate-program-block {
        max-width: 320px;
        margin: 73px auto 25px;
    }
}

@media all and (max-width: 640px) {
    .aff_block:after {
        display: none;
    }

    .aff_block {
        background: url("../../files/img/img3_mob.svg") no-repeat;
    }

    .aff_block .title:after {
        margin: 0 auto 10px auto;
    }

    .aff_block .title {
        margin-left: 100px;
        font-size: 26px;
        color: #363e4f;
        font-weight: 500;
        font-family: "Oswald";
        display: block;
        text-align: center;
    }

    .aff_block p {
        padding-left: 100px;
        font-size: 14px;
        line-height: 25px;
        color: #000000;
        font-weight: 300;
        font-family: "Montserrat";
    }

    .how_its_successful .title br {
        display: none;
    }

    .how_its_successful .title {
        margin: 0;
        padding: 0 10px;
        font-size: 28px;
    }

    .how_its_successful .row .title_block {
        margin-bottom: 10px;
    }

    .how_its_successful .white_block {
        padding: 10px;
    }

    .benefits_block {
        background: none;
    }

    .benefits_block .contetn_block {
        min-width: 100%;
        margin: 0;
        padding: 10px

    }

    .benefits_block .contetn_block ul li {
        line-height: 30px;
    }

    .benefits_block .contetn_block .title {
        text-align: center;
        display: block;
    }

    .benefits_block .contetn_block .title:after {
        margin: 20px auto;
    }
}

@media all and (max-width: 342px) {
    .affiliate-program-block .data .text {
        line-height: 2.2;
    }

    .affiliate-program-block .data .title {
        white-space: nowrap;
    }

    .affiliate-program-block .data {
        padding-left: 0;
    }
}

/* end affiliate-program-block */

/*infografika-block*/
.infografika-block {
    margin: 25px auto;
    display: flex;
    border-bottom: 3px solid #345079;
    padding-bottom: 18px;
}

.infografika-block .data-img {
    margin-right: 18px;
}

.infografika-block .data-text span > span {
    background-color: #c5030e;
    color: #fff;
    height: 35px;
    min-width: 35px;
    font-family: Oswald;
    display: inline-block;
    text-align: center;
    font-size: 15.75pt;
    margin-right: 20px;
    line-height: 1.6;
}

.infografika-block .data-text {
    display: flex;
    flex-direction: column;
}

.infografika-block .data-text div > span {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.infografika-block .data-text > div {
    display: flex;
    border-bottom: 3px solid #c8d7ea;
    padding: 10px 0;
}

.infografika-block .data-text > div p {
    font-size: 15pt;
    font-family: Montserrat;
    font-weight: 400;
    margin-bottom: 0;
}

.infografika-block .data-img .mob-title {
    display: none;
}

@media all and (max-width: 992px) {
    .infografika-block .data-img .mob-title {
        display: block;
        max-width: 320px;
    }

    .infografika-block .data-img .desctop-title {
        display: none;
    }

    .infografika-block {
        max-width: 320px;
        flex-direction: column;
    }

    .infografika-block .data-text > div:last-child {
        border-right: 3px solid #c8d7ea;
        border-bottom: 3px solid #345079;
    }

    .infografika-block {
        border: none;
    }

    .infografika-block .data-text > div:nth-last-of-type(2), .infografika-block .data-text > div:nth-last-of-type(3) {
        border-right: 3px solid #c8d7ea;
        position: relative;
    }

    .infografika-block .data-text > div p {
        font-size: 12px;
        z-index: 9;
    }

    .infografika-block .data-text div > span {
        justify-content: unset;
    }

    .infografika-block .data-text > div:nth-last-of-type(4) {
        position: relative;
    }

    .infografika-block .data-text > div:nth-last-of-type(5) {
        position: relative;
    }

    .infografika-block .data-text > div:nth-last-of-type(5):after {
        position: absolute;
        right: 0;
        content: url("/files/Untitlwed-min.png");
    }

    .infografika-block .data-text > div:nth-last-of-type(5):before {
        position: absolute;
        left: 0;
        content: url("/files/Unwewtitled-min.png");
        bottom: -5px;
    }

    .infografika-block .data-text > div:nth-last-of-type(4):after {
        display: block;
        width: 3px;
        height: 60px;
        right: 0;
        position: absolute;
        content: '';
        bottom: 0;
        background-color: #c8d7ea;
    }

    .infografika-block .data-text > div:nth-last-of-type(3):after {
        position: absolute;
        right: 0;
        content: url("/files/Uasdasdnwewtitled-min.png");
        bottom: -5px;
    }

    .infografika-block .data-text > div:nth-last-of-type(2):before {
        position: absolute;
        left: 3px;
        content: url("/files/asdxfe3454.png");
        bottom: 0;
    }

    .infografika-block .data-text > div {
        padding-right: 45px;
    }

    .discounts-shortcode div:first-child:after,
    .discounts-shortcode div:nth-last-of-type(2):after {
        right: -12px;
    }
}

@media all and (max-width: 767px) {
    .images_float {

        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .discounts-shortcode {
        max-width: 320px;
        flex-direction: column;
        align-items: center;
    }

    .discounts-shortcode div {
        margin-top: 40px;
    }

    .discounts-shortcode div:first-child:after, .discounts-shortcode div:nth-last-of-type(2):after {
        right: inherit;
        bottom: -59px;
        transform: rotate(90deg);
    }
}

@media all and (max-width: 335px) {
    .infografika-block .data-img .mob-title {
        max-width: 290px;
    }
}

/*end infografika-block*/

/*top-10-writers*/
.top-10-writers {
    margin: 25px auto;
    border: 1px solid #dfebf1;
    min-height: 350px;
}

.top-10-writers .data .text-data {
    display: flex;
    justify-content: center;
    position: relative;
    height: 350px;
}

.top-10-writers .data .text-data > img:first-child {
    position: absolute;
    left: 0;
    bottom: 0;
}

.top-10-writers .data .text-data > img:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
}

.top-10-writers .data .chunk-text .title {
    max-width: 180px;
    margin: 0 auto 20px;
    color: #282f39;
    font-family: Oswald;
    font-weight: 600;
    position: relative;
    text-align: center;
    font-size: 24px;
    letter-spacing: 2px;
}

.top-10-writers .data .chunk-text .title img {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
}

.top-10-writers .data .chunk-text .title:after {
    position: absolute;
    content: url("/files/Untitled-7.png");
    bottom: -30px;
    left: -5px;
    right: 0;
    margin: auto;
}

.top-10-writers .data .chunk-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 457px;
}

.top-10-writers .data .chunk-text .text {
    text-align: center;
    color: #000;
    font-family: Montserrat;
    font-weight: 300;
    padding: 25px 0 15px;
    line-height: 1.5;
}

.top-10-writers .data .chunk-text .text span {
    font-weight: 700;
}

.top-10-writers .data .chunk-text a {
    background-color: #c5030e;
    color: #fff;
    font-size: 17px;
    font-family: Oswald;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    transition: .3s;
    width: 190px;
    height: 33px;
    line-height: 33px;
    position: relative;
    padding-left: 18px;
}

.top-10-writers .data .chunk-text a:hover {
    transition: .3s;
    transform: scale(1.04);
    box-shadow: 0 0 10px #c5030e;
    text-decoration: none;
}

.top-10-writers .data .chunk-text a img {
    position: absolute;
    right: 0;
    top: -1px;
    border-left: 1px solid #fff;
}

@media all and (max-width: 1023px) {
    .top-10-writers .data .text-data > img:last-child {
        display: none;
    }

    .top-10-writers .data .text-data {
        justify-content: space-between;
    }

    .top-10-writers .data .text-data > img:first-child {
        position: static;
        max-height: 276px;
        margin: auto;
    }

    .top-10-writers {
        padding: 10px;
    }
}

@media all and (max-width: 767px) {
    .top-10-writers .data .text-data {
        flex-direction: column-reverse;
        align-items: center;
    }

    .top-10-writers {
        max-width: 320px;
        height: 620px;
        overflow: hidden;
    }

    .top-10-writers .data .text-data {
        height: 620px;
        justify-content: flex-end;
    }

    .top-10-writers .data .text-data > img:first-child {
        position: absolute;
        bottom: 0;
        left: -56px;
    }

    .top-10-writers .data .chunk-text {
        max-width: 233px;
        margin-top: 45px;
    }
}

@media all and (max-width: 335px) {
    .top-10-writers {
        margin-left: -15px;
        min-width: 320px;
    }
}

/*end top-10-writers*/

/*vip-support-ensures*/
.vip-support-ensures {
    margin: 50px auto 25px;
    display: flex;
    border: 1px solid #dfebf1;
    max-height: 230px;
    background: url("/files/Untitled-12-min.png") no-repeat right;
    background-position-y: 100%;
}

.vip-support-ensures > img {
    min-height: 250px;
    margin-top: -38px;
}

.vip-support-ensures .data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Montserrat;
    font-size: 15px;
    color: #000;
    max-width: 581px;
}

.vip-support-ensures .data p {
    margin-bottom: 30px;
}

.vip-support-ensures .data span {
    position: relative;
    color: #282f39;
    font-family: Oswald;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 2px;
}

.vip-support-ensures .data span img {
    position: absolute;
    top: -25px;
    left: 80px;
}

.vip-support-ensures .data a {
    background-color: #c5030e;
    color: #fff;
    font-size: 17px;
    font-family: Oswald;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    transition: .3s;
    width: 190px;
    height: 33px;
    line-height: 33px;
    position: relative;
    padding-left: 18px;
}

.vip-support-ensures .data a:hover {
    transition: .3s;
    transform: scale(1.04);
    box-shadow: 0 0 10px #c5030e;
    text-decoration: none;
}

.vip-support-ensures .data a img {
    position: absolute;
    right: 0;
    top: -1px;
    border-left: 1px solid #fff;
}

@media all and (max-width: 767px) {
    .vip-support-ensures {
        max-width: 320px;
        flex-direction: column-reverse;
        height: 495px;
        max-height: 495px;
        justify-content: space-between;
    }

    .vip-support-ensures .data {
        align-items: center;
        margin-top: 46px;
    }

    .vip-support-ensures .data span {
        text-align: center;
        display: block;
        text-align: center;
    }

    .vip-support-ensures .data span img {
        right: 0;
        left: 0;
        margin: auto;
    }

    .vip-support-ensures .data p {
        text-align: center;
        line-height: 1.7;
    }
}

/*end vip-support-ensures*/

/*vip-services*/
.vip-services {
    margin: 25px auto;
    border: 1px solid #dfebf1;
    background: url("/files/Untitled-14-min.png") no-repeat right;
    height: 610px;
    padding: 48px 45px 0;
}

.vip-services .title {
    color: #282f39;
    font-size: 24px;
    font-family: Oswald;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
}

.vip-services .title img {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
}

.vip-services .title:after {
    position: absolute;
    content: url("/files/Untitled-7.png");
    bottom: -30px;
    left: -5px;
    right: 0;
    margin: auto;
}

.vip-services a {
    background-color: #c5030e;
    color: #fff;
    font-size: 17px;
    font-family: Oswald;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    transition: .3s;
    width: 212px;
    height: 33px;
    line-height: 33px;
    position: relative;
    padding-left: 18px;
    margin: 25px auto 45px;
}

.vip-services a:hover {
    transition: .3s;
    transform: scale(1.04);
    box-shadow: 0 0 10px #c5030e;
    text-decoration: none;
}

.vip-services a img {
    position: absolute;
    right: 0;
    top: -1px;
    border-left: 1px solid #fff;
}

.vip-services .data > div {
    display: flex;
    margin-bottom: 22px;
}

.vip-services .data > div .price {
    background-color: #f5f5f5;
    border-radius: 40px;
    min-width: 230px;
    margin-right: 28px;
    height: 25px;
}

.vip-services .data > div .price p {
    background-color: #345079;
    border-radius: 40px;
    font-size: 14px;
    color: #fff;
    font-family: Montserrat;
    text-align: center;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 500;
}

.vip-services .data > div:nth-last-of-type(7) .price p {
    width: 58px;
}

.vip-services .data > div:nth-last-of-type(6) .price p, .vip-services .data > div:nth-last-of-type(5) .price p, .vip-services .data > div:nth-last-of-type(4) .price p {
    width: 70px;
}

.vip-services .data > div:nth-last-of-type(3) .price p {
    width: 190px;
}

.vip-services .data > div:nth-last-of-type(2) .price p {
    width: 215px;
}

.vip-services .data .last-block .price p {
    background-color: #ffbe48;
}

.vip-services .data {
    margin-top: 65px;
}

.vip-services .data > div .text p {
    margin-bottom: 0;
    font-size: 15px;
    color: #000;
    font-family: Montserrat;
    font-weight: 300;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vip-services .data .last-block .text p span {
    color: #c5030e;
    font-weight: 600;
}

.vip-services .data .last-block {
    position: relative;
    margin-top: 80px;
}

.vip-services .data .last-block:before {
    position: absolute;
    top: -39px;
    width: 496px;
    height: 1px;
    background-color: #f5f5f5;
    content: '';
    display: inline-block;
}

.vip-services .data .last-block .text p {
    display: unset;
}

@media all and (max-width: 990px) {
    .vip-services {
        background-position-x: 143%;
    }
}

@media all and (max-width: 840px) {
    .vip-services {
        background-position-x: 179%;
    }
}

@media all and (max-width: 767px) {
    .vip-services {
        max-width: 320px;
        height: 865px;
        background: none;
        padding: 48px 24px 0;
        border: none;
        border-top: 1px solid #dfebf1;
        overflow: hidden;
    }

    .vip-services .data > div {
        margin-bottom: 22px;
        flex-direction: column-reverse;
    }

    .vip-services .data > div .text p {
        margin-bottom: 7px;
        text-align: center;
        font-size: 14px;
    }

    .vip-services .data > div .price {
        margin-right: 0;
    }

    .vip-services .data .last-block .text p {
        display: block;
        text-align: center;
    }

    .vip-services .data .last-block:before {
        width: 270px;
    }

    .vip-services a:before {
        position: absolute;
        top: -39px;
        width: 320px;
        height: 1px;
        background-color: #f5f5f5;
        content: '';
        display: inline-block;
        left: -59px;
        right: 0;
        margin: auto;
    }

    .vip-services a {
        margin: 80px auto 0;
    }
}

@media all and (max-width: 335px) {
    .vip-services {
        min-width: 320px;
        margin-left: -15px;
    }
}

/*end vip-services*/
/*page order*/
@media all and (max-width: 414px) {
    .page-logged .page-order-data, .page-logged .page-order-data + .massage_vip_ac {
        display: none;
    }
}

/*page order*/

/* hidden bottom banner */
@media all and (max-width: 767px) {
    #footer-baner {
        display: none !important;
    }
}

@media only screen and (max-device-width: 812px) and (orientation: landscape) {
    #footer-baner {
        display: none !important;
    }
}

/* END hidden bottom banner */

/*WRITING QUALITY*/
.wq-block {
    margin: 30px auto;
    max-width: 1110px;
}

.wq-block .h2 {
    text-align: center;
    padding: 0 0 32px 0;
    margin: 0 0 78px 0;
    position: relative;
    font-size: 28px;
    line-height: 38px;
    color: #000;
    font-weight: 600;
    font-family: Oswald, sans-serif;
}

.wq-block .h2:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    content: '';
    background: url("../../files/wq/arrow.png") no-repeat center;
    width: 164px;
    height: 9px;
}

.wq-items:before, .wq-items:after {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    clear: both;
}

.wq-items {
    margin: 0 -15px;
}

.wq-items .wq-item {
    float: left;
    width: 33.3333%;
    padding: 0 15px;
}

.wq-items .wq-content {
    position: relative;
    height: 225px;
    background: #345079;
    padding: 105px 10px 10px 10px;
    text-align: center;
}

.wq-items .wq-content .p {
    margin: 0;
    font-size: 25px;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
}

.wq-items .wq-content .p2 {
    margin: 13px 0 0 0;
    font-size: 19px;
    line-height: 28px;
    color: #bee3ff;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    position: relative;
}

.wq-items .wq-content .p2:before, .wq-items .wq-content .p2:after {
    position: relative;
    display: inline-block;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #bee3ff;
    margin: 0 10px;
    top: -3px;
}

.wq-items .wq-content .p2:before {
    margin-left: 0;
}

.wq-items .wq-content .p2:after {
    margin-right: 0;
}

.wq-items .wq-content .wq-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: -47px;
    display: inline-block;
    width: 120px;
    height: 120px;
    margin: auto;
}

.wq-items .wq-content .wq-icon1 {
    background: url("../../files/wq/standard-icon.svg") no-repeat center;
    background-size: contain;
}

.wq-items .wq-content .wq-icon2 {
    background: url("../../files/wq/premium-icon.svg") no-repeat center;
    background-size: contain;
}

.wq-items .wq-content .wq-icon3 {
    background: url("../../files/wq/supreme-icon.svg") no-repeat center;
    background-size: contain;
}

.wq-items .wq-content .wq-hint {
    position: absolute;
    right: 15px;
    top: 14px;
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url("../../files/wq/q-1.svg") no-repeat center;
    cursor: pointer;
}

.wq-items .wq-content .wq-hint:hover, .wq-items .wq-content.active .wq-hint {
    background: url("../../files/wq/q-2.svg") no-repeat center;
}

.wq-items .wq-content .wq-hint-text {
    display: none;
    position: absolute;
    right: 20px;
    top: 45px;
    border: 1px solid rgb(193, 217, 242);
    background: rgba(249, 249, 249, .902);
    width: 90%;
    padding: 15px;
}

.wq-items .wq-content.active .wq-hint-text {
    display: block;
    z-index: 1;
}

.wq-items .wq-content .wq-hint-text ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wq-items .wq-content .wq-hint-text ul li {
    position: relative;
    padding: 0 0 0 13px;
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    text-align: left;
    font-weight: 500;
}

.wq-items .wq-content .wq-hint-text ul li:last-child {
    margin: 0;
}

.wq-items .wq-content .wq-hint-text ul li:before {
    position: absolute;
    left: 0;
    top: 10px;
    display: inline-block;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c5030e;
}

.wq-items .wq-content .wq-hint-text ul li span {
    display: block;
    margin: 15px 0 0 0;
    font-weight: 300;
}

@media all and (max-width: 991px) {
    .wq-items .wq-item {
        width: 100%;
        padding-bottom: 15px;
    }
}

/*WRITING QUALITY*/
/* snackbar */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #eaf6ed;
    color: #002e5e;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    left: 50%;
    bottom: 130px;
    height: 60px;
    z-index: 99999;
    border: 2px solid #3dbc5f
}

#snackbar i {
    color: #3dbc5f;
    margin-right: 10px;
    font-size: 26px
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein .5s, fadeout .5s 2.5s;
    animation: fadein .5s, fadeout .5s 2.5s;
    display: flex !important;
    justify-content: start;
    align-items: center
}

.link-event:hover {
    cursor: pointer;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0
    }
    to {
        bottom: 130px;
        opacity: 1
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0
    }
    to {
        bottom: 130px;
        opacity: 1
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 130px;
        opacity: 1
    }
    to {
        bottom: 0;
        opacity: 0
    }
}

@keyframes fadeout {
    from {
        bottom: 130px;
        opacity: 1
    }
    to {
        bottom: 0;
        opacity: 0
    }
}

/* END snackbar */
body .global-cookie:not(#cookieBox) {
    display: none!important;
}
body .cookie-policy-block .button {
    filter: contrast(.5);
    pointer-events: none;
}
body .cookie-policy-block {
    background-color: white;
    border: solid #e2e7eb 1px;
    box-shadow: 0 2px 6px -1px rgb(0 0 0 / 15%);
    padding: 20px;
    box-sizing: border-box;
}
body .global-cookie .cookie-policy-block{
    left: 10px;
    bottom: 195px;
    right: auto;
    top: auto;
    max-width: 620px;
    border-radius: 5px;
    margin: 6px;
    position: fixed;
    z-index: 999999;
}
body .cookie-policy-block .data-row {
    display: table-row;
}
body .cookie-policy-block .data-col {
    display: table-cell;
    vertical-align: middle;
}
body .cookie-policy-block .text-col {
    padding: 0 20px 0 80px;
}
body .cookie-policy-block .text-col.visible {
    background: url(/ws/images/cookie.png) 0 center no-repeat;
}
body .cookie-policy-block p {
    margin: 0;
    color: #5b5b65;
    font-size: 13px;
    line-height: 1.6em;
}
body .cookie-policy-block .read-more {
    white-space: nowrap;
    display: inline-block;
    color: #1eba59;
}
body.cookie-policy-block .data-col {
    display: table-cell;
    vertical-align: middle;
}
body .cookie-policy-block .button {
    line-height: 1em;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    width: 80px;
    min-width: 0;
    background: #1eba59;
    color: white;
    border-radius: 8px;
}
body .cookie-policy-block .mobile.button-col {
    text-align: center;
}
body .cookie-policy-block .mobile.button-col {
    display: none;
}
@media (max-width:640px) {
    body .global-cookie .cookie-policy-block{
        left: 0;
        bottom: auto;
        right: auto;
        top: 160px;
    }
}
@media screen and (max-width: 480px) {
    body .cookie-policy-block .text-col {
        padding: 0;
        background-image: none!important;
    }
    body .cookie-policy-block .button-col {
        display: none;
    }
    body .cookie-policy-block .mobile.button-col {
        display: block;
        padding-top: 12px;
    }
}
.home-calc-bg .main-pic {
    position: absolute;
    right: 0;
    bottom: -63px;
    height: 90%;
}
@media (max-width:1680px) {
    .home-calc-bg .main-pic {
        bottom: -42px;
        height: 55%;
        width: auto;
    }
}
@media (max-width:1200px) {
    .home-calc-bg .main-pic{
        display: none;
    }
}
.main-text-block-1 h1 {
    color: #fff;
    font-family: Oswald;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin: 0 0 50px 0;
}
.main-text-block-1 h1:before {
    content: url('/files/img/home-h2-before.png');
    position: absolute;
    bottom: -30px;
    left: calc(50% - 83px);
    width: 165px;
}
body .order-form-wrapper.essay-component .essay-order-form table tr.phone-tr td>table>tbody>tr>td:first-child {
    padding-right: 15px;
}
body .summary-sidebar-wrapper .discount-input input[type="button"] {
    line-height: 1;
    top: 4px;
}
body .summary-sidebar-wrapper ul.summary-list li > span span.hint div {
    margin-left: -30px;
}
body .ws-row .ws-column-custom .summary-sidebar-wrapper {
    background-color: #f2f8ff;
}
body .summary-sidebar-wrapper .summary-wrapper .next-step-button-wrapper .next-step {
    background-color: #c5030e;
    border-radius: unset;
    text-transform: uppercase;
    height: 48px;
    line-height: 1.5;
}
@media (width: 1366px) {
    body .summary-sidebar-wrapper ul.summary-list li {
        padding-left: 0;
        margin: 0;
    }
    body .summary-sidebar-wrapper.essay-component .header {
        margin-bottom: 5px;
    }
    body .summary-sidebar-wrapper .discount-input {
        padding: 4px 24px;
    }
    body .summary-sidebar-wrapper .summary-wrapper .wrapper-slider .line {
        margin-bottom: 0;
        margin-top: 0;
    }
    body .summary-sidebar-wrapper .summary-wrapper .summary-list .total {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}
@media all and (max-width: 1023px) {
    body .summary-sidebar-wrapper .summary-wrapper .next-step-button-wrapper .next-step {
        padding: 0 5px;
        width: 90px;
        line-height: 3.3;
    }
    body .summary-sidebar-wrapper .summary-wrapper .next-step-button-wrapper .next-step-button-wrapper-flex {
        padding: 5px 10px;
    }
}
.essay-order-form .t-body > tr.service-revision > td:first-child div::after {
    line-height: 1.5;
}
@keyframes pulse-special-offer {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
#special-offer{
    cursor: pointer;
    opacity: 1;
    display: block;
    position: fixed;
    width: 70px;
    height: 70px;
    left: 30px;
    bottom: 30px;
    background: #ee5547;
    z-index: 999;
    transform: rotate(-45deg);
    text-align: center;
    color: white;
    line-height: 1;
    border-radius: 50%;
    font-size: 15px;
    padding-top: 19px;
    animation: pulse-special-offer 2s infinite;
}
#special-offer.hidden-row:not(.visible-row) {
    display: none!important;
}

/* order form required fields*/
body .ae-order .unset-field {
    /*background: #d9ebcc !important;*/
    border: 1px solid #109BEA!important;
    box-shadow: unset!important;
}
body .order-form-wrapper .data-table > .row > .col.ws-sources .notice-wrapper.unset-field{
    border: none!important;
    box-shadow: none!important;
}
body .order-form-wrapper .data-table > .row > .col.ws-sources .notice-wrapper.unset-field .number-field.form-slim input[name="sources_number"]{
    border: 1px solid #109BEA!important;
    box-shadow: unset!important;
}
body .ws-subject > span.select2 .select2-selection {
    background: transparent;
}
body .order-form-wrapper.essay-component table tbody.t-body tr.phone-tr > td:last-child table tbody tr > td:last-child {
    padding-top: 0;
    position: relative;
}
body .order-form-wrapper.essay-component table tbody.t-body tr.ws-sources-tr > td:last-child .unset-field {
    border: none!important;
}
body .order-form-wrapper.essay-component table tbody.t-body tr.ws-sources-tr > td:last-child .unset-field input[name="sources_number"]{
    border: 1px solid #109BEA!important;
    box-shadow: unset!important;
}
body .ae-order span.unset-field-tag {
    font-family: Montserrat;
    font-weight: 400;
    font-style: normal;
    background-color: transparent;
    color: #3d78b1;
    font-size: 12px;
}
@media (min-width: 1201px) {
    body .order-form-wrapper.essay-component table tbody.t-body tr.phone-tr > td:last-child table tbody tr {
        overflow: unset;
        padding-top: 10px;
    }
    body .order-form-wrapper.essay-component table tbody.t-body tr.phone-tr > td:last-child table tbody tr > td:last-child span.unset-field-tag {
        position: absolute;
        top: -27px;
    }
}

body .ws-sources .notice-wrapper .number-field input {
    background: transparent !important;
}
body .ae-order .error:not(label) {
    background: #fbd3d373 !important;
}
body .ae-order .essay-component .essay-order-form span.unset-field span.selection>span {
    background: transparent;
}
/* END order form required fields*/

@media (max-width: 1365px){
    .data-viewed-site {
        display: none !important;
    }
}
@media (max-width: 767px){
    div#support.support-notifications {
        display: none !important;
    }
}


.service-wrapper.service-speaker-notes small {
    line-height: 1.5 !important;
    display: block;
}
body #order-form.presentation-poster .service-speaker-notes-ppp b::before,
body #order-form.presentation .service-speaker-notes b::before {
    border: 1px #345079 solid;
    background-color: #345079;
    color: #fff;
    line-height: 2;
    top: 1px;
    left: 153px;
    width: 110px;
    letter-spacing: 0.4px;
    text-align: center;
}
/*
body #order-form.note-illustration .ws-illustrations-tr .illustrations-notice::before {
    border: 1px #345079 solid;
    background-color: #345079;
    color: #fff;
    text-align: center;
    margin: 5px 0;
    display: block;
    width: auto;
    height: auto;
    line-height: 1.2;
}
*/
body #order-form.note-illustration .ws-illustrations-tr .illustrations-notice{
    position: relative;
}
body #order-form.note-illustration .ws-illustrations-tr .illustrations-notice::before {
    border: 1px #345079 solid;
    background-color: #345079;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 150px;
    width: auto;
    margin-top: 0;
    top: 0;
    padding: 3px 5px;
    font-size: 12px;
    line-height: 1.2;
    height: 100%;
    font-family: Montserrat;
}
@media(max-width:767px){
    body #order-form.presentation-poster .service-speaker-notes-ppp b::before, body #order-form.presentation .service-speaker-notes b::before {
        left: 100px;
    }
}

body .order-form-wrapper.essay-component table.personal-info-table tbody.t-body tr {
    display: table-row;
    overflow: visible;
}
body .text-page-wrapper ul.iti__country-list li {
    margin-bottom: 0;
    padding-bottom: 5px;
}
body .essay-order-form .calls-tr .checkbox-input {
    margin-top: 20px;
    line-height: 1.5;
}
table.personal-info-table tr:last-child .checkbox-input {
    padding-bottom: 10px;
}


.essay-calculator-wrapper .first-time-order label.el-switch {
    vertical-align: sub;
    margin-bottom: 0px;
    margin-left: 5px;
}
body .essay-calculator-wrapper .first-time-order .el-switch .el-switch-style {
    width: 52px;
}
body .el-switch>input[type="checkbox"]:checked+.el-switch-style {
    background-color: #345079;
}
body .essay-calculator-wrapper .first-time-order label.el-switch {
    vertical-align: sub;
    margin-left: 5px;
}

/* fixed prices styles */
@media(min-width:601px){
    body .essay-calculator-wrapper.essay-component.essay-calculator-essay form {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        position: relative;
        padding-top: 50px;
        gap: 15px;
    }
    body .essay-calculator-wrapper .first-time-order {
        position: absolute;
        margin-left: 0;
        top: 10px;
        right: 10px;
    }
    body .essay-calculator-wrapper.essay-calculator-essay .number-of-pages,
    body .essay-calculator-wrapper.essay-calculator-essay .type-document {
        max-width: 300px;
        width: 33%;
    }
    body .essay-calculator-wrapper form select {
        width: 100%;
    }
    body .essay-calculator-wrapper .number-of-pages {
        padding-top: 0;
    }
    body .essay-calculator-wrapper .select-currency {
        margin-top: 0;
        width: 100%;
        max-width: 300px;
    }
    body .essay-calculator-wrapper .select-currency span.currency {
        width: 100%;
    }
    body .essay-calculator-wrapper .select-currency span.currency input[type=button] {
        width: 23%;
        padding: 0 5px;
        box-sizing: border-box;
    }
}
@media(max-width:600px){
    body .essay-calculator-wrapper .first-time-order {
        text-align: center;
    }
}
.pages-tr span,
.pages-tr span small {
    line-height: 1.3;
    display: inline-block;
    font-size: 14px
}

.pages-tr .pages-count-label .pages-label{
    font-size: 17px;
}
@media(min-width:992px){
    body tr.service-speaker-notes.service-wrapper td:nth-child(3),
    body tr.service-speaker-notes-ppp.service-wrapper td:nth-child(3){
        padding-top: 50px !important;
    }
}
body tr.service-speaker-notes.service-wrapper td:nth-child(1) small,
body tr.service-speaker-notes-ppp.service-wrapper td:nth-child(1) small{
    line-height: 1.4;
    display: block;
    font-size: 13px;
}
@media(max-width:1200px) and (min-width:992px){
    body .order-form-wrapper.essay-component table tbody.t-body tr {
        width: 100%;
    }
}
@media(max-width:1200px){
    body #order-form.note-illustration .ws-illustrations-tr .illustrations-notice::before {
        padding: 4px 5px;
        font-size: 11px;
        max-width: 260px;
    }
    body .order-form-wrapper.essay-component .essay-order-form table tr td:first-child {
        padding-right: 11px;
    }
}
@media all and (max-width: 992px){
    body .order-form-wrapper.essay-component .essay-order-form table tr.service-wrapper td:first-child{
        width: 50%;
    }
    body .order-form-wrapper.essay-component .essay-order-form table tr.service-wrapper td:last-child{
        display: table-row;
        width: auto;
    }
}
@media (max-width: 420px){
    body #order-form.note-illustration .ws-illustrations-tr .illustrations-notice::before {
        padding: 7px 5px;
        margin-bottom: 9px;
        font-size: 11px;
        height: auto;
        max-width: 250px;
        position: static;
        display: block;
        text-align: left;
    }
}

body .essay-miniorder-form .sidebar-total {
    margin: 0px auto;
}
body .essay-miniorder-form .sidebar-total-with-discount label.el-switch  {
    margin-bottom: 0px;
    vertical-align: sub;
}
body .essay-miniorder-form .sidebar-total-with-discount {
    text-align: left;
    padding-left: 30%;
}
body .sidebar-total-with-discount span.save-price-title {
    margin-left: 5px;
    font-size: 15px;
}
body .first_order .essay-miniorder-form form input[type=submit] {
    width: 35%;
}
body .first_order .essay-miniorder-form form .price-title,body .home-calculator .essay-miniorder-form form .price-title,body .text-calculator .essay-miniorder-form form .price-title {
   display: none;
}
body .essay-miniorder-form table tr:last-child{
    position: relative;
}
body .essay-miniorder-form form input[type=submit] {
    background: url(/files/img/calc-order-icon.png) left 15px center no-repeat, url(/files/img/calc-order-line.png) left 45px top repeat-y ;
    background-color: #c5030e;
    padding-left: 40px;
}
body .essay-miniorder-form .sidebar-total-with-discount .mini-order-first-price {
  font-size: 20px;
  font-family: Oswald;
  color: rgb(197, 3, 14);
  font-weight: bold;
}
body .essay-miniorder-form .first-order .sidebar-total-with-discount .mini-order-total-price {
  font-size: 15px;
  font-family: Oswald;
  color: rgb(0, 0, 0);
  text-decoration: line-through;
  font-weight: 400;
}
body .first_order .essay-miniorder-form .hide-first-price .sidebar-total-with-discount .mini-order-total-price{
    font-size: 20px;
    font-family: Oswald;
    color: rgb(197, 3, 14);
    font-weight: bold;
    text-decoration: none;
}

body .essay-miniorder-form .sidebar-total-with-discount{
    margin: 0px auto;
}
body .landing-calc-block .calc-landing.custom-calc [data-type_id="Poem"] .essay-miniorder-form .sidebar-total-with-discount{
    padding:0;
    margin: 0;
}
@media(min-width:601px){
    body .landing-calc-block .calc-landing.custom-calc .ae-miniorder.custom-mini-order[data-type_id="Poem"] form input[type=submit]{
        width: 145px;
        padding-left: 40px;
        background-position: left 8px center,left 34px top;
    }
}
/*calc-order-icon.png
calc-order-line.png */
@media(min-width:601px){
    body .essay-miniorder-form .sidebar-total-with-discount .mini-order-first-price{
        margin-top: 16px;
        display: inline-block;
    }
    body .essay-miniorder-form .first-order .sidebar-total-with-discount .mini-order-total-price {
        display: inline-block;
        margin-top: 16px;
        margin-left: 5px;
    }
    body .first_order .essay-miniorder-form form input[type=submit], body .home-calculator .essay-miniorder-form form input[type=submit], body .text-calculator .essay-miniorder-form form input[type=submit] {
        width: 40%;
        margin-top: 0;
        position: absolute;
        right: 0;
        top: 50px;
    }
    body .essay-component.essay-miniorder-form.miniorder-component {
        height: 430px;
    }
}
@media(max-width:600px){
    body .first_order .essay-miniorder-form form input[type=submit] {
        width: 70%;
        margin-top: 5px;
    }
    body .essay-miniorder-form .sidebar-total-with-discount .mini-order-first-price {
        margin-left: 44px;
    }
    body .essay-miniorder-form .sidebar-total {
        padding-left: 40px;
    }
}
@media(max-width:400px){
    body .essay-miniorder-form .sidebar-total-with-discount {
        text-align: center;
        padding-left: 0%;
    }
}
/*
body .mini-sidebarcalc-wrapper .sidebar-total {
    margin: 7px 0 0 0;
    vertical-align: middle;
    display: inline-block;
    width: 45%;
    text-align: left;
}
*/
body .ae-sidebar-calc.first_order form .sidebar-total {
    font-size: 0;
    line-height: 0;
    width: 39%;
    display: flex;
    float: left;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    height: 45px;
}
body .ae-sidebar-calc .mini-sidebarcalc-wrapper form input[type="submit"],
body .landing-calc-block .ae-sidebar-calc .mini-sidebarcalc-wrapper form input[type="submit"] {
    display: inline-block;
    width: 60%;
    background: url(/files/img/calc-order-icon.png) left 15px center no-repeat, url(/files/img/calc-order-line.png) left 45px top repeat-y;
    background-color: #c5030e;
    padding-left: 40px;
}
.ae-sidebar-calc .mini-sidebarcalc-wrapper .sidebar-total .first-order-price{
    font-size: 20px;
    font-family: Oswald;
    color: #c5030e;
    font-weight: bold;
    line-height: 1.3;
}

.ae-sidebar-calc .mini-sidebarcalc-wrapper .sidebar-total .sidebar-total-price{
    font-size: 20px;
    font-family: Oswald;
    color: #c5030e;
    font-weight: bold;
    line-height: 1.3;
}

.ae-sidebar-calc.first_order .mini-sidebarcalc-wrapper form .sidebar-total .sidebar-total-price{
    font-size: 14px;
    font-family: Oswald;
    color: rgb(0, 0, 0);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0;
}

.ae-sidebar-calc .essay-miniorder-form .sidebar-total,
.ae-sidebar-calc .essay-miniorder-form .sidebar-total-with-discount{
    font-size: 15px;
}
.ae-sidebar-calc .first-time-order {
    margin: 20px auto 10px;
    display: flex;
    flex-direction: row-reverse;
    text-align: left;
    align-items: flex-start;
    justify-content: left;
}
.ae-sidebar-calc .first-time-order b {
    margin: 0 10px 0 10px;
}
body .landing-calc-block .mini-sidebarcalc-wrapper form label.el-switch {
    margin-top: 6px;
}
body .ae-sidebar-calc:not(.first_order) .mini-sidebarcalc-wrapper form input[type="submit"],
body .landing-calc-block .ae-sidebar-calc:not(.first_order) .mini-sidebarcalc-wrapper form input[type="submit"] {
    margin: 5px auto;
    display: block;
    width: 80%;
}
#verify > main > div.landing-calc-block .ae-sidebar-calc:not(.first_order) form div.sidebar-total {
    margin: 0;
    margin-top: 10px;
}

/* .ae-price-table  */
.ae-price-table {
    margin-top: 25px;
    margin-bottom: 35px;
}
.ae-price-table .quality-list{
    text-align: center;
    margin-bottom: 25px;
}
body .essay-price-new-table .select2Buttons ul.select-buttons a {
    color: #323538;
    font-weight: 600;
    text-align: center;
    background-color: #fff;
    border-bottom-width: 1px;
    padding: 10px 0;
    text-decoration: none;
    line-height: 1.7;
    font-family: Oswald;
}
body .essay-price-new-table .select2Buttons ul.select-buttons a:hover,
body .essay-price-new-table .select2Buttons ul.select-buttons a.picked {
    border-bottom-color: transparent;
    background-color: #345079;
    color: #fefefc;
}
body .essay-price-new-table .select2Buttons ul.select-buttons a:hover + .hint i,
body .essay-price-new-table .select2Buttons ul.select-buttons a.picked + .hint i {
    background-image: none;
}
body .essay-price-new-table .select2Buttons ul.select-buttons a:hover::after,
body .essay-price-new-table .select2Buttons ul.select-buttons a.picked::after{
    color: #fff;
}
body .essay-price-new-table .select2Buttons ul.select-buttons a::after {
    content: "";
    display: block;
    color: #656a70;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.4;
    font-family: Montserrat;
}
.ae-price-table .essay-component {
    padding: 58px 60px 48px;
    background-color: #fff;
}
body .essay-price-new-table .row-control .cell-control label {
    font-size: 14px;
    color: #345079;
    font-weight: 600;
    margin-bottom: 5px;
}
body .essay-price-new-table .row-control .cell-control .number-field {
    position: relative;
    border-width: 1px;
    border-color: rgb(214, 215, 225);
    border-style: solid;
    height: 38px;
}
body .essay-price-new-table .row-control .cell-control .number-field::after {
    top: 3px;
    margin-left: 5px;
    font-weight: 400;
    font-size: 14px;
}
body .essay-price-new-table.essay-component .number-field > input[type="text"]:focus:not([readonly]),
body .essay-price-new-table.essay-component .number-field > input[type="text"]:hover,
body .essay-price-new-table.essay-component .number-field > input[type="text"] {
    padding-top: 4px;
}
body .essay-price-new-table .row-control .cell-control.order-currency select,
body .essay-price-new-table .row-control .cell-control.currency select {
    padding-left: 12px;
    color: #323538;
    height: 40px;
    background-color: #fff;
    border: 1px solid rgb(214, 215, 225);
}
body .essay-price-new-table .services-package {
    background: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
    border: none;
}
body .essay-price-new-table .service-panel .vip-services-checker {
    font-weight: 600;
    font-size: 15px;
    color: #c5030e;
}
body .essay-price-new-table .service-panel .vip-services-checker::after {
    top: 14px;
}
body .essay-price-new-table .hint > i {
    background: none;
    position: relative;
}
body .essay-price-new-table .hint > i:before {
    content: '?' !important;
    display: inline-block;
    color: #345079 !important;
    font: normal normal normal 18px/30px FontAwesome !important;
    content: "\f059" !important;
    top: 5px;
    line-height: 16px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 50%;
}
body .essay-price-new-table .select-buttons .hint > i:before {
    background: #fff;
    border-radius: 50%;
    height: 16px;
    line-height: 16px !important;
}
body .essay-price-new-table .extra-services-item .hint > i {
    background: none;
    transition: none;
}
body .essay-price-new-table .extra-services-item .hint > i:before {
    top: -4px;
}
body .essay-price-new-table .hint {
    vertical-align: sub;
    line-height: 14px;
    margin: 0 2px 0 4px;
}
body .essay-price-new-table .row-control .cell-control select {
    color: #323538;
    font-weight: 500;
    height: 40px;
    border-width: 1px;
    border-color: rgb(214, 215, 225);
    border-style: solid;
}
body .essay-price-new-table .services-package-class {
    line-height: normal;
    font-size: 16px;
    font-weight: 400;
    color: #2f353f;
}
body .essay-price-new-table .service-panel .vip-services-list-package .discount{
    font-size: 16px;
    color: #c5030e;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 5px;
    font-weight: 500;
    box-shadow: none;
}
body .essay-price-new-table .service-panel .vip-services-list-package .price-wrapper {
    font-size: 16px;
    color: #c5030e;
    font-weight: 500;
}
body .essay-price-new-table .final-panel div.order-total-title .mini-order-first-price,
body .essay-price-new-table .final-panel div.order-total-title .order-total-price {
    color: #c5030e;
    font-size: 18px;
}
body .essay-price-new-table .service-panel .vip-services-list-package s {
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 400;
}
body .essay-price-new-table .service-panel .vip-services-checker::before {
    background-image: url(/files/img/diamond-red.png);
    width: 21px;
    height: 21px;
    background-size: cover;
    background-repeat: no-repeat;
    top: 8px;
    left: -30px;
}
body .essay-price-new-table.essay-component .service-panel .vip-services-checker::after {
    background-image: url(/files/img/arrow-down-red.svg);
}
body .essay-price-new-table .service-panel .el-switch.el-switch-sm {
    vertical-align: text-top;
    margin-right: 6px;
}
body .essay-price-new-table .service-panel .first-time-order{
  font-size: 15px;
  color: rgb(122, 122, 122);
  line-height: 1.231;
  text-align: center;
  font-weight: 400;
  text-transform: lowercase;
}
@media(min-width:1201px){
    body .essay-price-new-table .service-panel .vip-service > div {
        width: 70%;
    }
    body .essay-price-new-table .service-panel .vip-service > div.vip-services-list {
        width: 30%;
    }
}
body .essay-price-new-table .service-panel .el-switch>input[type="checkbox"]+.el-switch-style {
    background-color: #345079;
    height: 14px;
    width: 26px;
}
body .essay-price-new-table .service-panel .el-switch>input[type="checkbox"]:checked+.el-switch-style {
    background-color: #345079;
}
body .essay-price-new-table .service-panel .el-switch>input[type="checkbox"]:checked+.el-switch-style:before {
    background-color: #ffffff;
}
body .essay-price-new-table .el-switch>input[type="checkbox"]+.el-switch-style:before{
    height: 10px;
    width: 10px;
    top: 0;
}
body .essay-price-new-table .service-panel .vip-service {
    background-color: #fff;
    border: 1px solid #e8e9e9;
}
body .essay-price-new-table .service-panel .vip-service > div {
    margin: 5px auto;
}
body .essay-price-new-table .service-panel .el-switch.el-switch-sm {
    vertical-align: middle;
    margin-right: 6px;
    margin-bottom: 0;
}
body .essay-price-new-table .service-panel .first-time-order span.percent {
    font-size: 16px;
    color: #345079;
    font-weight: 600;
    text-transform: uppercase;
}
body .essay-price-new-table .final-panel div.order-total-submit input {
    background-color: #345079;
    border: 1px solid #345079;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 35px;
}
body .essay-price-new-table .final-panel div.order-total-title {
  font-size: 16px;
  color: rgb(50, 53, 56);
}
body .essay-price-new-table .final-panel div.order-total-title .mini-order-first-price {
    font-size: 20px;
    color: #c5030e;
    font-weight: 700;
}
body .essay-price-new-table .pm-input span i {
    border: none;
    background: transparent;
    font-size: 0;
    border: 0;
}
body .essay-price-new-table .pm-input span {
    width: 48px;
    height: 39px;
    margin-top: -1px;
}
body .essay-price-new-table .pm-input span i.hover, .essay-price-new-table .pm-input span i:hover {
    color: #484b4d;
}
body .essay-price-new-table.essay-component .pm-input .m i:before {
    color: #7c7d7e;
}
body .essay-price-new-table .table-row:nth-child(even) {
    background-color: #d9eaff;
}
body .essay-price-new-table .table-price-node{
    border: none;
    padding: 0 0;
}
body .essay-price-new-table .table-price-node .table-row:first-child .table-cell {
    color: #fff !important;
    background: #c5030e;
    text-transform: uppercase;
    line-height: 41px;
    height: 45px;
    padding: 0;
    font-size: 17px;
    font-weight: 600;
}
body .essay-price-new-table .table-price-node .table-row:first-child .table-cell:first-child {
    color: #fff;
    font-family: Oswald;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
body .essay-price-new-table .table-row .table-cell{
    color: #000;
    font-family: Oswald;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 3px 0;
}
body .essay-price-new-table .table-price-node .table-row .table-cell:first-child {
    color: #c5030e;
    text-transform: uppercase;
    line-height: 41px;
    height: 45px;
    font-family: Oswald;
    font-size: 15px;
    font-weight: 600;
}
body .essay-price-new-table .table-row{
    align-items: center;
}
body .essay-price-new-table .table-row .table-cell.selected {
    color: #1eba59;
}
body .essay-price-new-table .service-panel .checkbox-input > i {
    vertical-align: top;
    margin-top: 10px;
    background-size: cover;
}
@media(max-width:500px){
    .ae-price-table .essay-component {
        padding: 48px 30px;
    }
    body .essay-price-new-table.mobile_s .final-panel div.order-total-submit {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
@media(max-width:400px){
    .ae-price-table .essay-component {
        padding: 20px 15px;
    }
}

body .essay-price-new-table .service-panel .vip-services-list .extra-services-item {
    padding: 15px 10px;
    position: relative;
}
body .essay-price-new-table .service-panel .vip-services-list .extra-services-item b {
    position: static;
    display: inline-block;
    width: calc(100% - 100px);
    vertical-align: top;
    padding-right: 5px;
    font-size: 15px;
}
body .essay-price-new-table .service-panel .vip-services-list .extra-services-item .price-wrapper {
    position: static;
    display: inline-block;
    width: 67px;
    text-align: right;
    color: #01264c;
    font-weight: 600;
    font-size: 15px;
    line-height: normal;
    vertical-align: top;
}
body .essay-price-new-table .service-panel .vip-services-list.open .extra-services{
    width: 290px;
    margin-bottom: 0;
}
body .essay-price-new-table .service-panel .vip-services-list label {
    width: 100%;
}
body .essay-price-new-table.mobile_s .service-panel .vip-services-list label {
    margin-bottom: 0px;
    padding-right: 0;
}
body .essay-price-new-table .service-panel .extra-services .checkbox-input > i {
    margin-top: 0;
}
body .essay-price-new-table .service-panel .vip-services-list .extra-services-item {
    margin-bottom: 0;
}
body .essay-price-new-table .service-panel .vip-services-list label {
    line-height: normal;
}

/* End of .ae-price-table */
.ae-order .essay-component .hint>i{
    width: 17px;
    background-size: contain;
}
.ae-order .summary-sidebar-wrapper ul.summary-list li > span span.hint i{
    background: url(/files/img/question-noactive.png) center no-repeat;
    font-size: 0;
    height: 17px;
    width: 17px;
    background-size: contain;
    vertical-align: middle;
}
.ae-price-table .essay-price-new-table .first-time-order .el-switch.el-switch-sm {
    vertical-align: sub;
}
body .ae-price-table .essay-price-new-table .el-switch>input[type="checkbox"]+.el-switch-style:before {
    width: 1.4em;
    height: 1.4em;
    top: 0.1em;
}
body .ae-price-table .essay-price-new-table .row-control .cell-control .number-field::after {
    top: 20px;
}
body .ae-price-table .essay-price-new-table.essay-component .number-field > input[type="text"] {
    padding: 0 calc(50% - 20px) 0 0;
}
.ae-order #order-form[data-class="poster"] .service-speaker-notes-ppp, .ae-order #order-form[data-class="presentation"] .service-speaker-notes {
    padding-top: 25px;
}
.ae-order #order-form[data-class="poster"] .service-speaker-notes-ppp b::before, .ae-order #order-form[data-class="presentation"] .service-speaker-notes b::before{
    border: 1px #345079 solid;
    background-color: #345079;
    color: #fff;
    text-align: center;
    padding: 0 0 2px;
    height: fit-content;
    line-height: normal;
    font-size: 12px;
}
.ae-miniorder .essay-component.essay-miniorder-form.miniorder-component tr:nth-child(2) {
    display: flex;
    flex-direction: column-reverse;
}
@media(min-width:601px){
    body .ae-miniorder:not(.first_order) .essay-miniorder-form form .sidebar-total {
        text-align: left;
        padding-left: 30%;
        padding-top: 15px;
    }
    body .ae-miniorder:not(.first_order) .essay-miniorder-form form input[type=submit] {
        top: 10px;
    }
}
.page-calculator.t_essay_18 .ae-miniorder .essay-component.essay-miniorder-form.miniorder-component tr:nth-child(2) {
    flex-direction: row;
}
.page-calculator.t_essay_18 .ae-miniorder .essay-component.essay-miniorder-form.miniorder-component tr:last-child td:last-child {
    display: none;
}
.page-calculator.t_essay_18 .ae-miniorder .essay-component.essay-miniorder-form.miniorder-component tr:last-child {
    justify-content: center;
}
.page-calculator.t_essay_18 .ae-miniorder .essay-component.essay-miniorder-form.miniorder-component form input[type=submit] {
    position: relative;
    width: 100%;
    top: auto;
    margin-top: 20px;
}
.page-calculator.t_essay_18 .ae-miniorder .essay-component.essay-miniorder-form.miniorder-component form .price-title {
    display: inline-block;
}
.page-calculator.t_essay_18 .ae-miniorder .essay-component.essay-miniorder-form.miniorder-component form .sidebar-total-with-discount .mini-order-first-price {
    margin-top: 0;
}
.page-calculator.t_essay_18 .ae-miniorder .essay-component.essay-miniorder-form.miniorder-component form .sidebar-total-with-discount {
    text-align: center;
    padding-left: 0;
}
@media(max-width:991px){
    .page-calculator.t_essay_18 .ae-miniorder .essay-component.essay-miniorder-form.miniorder-component tr:nth-child(2) {
        flex-direction: column-reverse;
    }
}
body .page-calculator.t_essay_18 .ae-miniorder:not(.first_order) .essay-miniorder-form form .sidebar-total {
    padding-left: 0;
    text-align: center;
    padding-top: 25px;
}
header .breadcrumbs {
    text-align: center;
}
header .breadcrumbs a, header .breadcrumbs span{
    font-size:15px;
}