@charset "UTF-8";

/* ============================================================================
  Base 
===============================================================================

-------------------------------------------------------------------------------
    1 Animate.css
    2 Magnific-popup
    2 Responsive
    3 Slick
    4 Slick-theme
    5 owl.theme
------------------------------------------------------------------------------- 


===============================================================================
Animate.css
-------------------------------------------------------------------------------
*/

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

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

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

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

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

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        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 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

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

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        -ms-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        -ms-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        -ms-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

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

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

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

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

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

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

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

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

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

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

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

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
}

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

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

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

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

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

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

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

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

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

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

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

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

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

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

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

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

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

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

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

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

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

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

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

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

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

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

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

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

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

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(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: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-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: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

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

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
    }
}

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

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        -ms-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        -ms-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

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

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        -ms-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        -ms-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

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

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-48px);
        transform: scale(.475) translateX(-48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        -ms-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-48px);
        -ms-transform: scale(.475) translateX(-48px);
        transform: scale(.475) translateX(-48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

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

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        -ms-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        -ms-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

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

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    100% {
        opacity: 0;
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        -ms-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        -ms-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
    }
}

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

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(42px);
        transform: scale(.475) translateX(42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(42px);
        -ms-transform: scale(.475) translateX(42px);
        transform: scale(.475) translateX(42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        -ms-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
    }
}

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

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-42px);
        transform: scale(.475) translateX(-42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-42px);
        -ms-transform: scale(.475) translateX(-42px);
        transform: scale(.475) translateX(-42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        -ms-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
    }
}

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

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-transform-origin: center top;
        transform-origin: center top;
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        -ms-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        -ms-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top;
    }
}

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











/* -------------------------------------------------
  Slider
---------------------------------------------------*/
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}










/* -------------------------------------------------
  Slider
---------------------------------------------------*/

.slick-loading .slick-list
{
    background: #fff url('/media/images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/media/fonts/slick.eot');
    src: url('/media/fonts/slick.eot?#iefix') format('embedded-opentype'), url('/media/fonts/slick.woff') format('woff'), url('/media/fonts/slick.ttf') format('truetype'), url('/media/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: 'â†';
}
[dir='rtl'] .slick-prev:before
{
    content: 'â†’';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: 'â†’';
}
[dir='rtl'] .slick-next:before
{
    content: 'â†';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: 'â€¢';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}








/* -------------------------------------------------
  Magnific Popup CSS
---------------------------------------------------*/

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8; }

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden; }

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box; }

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.mfp-align-top .mfp-container:before {
    display: none; }

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto; }

.mfp-ajax-cur {
    cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out; }

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
    cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }

.mfp-loading.mfp-figure {
    display: none; }

.mfp-hide {
    display: none !important; }

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044; }
.mfp-preloader a {
    color: #CCC; }
.mfp-preloader a:hover {
    color: #FFF; }

.mfp-s-ready .mfp-preloader {
    display: none; }

.mfp-s-error .mfp-content {
    display: none; }

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation; }

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
    opacity: 1; }
.mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
    color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%; }

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap; }

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
    margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1; }
.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
    left: 0; }
.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
    right: 0; }
.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
.mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
    line-height: 0; }
.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
.mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto; }

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px; }

.mfp-image-holder .mfp-content {
    max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0; }
    .mfp-img-mobile img.mfp-img {
        padding: 0; }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0; }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px; }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0; }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px; }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0; } }

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75); }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0; }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%; }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px; } }
        
        
        
        
        
        
        
        
/*
* 	Owl Carousel Owl Demo Theme
*	v1.3.2
*/

.owl-theme .owl-controls{
    display: none!important;
    margin-top: 10px;
    text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
    color: #FFF;
    display: inline-block;
    zoom: 1;
    *display: inline;/*IE7 life-saver */
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #869791;
    filter: Alpha(Opacity=50);/*IE7 fix*/
    opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
    text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
    display: inline-block;
    zoom: 1;
    *display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
    display: none;
    width: 6px;
    height: 6px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);/*IE7 fix*/
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
    min-height: 150px;
    background: url(AjaxLoader.gif) no-repeat center center
}

/* icons */

/* -------------------------------------------------
  Flaticon
  Linearicons
  Simple Line Icons
  Themify Icons
---------------------------------------------------*/



/* -------------------------------------------------
  Flaticon
---------------------------------------------------*/

@font-face {
    font-family: "Flaticon";
    src: url("/media/fonts/Flaticon.eot");
    src: url("/media/fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
    url("/media/fonts/Flaticon.woff2") format("woff2"),
    url("/media/fonts/Flaticon.woff") format("woff"),
    url("/media/fonts/Flaticon.ttf") format("truetype"),
    url("/media/fonts/Flaticon.svg#Flaticon") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: "Flaticon";
        src: url("/media/fonts/Flaticon.svg#Flaticon") format("svg");
    }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: "Flaticon";
    font-style: normal;
}

.flaticon-shipped:before { content: "\f100"; }
.flaticon-money-back:before { content: "\f101"; }
.flaticon-support:before { content: "\f102"; }
.flaticon-woman:before { content: "\f103"; }
.flaticon-boss:before { content: "\f104"; }
.flaticon-friendship:before { content: "\f105"; }
.flaticon-sunglasses:before { content: "\f106"; }
.flaticon-jacket:before { content: "\f107"; }
.flaticon-sneakers:before { content: "\f108"; }
.flaticon-watch:before { content: "\f109"; }
.flaticon-necklace:before { content: "\f10a"; }
.flaticon-herbal:before { content: "\f10b"; }
.flaticon-ball:before { content: "\f10c"; }
.flaticon-pijamas:before { content: "\f10d"; }
.flaticon-scarf:before { content: "\f10e"; }
.flaticon-vintage:before { content: "\f10f"; }
.flaticon-pregnant:before { content: "\f110"; }
.flaticon-lock:before { content: "\f111"; }
.flaticon-bed:before { content: "\f112"; }
.flaticon-table:before { content: "\f113"; }
.flaticon-armchair:before { content: "\f114"; }
.flaticon-desk-lamp:before { content: "\f115"; }
.flaticon-sofa:before { content: "\f116"; }
.flaticon-chair:before { content: "\f117"; }
.flaticon-tv:before { content: "\f118"; }
.flaticon-responsive:before { content: "\f119"; }
.flaticon-camera:before { content: "\f11a"; }
.flaticon-plugins:before { content: "\f11b"; }
.flaticon-headphones:before { content: "\f11c"; }
.flaticon-console:before { content: "\f11d"; }
.flaticon-music-system:before { content: "\f11e"; }
.flaticon-monitor:before { content: "\f11f"; }
.flaticon-printer:before { content: "\f120"; }
.flaticon-fax:before { content: "\f121"; }
.flaticon-mouse:before { content: "\f122"; }





/* -------------------------------------------------
  Linearicons
---------------------------------------------------*/


@font-face {
    font-family: 'Linearicons';
    src:  url('/media/fonts/Linearicons.eot?4t1dgh');
    src:  url('/media/fonts/Linearicons.eot?4t1dgh#iefix') format('embedded-opentype'),
    url('/media/fonts/Linearicons.ttf?4t1dgh') format('truetype'),
    url('/media/fonts/Linearicons.woff?4t1dgh') format('woff'),
    url('/media/fonts/Linearicons.svg?4t1dgh#Linearicons') format('svg');
    font-weight: normal;
    font-style: normal;

    src: url(/media/fonts/Linearicons.eot); /* For IE6-8 */
    src: local('Linearicons'),
    local('Linearicons'),
    url('/media/fonts/Linearicons.woff') format('woff'),
    url('/media/fonts/Linearicons.ttf') format('truetype');
}

.linearicons,

[class^="linearicons-"], [class*=" linearicons-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'Linearicons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.linearicons-home:before {
    content: "\e900";
}
.linearicons-home2:before {
    content: "\e901";
}
.linearicons-home3:before {
    content: "\e902";
}
.linearicons-home4:before {
    content: "\e903";
}
.linearicons-home5:before {
    content: "\e904";
}
.linearicons-home6:before {
    content: "\e905";
}
.linearicons-bathtub:before {
    content: "\e906";
}
.linearicons-toothbrush:before {
    content: "\e907";
}
.linearicons-bed:before {
    content: "\e908";
}
.linearicons-couch:before {
    content: "\e909";
}
.linearicons-chair:before {
    content: "\e90a";
}
.linearicons-city:before {
    content: "\e90b";
}
.linearicons-apartment:before {
    content: "\e90c";
}
.linearicons-pencil:before {
    content: "\e90d";
}
.linearicons-pencil2:before {
    content: "\e90e";
}
.linearicons-pen:before {
    content: "\e90f";
}
.linearicons-pencil3:before {
    content: "\e910";
}
.linearicons-eraser:before {
    content: "\e911";
}
.linearicons-pencil4:before {
    content: "\e912";
}
.linearicons-pencil5:before {
    content: "\e913";
}
.linearicons-feather:before {
    content: "\e914";
}
.linearicons-feather2:before {
    content: "\e915";
}
.linearicons-feather3:before {
    content: "\e916";
}
.linearicons-pen2:before {
    content: "\e917";
}
.linearicons-pen-add:before {
    content: "\e918";
}
.linearicons-pen-remove:before {
    content: "\e919";
}
.linearicons-vector:before {
    content: "\e91a";
}
.linearicons-pen3:before {
    content: "\e91b";
}
.linearicons-blog:before {
    content: "\e91c";
}
.linearicons-brush:before {
    content: "\e91d";
}
.linearicons-brush2:before {
    content: "\e91e";
}
.linearicons-spray:before {
    content: "\e91f";
}
.linearicons-paint-roller:before {
    content: "\e920";
}
.linearicons-stamp:before {
    content: "\e921";
}
.linearicons-tape:before {
    content: "\e922";
}
.linearicons-desk-tape:before {
    content: "\e923";
}
.linearicons-texture:before {
    content: "\e924";
}
.linearicons-eye-dropper:before {
    content: "\e925";
}
.linearicons-palette:before {
    content: "\e926";
}
.linearicons-color-sampler:before {
    content: "\e927";
}
.linearicons-bucket:before {
    content: "\e928";
}
.linearicons-gradient:before {
    content: "\e929";
}
.linearicons-gradient2:before {
    content: "\e92a";
}
.linearicons-magic-wand:before {
    content: "\e92b";
}
.linearicons-magnet:before {
    content: "\e92c";
}
.linearicons-pencil-ruler:before {
    content: "\e92d";
}
.linearicons-pencil-ruler2:before {
    content: "\e92e";
}
.linearicons-compass:before {
    content: "\e92f";
}
.linearicons-aim:before {
    content: "\e930";
}
.linearicons-gun:before {
    content: "\e931";
}
.linearicons-bottle:before {
    content: "\e932";
}
.linearicons-drop:before {
    content: "\e933";
}
.linearicons-drop-crossed:before {
    content: "\e934";
}
.linearicons-drop2:before {
    content: "\e935";
}
.linearicons-snow:before {
    content: "\e936";
}
.linearicons-snow2:before {
    content: "\e937";
}
.linearicons-fire:before {
    content: "\e938";
}
.linearicons-lighter:before {
    content: "\e939";
}
.linearicons-knife:before {
    content: "\e93a";
}
.linearicons-dagger:before {
    content: "\e93b";
}
.linearicons-tissue:before {
    content: "\e93c";
}
.linearicons-toilet-paper:before {
    content: "\e93d";
}
.linearicons-poop:before {
    content: "\e93e";
}
.linearicons-umbrella:before {
    content: "\e93f";
}
.linearicons-umbrella2:before {
    content: "\e940";
}
.linearicons-rain:before {
    content: "\e941";
}
.linearicons-tornado:before {
    content: "\e942";
}
.linearicons-wind:before {
    content: "\e943";
}
.linearicons-fan:before {
    content: "\e944";
}
.linearicons-contrast:before {
    content: "\e945";
}
.linearicons-sun-small:before {
    content: "\e946";
}
.linearicons-sun:before {
    content: "\e947";
}
.linearicons-sun2:before {
    content: "\e948";
}
.linearicons-moon:before {
    content: "\e949";
}
.linearicons-cloud:before {
    content: "\e94a";
}
.linearicons-cloud-upload:before {
    content: "\e94b";
}
.linearicons-cloud-download:before {
    content: "\e94c";
}
.linearicons-cloud-rain:before {
    content: "\e94d";
}
.linearicons-cloud-hailstones:before {
    content: "\e94e";
}
.linearicons-cloud-snow:before {
    content: "\e94f";
}
.linearicons-cloud-windy:before {
    content: "\e950";
}
.linearicons-sun-wind:before {
    content: "\e951";
}
.linearicons-cloud-fog:before {
    content: "\e952";
}
.linearicons-cloud-sun:before {
    content: "\e953";
}
.linearicons-cloud-lightning:before {
    content: "\e954";
}
.linearicons-cloud-sync:before {
    content: "\e955";
}
.linearicons-cloud-lock:before {
    content: "\e956";
}
.linearicons-cloud-gear:before {
    content: "\e957";
}
.linearicons-cloud-alert:before {
    content: "\e958";
}
.linearicons-cloud-check:before {
    content: "\e959";
}
.linearicons-cloud-cross:before {
    content: "\e95a";
}
.linearicons-cloud-crossed:before {
    content: "\e95b";
}
.linearicons-cloud-database:before {
    content: "\e95c";
}
.linearicons-database:before {
    content: "\e95d";
}
.linearicons-database-add:before {
    content: "\e95e";
}
.linearicons-database-remove:before {
    content: "\e95f";
}
.linearicons-database-lock:before {
    content: "\e960";
}
.linearicons-database-refresh:before {
    content: "\e961";
}
.linearicons-database-check:before {
    content: "\e962";
}
.linearicons-database-history:before {
    content: "\e963";
}
.linearicons-database-upload:before {
    content: "\e964";
}
.linearicons-database-download:before {
    content: "\e965";
}
.linearicons-server:before {
    content: "\e966";
}
.linearicons-shield:before {
    content: "\e967";
}
.linearicons-shield-check:before {
    content: "\e968";
}
.linearicons-shield-alert:before {
    content: "\e969";
}
.linearicons-shield-cross:before {
    content: "\e96a";
}
.linearicons-lock:before {
    content: "\e96b";
}
.linearicons-rotation-lock:before {
    content: "\e96c";
}
.linearicons-unlock:before {
    content: "\e96d";
}
.linearicons-key:before {
    content: "\e96e";
}
.linearicons-key-hole:before {
    content: "\e96f";
}
.linearicons-toggle-off:before {
    content: "\e970";
}
.linearicons-toggle-on:before {
    content: "\e971";
}
.linearicons-cog:before {
    content: "\e972";
}
.linearicons-cog2:before {
    content: "\e973";
}
.linearicons-wrench:before {
    content: "\e974";
}
.linearicons-screwdriver:before {
    content: "\e975";
}
.linearicons-hammer-wrench:before {
    content: "\e976";
}
.linearicons-hammer:before {
    content: "\e977";
}
.linearicons-saw:before {
    content: "\e978";
}
.linearicons-axe:before {
    content: "\e979";
}
.linearicons-axe2:before {
    content: "\e97a";
}
.linearicons-shovel:before {
    content: "\e97b";
}
.linearicons-pickaxe:before {
    content: "\e97c";
}
.linearicons-factory:before {
    content: "\e97d";
}
.linearicons-factory2:before {
    content: "\e97e";
}
.linearicons-recycle:before {
    content: "\e97f";
}
.linearicons-trash:before {
    content: "\e980";
}
.linearicons-trash2:before {
    content: "\e981";
}
.linearicons-trash3:before {
    content: "\e982";
}
.linearicons-broom:before {
    content: "\e983";
}
.linearicons-game:before {
    content: "\e984";
}
.linearicons-gamepad:before {
    content: "\e985";
}
.linearicons-joystick:before {
    content: "\e986";
}
.linearicons-dice:before {
    content: "\e987";
}
.linearicons-spades:before {
    content: "\e988";
}
.linearicons-diamonds:before {
    content: "\e989";
}
.linearicons-clubs:before {
    content: "\e98a";
}
.linearicons-hearts:before {
    content: "\e98b";
}
.linearicons-heart:before {
    content: "\e98c";
}
.linearicons-star:before {
    content: "\e98d";
}
.linearicons-star-half:before {
    content: "\e98e";
}
.linearicons-star-empty:before {
    content: "\e98f";
}
.linearicons-flag:before {
    content: "\e990";
}
.linearicons-flag2:before {
    content: "\e991";
}
.linearicons-flag3:before {
    content: "\e992";
}
.linearicons-mailbox-full:before {
    content: "\e993";
}
.linearicons-mailbox-empty:before {
    content: "\e994";
}
.linearicons-at-sign:before {
    content: "\e995";
}
.linearicons-envelope:before {
    content: "\e996";
}
.linearicons-envelope-open:before {
    content: "\e997";
}
.linearicons-paperclip:before {
    content: "\e998";
}
.linearicons-paper-plane:before {
    content: "\e999";
}
.linearicons-reply:before {
    content: "\e99a";
}
.linearicons-reply-all:before {
    content: "\e99b";
}
.linearicons-inbox:before {
    content: "\e99c";
}
.linearicons-inbox2:before {
    content: "\e99d";
}
.linearicons-outbox:before {
    content: "\e99e";
}
.linearicons-box:before {
    content: "\e99f";
}
.linearicons-archive:before {
    content: "\e9a0";
}
.linearicons-archive2:before {
    content: "\e9a1";
}
.linearicons-drawers:before {
    content: "\e9a2";
}
.linearicons-drawers2:before {
    content: "\e9a3";
}
.linearicons-drawers3:before {
    content: "\e9a4";
}
.linearicons-eye:before {
    content: "\e9a5";
}
.linearicons-eye-crossed:before {
    content: "\e9a6";
}
.linearicons-eye-plus:before {
    content: "\e9a7";
}
.linearicons-eye-minus:before {
    content: "\e9a8";
}
.linearicons-binoculars:before {
    content: "\e9a9";
}
.linearicons-binoculars2:before {
    content: "\e9aa";
}
.linearicons-hdd:before {
    content: "\e9ab";
}
.linearicons-hdd-down:before {
    content: "\e9ac";
}
.linearicons-hdd-up:before {
    content: "\e9ad";
}
.linearicons-floppy-disk:before {
    content: "\e9ae";
}
.linearicons-disc:before {
    content: "\e9af";
}
.linearicons-tape2:before {
    content: "\e9b0";
}
.linearicons-printer:before {
    content: "\e9b1";
}
.linearicons-shredder:before {
    content: "\e9b2";
}
.linearicons-file-empty:before {
    content: "\e9b3";
}
.linearicons-file-add:before {
    content: "\e9b4";
}
.linearicons-file-check:before {
    content: "\e9b5";
}
.linearicons-file-lock:before {
    content: "\e9b6";
}
.linearicons-files:before {
    content: "\e9b7";
}
.linearicons-copy:before {
    content: "\e9b8";
}
.linearicons-compare:before {
    content: "\e9b9";
}
.linearicons-folder:before {
    content: "\e9ba";
}
.linearicons-folder-search:before {
    content: "\e9bb";
}
.linearicons-folder-plus:before {
    content: "\e9bc";
}
.linearicons-folder-minus:before {
    content: "\e9bd";
}
.linearicons-folder-download:before {
    content: "\e9be";
}
.linearicons-folder-upload:before {
    content: "\e9bf";
}
.linearicons-folder-star:before {
    content: "\e9c0";
}
.linearicons-folder-heart:before {
    content: "\e9c1";
}
.linearicons-folder-user:before {
    content: "\e9c2";
}
.linearicons-folder-shared:before {
    content: "\e9c3";
}
.linearicons-folder-music:before {
    content: "\e9c4";
}
.linearicons-folder-picture:before {
    content: "\e9c5";
}
.linearicons-folder-film:before {
    content: "\e9c6";
}
.linearicons-scissors:before {
    content: "\e9c7";
}
.linearicons-paste:before {
    content: "\e9c8";
}
.linearicons-clipboard-empty:before {
    content: "\e9c9";
}
.linearicons-clipboard-pencil:before {
    content: "\e9ca";
}
.linearicons-clipboard-text:before {
    content: "\e9cb";
}
.linearicons-clipboard-check:before {
    content: "\e9cc";
}
.linearicons-clipboard-down:before {
    content: "\e9cd";
}
.linearicons-clipboard-left:before {
    content: "\e9ce";
}
.linearicons-clipboard-alert:before {
    content: "\e9cf";
}
.linearicons-clipboard-user:before {
    content: "\e9d0";
}
.linearicons-register:before {
    content: "\e9d1";
}
.linearicons-enter:before {
    content: "\e9d2";
}
.linearicons-exit:before {
    content: "\e9d3";
}
.linearicons-papers:before {
    content: "\e9d4";
}
.linearicons-news:before {
    content: "\e9d5";
}
.linearicons-reading:before {
    content: "\e9d6";
}
.linearicons-typewriter:before {
    content: "\e9d7";
}
.linearicons-document:before {
    content: "\e9d8";
}
.linearicons-document2:before {
    content: "\e9d9";
}
.linearicons-graduation-hat:before {
    content: "\e9da";
}
.linearicons-license:before {
    content: "\e9db";
}
.linearicons-license2:before {
    content: "\e9dc";
}
.linearicons-medal-empty:before {
    content: "\e9dd";
}
.linearicons-medal-first:before {
    content: "\e9de";
}
.linearicons-medal-second:before {
    content: "\e9df";
}
.linearicons-medal-third:before {
    content: "\e9e0";
}
.linearicons-podium:before {
    content: "\e9e1";
}
.linearicons-trophy:before {
    content: "\e9e2";
}
.linearicons-trophy2:before {
    content: "\e9e3";
}
.linearicons-music-note:before {
    content: "\e9e4";
}
.linearicons-music-note2:before {
    content: "\e9e5";
}
.linearicons-music-note3:before {
    content: "\e9e6";
}
.linearicons-playlist:before {
    content: "\e9e7";
}
.linearicons-playlist-add:before {
    content: "\e9e8";
}
.linearicons-guitar:before {
    content: "\e9e9";
}
.linearicons-trumpet:before {
    content: "\e9ea";
}
.linearicons-album:before {
    content: "\e9eb";
}
.linearicons-shuffle:before {
    content: "\e9ec";
}
.linearicons-repeat-one:before {
    content: "\e9ed";
}
.linearicons-repeat:before {
    content: "\e9ee";
}
.linearicons-headphones:before {
    content: "\e9ef";
}
.linearicons-headset:before {
    content: "\e9f0";
}
.linearicons-loudspeaker:before {
    content: "\e9f1";
}
.linearicons-equalizer:before {
    content: "\e9f2";
}
.linearicons-theater:before {
    content: "\e9f3";
}
.linearicons-3d-glasses:before {
    content: "\e9f4";
}
.linearicons-ticket:before {
    content: "\e9f5";
}
.linearicons-presentation:before {
    content: "\e9f6";
}
.linearicons-play:before {
    content: "\e9f7";
}
.linearicons-film-play:before {
    content: "\e9f8";
}
.linearicons-clapboard-play:before {
    content: "\e9f9";
}
.linearicons-media:before {
    content: "\e9fa";
}
.linearicons-film:before {
    content: "\e9fb";
}
.linearicons-film2:before {
    content: "\e9fc";
}
.linearicons-surveillance:before {
    content: "\e9fd";
}
.linearicons-surveillance2:before {
    content: "\e9fe";
}
.linearicons-camera:before {
    content: "\e9ff";
}
.linearicons-camera-crossed:before {
    content: "\ea00";
}
.linearicons-camera-play:before {
    content: "\ea01";
}
.linearicons-time-lapse:before {
    content: "\ea02";
}
.linearicons-record:before {
    content: "\ea03";
}
.linearicons-camera2:before {
    content: "\ea04";
}
.linearicons-camera-flip:before {
    content: "\ea05";
}
.linearicons-panorama:before {
    content: "\ea06";
}
.linearicons-time-lapse2:before {
    content: "\ea07";
}
.linearicons-shutter:before {
    content: "\ea08";
}
.linearicons-shutter2:before {
    content: "\ea09";
}
.linearicons-face-detection:before {
    content: "\ea0a";
}
.linearicons-flare:before {
    content: "\ea0b";
}
.linearicons-convex:before {
    content: "\ea0c";
}
.linearicons-concave:before {
    content: "\ea0d";
}
.linearicons-picture:before {
    content: "\ea0e";
}
.linearicons-picture2:before {
    content: "\ea0f";
}
.linearicons-picture3:before {
    content: "\ea10";
}
.linearicons-pictures:before {
    content: "\ea11";
}
.linearicons-book:before {
    content: "\ea12";
}
.linearicons-audio-book:before {
    content: "\ea13";
}
.linearicons-book2:before {
    content: "\ea14";
}
.linearicons-bookmark:before {
    content: "\ea15";
}
.linearicons-bookmark2:before {
    content: "\ea16";
}
.linearicons-label:before {
    content: "\ea17";
}
.linearicons-library:before {
    content: "\ea18";
}
.linearicons-library2:before {
    content: "\ea19";
}
.linearicons-contacts:before {
    content: "\ea1a";
}
.linearicons-profile:before {
    content: "\ea1b";
}
.linearicons-portrait:before {
    content: "\ea1c";
}
.linearicons-portrait2:before {
    content: "\ea1d";
}
.linearicons-user:before {
    content: "\ea1e";
}
.linearicons-user-plus:before {
    content: "\ea1f";
}
.linearicons-user-minus:before {
    content: "\ea20";
}
.linearicons-user-lock:before {
    content: "\ea21";
}
.linearicons-users:before {
    content: "\ea22";
}
.linearicons-users2:before {
    content: "\ea23";
}
.linearicons-users-plus:before {
    content: "\ea24";
}
.linearicons-users-minus:before {
    content: "\ea25";
}
.linearicons-group-work:before {
    content: "\ea26";
}
.linearicons-woman:before {
    content: "\ea27";
}
.linearicons-man:before {
    content: "\ea28";
}
.linearicons-baby:before {
    content: "\ea29";
}
.linearicons-baby2:before {
    content: "\ea2a";
}
.linearicons-baby3:before {
    content: "\ea2b";
}
.linearicons-baby-bottle:before {
    content: "\ea2c";
}
.linearicons-walk:before {
    content: "\ea2d";
}
.linearicons-hand-waving:before {
    content: "\ea2e";
}
.linearicons-jump:before {
    content: "\ea2f";
}
.linearicons-run:before {
    content: "\ea30";
}
.linearicons-woman2:before {
    content: "\ea31";
}
.linearicons-man2:before {
    content: "\ea32";
}
.linearicons-man-woman:before {
    content: "\ea33";
}
.linearicons-height:before {
    content: "\ea34";
}
.linearicons-weight:before {
    content: "\ea35";
}
.linearicons-scale:before {
    content: "\ea36";
}
.linearicons-button:before {
    content: "\ea37";
}
.linearicons-bow-tie:before {
    content: "\ea38";
}
.linearicons-tie:before {
    content: "\ea39";
}
.linearicons-socks:before {
    content: "\ea3a";
}
.linearicons-shoe:before {
    content: "\ea3b";
}
.linearicons-shoes:before {
    content: "\ea3c";
}
.linearicons-hat:before {
    content: "\ea3d";
}
.linearicons-pants:before {
    content: "\ea3e";
}
.linearicons-shorts:before {
    content: "\ea3f";
}
.linearicons-flip-flops:before {
    content: "\ea40";
}
.linearicons-shirt:before {
    content: "\ea41";
}
.linearicons-hanger:before {
    content: "\ea42";
}
.linearicons-laundry:before {
    content: "\ea43";
}
.linearicons-store:before {
    content: "\ea44";
}
.linearicons-haircut:before {
    content: "\ea45";
}
.linearicons-store-24:before {
    content: "\ea46";
}
.linearicons-barcode:before {
    content: "\ea47";
}
.linearicons-barcode2:before {
    content: "\ea48";
}
.linearicons-barcode3:before {
    content: "\ea49";
}
.linearicons-cashier:before {
    content: "\ea4a";
}
.linearicons-bag:before {
    content: "\ea4b";
}
.linearicons-bag2:before {
    content: "\ea4c";
}
.linearicons-cart:before {
    content: "\ea4d";
}
.linearicons-cart-empty:before {
    content: "\ea4e";
}
.linearicons-cart-full:before {
    content: "\ea4f";
}
.linearicons-cart-plus:before {
    content: "\ea50";
}
.linearicons-cart-plus2:before {
    content: "\ea51";
}
.linearicons-cart-add:before {
    content: "\ea52";
}
.linearicons-cart-remove:before {
    content: "\ea53";
}
.linearicons-cart-exchange:before {
    content: "\ea54";
}
.linearicons-tag:before {
    content: "\ea55";
}
.linearicons-tags:before {
    content: "\ea56";
}
.linearicons-receipt:before {
    content: "\ea57";
}
.linearicons-wallet:before {
    content: "\ea58";
}
.linearicons-credit-card:before {
    content: "\ea59";
}
.linearicons-cash-dollar:before {
    content: "\ea5a";
}
.linearicons-cash-euro:before {
    content: "\ea5b";
}
.linearicons-cash-pound:before {
    content: "\ea5c";
}
.linearicons-cash-yen:before {
    content: "\ea5d";
}
.linearicons-bag-dollar:before {
    content: "\ea5e";
}
.linearicons-bag-euro:before {
    content: "\ea5f";
}
.linearicons-bag-pound:before {
    content: "\ea60";
}
.linearicons-bag-yen:before {
    content: "\ea61";
}
.linearicons-coin-dollar:before {
    content: "\ea62";
}
.linearicons-coin-euro:before {
    content: "\ea63";
}
.linearicons-coin-pound:before {
    content: "\ea64";
}
.linearicons-coin-yen:before {
    content: "\ea65";
}
.linearicons-calculator:before {
    content: "\ea66";
}
.linearicons-calculator2:before {
    content: "\ea67";
}
.linearicons-abacus:before {
    content: "\ea68";
}
.linearicons-vault:before {
    content: "\ea69";
}
.linearicons-telephone:before {
    content: "\ea6a";
}
.linearicons-phone-lock:before {
    content: "\ea6b";
}
.linearicons-phone-wave:before {
    content: "\ea6c";
}
.linearicons-phone-pause:before {
    content: "\ea6d";
}
.linearicons-phone-outgoing:before {
    content: "\ea6e";
}
.linearicons-phone-incoming:before {
    content: "\ea6f";
}
.linearicons-phone-in-out:before {
    content: "\ea70";
}
.linearicons-phone-error:before {
    content: "\ea71";
}
.linearicons-phone-sip:before {
    content: "\ea72";
}
.linearicons-phone-plus:before {
    content: "\ea73";
}
.linearicons-phone-minus:before {
    content: "\ea74";
}
.linearicons-voicemail:before {
    content: "\ea75";
}
.linearicons-dial:before {
    content: "\ea76";
}
.linearicons-telephone2:before {
    content: "\ea77";
}
.linearicons-pushpin:before {
    content: "\ea78";
}
.linearicons-pushpin2:before {
    content: "\ea79";
}
.linearicons-map-marker:before {
    content: "\ea7a";
}
.linearicons-map-marker-user:before {
    content: "\ea7b";
}
.linearicons-map-marker-down:before {
    content: "\ea7c";
}
.linearicons-map-marker-check:before {
    content: "\ea7d";
}
.linearicons-map-marker-crossed:before {
    content: "\ea7e";
}
.linearicons-radar:before {
    content: "\ea7f";
}
.linearicons-compass2:before {
    content: "\ea80";
}
.linearicons-map:before {
    content: "\ea81";
}
.linearicons-map2:before {
    content: "\ea82";
}
.linearicons-location:before {
    content: "\ea83";
}
.linearicons-road-sign:before {
    content: "\ea84";
}
.linearicons-calendar-empty:before {
    content: "\ea85";
}
.linearicons-calendar-check:before {
    content: "\ea86";
}
.linearicons-calendar-cross:before {
    content: "\ea87";
}
.linearicons-calendar-31:before {
    content: "\ea88";
}
.linearicons-calendar-full:before {
    content: "\ea89";
}
.linearicons-calendar-insert:before {
    content: "\ea8a";
}
.linearicons-calendar-text:before {
    content: "\ea8b";
}
.linearicons-calendar-user:before {
    content: "\ea8c";
}
.linearicons-mouse:before {
    content: "\ea8d";
}
.linearicons-mouse-left:before {
    content: "\ea8e";
}
.linearicons-mouse-right:before {
    content: "\ea8f";
}
.linearicons-mouse-both:before {
    content: "\ea90";
}
.linearicons-keyboard:before {
    content: "\ea91";
}
.linearicons-keyboard-up:before {
    content: "\ea92";
}
.linearicons-keyboard-down:before {
    content: "\ea93";
}
.linearicons-delete:before {
    content: "\ea94";
}
.linearicons-spell-check:before {
    content: "\ea95";
}
.linearicons-escape:before {
    content: "\ea96";
}
.linearicons-enter2:before {
    content: "\ea97";
}
.linearicons-screen:before {
    content: "\ea98";
}
.linearicons-aspect-ratio:before {
    content: "\ea99";
}
.linearicons-signal:before {
    content: "\ea9a";
}
.linearicons-signal-lock:before {
    content: "\ea9b";
}
.linearicons-signal-80:before {
    content: "\ea9c";
}
.linearicons-signal-60:before {
    content: "\ea9d";
}
.linearicons-signal-40:before {
    content: "\ea9e";
}
.linearicons-signal-20:before {
    content: "\ea9f";
}
.linearicons-signal-0:before {
    content: "\eaa0";
}
.linearicons-signal-blocked:before {
    content: "\eaa1";
}
.linearicons-sim:before {
    content: "\eaa2";
}
.linearicons-flash-memory:before {
    content: "\eaa3";
}
.linearicons-usb-drive:before {
    content: "\eaa4";
}
.linearicons-phone:before {
    content: "\eaa5";
}
.linearicons-smartphone:before {
    content: "\eaa6";
}
.linearicons-smartphone-notification:before {
    content: "\eaa7";
}
.linearicons-smartphone-vibration:before {
    content: "\eaa8";
}
.linearicons-smartphone-embed:before {
    content: "\eaa9";
}
.linearicons-smartphone-waves:before {
    content: "\eaaa";
}
.linearicons-tablet:before {
    content: "\eaab";
}
.linearicons-tablet2:before {
    content: "\eaac";
}
.linearicons-laptop:before {
    content: "\eaad";
}
.linearicons-laptop-phone:before {
    content: "\eaae";
}
.linearicons-desktop:before {
    content: "\eaaf";
}
.linearicons-launch:before {
    content: "\eab0";
}
.linearicons-new-tab:before {
    content: "\eab1";
}
.linearicons-window:before {
    content: "\eab2";
}
.linearicons-cable:before {
    content: "\eab3";
}
.linearicons-cable2:before {
    content: "\eab4";
}
.linearicons-tv:before {
    content: "\eab5";
}
.linearicons-radio:before {
    content: "\eab6";
}
.linearicons-remote-control:before {
    content: "\eab7";
}
.linearicons-power-switch:before {
    content: "\eab8";
}
.linearicons-power:before {
    content: "\eab9";
}
.linearicons-power-crossed:before {
    content: "\eaba";
}
.linearicons-flash-auto:before {
    content: "\eabb";
}
.linearicons-lamp:before {
    content: "\eabc";
}
.linearicons-flashlight:before {
    content: "\eabd";
}
.linearicons-lampshade:before {
    content: "\eabe";
}
.linearicons-cord:before {
    content: "\eabf";
}
.linearicons-outlet:before {
    content: "\eac0";
}
.linearicons-battery-power:before {
    content: "\eac1";
}
.linearicons-battery-empty:before {
    content: "\eac2";
}
.linearicons-battery-alert:before {
    content: "\eac3";
}
.linearicons-battery-error:before {
    content: "\eac4";
}
.linearicons-battery-low1:before {
    content: "\eac5";
}
.linearicons-battery-low2:before {
    content: "\eac6";
}
.linearicons-battery-low3:before {
    content: "\eac7";
}
.linearicons-battery-mid1:before {
    content: "\eac8";
}
.linearicons-battery-mid2:before {
    content: "\eac9";
}
.linearicons-battery-mid3:before {
    content: "\eaca";
}
.linearicons-battery-full:before {
    content: "\eacb";
}
.linearicons-battery-charging:before {
    content: "\eacc";
}
.linearicons-battery-charging2:before {
    content: "\eacd";
}
.linearicons-battery-charging3:before {
    content: "\eace";
}
.linearicons-battery-charging4:before {
    content: "\eacf";
}
.linearicons-battery-charging5:before {
    content: "\ead0";
}
.linearicons-battery-charging6:before {
    content: "\ead1";
}
.linearicons-battery-charging7:before {
    content: "\ead2";
}
.linearicons-chip:before {
    content: "\ead3";
}
.linearicons-chip-x64:before {
    content: "\ead4";
}
.linearicons-chip-x86:before {
    content: "\ead5";
}
.linearicons-bubble:before {
    content: "\ead6";
}
.linearicons-bubbles:before {
    content: "\ead7";
}
.linearicons-bubble-dots:before {
    content: "\ead8";
}
.linearicons-bubble-alert:before {
    content: "\ead9";
}
.linearicons-bubble-question:before {
    content: "\eada";
}
.linearicons-bubble-text:before {
    content: "\eadb";
}
.linearicons-bubble-pencil:before {
    content: "\eadc";
}
.linearicons-bubble-picture:before {
    content: "\eadd";
}
.linearicons-bubble-video:before {
    content: "\eade";
}
.linearicons-bubble-user:before {
    content: "\eadf";
}
.linearicons-bubble-quote:before {
    content: "\eae0";
}
.linearicons-bubble-heart:before {
    content: "\eae1";
}
.linearicons-bubble-emoticon:before {
    content: "\eae2";
}
.linearicons-bubble-attachment:before {
    content: "\eae3";
}
.linearicons-phone-bubble:before {
    content: "\eae4";
}
.linearicons-quote-open:before {
    content: "\eae5";
}
.linearicons-quote-close:before {
    content: "\eae6";
}
.linearicons-dna:before {
    content: "\eae7";
}
.linearicons-heart-pulse:before {
    content: "\eae8";
}
.linearicons-pulse:before {
    content: "\eae9";
}
.linearicons-syringe:before {
    content: "\eaea";
}
.linearicons-pills:before {
    content: "\eaeb";
}
.linearicons-first-aid:before {
    content: "\eaec";
}
.linearicons-lifebuoy:before {
    content: "\eaed";
}
.linearicons-bandage:before {
    content: "\eaee";
}
.linearicons-bandages:before {
    content: "\eaef";
}
.linearicons-thermometer:before {
    content: "\eaf0";
}
.linearicons-microscope:before {
    content: "\eaf1";
}
.linearicons-brain:before {
    content: "\eaf2";
}
.linearicons-beaker:before {
    content: "\eaf3";
}
.linearicons-skull:before {
    content: "\eaf4";
}
.linearicons-bone:before {
    content: "\eaf5";
}
.linearicons-construction:before {
    content: "\eaf6";
}
.linearicons-construction-cone:before {
    content: "\eaf7";
}
.linearicons-pie-chart:before {
    content: "\eaf8";
}
.linearicons-pie-chart2:before {
    content: "\eaf9";
}
.linearicons-graph:before {
    content: "\eafa";
}
.linearicons-chart-growth:before {
    content: "\eafb";
}
.linearicons-chart-bars:before {
    content: "\eafc";
}
.linearicons-chart-settings:before {
    content: "\eafd";
}
.linearicons-cake:before {
    content: "\eafe";
}
.linearicons-gift:before {
    content: "\eaff";
}
.linearicons-balloon:before {
    content: "\eb00";
}
.linearicons-rank:before {
    content: "\eb01";
}
.linearicons-rank2:before {
    content: "\eb02";
}
.linearicons-rank3:before {
    content: "\eb03";
}
.linearicons-crown:before {
    content: "\eb04";
}
.linearicons-lotus:before {
    content: "\eb05";
}
.linearicons-diamond:before {
    content: "\eb06";
}
.linearicons-diamond2:before {
    content: "\eb07";
}
.linearicons-diamond3:before {
    content: "\eb08";
}
.linearicons-diamond4:before {
    content: "\eb09";
}
.linearicons-linearicons:before {
    content: "\eb0a";
}
.linearicons-teacup:before {
    content: "\eb0b";
}
.linearicons-teapot:before {
    content: "\eb0c";
}
.linearicons-glass:before {
    content: "\eb0d";
}
.linearicons-bottle2:before {
    content: "\eb0e";
}
.linearicons-glass-cocktail:before {
    content: "\eb0f";
}
.linearicons-glass2:before {
    content: "\eb10";
}
.linearicons-dinner:before {
    content: "\eb11";
}
.linearicons-dinner2:before {
    content: "\eb12";
}
.linearicons-chef:before {
    content: "\eb13";
}
.linearicons-scale2:before {
    content: "\eb14";
}
.linearicons-egg:before {
    content: "\eb15";
}
.linearicons-egg2:before {
    content: "\eb16";
}
.linearicons-eggs:before {
    content: "\eb17";
}
.linearicons-platter:before {
    content: "\eb18";
}
.linearicons-steak:before {
    content: "\eb19";
}
.linearicons-hamburger:before {
    content: "\eb1a";
}
.linearicons-hotdog:before {
    content: "\eb1b";
}
.linearicons-pizza:before {
    content: "\eb1c";
}
.linearicons-sausage:before {
    content: "\eb1d";
}
.linearicons-chicken:before {
    content: "\eb1e";
}
.linearicons-fish:before {
    content: "\eb1f";
}
.linearicons-carrot:before {
    content: "\eb20";
}
.linearicons-cheese:before {
    content: "\eb21";
}
.linearicons-bread:before {
    content: "\eb22";
}
.linearicons-ice-cream:before {
    content: "\eb23";
}
.linearicons-ice-cream2:before {
    content: "\eb24";
}
.linearicons-candy:before {
    content: "\eb25";
}
.linearicons-lollipop:before {
    content: "\eb26";
}
.linearicons-coffee-bean:before {
    content: "\eb27";
}
.linearicons-coffee-cup:before {
    content: "\eb28";
}
.linearicons-cherry:before {
    content: "\eb29";
}
.linearicons-grapes:before {
    content: "\eb2a";
}
.linearicons-citrus:before {
    content: "\eb2b";
}
.linearicons-apple:before {
    content: "\eb2c";
}
.linearicons-leaf:before {
    content: "\eb2d";
}
.linearicons-landscape:before {
    content: "\eb2e";
}
.linearicons-pine-tree:before {
    content: "\eb2f";
}
.linearicons-tree:before {
    content: "\eb30";
}
.linearicons-cactus:before {
    content: "\eb31";
}
.linearicons-paw:before {
    content: "\eb32";
}
.linearicons-footprint:before {
    content: "\eb33";
}
.linearicons-speed-slow:before {
    content: "\eb34";
}
.linearicons-speed-medium:before {
    content: "\eb35";
}
.linearicons-speed-fast:before {
    content: "\eb36";
}
.linearicons-rocket:before {
    content: "\eb37";
}
.linearicons-hammer2:before {
    content: "\eb38";
}
.linearicons-balance:before {
    content: "\eb39";
}
.linearicons-briefcase:before {
    content: "\eb3a";
}
.linearicons-luggage-weight:before {
    content: "\eb3b";
}
.linearicons-dolly:before {
    content: "\eb3c";
}
.linearicons-plane:before {
    content: "\eb3d";
}
.linearicons-plane-crossed:before {
    content: "\eb3e";
}
.linearicons-helicopter:before {
    content: "\eb3f";
}
.linearicons-traffic-lights:before {
    content: "\eb40";
}
.linearicons-siren:before {
    content: "\eb41";
}
.linearicons-road:before {
    content: "\eb42";
}
.linearicons-engine:before {
    content: "\eb43";
}
.linearicons-oil-pressure:before {
    content: "\eb44";
}
.linearicons-coolant-temperature:before {
    content: "\eb45";
}
.linearicons-car-battery:before {
    content: "\eb46";
}
.linearicons-gas:before {
    content: "\eb47";
}
.linearicons-gallon:before {
    content: "\eb48";
}
.linearicons-transmission:before {
    content: "\eb49";
}
.linearicons-car:before {
    content: "\eb4a";
}
.linearicons-car-wash:before {
    content: "\eb4b";
}
.linearicons-car-wash2:before {
    content: "\eb4c";
}
.linearicons-bus:before {
    content: "\eb4d";
}
.linearicons-bus2:before {
    content: "\eb4e";
}
.linearicons-car2:before {
    content: "\eb4f";
}
.linearicons-parking:before {
    content: "\eb50";
}
.linearicons-car-lock:before {
    content: "\eb51";
}
.linearicons-taxi:before {
    content: "\eb52";
}
.linearicons-car-siren:before {
    content: "\eb53";
}
.linearicons-car-wash3:before {
    content: "\eb54";
}
.linearicons-car-wash4:before {
    content: "\eb55";
}
.linearicons-ambulance:before {
    content: "\eb56";
}
.linearicons-truck:before {
    content: "\eb57";
}
.linearicons-trailer:before {
    content: "\eb58";
}
.linearicons-scale-truck:before {
    content: "\eb59";
}
.linearicons-train:before {
    content: "\eb5a";
}
.linearicons-ship:before {
    content: "\eb5b";
}
.linearicons-ship2:before {
    content: "\eb5c";
}
.linearicons-anchor:before {
    content: "\eb5d";
}
.linearicons-boat:before {
    content: "\eb5e";
}
.linearicons-bicycle:before {
    content: "\eb5f";
}
.linearicons-bicycle2:before {
    content: "\eb60";
}
.linearicons-dumbbell:before {
    content: "\eb61";
}
.linearicons-bench-press:before {
    content: "\eb62";
}
.linearicons-swim:before {
    content: "\eb63";
}
.linearicons-football:before {
    content: "\eb64";
}
.linearicons-baseball-bat:before {
    content: "\eb65";
}
.linearicons-baseball:before {
    content: "\eb66";
}
.linearicons-tennis:before {
    content: "\eb67";
}
.linearicons-tennis2:before {
    content: "\eb68";
}
.linearicons-ping-pong:before {
    content: "\eb69";
}
.linearicons-hockey:before {
    content: "\eb6a";
}
.linearicons-8ball:before {
    content: "\eb6b";
}
.linearicons-bowling:before {
    content: "\eb6c";
}
.linearicons-bowling-pins:before {
    content: "\eb6d";
}
.linearicons-golf:before {
    content: "\eb6e";
}
.linearicons-golf2:before {
    content: "\eb6f";
}
.linearicons-archery:before {
    content: "\eb70";
}
.linearicons-slingshot:before {
    content: "\eb71";
}
.linearicons-soccer:before {
    content: "\eb72";
}
.linearicons-basketball:before {
    content: "\eb73";
}
.linearicons-cube:before {
    content: "\eb74";
}
.linearicons-3d-rotate:before {
    content: "\eb75";
}
.linearicons-puzzle:before {
    content: "\eb76";
}
.linearicons-glasses:before {
    content: "\eb77";
}
.linearicons-glasses2:before {
    content: "\eb78";
}
.linearicons-accessibility:before {
    content: "\eb79";
}
.linearicons-wheelchair:before {
    content: "\eb7a";
}
.linearicons-wall:before {
    content: "\eb7b";
}
.linearicons-fence:before {
    content: "\eb7c";
}
.linearicons-wall2:before {
    content: "\eb7d";
}
.linearicons-icons:before {
    content: "\eb7e";
}
.linearicons-resize-handle:before {
    content: "\eb7f";
}
.linearicons-icons2:before {
    content: "\eb80";
}
.linearicons-select:before {
    content: "\eb81";
}
.linearicons-select2:before {
    content: "\eb82";
}
.linearicons-site-map:before {
    content: "\eb83";
}
.linearicons-earth:before {
    content: "\eb84";
}
.linearicons-earth-lock:before {
    content: "\eb85";
}
.linearicons-network:before {
    content: "\eb86";
}
.linearicons-network-lock:before {
    content: "\eb87";
}
.linearicons-planet:before {
    content: "\eb88";
}
.linearicons-happy:before {
    content: "\eb89";
}
.linearicons-smile:before {
    content: "\eb8a";
}
.linearicons-grin:before {
    content: "\eb8b";
}
.linearicons-tongue:before {
    content: "\eb8c";
}
.linearicons-sad:before {
    content: "\eb8d";
}
.linearicons-wink:before {
    content: "\eb8e";
}
.linearicons-dream:before {
    content: "\eb8f";
}
.linearicons-shocked:before {
    content: "\eb90";
}
.linearicons-shocked2:before {
    content: "\eb91";
}
.linearicons-tongue2:before {
    content: "\eb92";
}
.linearicons-neutral:before {
    content: "\eb93";
}
.linearicons-happy-grin:before {
    content: "\eb94";
}
.linearicons-cool:before {
    content: "\eb95";
}
.linearicons-mad:before {
    content: "\eb96";
}
.linearicons-grin-evil:before {
    content: "\eb97";
}
.linearicons-evil:before {
    content: "\eb98";
}
.linearicons-wow:before {
    content: "\eb99";
}
.linearicons-annoyed:before {
    content: "\eb9a";
}
.linearicons-wondering:before {
    content: "\eb9b";
}
.linearicons-confused:before {
    content: "\eb9c";
}
.linearicons-zipped:before {
    content: "\eb9d";
}
.linearicons-grumpy:before {
    content: "\eb9e";
}
.linearicons-mustache:before {
    content: "\eb9f";
}
.linearicons-tombstone-hipster:before {
    content: "\eba0";
}
.linearicons-tombstone:before {
    content: "\eba1";
}
.linearicons-ghost:before {
    content: "\eba2";
}
.linearicons-ghost-hipster:before {
    content: "\eba3";
}
.linearicons-halloween:before {
    content: "\eba4";
}
.linearicons-christmas:before {
    content: "\eba5";
}
.linearicons-easter-egg:before {
    content: "\eba6";
}
.linearicons-mustache2:before {
    content: "\eba7";
}
.linearicons-mustache-glasses:before {
    content: "\eba8";
}
.linearicons-pipe:before {
    content: "\eba9";
}
.linearicons-alarm:before {
    content: "\ebaa";
}
.linearicons-alarm-add:before {
    content: "\ebab";
}
.linearicons-alarm-snooze:before {
    content: "\ebac";
}
.linearicons-alarm-ringing:before {
    content: "\ebad";
}
.linearicons-bullhorn:before {
    content: "\ebae";
}
.linearicons-hearing:before {
    content: "\ebaf";
}
.linearicons-volume-high:before {
    content: "\ebb0";
}
.linearicons-volume-medium:before {
    content: "\ebb1";
}
.linearicons-volume-low:before {
    content: "\ebb2";
}
.linearicons-volume:before {
    content: "\ebb3";
}
.linearicons-mute:before {
    content: "\ebb4";
}
.linearicons-lan:before {
    content: "\ebb5";
}
.linearicons-lan2:before {
    content: "\ebb6";
}
.linearicons-wifi:before {
    content: "\ebb7";
}
.linearicons-wifi-lock:before {
    content: "\ebb8";
}
.linearicons-wifi-blocked:before {
    content: "\ebb9";
}
.linearicons-wifi-mid:before {
    content: "\ebba";
}
.linearicons-wifi-low:before {
    content: "\ebbb";
}
.linearicons-wifi-low2:before {
    content: "\ebbc";
}
.linearicons-wifi-alert:before {
    content: "\ebbd";
}
.linearicons-wifi-alert-mid:before {
    content: "\ebbe";
}
.linearicons-wifi-alert-low:before {
    content: "\ebbf";
}
.linearicons-wifi-alert-low2:before {
    content: "\ebc0";
}
.linearicons-stream:before {
    content: "\ebc1";
}
.linearicons-stream-check:before {
    content: "\ebc2";
}
.linearicons-stream-error:before {
    content: "\ebc3";
}
.linearicons-stream-alert:before {
    content: "\ebc4";
}
.linearicons-communication:before {
    content: "\ebc5";
}
.linearicons-communication-crossed:before {
    content: "\ebc6";
}
.linearicons-broadcast:before {
    content: "\ebc7";
}
.linearicons-antenna:before {
    content: "\ebc8";
}
.linearicons-satellite:before {
    content: "\ebc9";
}
.linearicons-satellite2:before {
    content: "\ebca";
}
.linearicons-mic:before {
    content: "\ebcb";
}
.linearicons-mic-mute:before {
    content: "\ebcc";
}
.linearicons-mic2:before {
    content: "\ebcd";
}
.linearicons-spotlights:before {
    content: "\ebce";
}
.linearicons-hourglass:before {
    content: "\ebcf";
}
.linearicons-loading:before {
    content: "\ebd0";
}
.linearicons-loading2:before {
    content: "\ebd1";
}
.linearicons-loading3:before {
    content: "\ebd2";
}
.linearicons-refresh:before {
    content: "\ebd3";
}
.linearicons-refresh2:before {
    content: "\ebd4";
}
.linearicons-undo:before {
    content: "\ebd5";
}
.linearicons-redo:before {
    content: "\ebd6";
}
.linearicons-jump2:before {
    content: "\ebd7";
}
.linearicons-undo2:before {
    content: "\ebd8";
}
.linearicons-redo2:before {
    content: "\ebd9";
}
.linearicons-sync:before {
    content: "\ebda";
}
.linearicons-repeat-one2:before {
    content: "\ebdb";
}
.linearicons-sync-crossed:before {
    content: "\ebdc";
}
.linearicons-sync2:before {
    content: "\ebdd";
}
.linearicons-repeat-one3:before {
    content: "\ebde";
}
.linearicons-sync-crossed2:before {
    content: "\ebdf";
}
.linearicons-return:before {
    content: "\ebe0";
}
.linearicons-return2:before {
    content: "\ebe1";
}
.linearicons-refund:before {
    content: "\ebe2";
}
.linearicons-history:before {
    content: "\ebe3";
}
.linearicons-history2:before {
    content: "\ebe4";
}
.linearicons-self-timer:before {
    content: "\ebe5";
}
.linearicons-clock:before {
    content: "\ebe6";
}
.linearicons-clock2:before {
    content: "\ebe7";
}
.linearicons-clock3:before {
    content: "\ebe8";
}
.linearicons-watch:before {
    content: "\ebe9";
}
.linearicons-alarm2:before {
    content: "\ebea";
}
.linearicons-alarm-add2:before {
    content: "\ebeb";
}
.linearicons-alarm-remove:before {
    content: "\ebec";
}
.linearicons-alarm-check:before {
    content: "\ebed";
}
.linearicons-alarm-error:before {
    content: "\ebee";
}
.linearicons-timer:before {
    content: "\ebef";
}
.linearicons-timer-crossed:before {
    content: "\ebf0";
}
.linearicons-timer2:before {
    content: "\ebf1";
}
.linearicons-timer-crossed2:before {
    content: "\ebf2";
}
.linearicons-download:before {
    content: "\ebf3";
}
.linearicons-upload:before {
    content: "\ebf4";
}
.linearicons-download2:before {
    content: "\ebf5";
}
.linearicons-upload2:before {
    content: "\ebf6";
}
.linearicons-enter-up:before {
    content: "\ebf7";
}
.linearicons-enter-down:before {
    content: "\ebf8";
}
.linearicons-enter-left:before {
    content: "\ebf9";
}
.linearicons-enter-right:before {
    content: "\ebfa";
}
.linearicons-exit-up:before {
    content: "\ebfb";
}
.linearicons-exit-down:before {
    content: "\ebfc";
}
.linearicons-exit-left:before {
    content: "\ebfd";
}
.linearicons-exit-right:before {
    content: "\ebfe";
}
.linearicons-enter-up2:before {
    content: "\ebff";
}
.linearicons-enter-down2:before {
    content: "\ec00";
}
.linearicons-enter-vertical:before {
    content: "\ec01";
}
.linearicons-enter-left2:before {
    content: "\ec02";
}
.linearicons-enter-right2:before {
    content: "\ec03";
}
.linearicons-enter-horizontal:before {
    content: "\ec04";
}
.linearicons-exit-up2:before {
    content: "\ec05";
}
.linearicons-exit-down2:before {
    content: "\ec06";
}
.linearicons-exit-left2:before {
    content: "\ec07";
}
.linearicons-exit-right2:before {
    content: "\ec08";
}
.linearicons-cli:before {
    content: "\ec09";
}
.linearicons-bug:before {
    content: "\ec0a";
}
.linearicons-code:before {
    content: "\ec0b";
}
.linearicons-file-code:before {
    content: "\ec0c";
}
.linearicons-file-image:before {
    content: "\ec0d";
}
.linearicons-file-zip:before {
    content: "\ec0e";
}
.linearicons-file-audio:before {
    content: "\ec0f";
}
.linearicons-file-video:before {
    content: "\ec10";
}
.linearicons-file-preview:before {
    content: "\ec11";
}
.linearicons-file-charts:before {
    content: "\ec12";
}
.linearicons-file-stats:before {
    content: "\ec13";
}
.linearicons-file-spreadsheet:before {
    content: "\ec14";
}
.linearicons-link:before {
    content: "\ec15";
}
.linearicons-unlink:before {
    content: "\ec16";
}
.linearicons-link2:before {
    content: "\ec17";
}
.linearicons-unlink2:before {
    content: "\ec18";
}
.linearicons-thumbs-up:before {
    content: "\ec19";
}
.linearicons-thumbs-down:before {
    content: "\ec1a";
}
.linearicons-thumbs-up2:before {
    content: "\ec1b";
}
.linearicons-thumbs-down2:before {
    content: "\ec1c";
}
.linearicons-thumbs-up3:before {
    content: "\ec1d";
}
.linearicons-thumbs-down3:before {
    content: "\ec1e";
}
.linearicons-share:before {
    content: "\ec1f";
}
.linearicons-share2:before {
    content: "\ec20";
}
.linearicons-share3:before {
    content: "\ec21";
}
.linearicons-magnifier:before {
    content: "\ec22";
}
.linearicons-file-search:before {
    content: "\ec23";
}
.linearicons-find-replace:before {
    content: "\ec24";
}
.linearicons-zoom-in:before {
    content: "\ec25";
}
.linearicons-zoom-out:before {
    content: "\ec26";
}
.linearicons-loupe:before {
    content: "\ec27";
}
.linearicons-loupe-zoom-in:before {
    content: "\ec28";
}
.linearicons-loupe-zoom-out:before {
    content: "\ec29";
}
.linearicons-cross:before {
    content: "\ec2a";
}
.linearicons-menu:before {
    content: "\ec2b";
}
.linearicons-list:before {
    content: "\ec2c";
}
.linearicons-list2:before {
    content: "\ec2d";
}
.linearicons-list3:before {
    content: "\ec2e";
}
.linearicons-menu2:before {
    content: "\ec2f";
}
.linearicons-list4:before {
    content: "\ec30";
}
.linearicons-menu3:before {
    content: "\ec31";
}
.linearicons-exclamation:before {
    content: "\ec32";
}
.linearicons-question:before {
    content: "\ec33";
}
.linearicons-check:before {
    content: "\ec34";
}
.linearicons-cross2:before {
    content: "\ec35";
}
.linearicons-plus:before {
    content: "\ec36";
}
.linearicons-minus:before {
    content: "\ec37";
}
.linearicons-percent:before {
    content: "\ec38";
}
.linearicons-chevron-up:before {
    content: "\ec39";
}
.linearicons-chevron-down:before {
    content: "\ec3a";
}
.linearicons-chevron-left:before {
    content: "\ec3b";
}
.linearicons-chevron-right:before {
    content: "\ec3c";
}
.linearicons-chevrons-expand-vertical:before {
    content: "\ec3d";
}
.linearicons-chevrons-expand-horizontal:before {
    content: "\ec3e";
}
.linearicons-chevrons-contract-vertical:before {
    content: "\ec3f";
}
.linearicons-chevrons-contract-horizontal:before {
    content: "\ec40";
}
.linearicons-arrow-up:before {
    content: "\ec41";
}
.linearicons-arrow-down:before {
    content: "\ec42";
}
.linearicons-arrow-left:before {
    content: "\ec43";
}
.linearicons-arrow-right:before {
    content: "\ec44";
}
.linearicons-arrow-up-right:before {
    content: "\ec45";
}
.linearicons-arrows-merge:before {
    content: "\ec46";
}
.linearicons-arrows-split:before {
    content: "\ec47";
}
.linearicons-arrow-divert:before {
    content: "\ec48";
}
.linearicons-arrow-return:before {
    content: "\ec49";
}
.linearicons-expand:before {
    content: "\ec4a";
}
.linearicons-contract:before {
    content: "\ec4b";
}
.linearicons-expand2:before {
    content: "\ec4c";
}
.linearicons-contract2:before {
    content: "\ec4d";
}
.linearicons-move:before {
    content: "\ec4e";
}
.linearicons-tab:before {
    content: "\ec4f";
}
.linearicons-arrow-wave:before {
    content: "\ec50";
}
.linearicons-expand3:before {
    content: "\ec51";
}
.linearicons-expand4:before {
    content: "\ec52";
}
.linearicons-contract3:before {
    content: "\ec53";
}
.linearicons-notification:before {
    content: "\ec54";
}
.linearicons-warning:before {
    content: "\ec55";
}
.linearicons-notification-circle:before {
    content: "\ec56";
}
.linearicons-question-circle:before {
    content: "\ec57";
}
.linearicons-menu-circle:before {
    content: "\ec58";
}
.linearicons-checkmark-circle:before {
    content: "\ec59";
}
.linearicons-cross-circle:before {
    content: "\ec5a";
}
.linearicons-plus-circle:before {
    content: "\ec5b";
}
.linearicons-circle-minus:before {
    content: "\ec5c";
}
.linearicons-percent-circle:before {
    content: "\ec5d";
}
.linearicons-arrow-up-circle:before {
    content: "\ec5e";
}
.linearicons-arrow-down-circle:before {
    content: "\ec5f";
}
.linearicons-arrow-left-circle:before {
    content: "\ec60";
}
.linearicons-arrow-right-circle:before {
    content: "\ec61";
}
.linearicons-chevron-up-circle:before {
    content: "\ec62";
}
.linearicons-chevron-down-circle:before {
    content: "\ec63";
}
.linearicons-chevron-left-circle:before {
    content: "\ec64";
}
.linearicons-chevron-right-circle:before {
    content: "\ec65";
}
.linearicons-backward-circle:before {
    content: "\ec66";
}
.linearicons-first-circle:before {
    content: "\ec67";
}
.linearicons-previous-circle:before {
    content: "\ec68";
}
.linearicons-stop-circle:before {
    content: "\ec69";
}
.linearicons-play-circle:before {
    content: "\ec6a";
}
.linearicons-pause-circle:before {
    content: "\ec6b";
}
.linearicons-next-circle:before {
    content: "\ec6c";
}
.linearicons-last-circle:before {
    content: "\ec6d";
}
.linearicons-forward-circle:before {
    content: "\ec6e";
}
.linearicons-eject-circle:before {
    content: "\ec6f";
}
.linearicons-crop:before {
    content: "\ec70";
}
.linearicons-frame-expand:before {
    content: "\ec71";
}
.linearicons-frame-contract:before {
    content: "\ec72";
}
.linearicons-focus:before {
    content: "\ec73";
}
.linearicons-transform:before {
    content: "\ec74";
}
.linearicons-grid:before {
    content: "\ec75";
}
.linearicons-grid-crossed:before {
    content: "\ec76";
}
.linearicons-layers:before {
    content: "\ec77";
}
.linearicons-layers-crossed:before {
    content: "\ec78";
}
.linearicons-toggle:before {
    content: "\ec79";
}
.linearicons-rulers:before {
    content: "\ec7a";
}
.linearicons-ruler:before {
    content: "\ec7b";
}
.linearicons-funnel:before {
    content: "\ec7c";
}
.linearicons-flip-horizontal:before {
    content: "\ec7d";
}
.linearicons-flip-vertical:before {
    content: "\ec7e";
}
.linearicons-flip-horizontal2:before {
    content: "\ec7f";
}
.linearicons-flip-vertical2:before {
    content: "\ec80";
}
.linearicons-angle:before {
    content: "\ec81";
}
.linearicons-angle2:before {
    content: "\ec82";
}
.linearicons-subtract:before {
    content: "\ec83";
}
.linearicons-combine:before {
    content: "\ec84";
}
.linearicons-intersect:before {
    content: "\ec85";
}
.linearicons-exclude:before {
    content: "\ec86";
}
.linearicons-align-center-vertical:before {
    content: "\ec87";
}
.linearicons-align-right:before {
    content: "\ec88";
}
.linearicons-align-bottom:before {
    content: "\ec89";
}
.linearicons-align-left:before {
    content: "\ec8a";
}
.linearicons-align-center-horizontal:before {
    content: "\ec8b";
}
.linearicons-align-top:before {
    content: "\ec8c";
}
.linearicons-square:before {
    content: "\ec8d";
}
.linearicons-plus-square:before {
    content: "\ec8e";
}
.linearicons-minus-square:before {
    content: "\ec8f";
}
.linearicons-percent-square:before {
    content: "\ec90";
}
.linearicons-arrow-up-square:before {
    content: "\ec91";
}
.linearicons-arrow-down-square:before {
    content: "\ec92";
}
.linearicons-arrow-left-square:before {
    content: "\ec93";
}
.linearicons-arrow-right-square:before {
    content: "\ec94";
}
.linearicons-chevron-up-square:before {
    content: "\ec95";
}
.linearicons-chevron-down-square:before {
    content: "\ec96";
}
.linearicons-chevron-left-square:before {
    content: "\ec97";
}
.linearicons-chevron-right-square:before {
    content: "\ec98";
}
.linearicons-check-square:before {
    content: "\ec99";
}
.linearicons-cross-square:before {
    content: "\ec9a";
}
.linearicons-menu-square:before {
    content: "\ec9b";
}
.linearicons-prohibited:before {
    content: "\ec9c";
}
.linearicons-circle:before {
    content: "\ec9d";
}
.linearicons-radio-button:before {
    content: "\ec9e";
}
.linearicons-ligature:before {
    content: "\ec9f";
}
.linearicons-text-format:before {
    content: "\eca0";
}
.linearicons-text-format-remove:before {
    content: "\eca1";
}
.linearicons-text-size:before {
    content: "\eca2";
}
.linearicons-bold:before {
    content: "\eca3";
}
.linearicons-italic:before {
    content: "\eca4";
}
.linearicons-underline:before {
    content: "\eca5";
}
.linearicons-strikethrough:before {
    content: "\eca6";
}
.linearicons-highlight:before {
    content: "\eca7";
}
.linearicons-text-align-left:before {
    content: "\eca8";
}
.linearicons-text-align-center:before {
    content: "\eca9";
}
.linearicons-text-align-right:before {
    content: "\ecaa";
}
.linearicons-text-align-justify:before {
    content: "\ecab";
}
.linearicons-line-spacing:before {
    content: "\ecac";
}
.linearicons-indent-increase:before {
    content: "\ecad";
}
.linearicons-indent-decrease:before {
    content: "\ecae";
}
.linearicons-text-wrap:before {
    content: "\ecaf";
}
.linearicons-pilcrow:before {
    content: "\ecb0";
}
.linearicons-direction-ltr:before {
    content: "\ecb1";
}
.linearicons-direction-rtl:before {
    content: "\ecb2";
}
.linearicons-page-break:before {
    content: "\ecb3";
}
.linearicons-page-break2:before {
    content: "\ecb4";
}
.linearicons-sort-alpha-asc:before {
    content: "\ecb5";
}
.linearicons-sort-alpha-desc:before {
    content: "\ecb6";
}
.linearicons-sort-numeric-asc:before {
    content: "\ecb7";
}
.linearicons-sort-numeric-desc:before {
    content: "\ecb8";
}
.linearicons-sort-amount-asc:before {
    content: "\ecb9";
}
.linearicons-sort-amount-desc:before {
    content: "\ecba";
}
.linearicons-sort-time-asc:before {
    content: "\ecbb";
}
.linearicons-sort-time-desc:before {
    content: "\ecbc";
}
.linearicons-sigma:before {
    content: "\ecbd";
}
.linearicons-pencil-line:before {
    content: "\ecbe";
}
.linearicons-hand:before {
    content: "\ecbf";
}
.linearicons-pointer-up:before {
    content: "\ecc0";
}
.linearicons-pointer-right:before {
    content: "\ecc1";
}
.linearicons-pointer-down:before {
    content: "\ecc2";
}
.linearicons-pointer-left:before {
    content: "\ecc3";
}
.linearicons-finger-tap:before {
    content: "\ecc4";
}
.linearicons-fingers-tap:before {
    content: "\ecc5";
}
.linearicons-reminder:before {
    content: "\ecc6";
}
.linearicons-fingers-crossed:before {
    content: "\ecc7";
}
.linearicons-fingers-victory:before {
    content: "\ecc8";
}
.linearicons-gesture-zoom:before {
    content: "\ecc9";
}
.linearicons-gesture-pinch:before {
    content: "\ecca";
}
.linearicons-fingers-scroll-horizontal:before {
    content: "\eccb";
}
.linearicons-fingers-scroll-vertical:before {
    content: "\eccc";
}
.linearicons-fingers-scroll-left:before {
    content: "\eccd";
}
.linearicons-fingers-scroll-right:before {
    content: "\ecce";
}
.linearicons-hand2:before {
    content: "\eccf";
}
.linearicons-pointer-up2:before {
    content: "\ecd0";
}
.linearicons-pointer-right2:before {
    content: "\ecd1";
}
.linearicons-pointer-down2:before {
    content: "\ecd2";
}
.linearicons-pointer-left2:before {
    content: "\ecd3";
}
.linearicons-finger-tap2:before {
    content: "\ecd4";
}
.linearicons-fingers-tap2:before {
    content: "\ecd5";
}
.linearicons-reminder2:before {
    content: "\ecd6";
}
.linearicons-gesture-zoom2:before {
    content: "\ecd7";
}
.linearicons-gesture-pinch2:before {
    content: "\ecd8";
}
.linearicons-fingers-scroll-horizontal2:before {
    content: "\ecd9";
}
.linearicons-fingers-scroll-vertical2:before {
    content: "\ecda";
}
.linearicons-fingers-scroll-left2:before {
    content: "\ecdb";
}
.linearicons-fingers-scroll-right2:before {
    content: "\ecdc";
}
.linearicons-fingers-scroll-vertical3:before {
    content: "\ecdd";
}
.linearicons-border-style:before {
    content: "\ecde";
}
.linearicons-border-all:before {
    content: "\ecdf";
}
.linearicons-border-outer:before {
    content: "\ece0";
}
.linearicons-border-inner:before {
    content: "\ece1";
}
.linearicons-border-top:before {
    content: "\ece2";
}
.linearicons-border-horizontal:before {
    content: "\ece3";
}
.linearicons-border-bottom:before {
    content: "\ece4";
}
.linearicons-border-left:before {
    content: "\ece5";
}
.linearicons-border-vertical:before {
    content: "\ece6";
}
.linearicons-border-right:before {
    content: "\ece7";
}
.linearicons-border-none:before {
    content: "\ece8";
}
.linearicons-ellipsis:before {
    content: "\ece9";
}





/* -------------------------------------------------
  Simple Line Icons
---------------------------------------------------*/

/* http://graphicburger.com/simple-line-icons-webfont/ */
@font-face {
    font-family: 'Simple-Line-Icons';

    src:url('/media/fonts/Simple-Line-Icons.eot');
    src:url('/media/fonts/Simple-Line-Icons.eot?#iefix') format('embedded-opentype'),
    url('/media/fonts/Simple-Line-Icons.woff2') format('woff2'),
    url('/media/fonts/Simple-Line-Icons.woff') format('woff'),
    url('/media/fonts/Simple-Line-Icons.ttf') format('truetype'),
    url('/media/fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: 'Simple-Line-Icons';
        src: url('/media/fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
    }
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
    font-family: 'Simple-Line-Icons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-user-female, .icon-user-follow, .icon-user-following, .icon-user-unfollow, .icon-trophy, .icon-screen-smartphone, .icon-screen-desktop, .icon-plane, .icon-notebook, .icon-moustache, .icon-mouse, .icon-magnet, .icon-energy, .icon-emoticon-smile, .icon-disc, .icon-cursor-move, .icon-crop, .icon-credit-card, .icon-chemistry, .icon-user, .icon-speedometer, .icon-social-youtube, .icon-social-twitter, .icon-social-tumblr, .icon-social-facebook, .icon-social-dropbox, .icon-social-dribbble, .icon-shield, .icon-screen-tablet, .icon-magic-wand, .icon-hourglass, .icon-graduation, .icon-ghost, .icon-game-controller, .icon-fire, .icon-eyeglasses, .icon-envelope-open, .icon-envelope-letter, .icon-bell, .icon-badge, .icon-anchor, .icon-wallet, .icon-vector, .icon-speech, .icon-puzzle, .icon-printer, .icon-present, .icon-playlist, .icon-pin, .icon-picture, .icon-map, .icon-layers, .icon-handbag, .icon-globe-alt, .icon-globe, .icon-frame, .icon-folder-alt, .icon-film, .icon-feed, .icon-earphones-alt, .icon-earphones, .icon-drop, .icon-drawer, .icon-docs, .icon-directions, .icon-direction, .icon-diamond, .icon-cup, .icon-compass, .icon-call-out, .icon-call-in, .icon-call-end, .icon-calculator, .icon-bubbles, .icon-briefcase, .icon-book-open, .icon-basket-loaded, .icon-basket, .icon-bag, .icon-action-undo, .icon-action-redo, .icon-wrench, .icon-umbrella, .icon-trash, .icon-tag, .icon-support, .icon-size-fullscreen, .icon-size-actual, .icon-shuffle, .icon-share-alt, .icon-share, .icon-rocket, .icon-question, .icon-pie-chart, .icon-pencil, .icon-note, .icon-music-tone-alt, .icon-music-tone, .icon-microphone, .icon-loop, .icon-logout, .icon-login, .icon-list, .icon-like, .icon-home, .icon-grid, .icon-graph, .icon-equalizer, .icon-dislike, .icon-cursor, .icon-control-start, .icon-control-rewind, .icon-control-play, .icon-control-pause, .icon-control-forward, .icon-control-end, .icon-calendar, .icon-bulb, .icon-bar-chart, .icon-arrow-up, .icon-arrow-right, .icon-arrow-left, .icon-arrow-down, .icon-ban, .icon-bubble, .icon-camcorder, .icon-camera, .icon-check, .icon-clock, .icon-close, .icon-cloud-download, .icon-cloud-upload, .icon-doc, .icon-envelope, .icon-eye, .icon-flag, .icon-folder, .icon-heart, .icon-info, .icon-key, .icon-link, .icon-lock, .icon-lock-open, .icon-magnifier, .icon-magnifier-add, .icon-magnifier-remove, .icon-paper-clip, .icon-paper-plane, .icon-plus, .icon-pointer, .icon-power, .icon-refresh, .icon-reload, .icon-settings, .icon-star, .icon-symbol-female, .icon-symbol-male, .icon-target, .icon-volume-1, .icon-volume-2, .icon-volume-off, .icon-users {
    font-family: 'Simple-Line-Icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
.icon-user-female:before {
    content: "\e000";
}
.icon-user-follow:before {
    content: "\e002";
}
.icon-user-following:before {
    content: "\e003";
}
.icon-user-unfollow:before {
    content: "\e004";
}
.icon-trophy:before {
    content: "\e006";
}
.icon-screen-smartphone:before {
    content: "\e010";
}
.icon-screen-desktop:before {
    content: "\e011";
}
.icon-plane:before {
    content: "\e012";
}
.icon-notebook:before {
    content: "\e013";
}
.icon-moustache:before {
    content: "\e014";
}
.icon-mouse:before {
    content: "\e015";
}
.icon-magnet:before {
    content: "\e016";
}
.icon-energy:before {
    content: "\e020";
}
.icon-emoticon-smile:before {
    content: "\e021";
}
.icon-disc:before {
    content: "\e022";
}
.icon-cursor-move:before {
    content: "\e023";
}
.icon-crop:before {
    content: "\e024";
}
.icon-credit-card:before {
    content: "\e025";
}
.icon-chemistry:before {
    content: "\e026";
}
.icon-user:before {
    content: "\e005";
}
.icon-speedometer:before {
    content: "\e007";
}
.icon-social-youtube:before {
    content: "\e008";
}
.icon-social-twitter:before {
    content: "\e009";
}
.icon-social-tumblr:before {
    content: "\e00a";
}
.icon-social-facebook:before {
    content: "\e00b";
}
.icon-social-dropbox:before {
    content: "\e00c";
}
.icon-social-dribbble:before {
    content: "\e00d";
}
.icon-shield:before {
    content: "\e00e";
}
.icon-screen-tablet:before {
    content: "\e00f";
}
.icon-magic-wand:before {
    content: "\e017";
}
.icon-hourglass:before {
    content: "\e018";
}
.icon-graduation:before {
    content: "\e019";
}
.icon-ghost:before {
    content: "\e01a";
}
.icon-game-controller:before {
    content: "\e01b";
}
.icon-fire:before {
    content: "\e01c";
}
.icon-eyeglasses:before {
    content: "\e01d";
}
.icon-envelope-open:before {
    content: "\e01e";
}
.icon-envelope-letter:before {
    content: "\e01f";
}
.icon-bell:before {
    content: "\e027";
}
.icon-badge:before {
    content: "\e028";
}
.icon-anchor:before {
    content: "\e029";
}
.icon-wallet:before {
    content: "\e02a";
}
.icon-vector:before {
    content: "\e02b";
}
.icon-speech:before {
    content: "\e02c";
}
.icon-puzzle:before {
    content: "\e02d";
}
.icon-printer:before {
    content: "\e02e";
}
.icon-present:before {
    content: "\e02f";
}
.icon-playlist:before {
    content: "\e030";
}
.icon-pin:before {
    content: "\e031";
}
.icon-picture:before {
    content: "\e032";
}
.icon-map:before {
    content: "\e033";
}
.icon-layers:before {
    content: "\e034";
}
.icon-handbag:before {
    content: "\e035";
}
.icon-globe-alt:before {
    content: "\e036";
}
.icon-globe:before {
    content: "\e037";
}
.icon-frame:before {
    content: "\e038";
}
.icon-folder-alt:before {
    content: "\e039";
}
.icon-film:before {
    content: "\e03a";
}
.icon-feed:before {
    content: "\e03b";
}
.icon-earphones-alt:before {
    content: "\e03c";
}
.icon-earphones:before {
    content: "\e03d";
}
.icon-drop:before {
    content: "\e03e";
}
.icon-drawer:before {
    content: "\e03f";
}
.icon-docs:before {
    content: "\e040";
}
.icon-directions:before {
    content: "\e041";
}
.icon-direction:before {
    content: "\e042";
}
.icon-diamond:before {
    content: "\e043";
}
.icon-cup:before {
    content: "\e044";
}
.icon-compass:before {
    content: "\e045";
}
.icon-call-out:before {
    content: "\e046";
}
.icon-call-in:before {
    content: "\e047";
}
.icon-call-end:before {
    content: "\e048";
}
.icon-calculator:before {
    content: "\e049";
}
.icon-bubbles:before {
    content: "\e04a";
}
.icon-briefcase:before {
    content: "\e04b";
}
.icon-book-open:before {
    content: "\e04c";
}
.icon-basket-loaded:before {
    content: "\e04d";
}
.icon-basket:before {
    content: "\e04e";
}
.icon-bag:before {
    content: "\e04f";
}
.icon-action-undo:before {
    content: "\e050";
}
.icon-action-redo:before {
    content: "\e051";
}
.icon-wrench:before {
    content: "\e052";
}
.icon-umbrella:before {
    content: "\e053";
}
.icon-trash:before {
    content: "\e054";
}
.icon-tag:before {
    content: "\e055";
}
.icon-support:before {
    content: "\e056";
}
.icon-size-fullscreen:before {
    content: "\e057";
}
.icon-size-actual:before {
    content: "\e058";
}
.icon-shuffle:before {
    content: "\e059";
}
.icon-share-alt:before {
    content: "\e05a";
}
.icon-share:before {
    content: "\e05b";
}
.icon-rocket:before {
    content: "\e05c";
}
.icon-question:before {
    content: "\e05d";
}
.icon-pie-chart:before {
    content: "\e05e";
}
.icon-pencil:before {
    content: "\e05f";
}
.icon-note:before {
    content: "\e060";
}
.icon-music-tone-alt:before {
    content: "\e061";
}
.icon-music-tone:before {
    content: "\e062";
}
.icon-microphone:before {
    content: "\e063";
}
.icon-loop:before {
    content: "\e064";
}
.icon-logout:before {
    content: "\e065";
}
.icon-login:before {
    content: "\e066";
}
.icon-list:before {
    content: "\e067";
}
.icon-like:before {
    content: "\e068";
}
.icon-home:before {
    content: "\e069";
}
.icon-grid:before {
    content: "\e06a";
}
.icon-graph:before {
    content: "\e06b";
}
.icon-equalizer:before {
    content: "\e06c";
}
.icon-dislike:before {
    content: "\e06d";
}
.icon-cursor:before {
    content: "\e06e";
}
.icon-control-start:before {
    content: "\e06f";
}
.icon-control-rewind:before {
    content: "\e070";
}
.icon-control-play:before {
    content: "\e071";
}
.icon-control-pause:before {
    content: "\e072";
}
.icon-control-forward:before {
    content: "\e073";
}
.icon-control-end:before {
    content: "\e074";
}
.icon-calendar:before {
    content: "\e075";
}
.icon-bulb:before {
    content: "\e076";
}
.icon-bar-chart:before {
    content: "\e077";
}
.icon-arrow-up:before {
    content: "\e078";
}
.icon-arrow-right:before {
    content: "\e079";
}
.icon-arrow-left:before {
    content: "\e07a";
}
.icon-arrow-down:before {
    content: "\e07b";
}
.icon-ban:before {
    content: "\e07c";
}
.icon-bubble:before {
    content: "\e07d";
}
.icon-camcorder:before {
    content: "\e07e";
}
.icon-camera:before {
    content: "\e07f";
}
.icon-check:before {
    content: "\e080";
}
.icon-clock:before {
    content: "\e081";
}
.icon-close:before {
    content: "\e082";
}
.icon-cloud-download:before {
    content: "\e083";
}
.icon-cloud-upload:before {
    content: "\e084";
}
.icon-doc:before {
    content: "\e085";
}
.icon-envelope:before {
    content: "\e086";
}
.icon-eye:before {
    content: "\e087";
}
.icon-flag:before {
    content: "\e088";
}
.icon-folder:before {
    content: "\e089";
}
.icon-heart:before {
    content: "\e08a";
}
.icon-info:before {
    content: "\e08b";
}
.icon-key:before {
    content: "\e08c";
}
.icon-link:before {
    content: "\e08d";
}
.icon-lock:before {
    content: "\e08e";
}
.icon-lock-open:before {
    content: "\e08f";
}
.icon-magnifier:before {
    content: "\e090";
}
.icon-magnifier-add:before {
    content: "\e091";
}
.icon-magnifier-remove:before {
    content: "\e092";
}
.icon-paper-clip:before {
    content: "\e093";
}
.icon-paper-plane:before {
    content: "\e094";
}
.icon-plus:before {
    content: "\e095";
}
.icon-pointer:before {
    content: "\e096";
}
.icon-power:before {
    content: "\e097";
}
.icon-refresh:before {
    content: "\e098";
}
.icon-reload:before {
    content: "\e099";
}
.icon-settings:before {
    content: "\e09a";
}
.icon-star:before {
    content: "\e09b";
}
.icon-symbol-female:before {
    content: "\e09c";
}
.icon-symbol-male:before {
    content: "\e09d";
}
.icon-target:before {
    content: "\e09e";
}
.icon-volume-1:before {
    content: "\e09f";
}
.icon-volume-2:before {
    content: "\e0a0";
}
.icon-volume-off:before {
    content: "\e0a1";
}
.icon-users:before {
    content: "\e001";
}



/* -------------------------------------------------
  Themify icons
---------------------------------------------------*/
@font-face {
    font-family: 'themify';
    src:url('/media/fonts/themify.eot?-fvbane');
    src:url('/media/fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'),
    url('/media/fonts/themify.woff?-fvbane') format('woff'),
    url('/media/fonts/themify.ttf?-fvbane') format('truetype'),
    url('/media/fonts/themify.svg?-fvbane#themify') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="ti-"], [class*=" ti-"] {
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
    content: "\e600";
}
.ti-volume:before {
    content: "\e601";
}
.ti-user:before {
    content: "\e602";
}
.ti-unlock:before {
    content: "\e603";
}
.ti-unlink:before {
    content: "\e604";
}
.ti-trash:before {
    content: "\e605";
}
.ti-thought:before {
    content: "\e606";
}
.ti-target:before {
    content: "\e607";
}
.ti-tag:before {
    content: "\e608";
}
.ti-tablet:before {
    content: "\e609";
}
.ti-star:before {
    content: "\e60a";
}
.ti-spray:before {
    content: "\e60b";
}
.ti-signal:before {
    content: "\e60c";
}
.ti-shopping-cart:before {
    content: "\e60d";
}
.ti-shopping-cart-full:before {
    content: "\e60e";
}
.ti-settings:before {
    content: "\e60f";
}
.ti-search:before {
    content: "\e610";
}
.ti-zoom-in:before {
    content: "\e611";
}
.ti-zoom-out:before {
    content: "\e612";
}
.ti-cut:before {
    content: "\e613";
}
.ti-ruler:before {
    content: "\e614";
}
.ti-ruler-pencil:before {
    content: "\e615";
}
.ti-ruler-alt:before {
    content: "\e616";
}
.ti-bookmark:before {
    content: "\e617";
}
.ti-bookmark-alt:before {
    content: "\e618";
}
.ti-reload:before {
    content: "\e619";
}
.ti-plus:before {
    content: "\e61a";
}
.ti-pin:before {
    content: "\e61b";
}
.ti-pencil:before {
    content: "\e61c";
}
.ti-pencil-alt:before {
    content: "\e61d";
}
.ti-paint-roller:before {
    content: "\e61e";
}
.ti-paint-bucket:before {
    content: "\e61f";
}
.ti-na:before {
    content: "\e620";
}
.ti-mobile:before {
    content: "\e621";
}
.ti-minus:before {
    content: "\e622";
}
.ti-medall:before {
    content: "\e623";
}
.ti-medall-alt:before {
    content: "\e624";
}
.ti-marker:before {
    content: "\e625";
}
.ti-marker-alt:before {
    content: "\e626";
}
.ti-arrow-up:before {
    content: "\e627";
}
.ti-arrow-right:before {
    content: "\e628";
}
.ti-arrow-left:before {
    content: "\e629";
}
.ti-arrow-down:before {
    content: "\e62a";
}
.ti-lock:before {
    content: "\e62b";
}
.ti-location-arrow:before {
    content: "\e62c";
}
.ti-link:before {
    content: "\e62d";
}
.ti-layout:before {
    content: "\e62e";
}
.ti-layers:before {
    content: "\e62f";
}
.ti-layers-alt:before {
    content: "\e630";
}
.ti-key:before {
    content: "\e631";
}
.ti-import:before {
    content: "\e632";
}
.ti-image:before {
    content: "\e633";
}
.ti-heart:before {
    content: "\e634";
}
.ti-heart-broken:before {
    content: "\e635";
}
.ti-hand-stop:before {
    content: "\e636";
}
.ti-hand-open:before {
    content: "\e637";
}
.ti-hand-drag:before {
    content: "\e638";
}
.ti-folder:before {
    content: "\e639";
}
.ti-flag:before {
    content: "\e63a";
}
.ti-flag-alt:before {
    content: "\e63b";
}
.ti-flag-alt-2:before {
    content: "\e63c";
}
.ti-eye:before {
    content: "\e63d";
}
.ti-export:before {
    content: "\e63e";
}
.ti-exchange-vertical:before {
    content: "\e63f";
}
.ti-desktop:before {
    content: "\e640";
}
.ti-cup:before {
    content: "\e641";
}
.ti-crown:before {
    content: "\e642";
}
.ti-comments:before {
    content: "\e643";
}
.ti-comment:before {
    content: "\e644";
}
.ti-comment-alt:before {
    content: "\e645";
}
.ti-close:before {
    content: "\e646";
}
.ti-clip:before {
    content: "\e647";
}
.ti-angle-up:before {
    content: "\e648";
}
.ti-angle-right:before {
    content: "\e649";
}
.ti-angle-left:before {
    content: "\e64a";
}
.ti-angle-down:before {
    content: "\e64b";
}
.ti-check:before {
    content: "\e64c";
}
.ti-check-box:before {
    content: "\e64d";
}
.ti-camera:before {
    content: "\e64e";
}
.ti-announcement:before {
    content: "\e64f";
}
.ti-brush:before {
    content: "\e650";
}
.ti-briefcase:before {
    content: "\e651";
}
.ti-bolt:before {
    content: "\e652";
}
.ti-bolt-alt:before {
    content: "\e653";
}
.ti-blackboard:before {
    content: "\e654";
}
.ti-bag:before {
    content: "\e655";
}
.ti-move:before {
    content: "\e656";
}
.ti-arrows-vertical:before {
    content: "\e657";
}
.ti-arrows-horizontal:before {
    content: "\e658";
}
.ti-fullscreen:before {
    content: "\e659";
}
.ti-arrow-top-right:before {
    content: "\e65a";
}
.ti-arrow-top-left:before {
    content: "\e65b";
}
.ti-arrow-circle-up:before {
    content: "\e65c";
}
.ti-arrow-circle-right:before {
    content: "\e65d";
}
.ti-arrow-circle-left:before {
    content: "\e65e";
}
.ti-arrow-circle-down:before {
    content: "\e65f";
}
.ti-angle-double-up:before {
    content: "\e660";
}
.ti-angle-double-right:before {
    content: "\e661";
}
.ti-angle-double-left:before {
    content: "\e662";
}
.ti-angle-double-down:before {
    content: "\e663";
}
.ti-zip:before {
    content: "\e664";
}
.ti-world:before {
    content: "\e665";
}
.ti-wheelchair:before {
    content: "\e666";
}
.ti-view-list:before {
    content: "\e667";
}
.ti-view-list-alt:before {
    content: "\e668";
}
.ti-view-grid:before {
    content: "\e669";
}
.ti-uppercase:before {
    content: "\e66a";
}
.ti-upload:before {
    content: "\e66b";
}
.ti-underline:before {
    content: "\e66c";
}
.ti-truck:before {
    content: "\e66d";
}
.ti-timer:before {
    content: "\e66e";
}
.ti-ticket:before {
    content: "\e66f";
}
.ti-thumb-up:before {
    content: "\e670";
}
.ti-thumb-down:before {
    content: "\e671";
}
.ti-text:before {
    content: "\e672";
}
.ti-stats-up:before {
    content: "\e673";
}
.ti-stats-down:before {
    content: "\e674";
}
.ti-split-v:before {
    content: "\e675";
}
.ti-split-h:before {
    content: "\e676";
}
.ti-smallcap:before {
    content: "\e677";
}
.ti-shine:before {
    content: "\e678";
}
.ti-shift-right:before {
    content: "\e679";
}
.ti-shift-left:before {
    content: "\e67a";
}
.ti-shield:before {
    content: "\e67b";
}
.ti-notepad:before {
    content: "\e67c";
}
.ti-server:before {
    content: "\e67d";
}
.ti-quote-right:before {
    content: "\e67e";
}
.ti-quote-left:before {
    content: "\e67f";
}
.ti-pulse:before {
    content: "\e680";
}
.ti-printer:before {
    content: "\e681";
}
.ti-power-off:before {
    content: "\e682";
}
.ti-plug:before {
    content: "\e683";
}
.ti-pie-chart:before {
    content: "\e684";
}
.ti-paragraph:before {
    content: "\e685";
}
.ti-panel:before {
    content: "\e686";
}
.ti-package:before {
    content: "\e687";
}
.ti-music:before {
    content: "\e688";
}
.ti-music-alt:before {
    content: "\e689";
}
.ti-mouse:before {
    content: "\e68a";
}
.ti-mouse-alt:before {
    content: "\e68b";
}
.ti-money:before {
    content: "\e68c";
}
.ti-microphone:before {
    content: "\e68d";
}
.ti-menu:before {
    content: "\e68e";
}
.ti-menu-alt:before {
    content: "\e68f";
}
.ti-map:before {
    content: "\e690";
}
.ti-map-alt:before {
    content: "\e691";
}
.ti-loop:before {
    content: "\e692";
}
.ti-location-pin:before {
    content: "\e693";
}
.ti-list:before {
    content: "\e694";
}
.ti-light-bulb:before {
    content: "\e695";
}
.ti-Italic:before {
    content: "\e696";
}
.ti-info:before {
    content: "\e697";
}
.ti-infinite:before {
    content: "\e698";
}
.ti-id-badge:before {
    content: "\e699";
}
.ti-hummer:before {
    content: "\e69a";
}
.ti-home:before {
    content: "\e69b";
}
.ti-help:before {
    content: "\e69c";
}
.ti-headphone:before {
    content: "\e69d";
}
.ti-harddrives:before {
    content: "\e69e";
}
.ti-harddrive:before {
    content: "\e69f";
}
.ti-gift:before {
    content: "\e6a0";
}
.ti-game:before {
    content: "\e6a1";
}
.ti-filter:before {
    content: "\e6a2";
}
.ti-files:before {
    content: "\e6a3";
}
.ti-file:before {
    content: "\e6a4";
}
.ti-eraser:before {
    content: "\e6a5";
}
.ti-envelope:before {
    content: "\e6a6";
}
.ti-download:before {
    content: "\e6a7";
}
.ti-direction:before {
    content: "\e6a8";
}
.ti-direction-alt:before {
    content: "\e6a9";
}
.ti-dashboard:before {
    content: "\e6aa";
}
.ti-control-stop:before {
    content: "\e6ab";
}
.ti-control-shuffle:before {
    content: "\e6ac";
}
.ti-control-play:before {
    content: "\e6ad";
}
.ti-control-pause:before {
    content: "\e6ae";
}
.ti-control-forward:before {
    content: "\e6af";
}
.ti-control-backward:before {
    content: "\e6b0";
}
.ti-cloud:before {
    content: "\e6b1";
}
.ti-cloud-up:before {
    content: "\e6b2";
}
.ti-cloud-down:before {
    content: "\e6b3";
}
.ti-clipboard:before {
    content: "\e6b4";
}
.ti-car:before {
    content: "\e6b5";
}
.ti-calendar:before {
    content: "\e6b6";
}
.ti-book:before {
    content: "\e6b7";
}
.ti-bell:before {
    content: "\e6b8";
}
.ti-basketball:before {
    content: "\e6b9";
}
.ti-bar-chart:before {
    content: "\e6ba";
}
.ti-bar-chart-alt:before {
    content: "\e6bb";
}
.ti-back-right:before {
    content: "\e6bc";
}
.ti-back-left:before {
    content: "\e6bd";
}
.ti-arrows-corner:before {
    content: "\e6be";
}
.ti-archive:before {
    content: "\e6bf";
}
.ti-anchor:before {
    content: "\e6c0";
}
.ti-align-right:before {
    content: "\e6c1";
}
.ti-align-left:before {
    content: "\e6c2";
}
.ti-align-justify:before {
    content: "\e6c3";
}
.ti-align-center:before {
    content: "\e6c4";
}
.ti-alert:before {
    content: "\e6c5";
}
.ti-alarm-clock:before {
    content: "\e6c6";
}
.ti-agenda:before {
    content: "\e6c7";
}
.ti-write:before {
    content: "\e6c8";
}
.ti-window:before {
    content: "\e6c9";
}
.ti-widgetized:before {
    content: "\e6ca";
}
.ti-widget:before {
    content: "\e6cb";
}
.ti-widget-alt:before {
    content: "\e6cc";
}
.ti-wallet:before {
    content: "\e6cd";
}
.ti-video-clapper:before {
    content: "\e6ce";
}
.ti-video-camera:before {
    content: "\e6cf";
}
.ti-vector:before {
    content: "\e6d0";
}
.ti-themify-logo:before {
    content: "\e6d1";
}
.ti-themify-favicon:before {
    content: "\e6d2";
}
.ti-themify-favicon-alt:before {
    content: "\e6d3";
}
.ti-support:before {
    content: "\e6d4";
}
.ti-stamp:before {
    content: "\e6d5";
}
.ti-split-v-alt:before {
    content: "\e6d6";
}
.ti-slice:before {
    content: "\e6d7";
}
.ti-shortcode:before {
    content: "\e6d8";
}
.ti-shift-right-alt:before {
    content: "\e6d9";
}
.ti-shift-left-alt:before {
    content: "\e6da";
}
.ti-ruler-alt-2:before {
    content: "\e6db";
}
.ti-receipt:before {
    content: "\e6dc";
}
.ti-pin2:before {
    content: "\e6dd";
}
.ti-pin-alt:before {
    content: "\e6de";
}
.ti-pencil-alt2:before {
    content: "\e6df";
}
.ti-palette:before {
    content: "\e6e0";
}
.ti-more:before {
    content: "\e6e1";
}
.ti-more-alt:before {
    content: "\e6e2";
}
.ti-microphone-alt:before {
    content: "\e6e3";
}
.ti-magnet:before {
    content: "\e6e4";
}
.ti-line-double:before {
    content: "\e6e5";
}
.ti-line-dotted:before {
    content: "\e6e6";
}
.ti-line-dashed:before {
    content: "\e6e7";
}
.ti-layout-width-full:before {
    content: "\e6e8";
}
.ti-layout-width-default:before {
    content: "\e6e9";
}
.ti-layout-width-default-alt:before {
    content: "\e6ea";
}
.ti-layout-tab:before {
    content: "\e6eb";
}
.ti-layout-tab-window:before {
    content: "\e6ec";
}
.ti-layout-tab-v:before {
    content: "\e6ed";
}
.ti-layout-tab-min:before {
    content: "\e6ee";
}
.ti-layout-slider:before {
    content: "\e6ef";
}
.ti-layout-slider-alt:before {
    content: "\e6f0";
}
.ti-layout-sidebar-right:before {
    content: "\e6f1";
}
.ti-layout-sidebar-none:before {
    content: "\e6f2";
}
.ti-layout-sidebar-left:before {
    content: "\e6f3";
}
.ti-layout-placeholder:before {
    content: "\e6f4";
}
.ti-layout-menu:before {
    content: "\e6f5";
}
.ti-layout-menu-v:before {
    content: "\e6f6";
}
.ti-layout-menu-separated:before {
    content: "\e6f7";
}
.ti-layout-menu-full:before {
    content: "\e6f8";
}
.ti-layout-media-right-alt:before {
    content: "\e6f9";
}
.ti-layout-media-right:before {
    content: "\e6fa";
}
.ti-layout-media-overlay:before {
    content: "\e6fb";
}
.ti-layout-media-overlay-alt:before {
    content: "\e6fc";
}
.ti-layout-media-overlay-alt-2:before {
    content: "\e6fd";
}
.ti-layout-media-left-alt:before {
    content: "\e6fe";
}
.ti-layout-media-left:before {
    content: "\e6ff";
}
.ti-layout-media-center-alt:before {
    content: "\e700";
}
.ti-layout-media-center:before {
    content: "\e701";
}
.ti-layout-list-thumb:before {
    content: "\e702";
}
.ti-layout-list-thumb-alt:before {
    content: "\e703";
}
.ti-layout-list-post:before {
    content: "\e704";
}
.ti-layout-list-large-image:before {
    content: "\e705";
}
.ti-layout-line-solid:before {
    content: "\e706";
}
.ti-layout-grid4:before {
    content: "\e707";
}
.ti-layout-grid3:before {
    content: "\e708";
}
.ti-layout-grid2:before {
    content: "\e709";
}
.ti-layout-grid2-thumb:before {
    content: "\e70a";
}
.ti-layout-cta-right:before {
    content: "\e70b";
}
.ti-layout-cta-left:before {
    content: "\e70c";
}
.ti-layout-cta-center:before {
    content: "\e70d";
}
.ti-layout-cta-btn-right:before {
    content: "\e70e";
}
.ti-layout-cta-btn-left:before {
    content: "\e70f";
}
.ti-layout-column4:before {
    content: "\e710";
}
.ti-layout-column3:before {
    content: "\e711";
}
.ti-layout-column2:before {
    content: "\e712";
}
.ti-layout-accordion-separated:before {
    content: "\e713";
}
.ti-layout-accordion-merged:before {
    content: "\e714";
}
.ti-layout-accordion-list:before {
    content: "\e715";
}
.ti-ink-pen:before {
    content: "\e716";
}
.ti-info-alt:before {
    content: "\e717";
}
.ti-help-alt:before {
    content: "\e718";
}
.ti-headphone-alt:before {
    content: "\e719";
}
.ti-hand-point-up:before {
    content: "\e71a";
}
.ti-hand-point-right:before {
    content: "\e71b";
}
.ti-hand-point-left:before {
    content: "\e71c";
}
.ti-hand-point-down:before {
    content: "\e71d";
}
.ti-gallery:before {
    content: "\e71e";
}
.ti-face-smile:before {
    content: "\e71f";
}
.ti-face-sad:before {
    content: "\e720";
}
.ti-credit-card:before {
    content: "\e721";
}
.ti-control-skip-forward:before {
    content: "\e722";
}
.ti-control-skip-backward:before {
    content: "\e723";
}
.ti-control-record:before {
    content: "\e724";
}
.ti-control-eject:before {
    content: "\e725";
}
.ti-comments-smiley:before {
    content: "\e726";
}
.ti-brush-alt:before {
    content: "\e727";
}
.ti-youtube:before {
    content: "\e728";
}
.ti-vimeo:before {
    content: "\e729";
}
.ti-twitter:before {
    content: "\e72a";
}
.ti-time:before {
    content: "\e72b";
}
.ti-tumblr:before {
    content: "\e72c";
}
.ti-skype:before {
    content: "\e72d";
}
.ti-share:before {
    content: "\e72e";
}
.ti-share-alt:before {
    content: "\e72f";
}
.ti-rocket:before {
    content: "\e730";
}
.ti-pinterest:before {
    content: "\e731";
}
.ti-new-window:before {
    content: "\e732";
}
.ti-microsoft:before {
    content: "\e733";
}
.ti-list-ol:before {
    content: "\e734";
}
.ti-linkedin:before {
    content: "\e735";
}
.ti-layout-sidebar-2:before {
    content: "\e736";
}
.ti-layout-grid4-alt:before {
    content: "\e737";
}
.ti-layout-grid3-alt:before {
    content: "\e738";
}
.ti-layout-grid2-alt:before {
    content: "\e739";
}
.ti-layout-column4-alt:before {
    content: "\e73a";
}
.ti-layout-column3-alt:before {
    content: "\e73b";
}
.ti-layout-column2-alt:before {
    content: "\e73c";
}
.ti-instagram:before {
    content: "\e73d";
}
.ti-google:before {
    content: "\e73e";
}
.ti-github:before {
    content: "\e73f";
}
.ti-flickr:before {
    content: "\e740";
}
.ti-facebook:before {
    content: "\e741";
}
.ti-dropbox:before {
    content: "\e742";
}
.ti-dribbble:before {
    content: "\e743";
}
.ti-apple:before {
    content: "\e744";
}
.ti-android:before {
    content: "\e745";
}
.ti-save:before {
    content: "\e746";
}
.ti-save-alt:before {
    content: "\e747";
}
.ti-yahoo:before {
    content: "\e748";
}
.ti-wordpress:before {
    content: "\e749";
}
.ti-vimeo-alt:before {
    content: "\e74a";
}
.ti-twitter-alt:before {
    content: "\e74b";
}
.ti-tumblr-alt:before {
    content: "\e74c";
}
.ti-trello:before {
    content: "\e74d";
}
.ti-stack-overflow:before {
    content: "\e74e";
}
.ti-soundcloud:before {
    content: "\e74f";
}
.ti-sharethis:before {
    content: "\e750";
}
.ti-sharethis-alt:before {
    content: "\e751";
}
.ti-reddit:before {
    content: "\e752";
}
.ti-pinterest-alt:before {
    content: "\e753";
}
.ti-microsoft-alt:before {
    content: "\e754";
}
.ti-linux:before {
    content: "\e755";
}
.ti-jsfiddle:before {
    content: "\e756";
}
.ti-joomla:before {
    content: "\e757";
}
.ti-html5:before {
    content: "\e758";
}
.ti-flickr-alt:before {
    content: "\e759";
}
.ti-email:before {
    content: "\e75a";
}
.ti-drupal:before {
    content: "\e75b";
}
.ti-dropbox-alt:before {
    content: "\e75c";
}
.ti-css3:before {
    content: "\e75d";
}
.ti-rss:before {
    content: "\e75e";
}
.ti-rss-alt:before {
    content: "\e75f";
}