/* See http://code.google.com/p/minify/wiki/CommonProblems#@imports_can_appear_in_invalid_locations_in_combined_CSS_files */
@charset "UTF-8";
/*!
https://daneden.github.io/animate.css/
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

[data-animation^="animated"] {
    visibility:hidden;
}

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

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

.animated.fast {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

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

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

@-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;
    opacity: 1;
}

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

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

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

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

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

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

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

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

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

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

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

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

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

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

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

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

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

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

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

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 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: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

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

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

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

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

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

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

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

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

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

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

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

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

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

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

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

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

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

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

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

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

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

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

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

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

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

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

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

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

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

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

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

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

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

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

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

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

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

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

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

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

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

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

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

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

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

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

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

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

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

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

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

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

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

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

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

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

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

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

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

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

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

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

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

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

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

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

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

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

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

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

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

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

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

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

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

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

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

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

    50% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

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

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

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

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

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

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

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

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

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

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

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

    100% {
        opacity: 0;
    }
}

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

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

    100% {
        opacity: 0;
    }
}

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

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

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        -webkit-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% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
@import url(http://fonts.googleapis.com/css?family=Hind:400,300,600,500,700);
@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,300,300italic,400italic,500italic,500,700,700italic);
@import url(http://fonts.googleapis.com/css?family=Muli:400,300,300italic,400italic);

/* Plumbing skin for the theme
------------------------------------------------------------------------- */

/* Theme Accent Color
------------------------------------------------------------------------- */
a:hover,
.theme_accent,
.topWrap .topMenuStyleLine > ul > li ul li a:hover,
.infoPost a:hover,
.tabsButton ul li a:hover,
.widgetWrap  ul  li:before,
.widget_popular_posts article h3:before,
.widgetTabs .widget_popular_posts article .post_info .post_date a:hover,
.sidebar .widget_popular_posts article .post_info .post_date a:hover,
.sidebar .widget_recent_posts article .post_info .post_date a:hover,
.main .widgetWrap a:hover,
.main .widgetWrap a:hover span,
.widgetWrap a:hover span,
.roundButton a:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.roundButton.border > a,
.nav_pages_parts > a:hover,
.nav_comments > a:hover,
.comments_list a.comment-edit-link:hover,
.widget_area ul.tabs > li.roundButtonlite.ui-state-active > a,
#wp-calendar tbody td a,
#wp-calendar tbody td.today a:hover,
.wp-calendar tbody td a,
.wp-calendar tbody td.today a:hover,
blockquote cite,
blockquote cite a,
.sc_quote_title,
.sc_quote_title a,
.postLink a,
.masonry article .masonryInfo a:hover,
.masonry article .masonryInfo span.infoTags a:hover,
.relatedPostWrap article .relatedInfo a:hover,
.relatedPostWrap article .relatedInfo span.infoTags a:hover,
.infoPost span.infoTags a:hover,
.page404 p a,
.page404 .searchAnimation.sFocus .searchIcon,
.sc_team .sc_team_item .sc_team_item_position,
.copyWrap a,
.comments .commBody li.commItem .replyWrap .posted a:hover,
.comments .commBody li.commItem h4 a:hover,
.ratingItem span:before,
.reviewBlock .totalRating,
.widget_area .contactInfo .fContact:before,
.widget_area .widgetWrap a:hover,
.widget_area .widgetWrap a:hover span,
.widget_area .widgetWrap ul > li > a:hover,
.widget_area .widgetWrap ul > li > a:hover span,
.footerStyleLight .widget_area article .post_title:before,
.footerStyleLight .widget_area article .post_info a:hover,
.footerStyleLight .widget_area article .post_info .post_date a:hover,
.sc_list_style_arrows li:before,
.sc_list_style_arrows li a:hover,
.sc_list_style_iconed li a:hover,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item.sc_active .sc_accordion_title,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item .sc_toggles_title:before,
.sc_toggles.sc_toggles_style_2 .sc_toggles_item.sc_active .sc_toggles_title:before,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item.sc_active .sc_toggles_title,
.sc_dropcaps.sc_dropcaps_style_3 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_4 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_5 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_6 .sc_dropcap,
.sc_highlight.sc_highlight_style_2,
.sc_tooltip_parent,
a > .sc_title_icon:hover:before,
.sc_scroll_controls .flex-direction-nav a:hover:before,
.sc_testimonials_style_1 .flex-direction-nav a:hover:before,
.sc_testimonials_style_3 .flex-direction-nav a:hover:before,
.sc_testimonials_style_3 .flex-direction-nav a:active:before,
.pagination .pageLibrary > li.libPage > .pageFocusBlock .flex-direction-nav a:hover:before,
.topWrap .usermenu_area ul.usermenu_list li.usermenu_currency > a:hover,
.topWrap .usermenu_area ul.usermenu_list li.usermenu_currency > a,
.topWrap .usermenu_area ul.usermenu_list li.usermenu_currency.sfHover > a,
.topWrap .usermenu_area ul.usermenu_list li ul li a:hover,
.topWrap .usermenu_area ul.usermenu_list li.usermenu_cart .widget_area ul li a:hover,
.sidemenu_wrap .usermenu_area ul.usermenu_list li.usermenu_currency > a:hover,
.sidemenu_wrap .usermenu_area ul.usermenu_list li.usermenu_currency > a,
.sidemenu_wrap .usermenu_area ul.usermenu_list li.usermenu_currency.sfHover > a,
.sidemenu_wrap .usermenu_area ul.usermenu_list li ul li a:hover,
.sidemenu_wrap .usermenu_area ul.usermenu_list li.usermenu_cart .widget_area ul li a:hover,
.sc_blogger a:hover,
.sc_blogger.style_date .load_more:before,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_date .day_month,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_info .comments_number,
.sc_blogger.style_accordion .sc_blogger_info .comments_number,
.widgetTabs .widgetTop ul > li:not(.tabs):before,
.widgetTabs .widgetTop ul > li:not(.tabs) > a:hover,
.widgetTabs .widgetTop ul > li:not(.tabs) > a:hover span,
.widgetTabs .widgetTop.widget_popular_posts article .post_title:before,
.swpRightPos .tabsMenuBody a:hover,
.swpRightPos .tabsMenuBody a:hover:before,
.openRightMenu:hover:before,
.topWrap .search:not(.searchOpen):hover:before,
.user-popUp .formItems.loginFormBody .remember .forgotPwd,
.user-popUp .formItems.loginFormBody .loginProblem,
.user-popUp .formItems.registerFormBody .i-agree a,
.sc_slider_pagination_area .flex-control-nav.manual .slide_info .slide_title,
.relatedPostWrap article .relatedInfo a,
.sc_list_style_iconed li:before,
.sc_list_style_arrows li:before,
.sc_team .sc_team_item .sc_team_item_title a,
.footerStyleLight .footerWidget .widgetWrap .title,
#footerStyleLight .footerWidget .wp-calendar thead th,
.footerStyleLight .footerWidget .wp-calendar thead th,
#wp-calendar thead tr th,
.wp-calendar thead tr + tr th,
.page404 .h2,
.usermenu_area .sidemenu_button i,
.relatedPostWrap article .relatedInfo .separator,
.relatedPostWrap article .relatedInfo span.infoTags a,
.openResponsiveMenu:hover,
.sidemenu_wrap .sidemenu_area ul li ul li ul li a:hover,
.booking_weekdays_custom,
.woocommerce div.product span.price, .woocommerce div.product p.price, .woocommerce #content div.product span.price, .woocommerce #content div.product p.price, .woocommerce-page div.product span.price, .woocommerce-page div.product p.price, .woocommerce-page #content div.product span.price, .woocommerce-page #content div.product p.price,
.topWrap .usermenu_area .phone_number,
.portfolioWrap .isotopeFiltr ul a:hover,
.portfolioWrap .isotopeFiltr ul .active a,
.masonryWrap .isotopeFiltr ul a:hover,
.masonryWrap .isotopeFiltr ul .active a,
h4 > a:hover,
ul > li.share > ul.shareDrop > li > a:hover { 
	color: #00afda; 
}


.topWrap .topMenuStyleLine > ul > li.highlight > a:hover {
	color: #ffa900;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce .product .price .amount {
	color: #ffa900 !important;
}

.sc_team .sc_team_item .sc_team_item_title a { 
	color:#151515 ; }

.booking_month_container_all .booking_month_name,
.booking_month_container_all .booking_month_year
{ color:#151515  !important; }

.booking_month_container_all .booking_month_name {
    margin-right: 0.25em;
}

.content .booking_month_navigation_button_custom:hover,
.content .booking_month_navigation_button_custom,
.content .booking_month_container_custom {
	background-color: #fff !important;
}

.hoverIncrease .hoverIcon
{  background-color: #1bbde8;}

#toc .toc_description,
#toc a:hover,
#toc .toc_item.current .toc_icon,
#toc .toc_item:hover .toc_icon,
.sidemenu_wrap .sidemenu_close,
.sidemenu_wrap .sidemenu_area > ul > li > a
{color: #f1f1f1;}

a:hover > .sc_title_iconed,
/*.topWrap .topMenuStyleLine > ul > li ul li a:hover,*/
.footerStyleDark .widget_area a.button:hover,
.tabsButton ul li.ui-tabs-active a,
.themerex_message_info,
.themerex_message_info .themerex_message_close,
.themerex_message_info .themerex_message_icon,
.themerex_message_info .themerex_message_header,
.woocommerce div.product span.price, .woocommerce div.product p.price, .woocommerce #content div.product span.price, .woocommerce #content div.product p.price, .woocommerce-page div.product span.price, .woocommerce-page div.product p.price, .woocommerce-page #content div.product span.price, .woocommerce-page #content div.product p.price,
.booking_name_days_container .booking_day_name
{ color: #ffa900 !important; }


.theme_accent_bgc,
.sc_video_player:active .sc_video_play_button:after,
input[type="submit"]:active,
input[type="button"]:active,
.nav_comments > span.current,
ul > li.likeActive:active > a,
.sc_table.sc_table_style_1 table tr:first-child th,
.sc_table.sc_table_style_1 table tr:first-child td,
.masonry article .status,
.sc_team .sc_team_item .sc_team_item_avatar:after,
.itemPageFull .itemDescriptionWrap .toggleButton:active,
.footerWrap .footerWidget .sc_video_player:active .sc_video_play_button:after,
.topMenuStyleLine > ul .menu-panel,
.userFooterSection.global,
.sliderLogo .elastislide-wrapper nav span:active:before,
.sc_dropcaps.sc_dropcaps_style_2 .sc_dropcap,
.sc_tooltip_parent .sc_tooltip,
.sc_tooltip_parent .sc_tooltip:before,
.sc_scroll_controls .flex-direction-nav a:active,
.sc_testimonials_style_1 .flex-direction-nav a:active,
.sc_testimonials_style_3 .sc_testimonials_items,
.sc_testimonials_style_3 .flex-direction-nav li,
.sc_testimonials_style_3 .flex-direction-nav a,
.pagination .pageLibrary > li.libPage > .pageFocusBlock .flex-direction-nav a:active,
.sc_popup_light:before,
.user-popUp ul.loginHeadTab li.ui-tabs-active:before,
.sc_banner:before,
.global_bg,
.sc_scroll_bar .swiper-scrollbar-drag:before,
.widgetTabs .widgetTop .tagcloud a:hover,
.widgetTabs .widgetTop .tagcloud a:active,
#custom_options .co_options #co_bg_images_list a.current,
#custom_options .co_options #co_bg_pattern_list a.current,
.fullScreenSlider.globalColor .sliderHomeBullets .rsContent:before,
.fullScreenSlider .sliderHomeBullets .rsContent .slide-3 .order p span,
ul.sc_list_style_disk li:before,
.sc_slider_pagination_area .flex-control-nav.manual .slide_date,
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,
.sc_contact_form_custom .bubble label:hover,
.sc_contact_form_custom .bubble label.selected,
.sc_video_player:hover .sc_video_play_button:after,
.footerStyleLight .footerWidget .sc_video_player:hover .sc_video_play_button:after,
.sliderHomeBullets.slider_alias_13 .textPrice,
.sliderHomeBullets.slider_alias_13 .slide-2 .textPrice,
.roundButton.ui-state-active > a,
.sc_button.medium  > a:hover,
.sc_button.big > a:hover,
.sc_button.huge > a:hover,
.sc_button.banner > a:hover,
.sc_button.medium  > span:hover,
.sc_button.big > span:hover,
.sc_button.huge > span:hover,
.sc_button.banner > span:hover,
.sc_pricing_table .sc_pricing_columns ul:hover .sc_pricing_data .sc_pricing_title,
.sc_accordion .sc_accordion_item.sc_active .sc_accordion_title:before,
.days_container_all .booking_day_container:hover .booking_day_slots,
/*.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce #content input.button:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page #content input.button:hover,*/
/*.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce #content input.button.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page #content input.button.alt:hover,*/
.ih-item.round.effect6 .info .link-wrapper:hover,
.masonry article .thumb .link-wrapper a:hover,
.sc_emailer a.sc_emailer_button:hover,
.post .postSharing ul > li.share:hover {
    background-color: transparent;
    color: #3c3b43;
    color: #fff;
}

.sc_title_bg:before,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item .sc_accordion_title,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item .sc_toggles_title {
	background-color: #00abd3;
    color: #fff;
}
.sc_button.mini > a, .sc_button.mini > span {
	color: #00add7;
}

.fullscreen .sc_testimonials_style_2 {
    padding: 5.813em 0 5.000em;
}

.sc_testimonials_style_2 .sc_testimonials_items,
.sc_testimonials_style_2,
.sc_testimonials_style_2 .flex-direction-nav li{  background-color: #3e3f44; }

.sc_pricing_table .sc_pricing_columns ul{ background-color: #1bbde8; }

#booking_container textarea,
#booking_calendar_select > select,
	.booking_day_container a { background-color: #f1f1f1 !important; }

#booking_submit_button,
.booking_book_now_custom,
.booking_book_now_custom:hover,
.booking_ok_button,
.booking_ok_button:hover,
.themerex_message_dialog .themerex_message_button:hover
{   background-color: #1bbde8 !important; }

.sc_table.sc_table_style_1 table tr:first-child th,
.sc_table.sc_table_style_1 table tr:first-child td {
	border-top-color: #1bbde8;
}
.sc_table.sc_table_style_1 table tr:first-child th:first-child,
.sc_table.sc_table_style_1 table tr:first-child td:first-child {
	border-left-color: #1bbde8;
}
.sc_table.sc_table_style_1 table tr:first-child th:last-child,
.sc_table.sc_table_style_1 table tr:first-child td:last-child {
	border-right-color: #1bbde8;
}

.topWrap .topMenuStyleLine > ul > li.highlight > a:hover {
	border-color: #ffa900;
}


.theme_accent_bg,
.ih-item.circle.effect1.colored .info,
.ih-item.circle.effect2.colored .info,
.ih-item.circle.effect3.colored .info,
.ih-item.circle.effect4.colored .info,
.ih-item.circle.effect5.colored .info .info-back,
.ih-item.circle.effect6.colored .info,
.ih-item.circle.effect7.colored .info,
.ih-item.circle.effect8.colored .info,
.ih-item.circle.effect9.colored .info,
.ih-item.circle.effect10.colored .info,
.ih-item.circle.effect11.colored .info,
.ih-item.circle.effect12.colored .info,
.ih-item.circle.effect13.colored .info,
.ih-item.circle.effect14.colored .info,
.ih-item.circle.effect15.colored .info,
.ih-item.circle.effect16.colored .info,
.ih-item.circle.effect18.colored .info .info-back,
.ih-item.circle.effect19.colored .info,
.ih-item.circle.effect20.colored .info .info-back,
.ih-item.round.effect1.colored .info,
.ih-item.round.effect2.colored .info,
.ih-item.round.effect3.colored .info,
.ih-item.round.effect4.colored .mask1,
.ih-item.round.effect4.colored .mask2,
.ih-item.round.effect5.colored .info,
.ih-item.round.effect6.colored .info,
.ih-item.round.effect7.colored .info,
.ih-item.round.effect8.colored .info,
.ih-item.round.effect9.colored .info .info-back,
.ih-item.round.effect10.colored .info,
.ih-item.round.effect11.colored .info,
.ih-item.round.effect12.colored .info,
.ih-item.round.effect13.colored .info,
.ih-item.round.effect14.colored .info,
.ih-item.round.effect15.colored .info {
	background: none repeat scroll 0 0 #ffffff;
	background-color: rgba(255,255,255,0.8);
	margin: 20px;
}

.ih-item.circle.effect1.colored .info,
.ih-item.circle.effect2.colored .info,
.ih-item.circle.effect5.colored .info .info-back,
.ih-item.circle.effect19.colored .info,
.ih-item.circle.effect20.colored .info .info-back,
.ih-item.round.effect4.colored .mask1,
.ih-item.round.effect4.colored .mask2,
.ih-item.round.effect7.colored .info,
.ih-item.round.effect12.colored .info,
.ih-item.round.effect13.colored .info,
.sc_image_shape_round:hover figcaption { background: rgba(241,196,88,0.6);}

.ih-item.circle.effect17.colored a:hover .img:before {
	box-shadow: inset 0 0 0 110px #F1C458, inset 0 0 0 16px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 0 0 110px rgba(241,196,88, 0.6), inset 0 0 0 16px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ih-item.circle.effect1 .spinner {
	border-right-color: #f1c458;
	border-bottom-color: #f1c458;
}

.mejs-embed, .mejs-embed body, .mejs-container .mejs-controls {  background: #3c3b43 !important; }
.mejs-controls .mejs-volume-button .mejs-volume-slider { background: rgba(241,196,88,0.7) !important; }

.top_panel_above .fullScreenSlider .topWrap,
.top_panel_above .fullScreenSlider .topWrap .topMenuStyleLine > ul > li ul,
.top_panel_above .fullScreenSlider .topWrap .topMenuStyleLine > ul > li .menu-panel {}

.sc_slider_flex .sc_slider_info,
.sc_slider_swiper .sc_slider_info,
.sc_slider_flex .flex-direction-nav li,
.sc_slider_swiper .flex-direction-nav li,
.twitBlock .sc_slider .flex-direction-nav li { background-color: rgba(255,169,0,0.8) !important; }

.theme_accent_border,
.postSharing > ul > li > a:active,
.postSharing > ul > li > span:active
.roundButton > a:active,
.roundButton.border > a,
.nav_pages_parts > span.page_num,
.nav_comments > span.current,
#wp-calendar thead tr th,
.wp-calendar thead tr + tr th,
.sc_skills_bar .sc_skills_item .sc_skills_count,
.itemPageFull .itemDescriptionWrap .toggleButton:active,
.footerWidget .sc_video_player:active .sc_video_play_button:after,
.topWrap .topMenuStyleLine > ul > li ul,
.topMenuStyleLine > ul#mainmenu ul.menu-panel,
.sc_scroll_controls .flex-direction-nav a:active,
.sc_testimonials_style_1 .flex-direction-nav a:active,
.pagination .flex-direction-nav a:active,
.sliderLogo .elastislide-wrapper nav span:active:before,
.sc_dropcaps.sc_dropcaps_style_4 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_5 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_6 .sc_dropcap,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item,
.sc_tooltip_parent,
pre.code,
.widgetWrap .tagcloud a:hover,
.widgetWrap .tagcloud a:active
{ border-color: #00abd3;}

.sidemenu_wrap .sidemenu_area > ul > li + li {
	border-color: #f1f1f1;
}

::selection { color: #fff; background-color: #ffa900;}
::-moz-selection { color: #fff; background-color: #ffa900;}


/* WooCommerce colors */
.woocommerce #respond input#submit:hover, .woocommerce #content input.button:hover,.woocommerce-page #respond input#submit:hover, .woocommerce-page #content input.button:hover,
.woocommerce .quantity input[type="button"]:hover, .woocommerce #content input[type="button"]:hover, .woocommerce-page .quantity input[type="button"]:hover, .woocommerce-page #content .quantity input[type="button"]:hover,
.woocommerce a:hover h3, .woocommerce-page a:hover h3,
.woocommerce .cart-collaterals .order-total strong, .woocommerce-page .cart-collaterals .order-total strong,
.woocommerce .star-rating, .woocommerce-page .star-rating, .woocommerce .star-rating:before, .woocommerce-page .star-rating:before,
.widget_area .widgetWrap ul > li .star-rating span, .woocommerce #review_form #respond .stars a, .woocommerce-page #review_form #respond .stars a
{
	color: #00afda;
}
.woocommerce-page #respond input#submit:hover {
    color: #fff;
}
.woocommerce .checkout #order_review .order-total .amount, .woocommerce-page .checkout #order_review .order-total .amount,
.woocommerce ul.cart_list li > .amount, .woocommerce ul.product_list_widget li > .amount, .woocommerce-page ul.cart_list li > .amount, .woocommerce-page ul.product_list_widget li > .amount,
.woocommerce ul.cart_list li span .amount, .woocommerce ul.product_list_widget li span .amount, .woocommerce-page ul.cart_list li span .amount, .woocommerce-page ul.product_list_widget li span .amount,
.woocommerce ul.cart_list li ins .amount, .woocommerce ul.product_list_widget li ins .amount, .woocommerce-page ul.cart_list li ins .amount, .woocommerce-page ul.product_list_widget li ins .amount,
.woocommerce.widget_shopping_cart .total .amount, .woocommerce .widget_shopping_cart .total .amount, .woocommerce-page.widget_shopping_cart .total .amount, .woocommerce-page .widget_shopping_cart .total .amount
{
	color: #ffa900;
}

.woocommerce .woocommerce-message:before, .woocommerce-page .woocommerce-message:before,.woocommerce .widget_price_filter .ui-slider .ui-slider-range,.woocommerce-page .widget_price_filter .ui-slider .ui-slider-range
{
	  background-color: #ffa900;
}
.woocommerce .woocommerce-message:before {
    background-color: transparent;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle
{
	background: #f1c458;
}

.woocommerce .woocommerce-message, .woocommerce-page .woocommerce-message,
.woocommerce a.button.alt:active, .woocommerce button.button.alt:active, .woocommerce input.button.alt:active, .woocommerce #respond input#submit.alt:active, .woocommerce #content input.button.alt:active, .woocommerce-page a.button.alt:active, .woocommerce-page button.button.alt:active, .woocommerce-page input.button.alt:active, .woocommerce-page #respond input#submit.alt:active, .woocommerce-page #content input.button.alt:active,
.woocommerce a.button:active, .woocommerce button.button:active, .woocommerce input.button:active, .woocommerce #respond input#submit:active, .woocommerce #content input.button:active, .woocommerce-page a.button:active, .woocommerce-page button.button:active, .woocommerce-page input.button:active, .woocommerce-page #respond input#submit:active, .woocommerce-page #content input.button:active
{
	border-top-color: #f1c458;
}

/* Theme Accent2 Color */
.theme_accent2,
.sc_team .sc_team_item .sc_team_item_position,
h3 > a, .h3 > a,
.sc_blogger h3 > a, .sc_blogger .h3 > a,
.openRightMenu:hover:before,
.topWrap .search:not(.searchOpen):hover:before,
.sliderHomeBullets.slider_alias_15 .order a:hover,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_info .post_author,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_info .comments_number,
 #wp-calendar tbody td.today a,
.wp-calendar tbody td.today a
{ color: #00afda; }

.topWrap .topMenuStyleLine > ul > li ul li a:hover .menu_item_description { color:#ababab !important; }

.theme_accent2_bgc,
.sc_title_divider.theme_accent2 .sc_title_divider_before,
.sc_title_divider.theme_accent2 .sc_title_divider_after,
.sliderHomeBullets.slider_alias_15 .order a,
.dark .sc_slider_pagination_area .flex-control-nav.manual li.active .slide_date,
.dark .sc_slider_pagination_area .flex-control-nav.manual li.cs-active-pagination .slide_date,
.dark .sc_slider_pagination_area .flex-control-nav.manual li:hover .slide_date,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_date,
.sc_video_player .sc_video_play_button:after,
.footerStyleLight .footerWidget .sc_video_player .sc_video_play_button:after,
.twitBlock,
.twitBlockWrap,
.sliderHomeBullets.slider_alias_13 .order a:hover
{   background-color: #ffa900; }

.theme_accent2_bg { background: #f1c458; }

.theme_accent2_border,
.topWrap .topMenuStyleLine > ul > li ul,
.sliderHomeBullets.slider_alias_13 .order a:hover { border-color:#ffffff; }

.topWrap .openRightMenu:hover,
.topWrap .search:not(.searchOpen):hover { border-color:transparent; }

/* Tribe Events */
.tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"], .tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"] > a, #tribe_events_filters_wrapper input[type="submit"], .tribe-events-button, #tribe-events .tribe-events-button, .tribe-events-button.tribe-inactive, #tribe-events .tribe-events-button:hover, .tribe-events-button:hover, .tribe-events-button.tribe-active:hover {
	  background-color: #ffa900;
}

#tribe-bar-form .tribe-bar-submit input[type="submit"] { background: #f1c458; }

.portfolio .isotopeElement .folioShowBlock:before { background-color: #1bbde8;}

/* Other skin settings
------------------------------------------------------------------------- */


/* Fonts */
a .sc_title_iconed,
.sidebar > .widget,
.topWrap .topMenuStyleLine > ul > li > a,
.topWrap .topMenuStyleLine > ul > li ul,
textarea,
.portfolioWrap .isotopeFiltr ul a,
.sc_team .sc_team_item .sc_team_item_title,
.sliderHomeBullets.slider_alias_13 .textBlock .title,
body {font-family: 'Hind';}
textarea { color:#191d1e; }
.logo_text {font-family: 'Rufina'; font-weight:700; }
.h1, .h2 { letter-spacing: 1px; text-transform: uppercase;}
h1, .h1 { font-size:64px; line-height:1; font-weight:600; }
h2, .h2 { font-size:52px; padding-bottom:17px; line-height:1; font-weight:600;}
h3, .h3 { font-size:30px; line-height:1; font-weight:600;}
h4, .h4 { font-size:24px; line-height:1;}
h5, .h5 { font-size:18px; line-height:1;}
h6, .h6 { font-size:16px; line-height:1;}

h4 > a {color: #000000;}

b, strong { line-height: 1; font-weight:700; }

#toc .toc_description,
.sidemenu_wrap .sidemenu_area ul li ul li ul li a,
.sidemenu_wrap .sidemenu_area > ul > li > a,
.openResponsiveMenu,
.h1, .h2 { font-family: 'Hind', serif; }

.footerWidget .widgetWrap .title { 
	font-family: inherit;
	font-size: 16px;
	line-height: 1.1;
	font-weight: 700;
}

/* User menu */
.usermenu_area { background-color: #fff; border-bottom: 1px solid #f2f2f2; }
.topWrap .usermenu_area { color: #e8e8e8; }

/* Accredited Business */
/*.acc-icon-wrapper {*/
	/*position: absolute;*/
	/*right: -168px;*/
/*}*/

/* Top area */
.topWrap .logo { font-size:36px; }
.logo .logo_text { line-height:45px; }
header.fixedTopMenu .topWrap .logo .logo_text { line-height:21px; }
.logo .logo_slogan {
	font-size:8px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height:22px;
	text-align: center;
	text-transform: uppercase;
}
.logo img { max-width: 100%; height: auto; }
header.fixedTopMenu .topWrap .logo img { max-width: 100%; height: auto; max-height: none; }
.topWrap .logo { padding-top: 13px; }
.sidemenu_wrap .logo img { }
header.fixedTopMenu .topWrap .logo { }
header.fixedTopMenu .topWrap .logo img {margin-top: 10px;}

.tabsButton ul li.ui-state-default:hover a:before, .tabsButton ul li.ui-tabs-active { border-color: transparent; }
.tabsButton ul li, .tabsButton ul li a:before { border-radius:0; }
.tabsButton ul li:hover a { color: #9b9b9b; }

.openRightMenu,
.topWrap .search { border-width: 1px; border-color:transparent; margin-top: 23px; }
.menu_center .topWrap .search {  margin-bottom: 35px;  margin-top: 30px;}
.topWrap .search.searchOpen { border-color: #1bbde8; }
.openRightMenu:before,
.topWrap .search:before { color: #252525; }
.topWrap .search:before { content: '\e808'; }

/* Main menu */
.topWrap .topMenuStyleLine > ul > li > a > span {display: none;}
.topWrap .topMenuStyleLine > ul > li { padding-top: 0; margin-top: 25px;  margin-bottom: 25px; }
.menu_center .topWrap .topMenuStyleLine > ul > li { margin-top: 31px; }
.fullScreenSlider .noFixMenu ul#mainmenu ul.menu-panel{ top: 130px;}
.topWrap .topMenuStyleLine > ul > li ul { top: 61px;}
.top_panel_above .fullScreenSlider .topWrap .topMenuStyleLine > ul > li ul { top: 130px;}
.top_panel_above .fullScreenSlider .topWrap .topMenuStyleLine > ul > li ul ul { top: 0;}
ul#mainmenu ul.menu-panel { top: 61px;}

.topWrap .topMenuStyleLine > ul > li > a,
.fixedTopMenu .topWrap .topMenuStyleLine > ul > li > a {
    color: #292f34; padding: 0 28px;
}
.topWrap .topMenuStyleLine > ul li.current-menu-item > a,
.topWrap .topMenuStyleLine ul > li.current-menu-parent > a,
.topWrap .topMenuStyleLine > ul > li.current-menu-ancestor > a {color: #00afda;}
.topWrap .topMenuStyleLine > ul > li > a:hover {color: #00afda;}
.topWrap .topMenuStyleLine > ul > li.highlight > a {
	border: 1px solid #00afda;
	color: #00afda;
	margin-left: 10px;
	padding: 0 16px;
}
.top_panel_above header:not(.fixedTopMenu) .topWrap .topMenuStyleLine > ul > li:not(.highlight) > a:hover {}
.top_panel_above.responsive_menu  header.noFixMenu .topWrap .topMenuStyleLine > ul > li:not(.highlight) > a:hover {color: #00afda;}
/* Blog
------------------------------------------------------------------- */
.relatedPostWrap article .relatedInfo { font-style: normal; }
.relatedPostWrap article h4 {font: 400 28px/35px 'Hind', serif;}

/* Footer
------------------------------------------------------------------- */
.contactFooter .logo img { height: auto; max-height: 72px;  }

ul li a.social_icons.icon-facebook:hover, ul li a.social_icons.icon-facebook {background-color: #3b5998;}
ul li a.social_icons.icon-twitter:hover, ul li a.social_icons.icon-twitter {background-color: #1ab2e8;}
ul li a.social_icons.icon-gplus:hover, ul li a.social_icons.icon-gplus {background-color: #d43e33;}
ul li a.social_icons.icon-linkedin:hover, ul li a.social_icons.icon-linkedin {background-color: #FF9900;}
ul li a.social_icons.icon-dribbble:hover, ul li a.social_icons.icon-dribbble {background-color: #e04c86;}
ul li a.social_icons.icon-pinterest:hover, ul li a.social_icons.icon-pinterest {background-color: #c60703;}
ul li a.social_icons.icon-tumblr:hover, ul li a.social_icons.icon-tumblr {background-color: #41546C;}
ul li a.social_icons.icon-behance:hover, ul li a.social_icons.icon-behance {background-color: #4176FA;}
ul li a.social_icons.icon-youtube-play:hover, ul li a.social_icons.icon-youtube-play {background-color: #d8271d;}
ul li a.social_icons.icon-vimeo:hover, ul li a.social_icons.icon-vimeo {background-color: #41B2DC;}
ul li a.social_icons.icon-rss:hover, ul li a.social_icons.icon-rss {background-color: #FF9900;}
ul li a.social_icons.icon-flickr:hover, ul li a.social_icons.icon-flickr {background-color: #0062DD;}
.widget_socials .socPage ul,
.copyWrap .socPage,
.copyWrap .socPage ul {  height: 24px; }
.copyWrap .socPage { padding-top: 4px; }

.footerStyleLight .footerWidget #wp-calendar tbody td.today, .footerStyleLight .footerWidget #wp-calendar tbody td.today a,
.footerStyleLight .footerWidget .wp-calendar tbody td.today, .footerStyleLight .footerWidget .wp-calendar tbody td.today a { background-color:transparent; }
.footerStyleDark .footerWidget .widgetWrap .title { color: #ffffff; }

.copyWrap { color: #606060; font-size: 16px;}
.copyWrap a { color: #00add7; }
.copyWrap a:hover { color: #242420; }


/* Shortcodes
------------------------------------------------------------------- */
/* Accordion and Toggles */
.sc_toggles.sc_toggles_style_1 .sc_toggles_item .sc_toggles_title:hover { 
	color: #00abd3;
}
.sc_accordion.sc_accordion_style_1 .sc_accordion_item.sc_active .sc_accordion_title, .sc_accordion.sc_accordion_style_1 .sc_accordion_item.sc_active .sc_accordion_title:hover,
.sc_accordion.sc_accordion_style_2 .sc_accordion_item.sc_active .sc_accordion_title, .sc_accordion.sc_accordion_style_2 .sc_accordion_item.sc_active .sc_accordion_title:hover,
.sc_blogger .sc_accordion_item .sc_active .sc_blogger_title, .sc_blogger .sc_accordion_item .sc_active .sc_blogger_title:hover {
	color: inherit !important; 
}

/* Blogger */
.sc_blogger h4 {
	font: 600 24px/33px 'Hind';
}
.sc_blogger.style_date .sc_blogger_item .sc_blogger_date { border-width:0; }
.sc_blogger.style_date .sc_blogger_item .sc_blogger_date .day_month { color: #ffffff !important; font-weight:400; }
.sc_blogger.style_date .sc_blogger_item .sc_blogger_date .year { color: #ffffff; font-weight:400; }
.sc_blogger.style_date .sc_blogger_item .sc_blogger_title { font-family: 'Hind', sans-serif; font-weight:400; font-size: 1em; color: #191d1e;  }
.sc_blogger.style_date .sc_blogger_item .sc_blogger_title a { color: #191d1e;  }
.sc_blogger.style_date .sc_blogger_item .sc_blogger_info { font-style:normal; }

/* Team */
.sc_team .sc_team_item .sc_team_item_position { color: #96968c; }
.sc_team .sc_team_item .sc_team_item_info {
	-webkit-transition: all 0.4s ease-in-out;
	   -moz-transition: all 0.4s ease-in-out;
	    -ms-transition: all 0.4s ease-in-out;
	     -o-transition: all 0.4s ease-in-out;
	        transition: all 0.4s ease-in-out;
}
.sc_team .sc_team_item:hover .sc_team_item_info { padding-bottom:7px; }
.sc_team .sc_team_item:hover .sc_team_item_avatar { margin-top:-34px; }
.sc_team .sc_team_item .sc_team_item_position { font-weight:400; }
.sc_team .sc_team_item .sc_team_item_avatar:after { background-color: rgba(27,189,232,0.7);}
/* Slider */
.dark .sc_slider_pagination_area .flex-control-nav.manual .slide_info .slide_title { font-family: 'Hind', sans-serif; font-weight:400; color: #ffffff; }
.dark .sc_slider_pagination_area .flex-control-nav.manual li + li .slide_pager { border-color: rgba(255,255,255,0.3); }
.dark .sc_slider_pagination_area .flex-control-nav.manual li.active,
.dark .sc_slider_pagination_area .flex-control-nav.manual li.cs-active-pagination,
.dark .sc_slider_pagination_area .flex-control-nav.manual li:hover { background-color:transparent; }
.dark .sc_scroll_vertical .sc_scroll_bar { border-color: rgba(255,255,255,0.3); }

/* Video */
.sc_video_player .sc_video_play_button:after,
.sc_video_player:hover .sc_video_play_button:after,
.footerStyleLight .footerWidget .sc_video_player .sc_video_play_button:after,
.footerStyleLight .footerWidget .sc_video_player:hover .sc_video_play_button:after { color: #ffffff; }

/* Title with huge icon*/
.sc_title_icon.sc_title_top.sc_size_huge + h5 {margin-top: 40px;}

/* Icon and text section */
.hover_red .sc_section .sc_title_icon:before,
.hover_red .sc_section .sc_title {
	color: #b9b9aa;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.hover_red .sc_section:hover .sc_title_icon:before {color: #00afda;}
.hover_red .sc_section .sc_title {
	border-bottom: 1px solid transparent;
	display: inline-block;
	margin-top: 21px !important;
	padding-bottom: 7px;
	position: relative;
}
.hover_red .sc_section:hover .sc_title {border-bottom-color: #f1c458;}
/* Disable round corners
------------------------------------------------------------------- */
.rad4,
.postSharing > ul > li,
.postSharing > ul > li > a,
.postSharing > ul > li > span,
.mejs-container .mejs-controls,
.mejs-container .mejs-controls .mejs-time-rail span,
.mejs-container .mejs-controls .mejs-horizontal-volume-slider > div,
.pagination > ul > li > a,
.pagination .pageLibrary li.libPage .navInput,
.pagination .pageLibrary > li.libPage > .pageFocusBlock,
input[type="submit"],
input[type="button"],
.roundButton > span,
.roundButton > a,
.nav_pages_parts span,
.nav_comments a,
.nav_comments span,
.comments_list a.comment-edit-link,
.topWrap .search .ajaxSearchResults,
input[type="text"],
input[type="password"],
textarea,
.sc_infobox,
.sc_tabs_style_1 .sc_tabs_content + .sc_tabs_content,
.masonry article .status,
.sc_skills_bar .sc_skills_item,
.sc_skills_bar .sc_skills_item .sc_skills_count,
.reviewBlock .infoTotal,
.upToScroll,
.sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count,
.sc_testimonials_style_2 .sc_testimonials_items,
.sc_testimonials_style_3 .sc_testimonials_items,
.sc_testimonials_style_2 .flex-direction-nav li,
.sc_testimonials_style_3 .flex-direction-nav li,
.sc_scroll_bar .swiper-scrollbar-drag:before,
.sc_tabs_style_2 .sc_tabs_titles li a,
.sc_slider_pagination_area .flex-control-nav.manual .slide_date,
.user-popUp .formItems .formList li .sendEnter,
.user-popUp .formItems .formList .loginSoc .iconLogin,
.widgetWrap .tagcloud a,
.widgetTabs .widgetTop .tagcloud a,
#toc .toc_description
{ }

.postSharing > ul > li.share > a.selected,
.postSharing > ul > li.share > span.selected,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:first-child .sc_accordion_title,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:first-child,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:first-child .sc_toggles_title,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:first-child,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:first-child .sc_toggles_title,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:first-child,
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count
/*radius4 top left*/{-moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0;}
.postSharing > ul > li.share > a.selected,
.postSharing > ul > li.share > span.selected,
.postSharing > ul > li.share > ul.shareDrop,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:first-child .sc_accordion_title,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:first-child,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:first-child .sc_toggles_title,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:first-child,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:first-child .sc_toggles_title,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:first-child,
.sc_tabs_style_1 .sc_tabs_content,
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count
/*radius4 top right*/{-moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0;}
.postSharing > ul > li.share > ul.shareDrop,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:last-child .sc_accordion_title,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:last-child .sc_accordion_content,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:last-child,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:last-child .sc_toggles_title,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:last-child .sc_toggles_content,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:last-child,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:last-child .sc_toggles_title,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:last-child .sc_toggles_content,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:last-child,
.sc_tabs_style_1 .sc_tabs_content,
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info,
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info:before
/*radius4 bottom left*/{-moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0;}
.postSharing > ul > li.share > ul.shareDrop,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:last-child .sc_accordion_title,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:last-child .sc_accordion_content,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item:last-child,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:last-child .sc_toggles_title,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:last-child .sc_toggles_content,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item:last-child,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:last-child .sc_toggles_title,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:last-child .sc_toggles_content,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item:last-child,
.sc_tabs_style_1 .sc_tabs_content,
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info,
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info:before
/*radius4 bottom right*/{-moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0;}

.sc_border .sc_zoom,
.sc_border .slides,
.mejs-container .mejs-controls .mejs-time-rail span.mejs-time-float,
.reviewBlock .ratingItem .ratBubble
/*radius3*/{ -webkit-border-radius: 0; -moz-border-radius:0; border-radius: 0;}

.sc_table,
.sc_pricing_table,
.sc_pricing_table .sc_pricing_columns:hover ul.columnsAnimate
/*radius10*/{ -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;}
.sc_table table tr:first-child th:first-child,
.sc_table table tr:first-child td:first-child,
.sc_pricing_table .sc_pricing_columns:first-child ul li:first-child,
.sc_pricing_table .sc_pricing_columns:hover ul.columnsAnimate li:first-child,
.sc_pricing_table .sc_pricing_columns:first-child ul,
.sc_pricing_table .sc_pricing_columns:first-child ul li.sc_pricing_title_img img,
.tabsButton ul li, .tabsButton ul li a:before,
.sc_tabs_style_1 .sc_tabs_titles li.ui-tabs-active a
/*radius10 top left*/{-moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0;}
.sc_table table tr:first-child th:last-child,
.sc_table table tr:first-child td:last-child,
.sc_pricing_table .sc_pricing_columns:last-child ul li:first-child,
.sc_pricing_table .sc_pricing_columns:hover ul.columnsAnimate li:first-child,
.sc_pricing_table .sc_pricing_columns:last-child ul,
.sc_pricing_table .sc_pricing_columns:last-child ul li.sc_pricing_title_img img,
.tabsButton ul li, .tabsButton ul li a:before,
.sc_tabs_style_1 .sc_tabs_titles li.ui-tabs-active a
/*radius10 top right*/{-moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0;}
.sc_table table tr:last-child th:first-child,
.sc_table table tr:last-child td:first-child,
.sc_pricing_table .sc_pricing_columns:first-child ul li:last-child,
.sc_pricing_table .sc_pricing_columns:hover ul.columnsAnimate li:last-child,
.sc_pricing_table .sc_pricing_columns:first-child ul
/*radius10 bottom left*/{-moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0;}
.sc_table table tr:last-child th:last-child,
.sc_table table tr:last-child td:last-child,
.sc_pricing_table .sc_pricing_columns:last-child ul li:last-child,
.sc_pricing_table .sc_pricing_columns:hover ul.columnsAnimate li:last-child,
.sc_pricing_table .sc_pricing_columns:last-child ul
/*radius10 bottom right*/{-moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0;}


/* Textarea styling */
.sc_contact_form_contact_2 .sc_contact_form_button .roundButton > a {
}
.sc_contact_form_contact_3 textarea,
.sc_contact_form_contact_3 input {
	background-color: #fff;
	border: none;
	border-left: 1px solid rgba(0,0,0,0.15);
	border-top: 1px solid rgba(0,0,0,0.15);
	color: #8f8f8f;
	font-weight: 300;
}
.sc_contact_form_contact_3 .sc_contact_form_button .roundButton > a {
	text-transform: lowercase;
}

input[type="submit"], input[type="button"] {
    color: #fff;
    background-color: #00afda;
    border-color: #00afda;
    border-style: solid;
    border-width: 2px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="submit"]:hover, input[type="button"]:hover {
    color: #00afda;
    background-color: transparent;
}

.sc_contact_form_contact_3 textarea:after {
}

/* Enable round corners */
.sc_contact_form_contact_2 textarea,
.sc_contact_form_contact_2 input {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.portfolio .isotopeElement .hoverDirShow .folioShowBlock,
.masonry article .thumb,
.masonry article .thumb img,
.portfolio.folio1col .isotopeElement img,
.portfolio.folio2col .isotopeElement img,
.portfolio.folio3col .isotopeElement img,
.portfolio.folio4col .isotopeElement img,
.portfolio.folio1col .isotopeElement > .effect6,
.portfolio.folio2col .isotopeElement > .effect6,
.portfolio.folio3col .isotopeElement > .effect6,
.portfolio.folio4col .isotopeElement > .effect6,
.portfolio.folio1col .isotopeElement,
.portfolio.folio2col .isotopeElement,
.portfolio.folio3col .isotopeElement,
.portfolio.folio4col .isotopeElement {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/* Disable shadows
------------------------------------------------------------------- */
.top_panel_over .topWrap,
.sliderHomeBullets.slider_alias_10 .order a,
.sc_slider_pagination_area .flex-control-nav.manual .slide_date,
.topWrap .topMenuStyleLine > ul#mainmenu ul.menu-panel ul,
.footerWrap.footerStyleLight .footerWidget:before,
.sc_shadow,
.sc_popup_light,
.inlineShadow,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="submit"]:active,
input[type="button"]:active,
.roundButton:hover > a,
.roundButton:active > a,
.nav_pages_parts a:hover span,
.nav_comments a:hover,
.sc_scroll_controls .flex-direction-nav a:hover,
.sc_testimonials_style_1 .flex-direction-nav a:hover,
.sc_testimonials_style_1 .flex-direction-nav a:active,
.pagination .flex-direction-nav a:hover,
.pagination .flex-direction-nav a:active,
.pagination > ul > li > a:hover,
.pagination .pageLibrary > li.libPage > .pageFocusBlock:after,
.roundButton a:hover,
.roundButton a:active,
ul > li.share > ul.shareDrop,
.sc_tabs_style_1 .sc_tabs_content,
.sc_table,
.sc_pricing_table,
.woocommerce div.product .woocommerce-tabs .panel, .woocommerce #content div.product .woocommerce-tabs .panel, .woocommerce-page div.product .woocommerce-tabs .panel, .woocommerce-page #content div.product .woocommerce-tabs .panel {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}
.inlineShadow { left:0; right: 0; height: 0; border-bottom:1px solid #e9e9e9; z-index:1;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="submit"]:active,
input[type="button"]:active,
.roundButton:hover,
.roundButton:active,
.nav_pages_parts a:hover span,
.nav_comments a:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce #content input.button:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page #content input.button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce #content input.button.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page #content input.button.alt:hover { top: 0; }
.sc_scroll_controls .flex-direction-nav a:hover,
.sc_testimonials_style_1 .flex-direction-nav a:hover,
.sc_testimonials_style_1 .flex-direction-nav a:active,
.pagination .flex-direction-nav a:hover,
.pagination .flex-direction-nav a:active,
.pagination > ul > li > a:hover,
.roundButton a:hover,
.roundButton a:active { margin-top:0; }



/* Arrows
---------------------------------------------------------------------- */
.sc_scroll_controls ul.flex-direction-nav a,
.sc_scroll_controls ul.flex-direction-nav li:hover a,
.sc_scroll_controls ul.flex-direction-nav li:active a,
.roundButton.up a, .roundButton.down a,
.roundButton.up:hover a, .roundButton.down:hover a,
.roundButton.up:active a, .roundButton.down:active a,
.sc_testimonials .flex-direction-nav a,
.sc_testimonials .flex-direction-nav a:hover,
.twitBlock .sc_slider .flex-direction-nav li a:before,
#wp-calendar .roundButton a,
#wp-calendar .roundButton:hover a,
.wp-calendar .roundButton a,
.wp-calendar .roundButton:hover a,
.footerStyleDark .footerWidget .roundButton a,
.footerStyleDark .footerWidget .roundButton:hover a,
.footerStyleLight .footerWidget .roundButton a,
.footerStyleLight .footerWidget .roundButton:hover a,
.pagination .pageLibrary > li.libPage > .pageFocusBlock .flex-direction-nav li a,
.pagination .pageLibrary > li.libPage > .pageFocusBlock .flex-direction-nav li:hover a { background:none; border-color:transparent; }

.roundButton a:before,
.sc_scroll_controls_horizontal .flex-direction-nav a:before,
.sc_testimonials .flex-direction-nav a:before,
.twitBlock .sc_slider .flex-direction-nav li a:before,
.pagination .flex-direction-nav a:before {
	color: #8b8b8b;
}
.sc_testimonials.sc_testimonials_style_2 .flex-direction-nav li a:before {
	color: #fff;
}
.dark .roundButton a:before,
.dark .sc_scroll_controls_horizontal .flex-direction-nav a:before,
.dark .sc_testimonials .flex-direction-nav a:before,
.dark .twitBlock .sc_slider .flex-direction-nav li a:before,
.dark .pagination .flex-direction-nav a:before {
	color: #ffffff;
}

.dark .sc_testimonials .flex-direction-nav a:after,
.dark .sc_testimonials .flex-direction-nav a:before {color: rgba(255,255,255,0.5);}
.dark .sc_testimonials .flex-direction-nav a:hover:after,
.dark .sc_testimonials .flex-direction-nav a:hover:before {color: #ffffff;}

.twitBlock .sc_slider .flex-direction-nav li a:before { color: rgba(255,255,255,0.6); }
.twitBlock .sc_slider .flex-direction-nav li:hover a:before { color: #ffffff; background-color:transparent; }

.roundButton.left a:before,
.sc_scroll_controls_horizontal .flex-direction-nav a.flex-prev:before,
.sc_testimonials .flex-direction-nav a.flex-prev:before,
.twitBlock .sc_slider .flex-direction-nav li a.flex-prev:before,
.pagination .flex-direction-nav a.flex-prev:before,
.roundButton.ico.left > a:before {
	content:'\e825';
    font-family: fontello;
}
.roundButton.right a:before,
.sc_scroll_controls_horizontal .flex-direction-nav a.flex-next:before,
.sc_testimonials .flex-direction-nav a.flex-next:before,
.twitBlock .sc_slider .flex-direction-nav li a.flex-next:before,
.pagination .flex-direction-nav a.flex-next:before,
.roundButton.ico.right > a:after {
	content:'\e826';
    font-family: fontello;
}
.sc_scroll_controls_vertical .flex-direction-nav a.flex-prev:before, .roundButton.up a:before {
	content:'\e827';
    font-family: fontello;
}
.sc_scroll_controls_vertical .flex-direction-nav a.flex-next:before, .roundButton.down a:before {
	content:'\e824';
    font-family: fontello;
}

.widget_calendar:not(.widgetTop) .roundButton.left a:before,
.widget_calendar:not(.widgetTop) .roundButton.right a:before { font-size:14px; }

.sc_testimonials_style_3 .flex-direction-nav a:before,
.footerStyleDark .footerWidget .sc_video_player .sc_video_play_button:after { color: rgba(255,255,255,0.6); }
.sc_testimonials_style_3 .flex-direction-nav li:hover a:before,
.footerStyleDark .footerWidget .sc_video_player:hover .sc_video_play_button:after { color: #191d1e; }


/* Emailer
------------------------------------------------------------------ */
.sc_emailer.inputSubmitAnimation {
	width: auto;
    margin-bottom: 85px !important;
}
footer .sc_emailer.inputSubmitAnimation {
	margin-top: 22px;
}
footer .inputSubmitAnimation .sInput {
    font-weight: 300;
    background-color: #fff;
    color: #8f8f8f;
    -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,0.15);
    -moz-box-shadow: inset 1px 1px 0 rgba(0,0,0,0.15);
    box-shadow: inset 1px 1px 0 rgba(0,0,0,0.15);
}
.sc_emailer.inputSubmitAnimation a.sc_button.mini.sc_emailer_button {
  display: inline-block;
  width: auto;
  height: 45px;
  margin-top: 30px;
  padding: 0px 24px;
  font-size: 18px;
  line-height: 45px;
  font-weight: 700;
  color: #fff;
}
.inputSubmitAnimation .aIco.mail:before {
  content: initial;
}

/* Buttons
------------------------------------------------------------------ */



/* Shortcodes */
.sc_blogger.style_image .sc_blogger_info:before {
	background: none;
}
.sc_blogger.style_masonry3 .thumb img {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}


/* Slider
---------------------------------------------------------------------- */
.sliderHomeBullets.slider_alias_15 .rsBullets { display: none;}
.sliderHomeBullets.slider_alias_15 .rsBullets .rsBullet span { border-color:#ffffff; background-color: #ffffff; }

.sliderHomeBullets.slider_alias_15 .imageBlock { text-align: center; left: 0; width: 60%; z-index: 5;}
.sliderHomeBullets.slider_alias_15 .imageBlock img { display: inline-block; width: auto; }

.sliderHomeBullets.slider_alias_15 .textBlock { font-size: 1em; line-height: 150%; margin-left:0; text-align: center; left: 0; width: 60%; z-index: 5;}
.sliderHomeBullets.slider_alias_15 .textBlock.title div { font-family: 'Rufina', serif; font-weight: 400; font-size: 4.14em; }
.sliderHomeBullets.slider_alias_15 .textBlock.text div { font-family: 'Hind', sans-serif; font-weight: 400; margin: 0; background:none; padding:0; margin:0; display:inline-block; }

.sliderHomeBullets.slider_alias_15 .order { text-align: center; left: 0; width: 60%;  }
.sliderHomeBullets.slider_alias_15 .order a { display: inline-block; color: #ffffff; font-size: 1.15em; font-weight: 700; border-width:0; }
.sliderHomeBullets.slider_alias_15 .order a:hover { background-color: #ffffff; }
.sliderHomeBullets.slider_alias_15 .order a:before { display: none; }

.sliderHomeBullets.slider_alias_15 .slide-1 .imageBlock { top: 42%;}
.sliderHomeBullets.slider_alias_15 .slide-1 .imageBlock img { height: 12.5%;}
.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.title { top: 58%; }
.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.text { top: 68%;  }
.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.text div { font-size: 1.72em; }

.sliderHomeBullets.slider_alias_15 .slide-2 .imageBlock { top: 41.5%; left: auto; right:0; }
.sliderHomeBullets.slider_alias_15 .slide-2 .imageBlock img { height: 15.6%; }
.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock { left: auto; right:0; }
.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.title { top: 65%; }
.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.title div { font-size:4em; }
.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.text { top: 55.8%; }
.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.text div { font-size: 1.29em; padding-bottom: 1.5em; border-bottom:1px solid rgba(255,255,255,0.4); }
.sliderHomeBullets.slider_alias_15 .slide-2 .order { top: 76%; left: auto; right:0; }

.sliderHomeBullets.slider_alias_15 .slide-3 .imageBlock { top: 26.4%; left: auto; right:0; }
.sliderHomeBullets.slider_alias_15 .slide-3 .imageBlock img { height: 17.1%; }
.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock { left: auto; right:0; }
.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.title { top: 44%; }
.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.text { top: 54%; }
.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.text div { font-size: 1.15em; }
.sliderHomeBullets.slider_alias_15 .slide-3 .order { top: 63%; left: auto; right:0; }

.sliderHomeBullets.slider_alias_15 .slideContent:before { content: ''; position:absolute; left:0; top:0; bottom:0; right:0; background-color:rgba(0,0,0,0.2); z-index:3; background-image:url(/wp-content/themes/plumbing-company/images/bg/texture_3.png); }


/* New Fullscreen Slider 
---------------------------------------------------------------------- */
.fullScreenSlider .sliderHomeBullets .textBlock .title {
	font-family: "Rufina", serif;
	text-shadow:rgba(0,0,0,0.4) 2px 2px;
}

.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { top: 45%; }
.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:60%; }

.sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 35%; }
.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock { top: 45%; }


/* WooCommerce Slider 
---------------------------------------------------------------------- */
.sliderHomeBullets.slider_alias_13 .textBlock { width:55%; }
.sliderHomeBullets.slider_alias_13 .textPrice > div,
.sliderHomeBullets.slider_alias_13 .textPrice {
	background:  transparent !important;
	border: 5px solid rgba(245, 94, 69, 0.40);
	height: 140px;
	padding: 0;
	top: 10%; right: 7%;
	width:140px;
}
.sliderHomeBullets.slider_alias_13 .textPrice > div {
	background-color: #f1c458 !important;
	border: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font: normal 36px/36px 'Hind',serif;
}
.sliderHomeBullets.slider_alias_13 .textPrice span {
	font-size: 32px;
	line-height: 140px;
	margin-top: 0;
	text-align: center;
}


/* Revolution Slider
---------------------------------------------------------------------- */
.tparrows.preview1:after { font-family: "fontello"; font-size:37px; }
.tp-leftarrow.preview1:after {
	content: "\e949";
}
.tp-rightarrow.preview1:after {
	content: "\e94a";
}
.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected,
.tp-bullets.simplebullets .bullet {
	background:none !important;
	background-color: #000 !important;
	border:2px solid #000 !important;
	-webkit-border-radius: 50% !important;
   	   -moz-border-radius: 50% !important;
			border-radius: 50% !important;
	height: 12px !important;
	margin-right:12px !important;
	width:12px !important;
}
.tp-bullets.simplebullets .bullet.selected,
.tp-bullets.simplebullets .bullet:hover { background-color:transparent !important;border-color: #ffffff !important; }

.slider-btn-padding31 .sc_button a {
    padding: 0 31px;
}
.slider-btn-padding25 .sc_button a {
    padding: 0 25px;
}
.slider-btn-padding36 .sc_button a {
    padding: 0 36px;
}

/* Magnific popup
---------------------------------------------------------------------- */
.mfp-close {right: -7px;top: -5px;}@media (min-width: 1280px) and (max-width: 1439px) {
	/* Fullscreen slider */
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .order,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:72%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .slide-3 .image,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 44%; }
}

@media (min-width: 1168px) and (max-width: 1279px) {
	body { min-width: 1050px;}
	.main_content { min-width: 1050px;}
	.sidemenu_left .main_content { min-width: 1000px}
	.main { width:1050px; }
	
	body.boxed .boxedWrap { width: 1100px; }

	.top_panel_over.boxed header.noFixMenu .topWrap { padding-left: 25px; padding-right: 25px; width:1050px; }

	.with_sidebar .content { width: 750px;}

	.content .sc_video_player, .content iframe { max-width:750px; }
	.with_sidebar .content .sc_video_player, .with_sidebar .content iframe { max-width:1050px; }

	.masonry article .thumb {padding: 0;}

	.sliderHomeBullets { font-size:13px; }

	/* News slider */
	.sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider {	max-width:500px; }
	.without_sidebar .sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider { max-width:710px; }
	.sc_slider_pagination_area .flex-control-nav.manual { width:240px; }
	.without_sidebar .sc_slider_pagination_area .flex-control-nav.manual { width:330px; }
	.sc_slider_pagination_over .flex-control-nav.manual { width:330px; left:-340px; }
	.post_content .sc_slider_pagination_over .flex-control-nav.manual {	width:240px; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_date { float:none; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_info { clear:both; margin-top:6px; }

	/* Fullscreen slider */
	.sliderHomeBullets.slider_alias_11 .slide-1 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-1 .textBlock .title { font-size: 3.3em; }
	.sliderHomeBullets.slider_alias_11 .slide-2 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-2 .textBlock .title { font-size: 2.2em; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .image,
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { width: 4%; top: 45%; margin-left:-2%; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock .title { font-size: 3em; }

	/* Calendar */
	.widgetTabs .widgetTop .wp-calendar { font-size:32px; }
	.widgetTabs .widgetTop .wp-calendar th,
	.widgetTabs .widgetTop .wp-calendar td {  height:80px;  }

	/* Booking Calendar */
	.days_container_all .booking_day_container {width: 138px;}
	.booking_name_days_container .booking_day_name {width: 140px;}

	.days_container_all .booking_day_number {font-size: 22px;}
}


@media (min-width: 1024px) and (max-width: 1167px) {
	body { min-width: 850px; font-size:13px; line-height:19px; }
	h1, .h1 { font-size:40px; line-height:54px; padding:0 0 26px 0;}
	h2, .h2 { font-size:32px; line-height:38px; padding:0 0 36px 0;}
	h3, .h3 { font-size:21px; line-height:26px; padding:0 0 32px 0;}
	h4, .h4 { font-size:16px; line-height:20px; padding:0 0 28px 0;}
	h5, .h5 { font-size:13px; line-height:16px; padding:0 0 26px 0;}
	h6, .h6 { font-size:12px; line-height:15px; padding:0 0 24px 0;}

	.big_text { font-size:16px; line-height:24px; }

	.main_content { min-width: 850px;}
	.sidemenu_left .main_content { min-width: 800px}
	.main { width:850px; }

	body.boxed .boxedWrap { width: 900px; }

	.top_panel_over.boxed header.noFixMenu .topWrap { padding-left: 25px; padding-right: 25px; width:850px; }

	.with_sidebar .content { width: 600px;}
	.sidebar { width: 200px;}
	.fullwide .sideBarRight .content, .fullscreen .sideBarRight .content { margin-right: 250px; }
	.fullwide .sideBarRight .sidebar, .fullscreen .sideBarRight .sidebar { margin-left: -200px; }
	.fullwide .sideBarLeft  .content, .fullscreen .sideBarLeft  .content { margin-left:  250px; }
	.fullwide .sideBarLeft  .sidebar, .fullscreen .sideBarLeft  .sidebar { margin-right:-200px; }

	.content .sc_video_player, .content iframe { max-width:600px; }
	.with_sidebar .content .sc_video_player, .with_sidebar .content iframe { max-width:850px; }
	.widget_area .sc_video_player, .widget_area .content iframe { max-width:200px; }
	.widget_area .search-form .search-field { max-width:150px; }

	.sc_counter .sc_skills_item .sc_skills_count{font-size: 50px;}
	.sc_counter .sc_skills_item.SCstyle3 .sc_skills_count{ font-size: 50px;}
	.sc_counter .sc_skills_item.SCstyle4 .sc_skills_count{ font-size: 50px;}
	.sc_skills_percent .skillsWrap .sc_skills_item .sc_skills_count{ font-size: 60px;}
	
	.sc_scroll_controls ul.flex-direction-nav { top: -77px; }

	.topWrap .topMenuStyleLine > ul > li > a {padding: 0 10px;}

	.sliderHomeBullets { font-size:11px; }
	.sliderHomeBulletsGap { height: 320px !important;}
		.sliderHomeBullets.staticSlider:not(.slider_engine_revo),
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .slideContent
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .sc_slider,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .slides,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .swiper-slide { height: 400px !important;}

	/* News slider */
	.sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider {	max-width:400px; }
	.without_sidebar .sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider { max-width:610px; }
	.sc_slider_pagination_area .flex-control-nav.manual { width:190px; }
	.without_sidebar .sc_slider_pagination_area .flex-control-nav.manual { width:280px; }
	.sc_slider_pagination_over .flex-control-nav.manual { width:280px; left:-290px; }
	.post_content .sc_slider_pagination_over .flex-control-nav.manual {	width:190px; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_date { float:none; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_info { clear:both; margin-top:6px; }
	.sc_slider_pagination_area .flex-control-nav.manual li { padding-left: 20px; }
	.sc_slider_pagination_area .flex-control-nav.manual li .slide_pager { padding:15px 20px 10px 0; }
	.sc_slider_pagination_over .flex-control-nav.manual li .slide_pager { padding-left:20px; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_date { width:60px; height:20px; line-height:20px; margin-right: 15px; }

	/* Fullscreen slider */
	.sliderHomeBullets.slider_alias_11 .slide-1 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-1 .textBlock .title { font-size: 3.3em; }
	.sliderHomeBullets.slider_alias_11 .slide-2 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-2 .textBlock .title { font-size: 2.2em; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .image,
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { width: 4%; top: 45%; margin-left:-2%; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock .title { font-size: 3em; }

	/* Widgets in tabs */
	.widgetTabs .widgetTop { font-size:16px; line-height:22px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li { padding-right: 40px; min-height:32px; font-size:28px; line-height:32px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li + li { padding: 32px 40px 0 0; }
	.widgetTabs .widgetTop ul:not(.tabs) > li:before{ height:32px; width:30px; font-size:16px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li.dropMenu:before{ height:32px; width:30px; font-size:22px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li ul { padding-left: 30px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li ul li { font-size:16px; line-height:22px; min-height:16px; margin-top:16px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li ul li:before { height:16px; width:16px; font-size:12px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li div { font-size:22px; line-height:32px; }
	
	/* RSS */
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li,
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li div { font-size:16px; line-height:22px; }
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li div { margin-left: 30px; }
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li + li { margin-top: 30px; padding-top:30px; }
	
	/* Search */
	.widgetTabs .widgetTop .search-form .search-field { width:50%; height:50px; line-height:50px; font-size:30px; }
	.widgetTabs .widgetTop .search-form .search-button { height:50px; line-height:50px; width:50px; }
	.widgetTabs .widgetTop .search-form .search-button > a { height:48px; line-height:48px; width:48px; }
	
	/* Tags cloud */
	.widgetTabs .widgetTop .tagcloud a { height: 26px; line-height: 26px; padding: 6px 12px; margin: 0 3px 8px 0; font-size: 16px !important; }
	
	/* Calendar */
	.widgetTabs .widgetTop .wp-calendar { font-size:32px; padding-bottom: 40px; }
	.widgetTabs .widgetTop .wp-calendar th,
	.widgetTabs .widgetTop .wp-calendar td{  height:70px;  }
	.widgetTabs .widgetTop .wp-calendar tbody td a{ width:40px;}
	
	/* THEMEREX - Flickr photos */
	.widgetTabs .widgetTop.widget_flickr .flickr_badge_image,
	.widgetTabs .widgetTop.widget_flickr .flickr_images > a { width: 210px; height:140px; }
	
	/* Instagram photos */
	.widgetTabs .widgetTop .instagram-pics li { width: 210px; height:140px; }

	/* THEMEREX - Twitter */
	.widgetTabs .widgetTop.widget_twitter ul:not(.tabs) > li { font-size:16px; line-height:26px; }
	
	/* THEMEREX - Post items */
	.widgetTabs .widgetTop .post_item .post_title { font-size:22px; line-height:28px; padding-bottom:18px; }
	.widgetTabs .widgetTop .post_item.with_thumb .post_title { margin-top:-6px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_title { padding-left: 30px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_title:before { width:30px; height:60px; font-size:16px;}
	.widgetTabs .widgetTop .post_item + .post_item { margin-top:30px; padding-top:30px;}
	.widgetTabs .widgetTop .post_item .post_info { font-size:12px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_info { padding-left: 30px; }
	.widgetTabs .widgetTop .post_thumb { margin:0 20px 20px 0; }
	.widgetTabs .widgetTop .summaryRating { margin:-10px 0 10px 0; }

	/* WooCommerce */
	.woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 { font-size:16px; line-height:20px; }
	.woocommerce div.product .product_title { font-size: 21px; line-height: 26px; padding: 0 0 30px; }
	.woocommerce div.product p.price del { font-size: 18px; }
	.woocommerce div.product p.price ins { font-size: 24px; }

    /* Post */
    .post { margin: 67px 0; padding-bottom: 30px;}
    .sidebar { padding:67px 0; }

}

@media (min-width: 800px) and (max-width: 960px) {
	
	.sc_price_item .sc_price_money, .sc_price_item .sc_price_currency {
	  font-size: 50px;
	  height: 50px;
	  line-height: 50px;
	}
	.sc_price_item .sc_price_penny {
	  font-size: 35px;
	  height: 35px;
	  line-height: 35px
	}
}

@media (min-width: 800px) and (max-width: 900px) {

	/* other */
	.admin-bar #sidemenu_button {margin-left: 0;}
}

@media (min-width: 800px) and (max-width: 1023px) {
	body{ min-width: 750px; font-size:13px; line-height:19px; }
	h1, .h1 { font-size:38px; line-height:50px; padding:0 0 24px 0;}
	h2, .h2 { font-size:30px; line-height:36px; padding:0 0 30px 0;}
	h3, .h3 { font-size:20px; line-height:24px; padding:0 0 28px 0;}
	h4, .h4 { font-size:14px; line-height:18px; padding:0 0 24px 0;}
	h5, .h5 { font-size:13px; line-height:16px; padding:0 0 20px 0;}
	h6, .h6 { font-size:12px; line-height:15px; padding:0 0 18px 0;}
	
	/*header.noFixMenu .topWrap .logo img { max-height: 40px; }*/

	.big_text { font-size:14px; line-height:21px; }

	.main_content { min-width: 750px;}
	.sidemenu_left .main_content { min-width: 700px}
	.main { width:750px; }

	body.boxed .boxedWrap { width: 800px; }

	.top_panel_over.boxed header.noFixMenu .topWrap { padding-left: 25px; padding-right: 25px; width:750px; margin-top:25px; }
	.top_panel_over .sliderHomeBullets { position:static; }
	.top_panel_over .topWrap { position:static; }
	.sliderHomeBulletsGap { display:none;}

	.top_panel_above .fullScreenSlider header { position:static !important;

        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;}

	.content .sc_video_player, .content iframe { max-width:750px; }
	.with_sidebar .content .sc_video_player, .with_sidebar .content iframe { max-width:750px; }
	.widget_area .sc_video_player, .widget_area .content iframe { max-width:350px; }

	.with_sidebar .content { width: 100%; float: none;}
	.fullwide .with_sidebar .content, .fullscreen .with_sidebar .content { margin-left:0; margin-right: 0; }
	.fullwide .with_sidebar .sidebar, .fullscreen .with_sidebar .sidebar { margin-left:0; margin-right: 0; }
	.sidebar:not(.sidebar_cart) { width: 100%; float: none; padding:0; }
	.sidebar:not(.sidebar_cart) aside { width: 47%; display:block; float: left;}
	.sidebar:not(.sidebar_cart) aside:nth-child(2n+1) { clear: both; margin: 0 6% 30px 0 ;}
	.sidebar:not(.sidebar_cart):after { content: '';height: 0; display: block; clear: both;}

	.footerContentWrap aside { margin-bottom: 30px;}

	.columns1_3:nth-child(1) { width:94.4584%; }
	.columns1_3:nth-child(2),
	.columns1_3:nth-child(3) { width:44.44%; margin-top:30px; }
	.columns2_3, .with_sidebar .columns2_3,
	.columns1_3.after_span_2 { width:94.4584%; margin-top:30px; }
	
	.columns1_4, .with_sidebar .columns1_4 { width:44.44%;}
	.columns1_4:nth-child(3) { clear: both; }
	.columns2_4, .with_sidebar .columns2_4,
	.columns3_4, .with_sidebar .columns3_4,
	.columns1_4.after_span_3 { width:95.8334%; }
	
	.columns1_5:nth-child(1) { width:95.8334%; }
	.columns1_5:nth-child(2) ,
	.columns1_5:nth-child(3) ,
	.columns1_5:nth-child(4) ,
	.columns1_5:nth-child(5) { width:44.44%;}
	.columns1_5:nth-child(4) { clear: both; }
	.columns2_5, .with_sidebar .columns2_5,
	.columns3_5, .with_sidebar .columns3_5,
	.columns4_5, .with_sidebar .columns4_5,
	.columns1_5.after_span_3,
	.columns1_5.after_span_4 { width:95.8334%; }

	.footerWidget{ padding: 50px 0 0 0 ;}
	.footerWrap .columnsWrap > div{ padding: 0 0 30px 0;}

	header{ height: auto !important;}
	header.fixedTopMenu .topWrap{ position: static; }

	.sc_team .columns1_3 .sc_team_item.first .sc_team_item_avatar {height: 450px;}

	.responsiveMenu { margin-top: 21px;}
    .fullScreenSlider .topWrap .responsiveMenu { margin-top: 62px;}

	/* .userHeaderSection, .userFooterSection { display: none;} */

	.contactFooter .logo { font-size: 60px; }

	.masonry .isotopePadding { margin-right:30px; }

	.itemPage .itemInfo .infoPost,
	.itemPageFullWrapper .itemInfo .infoPost { float:none; padding:0; text-align:left;}
	.itemPage .itemInfo .postSharing,
	.itemPageFullWrapper .itemInfo .postSharing { float:none; padding:0; height:auto; text-align:left; }

	.twitBlock .sc_slider .swiper-slide {padding-top:40px; padding-bottom:40px; }
	
	.sc_scroll_controls ul.flex-direction-nav { top: -70px; }

	/* Slider */
	.sliderHomeBullets { font-size:10px; }
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo),
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .slideContent,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .sc_slider,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .slides,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .swiper-slide { height: 350px !important;}
	.fullScreenSlider .sc_slider_flex .sc_slider_info, .fullScreenSlider .sc_slider_chop .sc_slider_info, .fullScreenSlider .sc_slider_swiper .sc_slider_info, .sliderHomeBullets .sc_slider_flex .sc_slider_info, .sliderHomeBullets .sc_slider_chop .sc_slider_info, .sliderHomeBullets .sc_slider_swiper .sc_slider_info {  max-height: 130px; padding:20px; }
	.fullScreenSlider .sc_slider_flex .sc_slider_info .sc_slider_category, .fullScreenSlider .sc_slider_chop .sc_slider_info .sc_slider_category, .fullScreenSlider .sc_slider_swiper .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_flex .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_chop .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_swiper .sc_slider_info .sc_slider_category { font-size:14px; line-height:18px; }
	.fullScreenSlider .sc_slider_flex .sc_slider_info .sc_slider_subtitle, .fullScreenSlider .sc_slider_chop .sc_slider_info .sc_slider_subtitle, .fullScreenSlider .sc_slider_swiper .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_flex .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_chop .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_swiper .sc_slider_info .sc_slider_subtitle { font-size:20px; line-height:28px; }

	/* WooCommerce Slider */
	.sliderHomeBullets.slider_alias_13 .order a,
	.sliderHomeBullets.slider_alias_13 .textBlock { font-size:1.2em; }
	.sliderHomeBullets.slider_alias_13 .textBlock .title { font-size:3em; }
	.sliderHomeBullets.slider_alias_13 .textTitle2 { top: 32%;}
	.sliderHomeBullets.slider_alias_13 .textDescr  { top: 46%;}
	.sliderHomeBullets.slider_alias_13 .order2 { left: 20%; }

	/* Fullscreen slider */
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .textBlock,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { font-size: 1.5em; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .order,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:70%; }
	.sliderHomeBullets.slider_alias_11 .slide-1 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-1 .textBlock .title { font-size: 3.3em; }
	.sliderHomeBullets.slider_alias_11 .slide-2 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-2 .textBlock .title { font-size: 2.2em; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .image,
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { width: 4%; top: 45%; margin-left:-2%; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock .title { font-size: 3em; }

	/* News slider */
	.sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider,
	.without_sidebar .sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider { max-width:500px; }
	.sc_slider_pagination_area .flex-control-nav.manual,
	.without_sidebar .sc_slider_pagination_area .flex-control-nav.manual { width:240px; }
	.sc_slider_pagination_over .flex-control-nav.manual { width:330px; left:-340px; }
	.post_content .sc_slider_pagination_over .flex-control-nav.manual {	width:240px; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_date { float:none; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_info { clear:both; margin-top:6px; }

	/* Main menu */
	.responsive_menu .menuTopWrap { display: none;}
	.responsive_menu .menuTopWrap { border-top: 1px solid rgba(255,255,255,0.1); clear: both; float: none !important; padding: 0 0 30px 0; }
	.responsive_menu .menuTopWrap > ul > li { border-bottom: 1px solid rgba(255,255,255,0.1); display: block !important; float: none !important; padding: 0 !important;}
	.responsive_menu .menuTopWrap > ul { margin: 0; padding: 0; }
	.responsive_menu .menuTopWrap ul li{ list-style: none; margin-top: 0px;}
	
	.responsive_menu .menuTopWrap li.menu-item-has-children:hover { cursor: pointer; }
	.responsive_menu .menuTopWrap li.menu-item-has-children:before{ content: '\e85d';  font-family: "fontello";  width: 40px; display: block; float: right; padding: 7px 0 0 0 ; text-align: center;  color: #151515; }
	.responsive_menu .menuTopWrap #mainmenu > li.menu-item-has-children:before{  padding: 18px 0 0 0 ; }
	.responsive_menu .menuTopWrap li.menu-item-has-children.dropOpen:before{ content: '\e85e';}
	.responsive_menu .menuTopWrap li.menu-item-has-children a { margin: 0 40px 0 0 ; }
	
	.responsive_menu .menuTopWrap > ul > li > a { text-transform: uppercase; display: block; font-weight: 300; font-size: 12px; }
	.responsive_menu .menuTopWrap > ul > li ul li a { font-size:12px; }
	.responsive_menu .menuTopWrap ul li > a.sf-with-ul{ margin: 0 40px 0 0;}
	.responsive_menu .menuTopWrap ul li ul{ background: none repeat scroll 0 0 rgba(203, 203, 203, 0.1) !important; border: none !important; padding: 0; /*width: 100% !important;*/ margin: 0; display: none; position: static !important; width: 100% !important;}
    .responsive_menu .menuTopWrap ul li ul ul{ background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;}
    .responsive_menu .menuTopWrap ul li ul,
	.responsive_menu .menuTopWrap ul li ul li + li{ border-top: 1px solid rgba(255,255,255,0.1);}
	.responsive_menu .menuTopWrap ul li ul li a { padding: 6px 50px 6px 35px !important; }
	.responsive_menu .menuTopWrap ul li ul li a:after{ display: none; }
	.responsive_menu .menuTopWrap ul li ul li ul li a{ padding: 6px 15px 6px 54px !important;}

	ul#mainmenu .menu-panel ul.columns {
		padding: 15px 0 8px;
	}

	ul#mainmenu .menu-panel ul.columns > li ul {width: 250px !important;}
	/* Side menu */
	.sidemenu_wrap .sidemenu_area > ul > li > a,
	.sidemenu_wrap .sidemenu_area ul li ul li a { font-size:12px; }
	
	/* Panel menu */
	.swpRightPos .panelmenu_area > ul > li > a,
	.swpRightPos .panelmenu_area ul li ul li a { font-size:12px; }

	/* Widgets in tabs */
	.widgetTabs .widgetTop { font-size:14px; line-height:20px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li { padding-right: 30px; min-height:28px; font-size:24px; line-height:30px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li + li { padding: 28px 30px 0 0; }
	.widgetTabs .widgetTop ul:not(.tabs) > li:before{ height:28px; width:30px; font-size:14px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li.dropMenu:before{ height:28px; width:30px; font-size:20px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li ul { padding-left: 30px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li ul li { font-size:14px; line-height:20px; min-height:14px; margin-top:14px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li ul li:before { height:14px; width:14px; font-size:12px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li div { font-size:20px; line-height:28px; }
	
	/* RSS */
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li,
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li div { font-size:14px; line-height:20px; }
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li div { margin-left: 30px; }
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li + li { margin-top: 26px; padding-top:26px; }
	
	/* Search */
	.widgetTabs .widgetTop .search-form .search-field { width:50%; height:40px; line-height:40px; font-size:26px; }
	.widgetTabs .widgetTop .search-form .search-button { height:40px; line-height:40px; width:45px; }
	.widgetTabs .widgetTop .search-form .search-button > a { height:38px; line-height:38px; width:43px; }
	
	/* Tags cloud */
	.widgetTabs .widgetTop .tagcloud a { height: 22px; line-height: 22px; padding: 4px 10px; margin: 0 3px 6px 0; font-size: 14px !important; }
	
	/* Calendar */
	.widgetTabs .widgetTop .wp-calendar { font-size:30px; padding-bottom: 40px; }
	.widgetTabs .widgetTop .wp-calendar th,
	.widgetTabs .widgetTop .wp-calendar td{  height:60px;  }
	.widgetTabs .widgetTop .wp-calendar tbody td a{ width:40px;}
	
	/* THEMEREX - Flickr photos */
	.widgetTabs .widgetTop.widget_flickr .flickr_badge_image,
	.widgetTabs .widgetTop.widget_flickr .flickr_images > a { width: 180px; height:120px; }
	
	/* Instagram photos */
	.widgetTabs .widgetTop .instagram-pics li { width: 180px; height:120px; }
	
	/* THEMEREX - Twitter */
	.widgetTabs .widgetTop.widget_twitter ul:not(.tabs) > li { font-size:14px; line-height:20px; }
	
	/* THEMEREX - Post items */
	.widgetTabs .widgetTop .post_item .post_title { font-size:20px; line-height:26px; padding-bottom:16px; }
	.widgetTabs .widgetTop .post_item.with_thumb .post_title { margin-top:-6px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_title { padding-left: 30px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_title:before { width:30px; height:60px; font-size:14px;}
	.widgetTabs .widgetTop .post_item + .post_item { margin-top:26px; padding-top:26px;}
	.widgetTabs .widgetTop .post_item .post_info { font-size:12px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_info { padding-left: 30px; }
	.widgetTabs .widgetTop .post_thumb { margin:0 20px 20px 0; }
	.widgetTabs .widgetTop .summaryRating { margin:-8px 0 8px 0; }

	/* WooCommerce */
	.woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 { font-size:16px; line-height:20px; }
	.woocommerce div.product p.price del { font-size: 16px; }
	.woocommerce div.product p.price ins { font-size: 22px; }

	/* Demo components */
	.wooc_demo_icons { margin-bottom:30px; }
	.wooc_demo_icons .sc_icon { margin-bottom:20px; font-size:60px !important; }
	.wooc_demo_icons .demo_title { font-size:16px !important; }
	.wooc_demo_icons .demo_desc { font-size:13px !important; }
	
	/* Blogger */
	.columns1_3:nth-child(1) .sc_blogger_content-wrap { min-height: 150px; }

    /* Post */
    .post { margin: 42px 0; padding-bottom: 20px;}
}

/*===========================================*/
@media (min-width: 480px) and (max-width: 799px) {
	body{ min-width: 450px; font-size:13px; line-height:19px; }
	h1, .h1 { font-size:30px; line-height:36px; padding:0 0 22px 0;}
	h2, .h2 { font-size:22px; line-height:30px; padding:0 0 28px 0; }
	h3, .h3 { font-size:16px; line-height:22px; padding:0 0 26px 0; font-weight:300;}
	h4, .h4 { font-size:14px; line-height:18px; padding:0 0 24px 0;}
	h5, .h5 { font-size:13px; line-height:16px; padding:0 0 20px 0;}
	h6, .h6 { font-size:12px; line-height:15px; padding:0 0 18px 0;}

	/*header.noFixMenu .topWrap .logo img { max-height: 35px; }*/

	.fixed_banner {display: none;}

	.big_text { font-size:14px; line-height:21px; }

	.main_content { min-width: 450px;}
	.sidemenu_left .main_content { min-width: 450px}
	.main{ width:450px; }

	body.boxed .boxedWrap { width: 480px; }

	.topWrap .usermenu_area .menuItemRight { clear: left;}

	/*.topWrap .usermenu_area ul.usermenu_list {display: none !important;}*/
	.topWrap .usermenu_area .phone_number {margin: 0;}

	.top_panel_over.boxed header.noFixMenu .topWrap { padding-left: 15px; padding-right: 15px; width:450px; margin-top:15px; }
	.top_panel_over .sliderHomeBullets { position:static; }
	.top_panel_over .topWrap { position:static; }
	.sliderHomeBulletsGap { display:none;}

	.top_panel_above .fullScreenSlider header { position:static !important; }

	.content .sc_video_player, .content iframe { max-width:450px; }
	.with_sidebar .content .sc_video_player, .with_sidebar .content iframe { max-width:450px; }
	.widget_area .sc_video_player, .widget_area .content iframe { max-width:450px; }

	.with_sidebar .content { width: 100%; float: none;}
	.fullwide .with_sidebar .content, .fullscreen .with_sidebar .content { margin-left:0; margin-right: 0; }
	.fullwide .with_sidebar .sidebar, .fullscreen .with_sidebar .sidebar { margin-left:0; margin-right: 0; }
	.sidebar { width: 100%; float: none; padding:0;}
	
	.main_fullscreen {padding:0 30px; }

	.sidebar:not(.sidebar_cart) aside,
	.footerContentWrap aside { margin-bottom: 30px;}

	.columns1_3:nth-child(1) { width:94.4584%; }
	.columns1_3:nth-child(2),
	.columns1_3:nth-child(3) { width:44.44%; margin-top:20px; }
	.columns2_3, .with_sidebar .columns2_3,
	.columns1_3.after_span_2 { width:94.4584%; }
	
	.columns1_4, .with_sidebar .columns1_4 { width:44.44%;}
	.columns1_4:nth-child(3) { clear: both; }
	.columns2_4, .with_sidebar .columns2_4,
	.columns3_4, .with_sidebar .columns3_4,
	.columns1_4.after_span_3 { width:95.8334%; }
	
	.columns1_5:nth-child(1) { width:95.8334%; }
	.columns1_5:nth-child(2) ,
	.columns1_5:nth-child(3) ,
	.columns1_5:nth-child(4) ,
	.columns1_5:nth-child(5) { width:44.44%;}
	.columns1_5:nth-child(4) { clear: both; }
	.columns2_5, .with_sidebar .columns2_5,
	.columns3_5, .with_sidebar .columns3_5,
	.columns4_5, .with_sidebar .columns4_5,
	.columns1_5.after_span_3,
	.columns1_5.after_span_4 { width:95.8334%; }
	
	.columns1_3:nth-child(1) .sc_blogger_content-wrap { min-height: 150px; }

	.responsiveMenu {margin-top: 22px;}
    .fullScreenSlider .topWrap .responsiveMenu { margin-top: 62px;}

	.sc_parallax.light { background-image:none !important;  background-color: #f5f5f5; }
	.sc_parallax .columns1_2 { width:95.8334%; float:none; }

	.sc_pricing_table.columns_4 .sc_pricing_columns { width:50%; }
	.sc_pricing_table.columns_4 .sc_pricing_column_3,
	.sc_pricing_table.columns_4 .sc_pricing_column_4 { margin-top:30px; }
	.sc_pricing_table.columns_4 .sc_pricing_column_3 { clear: both; }
	.sc_pricing_table.columns_5 .sc_pricing_column_1,
	.sc_pricing_table.columns_5 .sc_pricing_column_2,
	.sc_pricing_table.columns_5 .sc_pricing_column_3 { width: 33.3333%; }
	.sc_pricing_table.columns_5 .sc_pricing_column_4,
	.sc_pricing_table.columns_5 .sc_pricing_column_5 { width: 50%; margin-top:30px; }
	.sc_pricing_table.columns_5 .sc_pricing_column_4 { clear: both; }
	.sc_pricing_table.columns_6 .sc_pricing_columns { width:33.3333%; }
	.sc_pricing_table.columns_6 .sc_pricing_column_4 { clear: both; }
	.sc_pricing_table.columns_7 .sc_pricing_columns { width:33.3333%; }
	.sc_pricing_table.columns_7 .sc_pricing_column_4,
	.sc_pricing_table.columns_7 .sc_pricing_column_5,
	.sc_pricing_table.columns_7 .sc_pricing_column_6,
	.sc_pricing_table.columns_7 .sc_pricing_column_7 { width: 50%; margin-top:30px; }
	.sc_pricing_table.columns_7 .sc_pricing_column_4,
	.sc_pricing_table.columns_7 .sc_pricing_column_6 { clear: both; }
	.sc_pricing_table.columns_8 .sc_pricing_columns { width:50%; margin-top:30px; }
	.sc_pricing_table.columns_8 .sc_pricing_column_1,
	.sc_pricing_table.columns_8 .sc_pricing_column_2 { margin-top:0; }
	.sc_pricing_table.columns_8 .sc_pricing_column_3,
	.sc_pricing_table.columns_8 .sc_pricing_column_5,
	.sc_pricing_table.columns_8 .sc_pricing_column_7 { clear: both; }
	.sc_pricing_table.columns_9 .sc_pricing_columns { width:33.3333%; margin-top:30px; }
	.sc_pricing_table.columns_9 .sc_pricing_column_1,
	.sc_pricing_table.columns_9 .sc_pricing_column_2,
	.sc_pricing_table.columns_9 .sc_pricing_column_3 { margin-top:0; }
	.sc_pricing_table.columns_9 .sc_pricing_column_4,
	.sc_pricing_table.columns_9 .sc_pricing_column_7 { clear: both; }
	.sc_pricing_table.columns_10 .sc_pricing_columns { width:50%; margin-top:30px; }
	.sc_pricing_table.columns_10 .sc_pricing_column_1,
	.sc_pricing_table.columns_10 .sc_pricing_column_2 { margin-top:0; }
	.sc_pricing_table.columns_10 .sc_pricing_column_3,
	.sc_pricing_table.columns_10 .sc_pricing_column_5,
	.sc_pricing_table.columns_10 .sc_pricing_column_7,
	.sc_pricing_table.columns_10 .sc_pricing_column_9 { clear: both; }

	.sc_price_item .sc_price_money,
	.sc_price_item .sc_price_currency {font-size: 44px;}
	.sc_price_item .sc_price_penny {font-size: 21px;}
    .sc_pricing_table .sc_pricing_columns ul.columnsAnimate li.sc_pricing_price > div, .sc_pricing_table .sc_pricing_columns ul li.sc_pricing_price > div {
        padding-top: 0 !important;
    }

	.sc_pricing_table .sc_pricing_columns ul li > div {
		font-size: 12px;
		height: auto;
		line-height: 16px;
		padding: 10px 37px;
	}
    /* Flipclock */
    .content .flip-clock-wrapper ul { width: 40px; height: 45px; font-size: 40px; line-height: 45px; }
    .content .flip-clock-wrapper ul li a div, .content .flip-clock-wrapper ul li a div div.inn { font-size: 40px; line-height: 45px; }
    .content .flip-clock-divider { width: 20px; height: 55px;}
    .content .flip-clock-divider:before {width: 75px; left: 25px;}

    .inputSubmitAnimation.sFocus { width: auto !important; }

	input[type="submit"], input[type="button"], .roundButton > a, .roundButton > span {padding: 0 10px;}

	.upToScroll { right: 10px; bottom:-100px; }
	.upToScroll.buttonShow { bottom: 10px;}
	/*.upToScroll a { width: 32px; height: 32px; font-size: 16px; line-height: 32px; }*/
	.upToScroll a.addBookmark { border-bottom: 1px solid #dddddd; border-right-width:0;  }
	.upToScroll a.scrollToTop { display:block;  }

	body:not(.single) .with_sidebar .content .post .postSharing,
	.with_sidebar .content .post .postSharing { float: none !important; text-align:left; padding-bottom:1.5em; height: auto; overflow:hidden; }

	.with_sidebar .content .post .infoPost { text-align: right; }

	.widgetTabs .widgetBody > ul{ width: 100%;}

	.copyWrap .copy .copyright{ float: none; width: 100%; text-align: center; height: auto; }
	.copyWrap .socPage{ float: none; width: 100%; text-align: center; padding: 0 0 20px 0; height: auto;}

	.contactFooter .logo { font-size: 48px; padding-bottom:24px; }
	.contactFooter .contactShare ul li a span, .contactFooter .contactShare ul li a { width: 48px; height:48px; background-size: 48px 96px; }	
	.contactFooter .contactShare ul li a span {  background-position: 0 -48px; }

	.masonry .isotopePadding { margin-right:20px; }

	.itemPage .itemInfo .infoPost,
	.itemPageFullWrapper .itemInfo .infoPost { float:none; padding:0; text-align:left;}
	.itemPage .itemInfo .postSharing,
	.itemPageFullWrapper .itemInfo .postSharing { float:none; padding:0; height:auto; text-align:left; }

	.peopleWrap .peopleItems{ margin: 0 0 20px 0;}

	.twitBlock, .post .twitBlock ul li { font-size:14px; line-height:20px; }
	.twitBlock .sc_slider .swiper-slide { padding-top:30px; padding-bottom:30px; }
	
	.sc_blogger.style_date .sc_blogger_item {min-width: 50%; }
	.sc_blogger.style_date .sc_blogger_item:nth-child(2n+3) {clear: both; }

	.sc_scroll_controls ul.flex-direction-nav { top: -61px; }

	.commentsForm input, .contactForm input{ margin: 0 0 10px 0;}

	/* Login form */
	.user-popUp .formItems.loginFormBody .remember { padding-top: 15px; overflow:hidden; height:45px; }
	.user-popUp .formItems.loginFormBody .remember .forgotPwd  { float:none; display:block; margin-bottom:10px; }
	.user-popUp .formItems.loginFormBody .remember #rememberme  { float: none; }
	.user-popUp .formItems.loginFormBody .remember label { float:none; display:inline; }

	/* Slider */
	.sliderHomeBullets { font-size:8px; }
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo),
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .slideContent,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .sc_slider,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .slides,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .swiper-slide { height: 300px !important;}
	.fullScreenSlider .sc_slider_flex .sc_slider_info, .fullScreenSlider .sc_slider_chop .sc_slider_info, .fullScreenSlider .sc_slider_swiper .sc_slider_info, .sliderHomeBullets .sc_slider_flex .sc_slider_info, .sliderHomeBullets .sc_slider_chop .sc_slider_info, .sliderHomeBullets .sc_slider_swiper .sc_slider_info {  max-height: 100px; padding:15px; }
	.fullScreenSlider .sc_slider_flex .sc_slider_info .sc_slider_category, .fullScreenSlider .sc_slider_chop .sc_slider_info .sc_slider_category, .fullScreenSlider .sc_slider_swiper .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_flex .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_chop .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_swiper .sc_slider_info .sc_slider_category { font-size:12px; line-height:16px; }
	.fullScreenSlider .sc_slider_flex .sc_slider_info .sc_slider_subtitle, .fullScreenSlider .sc_slider_chop .sc_slider_info .sc_slider_subtitle, .fullScreenSlider .sc_slider_swiper .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_flex .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_chop .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_swiper .sc_slider_info .sc_slider_subtitle { font-size:16px; line-height:20px; }

	/* WooCommerce Slider */
	.sliderHomeBullets.slider_alias_13 .order a,
	.sliderHomeBullets.slider_alias_13 .textBlock { font-size:1.2em; }
	.sliderHomeBullets.slider_alias_13 .textBlock .title { font-size:2.2em; }
	.sliderHomeBullets.slider_alias_13 .textTitle2 { top: 30%;}
	.sliderHomeBullets.slider_alias_13 .textDescr  { top: 40%;}
	.sliderHomeBullets.slider_alias_13 .order2 { left: 22%; }
	.sliderHomeBullets.slider_alias_13 .order a { padding:0.3em 0.8em; } 

	/* Fullscreen slider */
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .textBlock,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { font-size: 1.6em; top: 38%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .order,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:65%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .order a,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order a { font-size:1.4em; }
	.sliderHomeBullets.slider_alias_11 .slide-1 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-1 .textBlock .title { font-size: 2.5em; }
	.sliderHomeBullets.slider_alias_11 .slide-2 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-2 .textBlock .title { font-size: 2em; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .image,
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { width: 8%; top: 10%; margin-left:-4%; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .textBlock,
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock { top: 50%; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock .title { font-size: 2em; }

	/* News slider */
	.sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider,
	.without_sidebar .sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider { max-width:450px; }
	.sc_slider_pagination_area .flex-control-nav.manual { display:none; }
	.sc_slider_pagination_over .flex-control-nav.manual { display: block; width:220px; left:-230px; }
	.post_content .sc_slider_pagination_over .flex-control-nav.manual {	width:220px; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_date { float:none; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_info { clear:both; margin-top:6px; }
	.sc_slider_pagination_area .flex-control-nav.manual li { padding-left: 15px; }
	.sc_slider_pagination_area .flex-control-nav.manual li .slide_pager { padding:10px 15px 8px 0; }
	.sc_slider_pagination_over .flex-control-nav.manual li .slide_pager { padding-left:15px; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_date { width:50px; height:16px; line-height:16px; margin-right: 10px; }

	header.fixedTopMenu .topWrap{ position: static; }
	/* .userHeaderSection, .userFooterSection { display: none;} */

	/* Main menu */
	.responsive_menu .menuTopWrap { display: none;}
	.responsive_menu .menuTopWrap { border-top: 1px solid rgba(255,255,255,0.1); clear: both; float: none !important;
        padding: 5px 20px 30px 20px;
        background-color: #fff;
        width: 59%;
        margin: 0 auto;
        box-shadow: 0px 0px 16px 0px rgba(100,100,100,0.1);
    }
	.responsive_menu .menuTopWrap > ul > li{ border-bottom: 1px solid rgba(255,255,255,0.1); display: block !important; float: none !important; padding: 0 !important; margin-top: 0;}
	.responsive_menu .menuTopWrap > ul { margin: 0; padding: 0; }
	.responsive_menu .menuTopWrap ul li{ list-style: none; margin-bottom: 0; }
	
	.responsive_menu .menuTopWrap li.menu-item-has-children:hover { cursor: pointer; }
	.responsive_menu .menuTopWrap li.menu-item-has-children:before{ content: '\e85d';  font-family: "fontello";  width: 40px; display: block; float: right; padding: 7px 0 0 0 ; text-align: center; color: #151515; }
    .responsive_menu .menuTopWrap #mainmenu > li.menu-item-has-children:before{  padding: 14px 0 0 0 ; }
    .responsive_menu .menuTopWrap li.menu-item-has-children.dropOpen:before{ content: '\e85e';}
	.responsive_menu .menuTopWrap li.menu-item-has-children a{ margin: 0 40px 0 0 ; }
	
	.responsive_menu .menuTopWrap > ul > li > a { text-transform: uppercase; display: block; color: #373737; font-weight: 300; font-size: 12px; }
	.responsive_menu .menuTopWrap > ul > li ul li a { font-size:12px; }
	.responsive_menu .menuTopWrap ul li > a.sf-with-ul{ margin: 0 40px 0 0;}
	.responsive_menu .menuTopWrap ul li ul{ background: none repeat scroll 0 0 rgba(203, 203, 203, 0.1) !important; border: none !important; padding: 0; width: 100% !important; margin: 0; display: none; position: static !important; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
    .responsive_menu .menuTopWrap ul li ul ul { background: none !important;}
    .responsive_menu .menuTopWrap ul li ul ul.sub-menu { padding-top: 5px;   -webkit-box-shadow: none;  -moz-box-shadow: none;  box-shadow: none;}
    .responsive_menu .menuTopWrap ul li ul,
	.responsive_menu .menuTopWrap ul li ul li + li{ border-top: 1px solid rgba(255,255,255,0.1);}
	.responsive_menu .menuTopWrap ul li ul li a{  padding: 6px 50px 6px 35px !important; }
	.responsive_menu .menuTopWrap ul li ul li a:after{ display: none; }
	.responsive_menu .menuTopWrap ul li ul li ul li a{ padding: 6px 15px 6px 54px !important;}

	ul#mainmenu .menu-panel ul.columns {padding: 15px 0 8px;}

	ul#mainmenu .menu-panel ul.columns > li ul {width: 250px !important;}
	/* Side menu */
	.sidemenu_wrap .sidemenu_area > ul > li > a,
	.sidemenu_wrap .sidemenu_area ul li ul li a { font-size:12px; }
	.sidemenu_wrap .sidemenu_close {left: auto; right: 0;}
	
	/* Panel menu */
	.swpRightPos .panelmenu_area > ul > li > a,
	.swpRightPos .panelmenu_area ul li ul li a { font-size:12px; }

	/* Hover effects */
	.ih-item.circle {
		width: 220px;
		height: 220px;
	}
	.ih-item.circle .img {
		width: 220px;
		height: 220px;
	}
	.ih-item.circle.effect1 .spinner {
		width: 230px;
		height: 230px;
	}

	/* Widgets in tabs */
	.widgetTabs .widgetTop { font-size:13px; line-height:18px; font-weight:300; }
	.widgetTabs .widgetTop ul:not(.tabs) > li { padding-right: 20px; min-height:20px; font-size:20px; line-height:26px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li + li { padding: 20px 20px 0 0; }
	.widgetTabs .widgetTop ul:not(.tabs) > li:before{ height:40px; width:20px; font-size:13px; font-weight:300;}
	.widgetTabs .widgetTop ul:not(.tabs) > li.dropMenu:before{ height:20px; width:20px; font-size:16px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li ul { padding-left: 20px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li ul li { font-size:13px; line-height:18px; min-height:13px; margin-top:13px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li ul li:before { height:13px; width:13px; font-size:12px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li div { font-size:16px; line-height:22px; }
	
	/* RSS */
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li,
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li div { font-size:13px; line-height:18px; }
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li div { margin-left: 20px; }
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li + li { margin-top: 20px; padding-top:20px; }
	
	/* Search */
	.widgetTabs .widgetTop .search-form .search-field { width:60%; height:40px; line-height:40px; font-size:26px; }
	.widgetTabs .widgetTop .search-form .search-button { height:40px; line-height:40px; width:45px; }
	.widgetTabs .widgetTop .search-form .search-button > a { height:38px; line-height:38px; width:43px; }
	
	/* Tags cloud */
	.widgetTabs .widgetTop .tagcloud a { height: 20px; line-height: 20px; padding: 4px 8px; margin: 0 3px 6px 0; font-size: 13px !important; }
	
	/* Calendar */
	.widgetTabs .widgetTop .wp-calendar { font-size:26px; padding-bottom: 30px; }
	.widgetTabs .widgetTop .wp-calendar th,
	.widgetTabs .widgetTop .wp-calendar td{  height:50px;  }
	.widgetTabs .widgetTop .wp-calendar tbody td a{ width:30px;}
	
	/* THEMEREX - Flickr photos */
	.widgetTabs .widgetTop.widget_flickr .flickr_badge_image,
	.widgetTabs .widgetTop.widget_flickr .flickr_images > a { width: 150px; height:100px; }
	.widget_area .widget_flickr .flickr_badge_image, .widget_area .widget_flickr .flickr_images > a { width:64px; }
	
	/* Instagram photos */
	.widgetTabs .widgetTop .instagram-pics li { width: 150px; height:100px; }
	.widget_area .instagram-pics li { width:64px; }
	
	/* THEMEREX - Twitter */
	.widgetTabs .widgetTop.widget_twitter ul:not(.tabs) > li { font-size:13px; line-height:18px; }
	
	/* THEMEREX - Post items */
	.widgetTabs .widgetTop .post_item .post_title { font-size:16px; line-height:20px; font-weight:300; padding-bottom:14px; }
	.widgetTabs .widgetTop .post_item.with_thumb .post_title { margin-top:-4px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_title { padding-left: 20px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_title:before { width:20px; height:50px; font-size:13px;}
	.widgetTabs .widgetTop .post_item + .post_item { margin-top:20px; padding-top:20px;}
	.widgetTabs .widgetTop .post_item .post_info { font-size:11px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_info { padding-left: 20px; }
	.widgetTabs .widgetTop .post_thumb { margin:0 20px 20px 0; }
	.widgetTabs .widgetTop .summaryRating { margin:-6px 0 6px 0; }
	
	/* WooCommerce */
	.woocommerce.columns-4 ul.products li.product:nth-child(2n+3), .woocommerce-page.columns-4 ul.products li.product:nth-child(2n+3),
	.woocommerce.columns-5 ul.products li.product:nth-child(2n+3), .woocommerce-page.columns-5 ul.products li.product:nth-child(2n+3),
	.woocommerce.columns-6 ul.products li.product:nth-child(2n+3), .woocommerce-page.columns-6 ul.products li.product:nth-child(2n+3) {	clear:both; }

    .woocommerce ul.products li.product.type-product, .woocommerce-page ul.products li.product { width:45%; }
	.woocommerce.columns-4 ul.products li.product, .woocommerce-page.columns-4 ul.products li.product,
	.woocommerce.columns-5 ul.products li.product, .woocommerce-page.columns-5 ul.products li.product,
	.woocommerce.columns-6 ul.products li.product, .woocommerce-page.columns-6 ul.products li.product,
	.woocommerce .related ul li.product, .woocommerce .related ul.products li.product, 
	.woocommerce-page .related ul li.product, .woocommerce-page .related ul.products li.product, 
	.woocommerce .upsells.products ul li.product, .woocommerce .upsells.products ul.products li.product, 
	.woocommerce-page .upsells.products ul li.product, .woocommerce-page .upsells.products ul.products li.product { width:45%; }
	.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong, .woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta strong{ font-size:14px; line-height:18px;}
	.woocommerce div.product .woocommerce-tabs h2, .woocommerce-page div.product .woocommerce-tabs h2,
	.woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 { font-size:16px; line-height:22px; font-weight:300; }
	.woocommerce div.product .product_title { font-size: 16px; line-height: 22px; padding: 0 0 20px; }
	.woocommerce div.product p.price del { font-size: 14px; }
	.woocommerce div.product p.price ins { font-size: 20px; }

	/* Table of contents */
	#toc { width: 30px;	}
	#toc .toc_inner { right: -30px; }
	#toc .toc_item {
		width:28px;
		height:30px;
		border-right-width:2px;
	}
	#toc .toc_icon {
		width:28px;
		height: 30px;
		line-height:30px;
	}
	#toc .toc_icon.with_title {
		line-height:30px;
	}
	#toc .toc_title { display:none; }
	#toc .toc_description {
		position:absolute;
		top:0;
		right:-200px;
		width:170px;
		height:24px;
		padding: 3px 10px;
		font-size:0.8em;
	}
	#toc .toc_item:hover .toc_description {
        right: 28px;
        line-height: 28px;
        min-height: 24px;
        height: 24px;
	}
	#toc .toc_description:after {
		border-width: 4px;
		margin-top: -4px; 
	}

	/* Demo components */
	.wooc_demo_icons { margin-bottom:30px; width:50% !important; border:none !important; }
	.wooc_demo_icons .sc_icon { margin-bottom:20px; font-size:60px !important; }
	.wooc_demo_icons .demo_title { font-size:16px !important; }
	.wooc_demo_icons .demo_desc { font-size:13px !important; }

    /* Post */
    .post { margin: 30px 0;  padding-bottom: 10px;}
    body:not(.single):not(.page) .with_sidebar .content .post .infoPost { padding-bottom: 20px; }
	
}

@media (max-width: 799px) {
    .top_panel_above .fullScreenSlider header {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
    }
    .fullScreenSlider .topWrap .responsiveMenu {
        margin-top: 35px;
    }
    .top_panel_above .fullScreenSlider .topWrap .search {
        margin-top: 35px;
    }
    .top_panel_above .fullScreenSlider .topWrap .logo {
        padding: 39px 0;
    }
}

@media (max-width: 479px) {
	body{ min-width: 280px; font-size:12px; line-height:18px; }
	h1, .h1 { font-size:24px; line-height:32px; padding:0 0 16px 0;}
	h2, .h2 { font-size:20px; line-height:26px; padding:0 0 20px 0; font-weight:300;}
	h3, .h3 { font-size:16px; line-height:20px; padding:0 0 20px 0; font-weight:300;}
	h4, .h4 { font-size:14px; line-height:18px; padding:0 0 20px 0;}
	h5, .h5 { font-size:13px; line-height:16px; padding:0 0 20px 0;}
	h6, .h6 { font-size:12px; line-height:15px; padding:0 0 18px 0;}

	header.noFixMenu .topWrap .logo { float: none !important; padding: 20px 0; text-align: center;}

	.responsiveMenu {float: none;text-align: center;}
    .fullScreenSlider .topWrap .responsiveMenu {
        margin-top: 0;
    }

	.fixed_banner {display: none;}

	.big_text { font-size:14px; line-height:21px; }

	.main_content { min-width: 280px;}
	.sidemenu_left .main_content { min-width: 280px}
	.main{ width:280px; }

	.content .sc_video_player, .content iframe { max-width:280px; }
	.with_sidebar .content .sc_video_player, .with_sidebar .content iframe { max-width:280px; }
	.widget_area .sc_video_player, .widget_area .content iframe { max-width:280px; }
	
	.main_fullscreen {padding:0 20px; }

	.with_sidebar .content { width: 100%; float: none;}
	.fullwide .with_sidebar .content, .fullscreen .with_sidebar .content { margin-left:0; margin-right: 0; }
	.fullwide .with_sidebar .sidebar, .fullscreen .with_sidebar .sidebar { margin-left:0; margin-right: 0; }
	.sidebar {width: 100%; float: none; padding: 0;}
	.sidebar aside:not(.sidebar_cart),
	.footerContentWrap aside { width: 100%; display:block; margin: 0 0 30px 0; float: none;}

	/*.topWrap .usermenu_area .menuItemLeft {display: none !important;}*/

	/*.topWrap .usermenu_area ul.usermenu_list {display: none !important;}*/
	.topWrap .usermenu_area .phone_number {margin: 0;}

	body.boxed .boxedWrap { width: 100%; }

	.top_panel_over.boxed header.noFixMenu .topWrap { padding-left: 20px; padding-right: 20px; width:100%; box-sizing: border-box; -moz-box-sizing: border-box; margin-top:0; }
	.top_panel_over .sliderHomeBullets { position:static; }
	.top_panel_over .topWrap { position:static; }
	.sliderHomeBulletsGap { display:none;}

	.top_panel_above .fullScreenSlider header { position:static !important; }
	.top_panel_above .fullScreenSlider header { position: absolute !important; }

	.sc_parallax.light { background-image:none !important; }
    .sc_parallax { background-color: #f5f5f5; }
	
	.columns1_2, .with_sidebar .columns1_2,
	.columns1_3, .with_sidebar .columns1_3,
	.columns1_4, .with_sidebar .columns1_4,
	.columns2_3, .with_sidebar .columns2_3,
	.columns2_4, .with_sidebar .columns2_4,
	.columns3_4, .with_sidebar .columns3_4,
	.columns1_5, .with_sidebar .columns1_5,
	.columns2_5, .with_sidebar .columns2_5,
	.columns3_5, .with_sidebar .columns3_5,
	.columns4_5, .with_sidebar .columns4_5 { width:95.8334% !important; }

	.sc_pricing_table.columns_3 .sc_pricing_columns,
	.sc_pricing_table.columns_3 .sc_pricing_column_3 { margin-top:30px; width: 100%; }
	.sc_pricing_table.columns_4 .sc_pricing_columns { width:50%;margin-top:30px; }
	.sc_pricing_table.columns_4 .sc_pricing_column_1,
	.sc_pricing_table.columns_4 .sc_pricing_column_2 { margin-top:0; }
	.sc_pricing_table.columns_5 .sc_pricing_columns { width:50%;margin-top:30px; }
	.sc_pricing_table.columns_5 .sc_pricing_column_1,
	.sc_pricing_table.columns_5 .sc_pricing_column_2 { margin-top:0; }
	.sc_pricing_table.columns_5 .sc_pricing_column_5 { width: 100%; }
	.sc_pricing_table.columns_6 .sc_pricing_columns { width:50%;margin-top:30px; }
	.sc_pricing_table.columns_6 .sc_pricing_column_1,
	.sc_pricing_table.columns_6 .sc_pricing_column_2 { margin-top:0; }
	.sc_pricing_table.columns_7 .sc_pricing_columns { width:50%;margin-top:30px; }
	.sc_pricing_table.columns_7 .sc_pricing_column_1,
	.sc_pricing_table.columns_7 .sc_pricing_column_2 { margin-top:0; }
	.sc_pricing_table.columns_7 .sc_pricing_column_7 { width: 100%; }
	.sc_pricing_table.columns_8 .sc_pricing_columns { width:50%;margin-top:30px; }
	.sc_pricing_table.columns_8 .sc_pricing_column_1,
	.sc_pricing_table.columns_8 .sc_pricing_column_2 { margin-top:0; }
	.sc_pricing_table.columns_9 .sc_pricing_columns { width:50%;margin-top:30px; }
	.sc_pricing_table.columns_9 .sc_pricing_column_1,
	.sc_pricing_table.columns_9 .sc_pricing_column_2 { margin-top:0; }
	.sc_pricing_table.columns_9 .sc_pricing_column_9 { width: 100%; }
	.sc_pricing_table.columns_10 .sc_pricing_columns { width:50%;margin-top:30px; }
	.sc_pricing_table.columns_10 .sc_pricing_column_1,
	.sc_pricing_table.columns_10 .sc_pricing_column_2 { margin-top:0; }
    .sc_price_item { height: 54px;}
    .sc_price_item .sc_price_money,
    .sc_price_item .sc_price_currency { font-size: 26px;}
    .sc_price_item .sc_price_penny { font-size: 21px; }
    .sc_pricing_table .sc_pricing_columns ul.columnsAnimate li.sc_pricing_price > div, .sc_pricing_table .sc_pricing_columns ul li.sc_pricing_price > div {
        padding-top: 0 !important;
    }
    .sc_pricing_table .sc_pricing_columns ul li.sc_pricing_united {
        height: auto;
        line-height: 1;
    }
    .sc_pricing_table .sc_pricing_columns ul li > div {
        padding: 10px 12px;
    }
    .sc_toggles.sc_show_counter .sc_toggles_item .sc_toggles_title span.sc_items_counter {
        width: 30px;
    }
    .sc_toggles.sc_show_counter .sc_toggles_item .sc_toggles_content {
        padding-left: 30px;
        margin-bottom: 20px;
    }
    .masonryWrap .isotopeFiltr li:first-child {
        margin: 0 0 7px 7px;
    }

    /* Flipclock */
    .content .flip-clock-wrapper ul { width: 25px; height: 35px; font-size: 20px; line-height: 25px; }
    .content .flip-clock-wrapper ul li a div, .content .flip-clock-wrapper ul li a div div.inn { font-size: 20px; line-height: 25px; }
    .content .flip-clock-divider { width: 10px; height: 35px;}
    .content .flip-clock-divider:before {width: 55px; left: 10px; font-size: 14px;}

    .inputSubmitAnimation.sFocus { width: auto !important; }

	.upToScroll { height: 32px; right: 10px; bottom:-100px; }
	.upToScroll.buttonShow { bottom: 10px;}
	.upToScroll a { width: 32px; height: 32px; font-size: 16px; line-height: 32px; }
	.upToScroll a.addBookmark { border-bottom: 1px solid #dddddd; border-right-width:0;  }
	.upToScroll a.scrollToTop { display:block;  }

	.pagination .roundButton,
	.roundButton {margin: 0 0 7px 0;}
	.pagination .roundButton + .roundButton,
	.roundButton + .roundButton{ margin: 0 0 7px 7px;}

	.pagination .pageLibrary > li.libPage { padding:  0 7px 7px 7px;}
	.pagination .pageLibrary > li+li{ margin-left:0;}

	.topWrap .usermenu_area ul.usermenu_list > li > a > span{ display: none;}
	.topWrap .usermenu_area ul.usermenu_list li.usermenu_cart ul { right: -86px; }
	.topWrap .usermenu_area ul.usermenu_list li.usermenu_cart ul:before {right: 114px; }
	/* .userHeaderSection, .userFooterSection { display: none;} */

    .sc_emailer.inputSubmitAnimation { margin-bottom: 115px !important;}
	.contactFooter .logo { font-size: 32px; padding-bottom:18px; }
	.contactFooter .logo img  {  height: 32px; }
	.contactFooter .contactShare ul li a span, .contactFooter .contactShare ul li a { width: 32px; height:32px; background-size: 32px 64px; }	
	.contactFooter .contactShare ul li a span {  background-position: 0 -32px; }
	.contactFooter .contactShare ul li {  padding: 0 4px 12px; }	

	.sc_blogger.style_date .sc_blogger_item {min-width: 50%; }
	.sc_blogger.style_date .sc_blogger_item:nth-child(2n+3) {clear: both; }

	/*.sc_testimonials_style_2 .sc_testimonials_item_author {width: 100px;}*/

	.sc_scroll_controls .flex-direction-nav,
	.sc_slider_controls_top + .flex-direction-nav { display:none; }

	.sc_image_align_right, .sc_alignright { margin-left: 0 !important; float:none;}
	.sc_image_align_left, .sc_alignleft{ margin-right: 0 !important; float:none;}

	.sc_table table thead th, .sc_table table tbody td{ padding: 10px; font-size: 12px;}
	.sc_priceItem{height: 100px; text-align: center;}
	.sc_priceItem .money{ float: none;}
	.sc_priceItem .priceRight{ float: none;}

    .sc_testimonials_style_1 .sc_testimonials_item_author {
        margin: 0 auto;
    }

    /* wp calendar */
    .booking_month_container_all .booking_month_name, .booking_month_container_all .booking_month_year {
        font-size: 30px;
        line-height: 40px;
    }
    .booking_month_container_all .booking_month_nav_container .booking_mont_nav_button_container a {
        height: 55px;
        line-height: 55px;
    }
    #booking_calendar_select > select {
        padding: 0 0px !important;
        font-size: 12px;
    }
    .booking_float_left.booking_margin_l_20 {
        margin-left: 12px;
    }

    .with_sidemenu .sc_testimonials_style_2 .sc_testimonials_item_content, .sc_testimonials_style_2 .sc_testimonials_item_content {
        padding-left: 0;
    }
    .with_sidemenu .sc_testimonials_style_2 .sc_testimonials_item_content:before { display: none;}

	.sc_scroll_controls ul.flex-direction-nav { top: -61px; }
	
	.masonry .isotopePadding { margin-right:0; }

	.itemPage .itemInfo .infoPost,
	.itemPageFullWrapper .itemInfo .infoPost { float:none !important; padding:0; text-align:left;}
	.itemPage .itemInfo .postSharing,
	.itemPageFullWrapper .itemInfo .postSharing { float:none !important;  padding-bottom:1.5em; height:auto; text-align:left; }

	.twitBlock, .post .twitBlock ul li { font-size:13px; line-height:18px; }
	.twitBlock .sc_slider .swiper-slide {padding-top:20px; padding-bottom:20px; }

	.content .post .postSharing,
	body:not(.single) .with_sidebar .content .post .postSharing,
	.with_sidebar .content .post .postSharing { float: none !important; text-align:left; padding-bottom:1.5em; height: auto; overflow:hidden; }

	.topWrap .search, .topWrap .openRightMenu { display: none;}

	/* Login form */
	.user-popUp ul.loginHeadTab li a { font-size:14px; height:60px; line-height:60px; }
	.user-popUp .formItems .itemformLeft { float:none; width:100%; border-right: none !important; }
	.user-popUp .formItems .itemformLeft ul { padding-right: 0 !important; }
	.user-popUp .formItems .itemformRight { float:none; width:100%; margin-top:20px !important; }

	/* Slider */
	.sliderHomeBullets { font-size:6px; }
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo),
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .slideContent,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .sc_slider,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .slides,
	.sliderHomeBullets.staticSlider:not(.slider_engine_revo) .swiper-slide { height: 200px !important;}
	.fullScreenSlider .sc_slider_flex .sc_slider_info, .fullScreenSlider .sc_slider_chop .sc_slider_info, .fullScreenSlider .sc_slider_swiper .sc_slider_info, .sliderHomeBullets .sc_slider_flex .sc_slider_info, .sliderHomeBullets .sc_slider_chop .sc_slider_info, .sliderHomeBullets .sc_slider_swiper .sc_slider_info {  max-height: 100px; padding:10px; }
	.fullScreenSlider .sc_slider_flex .sc_slider_info .sc_slider_category, .fullScreenSlider .sc_slider_chop .sc_slider_info .sc_slider_category, .fullScreenSlider .sc_slider_swiper .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_flex .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_chop .sc_slider_info .sc_slider_category, .sliderHomeBullets .sc_slider_swiper .sc_slider_info .sc_slider_category { font-size:12px; line-height:16px; }
	.fullScreenSlider .sc_slider_flex .sc_slider_info .sc_slider_subtitle, .fullScreenSlider .sc_slider_chop .sc_slider_info .sc_slider_subtitle, .fullScreenSlider .sc_slider_swiper .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_flex .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_chop .sc_slider_info .sc_slider_subtitle, .sliderHomeBullets .sc_slider_swiper .sc_slider_info .sc_slider_subtitle { font-size:14px; line-height:18px; }

	/* WooCommerce Slider */
	.sliderHomeBullets.slider_alias_13 .order a,
	.sliderHomeBullets.slider_alias_13 .textBlock { font-size:1.2em; }
	.sliderHomeBullets.slider_alias_13 .textBlock .title { font-size:1.8em; }
	.sliderHomeBullets.slider_alias_13 .textTitle2 { top: 30%;}
	.sliderHomeBullets.slider_alias_13 .textDescr  { top: 40%; max-height:45px; overflow:hidden;}
	.sliderHomeBullets.slider_alias_13 .order2 { left: 26%; }
	.sliderHomeBullets.slider_alias_13 .order a { padding:0.2em 0.6em; } 
	.sliderHomeBullets.slider_alias_13 .textPrice { line-height:180%; }
	.sliderHomeBullets.slider_alias_13 .textPrice span { margin-top:0; font-size:2em; }

	/* Fullscreen slider */
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .textBlock,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { font-size: 2em; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .order,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:65%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_11 .order a,
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order a { font-size:2em; }
	.sliderHomeBullets.slider_alias_11 .slide-1 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-1 .textBlock .title { font-size: 2.2em; }
	.sliderHomeBullets.slider_alias_11 .slide-2 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-2 .textBlock .title { font-size: 1.3em; }
	.sliderHomeBullets.slider_alias_11 .slide-2 .order,
	.sliderHomeBullets.slider_alias_12 .slide-2 .order { top:66%; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .image,
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { width: 10%; top: 43%; margin-left:-5%; }
	.sliderHomeBullets.slider_alias_11 .slide-3 .textBlock .title,
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock .title { font-size: 1.8em; }

	/* News slider */
	.sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider,
	.without_sidebar .sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider { max-width:280px; }
	.sc_slider_pagination_area .flex-control-nav.manual { display:none; }
	.sc_slider_pagination_over .flex-control-nav.manual { display: block; width:220px; left:-230px; }
	.post_content .sc_slider_pagination_over .flex-control-nav.manual {	width:220px; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_date { float:none; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_info { clear:both; margin-top:6px; }
	.sc_slider_pagination_area .flex-control-nav.manual li { padding-left: 10px; }
	.sc_slider_pagination_area .flex-control-nav.manual li .slide_pager { padding:10px 10px 8px 0; }
	.sc_slider_pagination_over .flex-control-nav.manual li .slide_pager { padding-left:10px; }
	.sc_slider_pagination_area .flex-control-nav.manual .slide_date { width:50px; height:16px; line-height:16px; margin-right: 10px; }

	header.fixedTopMenu .topWrap{ position: static; }
	/* .userHeaderSection, .userFooterSection { display: none;} */

	/* Main menu */ 
	.responsive_menu .menuTopWrap { display: none;}
	.responsive_menu .menuTopWrap { border-top: 1px solid rgba(255,255,255,0.1); clear: both; float: none !important; padding: 5px 20px 30px 20px;  background-color: #fff; }
	.responsive_menu .menuTopWrap > ul > li { border-bottom: 1px solid rgba(255,255,255,0.1); display: block !important; float: none !important; padding: 0 !important;  margin-top: 0;}
	.responsive_menu .menuTopWrap > ul { margin: 0; padding: 0; }
	.responsive_menu .menuTopWrap ul li { list-style: none; margin-bottom: 0; }
	
	.responsive_menu .menuTopWrap li.menu-item-has-children:hover { cursor: pointer; }
	.responsive_menu .menuTopWrap li.menu-item-has-children:before { content: '\e85d';  font-family: "fontello";  width: 40px; display: block; float: right; padding: 7px 0 0 0 ; text-align: center; color: #151515;}
    .responsive_menu .menuTopWrap #mainmenu > li.menu-item-has-children:before{  padding: 18px 0 0 0 ; }
    .responsive_menu .menuTopWrap li.menu-item-has-children.dropOpen:before { content: '\e85e';}
	.responsive_menu .menuTopWrap li.menu-item-has-children a { margin: 0 40px 0 0; }
	
	.responsive_menu .menuTopWrap > ul > li > a { text-transform: uppercase; display: block; font-weight: 300; font-size: 12px; }
	.responsive_menu .menuTopWrap > ul > li ul li a { font-size:12px; }
	.responsive_menu .menuTopWrap ul li > a.sf-with-ul{ margin: 0 40px 0 0; }
	.responsive_menu .menuTopWrap ul li ul{ background-color: #F9F9F9 !important; border: none !important; padding: 0; width: 100% !important; margin: 0; display: none; position: static !important;}
    .responsive_menu .menuTopWrap ul li ul ul.sub-menu { padding-top: 5px;   -webkit-box-shadow: none;  -moz-box-shadow: none;  box-shadow: none;}
    .responsive_menu .menuTopWrap ul li ul,
	.responsive_menu .menuTopWrap ul li ul li + li{ border-top: 1px solid rgba(255,255,255,0.1);}
	.responsive_menu .menuTopWrap ul li ul li a{ padding: 6px 50px 6px 35px !important; }
	.responsive_menu .menuTopWrap ul li ul li a:after{ display: none; }
	.responsive_menu .menuTopWrap ul li ul li ul li a{ padding: 6px 15px 6px 54px !important;}

	ul#mainmenu .menu-panel ul.columns {padding: 15px 0 8px;}

	/* Side menu */
	.sidemenu_wrap .sidemenu_area > ul > li > a,
	.sidemenu_wrap .sidemenu_area ul li ul li a { font-size:12px; }
	.sidemenu_wrap .sidemenu_close {left: auto; right: 0;}
	
	/* Panel menu */
	.swpRightPos .panelmenu_area > ul > li > a,
	.swpRightPos .panelmenu_area ul li ul li a { font-size:12px; }

	/* Widgets in tabs */
	.widgetTabs .widgetTop { font-size:12px; line-height:18px; font-weight:300; }
	.widgetTabs .widgetTop ul:not(.tabs) > li { padding-right: 18px; min-height:18px; font-size:12px; line-height:16px; font-weight:300; }
	.widgetTabs .widgetTop ul:not(.tabs) > li + li { padding: 18px 18px 0 0; }
	.widgetTabs .widgetTop ul:not(.tabs) > li:before{ height:36px; width:18px; font-size:12px; font-weight:300;}
	.widgetTabs .widgetTop ul:not(.tabs) > li.dropMenu:before{ height:18px; width:18px; font-size:14px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li ul { padding-left: 18px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li ul li { font-size:12px; line-height:18px; min-height:12px; margin-top:12px;}
	.widgetTabs .widgetTop ul:not(.tabs) > li ul li:before { height:12px; width:12px; font-size:12px; }
	.widgetTabs .widgetTop ul:not(.tabs) > li div { font-size:14px; line-height:20px; }
	
	/* RSS */
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li,
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li div { font-size:12px; line-height:18px; }
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li div { margin-left: 18px; }
	.widgetTabs .widgetTop.widget_rss ul:not(.tabs) > li + li { margin-top: 18px; padding-top:18px; }
	
	/* Search */
	.widgetTabs .widgetTop .search-form .search-field { width:60%; height:30px; line-height:30px; font-size:16px; }
	.widgetTabs .widgetTop .search-form .search-button { height:30px; line-height:30px; width:40px; }
	.widgetTabs .widgetTop .search-form .search-button > a { height:28px; line-height:28px; width:38px; }
	
	/* Tags cloud */
	.widgetTabs .widgetTop .tagcloud a { height: 18px; line-height: 18px; padding: 4px 6px; margin: 0 2px 4px 0; font-size: 12px !important; }
	
	/* Calendar */
	.widgetTabs .widgetTop .wp-calendar { font-size:20px; padding-bottom: 20px; }
	.widgetTabs .widgetTop .wp-calendar th,
	.widgetTabs .widgetTop .wp-calendar td{  height:40px;  }
	.widgetTabs .widgetTop .wp-calendar tbody td a{ width:30px;}
	
	/* THEMEREX - Flickr photos */
	.widgetTabs .widgetTop.widget_flickr .flickr_badge_image,
	.widgetTabs .widgetTop.widget_flickr .flickr_images > a { width: 90px; height:60px; }
	.widget_area .widget_flickr .flickr_badge_image, .widget_area .widget_flickr .flickr_images > a { width:65px; }
	
	/* Instagram photos */
	.widgetTabs .widgetTop .instagram-pics li { width: 90px; height:60px; }
	.widget_area .instagram-pics li { width:65px; }
	
	/* THEMEREX - Twitter */
	.widgetTabs .widgetTop.widget_twitter ul:not(.tabs) > li { font-size:13px; line-height:18px; }
	
	/* THEMEREX - Post items */
	.widgetTabs .widgetTop .post_item .post_title { font-size:14px; line-height:18px; font-weight:300; padding-bottom:12px; }
	.widgetTabs .widgetTop .post_item.with_thumb .post_title { margin-top:-4px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_title { padding-left: 18px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_title:before { width:18px; height:40px; font-size:12px;}
	.widgetTabs .widgetTop .post_item + .post_item { margin-top:18px; padding-top:18px;}
	.widgetTabs .widgetTop .post_item .post_info { font-size:10px; }
	.widgetTabs .widgetTop .post_item:not(.with_thumb) .post_info { padding-left: 18px; }
	.widgetTabs .widgetTop .post_thumb { margin:0 18px 18px 0; }
	.widgetTabs .widgetTop .summaryRating { margin:-4px 0 4px 0; }

	/* WooCommerce */
    .woocommerce ul.products li.product.type-product, .woocommerce-page ul.products li.product { width:100%; margin-right: 0; }
	.woocommerce.columns-4 ul.products li.product, .woocommerce-page.columns-4 ul.products li.product,
	.woocommerce.columns-5 ul.products li.product, .woocommerce-page.columns-5 ul.products li.product,
	.woocommerce.columns-6 ul.products li.product, .woocommerce-page.columns-6 ul.products li.product,
	.woocommerce .related ul li.product, .woocommerce .related ul.products li.product,
	.woocommerce-page .related ul li.product, .woocommerce-page .related ul.products li.product,
	.woocommerce .upsells.products ul li.product, .woocommerce .upsells.products ul.products li.product,
	.woocommerce-page .upsells.products ul li.product, .woocommerce-page .upsells.products ul.products li.product { width:100%; margin-right: 0; }
	.woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images { width: 100%; }
	.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong, .woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta strong{ font-size:14px; line-height:18px;}
	.woocommerce div.product .woocommerce-tabs h2, .woocommerce-page div.product .woocommerce-tabs h2,
 	.woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 { font-size:16px; line-height:21px; }
	.woocommerce div.product .product_title { font-size: 16px; line-height: 21px; padding: 0 0 20px; }
	.woocommerce div.product p.price del { font-size: 14px; }
	.woocommerce div.product p.price ins { font-size: 20px; }

	/* Table of contents */
	#toc { width: 30px;	}
	#toc .toc_inner { right: -30px; }
	#toc .toc_item {
		width:28px;
		height:30px;
		border-right-width:2px;
	}
	#toc .toc_icon {
		width:28px;
		height: 30px;
		line-height:30px;
	}
	#toc .toc_icon.with_title {
		line-height:30px;
	}
	#toc .toc_title { display:none; }
	#toc .toc_description { display:none; }

	/* Demo components */
	.wooc_demo_icons { margin-bottom:30px; width:50% !important; border:none !important; }
	.wooc_demo_icons .sc_icon { margin-bottom:20px; font-size:60px !important; }
	.wooc_demo_icons .demo_title { font-size:16px !important; }
	.wooc_demo_icons .demo_desc { font-size:13px !important; }

    /* Post */
    .post { margin: 30px 0;  padding-bottom: 10px;}
    body:not(.single):not(.page) .with_sidebar .content .post .infoPost { padding-bottom: 20px; }
}


@media (max-width: 1900px) {
	.tp-rightarrow.default,
	.tp-leftarrow.default {display: none;}
}
@media (max-width: 1167px) {
	/* Booking Calendar */
	.booking_day_container.booking_day_grey,
	.booking_name_days_container {display: none !important;}
}
@media (max-width: 1100px) {
	.rev_slider_wrapper .law_title_3 {left:580px !important;}
	.rev_slider_wrapper .law_title_3 * {font-size: 24px !important;}

	.rev_slider_wrapper .slide_2_1 .subtext_b {left: 20px !important;}
	.rev_slider_wrapper .slide_2_1 .rev_sl2_text_bg,
	.rev_slider_wrapper .slide_2_1 .law_title,
	.rev_slider_wrapper .slide_2_1 .rev_sl2_logo {left: 10px !important;}
	.rev_slider_wrapper .law_title_2 {left: 580px !important;}
	.rev_slider_wrapper .law_title_2 + .law_title_2 {left: 610px !important;}

	/* Booking Calendar */
	.days_container_all .booking_day_container {width: 157px;}
}
@media (max-width: 1023px) {
	/* Rev slider content */
	.rev_slider_wrapper .rev_bg_image {display: none}
	.rev_slider_wrapper .rev_sl2_text_bg > img {
		height: 35px !important;
		width: 307px !important;
	}
	.rev_slider_wrapper .rev_sl2_logo img {height:22px !important;width: 170px !important;}
	.rev_slider_wrapper .tp-caption.subtext {top: 293px !important;}
	.rev_slider_wrapper .tp-caption.subtext a,
	.rev_slider_wrapper .tp-caption.subtext_b,
	.rev_slider_wrapper .tp-caption.subtext_a a {font-size: 12px !important;}
	
	/* Contact form style 3 */
	.sc_contact_form_contact_3 .sc_columns_count_4>.columns2_4 {
		  width: 100%;	
	}
}

@media (max-width: 980px) {
	/* Rev slider content */
	.rev_slider_wrapper .tp-caption.law_title,
	.rev_slider_wrapper .tp-caption.law_s1_text,
	.rev_slider_wrapper .tp-caption.sl_1_logo {left: 10px !important;}
	.rev_slider_wrapper .tp-caption.subtext{top: 289px !important;}
	.rev_slider_wrapper .law_title_3 * {font-size: 22px !important;text-align: right !important;}

	.rev_slider_wrapper .sl_3_slice_bg {top:-20px !important;left: -197px !important;}
	.rev_slider_wrapper .sl_3_slice_bg img {
		height: 1375px !important;
		width: 2500px !important;
	}
	.rev_slider_wrapper .sl_3_text_bg {left: 150px !important;top: 612px !important;}
	.rev_slider_wrapper .sl_3_text_bg img {height: 43px !important; width: 224px !important;}

	.rev_slider_wrapper .tp-caption.sl_3_text_1,
	.rev_slider_wrapper .tp-caption.subtext_black {font-size: 11px !important;left:160px !important;}

	.rev_slider_wrapper .rev_form_caption {top: 40px !important;}
	.rev_slider_wrapper .rev_form_wrapper {top: 100px !important;}

	.rev_slider_wrapper .law_title_3,
	.rev_slider_wrapper .rev_sl2_text_bg,
	.rev_slider_wrapper .law_title_2,
	.rev_slider_wrapper .law_title_2 + .law_title_2,
	.rev_slider_wrapper li:not(.slide_2_1) .rev_sl2_logo {left: auto !important;right: 80px !important;}
	.rev_slider_wrapper .subtext_a {left: auto !important;right: 100px !important;}

	/* slider form */
	.tp-static-layers .roundButton > a,
	.tp-static-layers .sc_contact_form_contact_2 textarea,
	.tp-static-layers .sc_contact_form_contact_2 input {font-size: 15px !important;}
	.tp-static-layers .roundButton > a {line-height: 38px !important;}
	.tp-static-layers .sc_infobox, .tp-static-layers .sc_infobox p {font-size: 14px !important;line-height: 18px !important;}

	/* Booking calendar */
	.days_container_all .booking_day_container {width: 138px;}
	.days_container_all .booking_day_number {font-size: 20px;}
	#booking_slot_form {width: 100%;}
	#form_container_all {padding: 0;width: 100%;}
	#booking_container {padding: 10px 50px 30px;}
}

@media (max-width: 900px) {
	.sidemenu_wrap .sidemenu_close {left: auto; right: 0;}
}
@media (max-width: 799px) {
    /* Rev slider content */
    .rev_slider_wrapper .tp-caption.subtext,
    .rev_slider_wrapper .tp-caption.subtext_a {
        top: 230px !important;
    }

    .rev_slider_wrapper .tp-caption.subtext_b {
        top: 251px !important;
    }

    .rev_slider_wrapper .law_title_2 {
        font-size: 20px !important;
    }

    .rev_slider_wrapper .sl_3_slice_bg {
        left: -198px !important;
    }

    /* slider form */
    .tp-static-layers .tp-caption.static_form_header {
        top: 20px !important;
    }

    .tp-static-layers .rev_form_wrapper {
        top: 60px !important;
    }

    /* blogger portfolio */
    .portfolio .isotopeElement {
        margin-bottom: 0;
    }

    /* Contact form style 3 */
    .sc_contact_form_contact_3 .sc_columns_count_4 > .columns2_4 .columns3_5 {
        float: left;
        margin: 0 4.1666% 0 0;
        width: 55.8333%;
    }

    .sc_contact_form_contact_3 .sc_columns_count_4 > .columns2_4 .columns2_5 {
        float: left;
        margin: 0 4.1666% 0 0;
        width: 35.8333%;
        /*}*/
        /*.sc_image_align_right, .sc_image_align_left {*/
        /*float: none !important;*/
        /*}*/

    }
}

@media (max-width: 768px) {
	/* Rev slider content */
	.rev_slider_wrapper .tp-caption.subtext,
	.rev_slider_wrapper .tp-caption.subtext_a {top: 223px !important;}
	.rev_slider_wrapper .tp-caption.subtext_b {top: 242px !important;}

	.rev_slider_wrapper .sl_1_text_bg {display: none !important;}
	.rev_slider_wrapper .law_slide2_name {font-size: 12px !important;}
	.rev_slider_wrapper .rev_form_caption {font-size: 22px !important;}
	.rev_slider_wrapper .sl_3_text_bg {top: 486px !important;}
	.rev_slider_wrapper .sl_3_slice_bg {left: -90px !important;}
	.rev_slider_wrapper .sl_3_slice_bg img {
		height: 1100px !important;
		width: 2000px !important;
	}
	/* slider form */
	.tp-static-layers .sc_contact_form_contact_2 input {height: 32px !important;}
	.tp-static-layers form .message {width: 99% !important;}

	/* Booking Calendar */
	.booking_month_container_all .booking_month_name, .booking_month_container_all .booking_month_year {font-size: 40px;line-height: 48px;}
	.booking_month_container_all .booking_month_year {
		font-size: 62px;
	}
	.topTabsWrap .pageTitle {
		float: none;
		line-height: 64px;
	}
    .topTabsWrap .speedBar {
        line-height: 32px;
        padding-top: 35px;
    }
}

@media (max-width: 640px) {
	/* Rev slider content */
	.rev_slider_wrapper .tp-caption.subtext, .rev_slider_wrapper .tp-caption.subtext_a {top: 184px !important;}
	.rev_slider_wrapper .tp-caption.subtext_b {top: 204px !important;}

	.rev_slider_wrapper .law_title_2 {
		font-size: 18px !important;
	}
	.rev_slider_wrapper .law_title_3 * {font-size: 20px !important;}

	.rev_slider_wrapper .sl_3_slice_bg img {
		height: 550px !important;
		width: 1000px !important;
	}
	.rev_slider_wrapper .sl_3_slice_bg {left: 114px !important;}
	.rev_slider_wrapper .sl_3_text_bg {left: 120px !important;top: 164px !important;}
	.rev_slider_wrapper .sl_3_text_bg img {
		height: 33px !important;
		width: 178px !important;
	}
	.rev_slider_wrapper .tp-caption.sl_3_text_1,
	.rev_slider_wrapper .tp-caption.subtext_black {left:125px !important;}

	.rev_slider_wrapper .tp-caption.law_title_sl_3 {font-size: 16px !important;}
	.rev_slider_wrapper .tp-caption.law_title_sl_3 + .tp-caption.law_title_sl_3 {margin-top: 10px;}
	.rev_slider_wrapper .tp-caption.sl_3_text_1 {margin-top: 5px !important;}

	/* slider form */
	.tp-static-layers .tp-caption.static_form_header {font-size: 18px !important;top: 20px !important;}
	.tp-static-layers .rev_form_wrapper {top: 56px !important;}
	.tp-static-layers .sc_section {width: 260px !important;}
	.tp-static-layers .roundButton > a, .tp-static-layers .sc_contact_form_contact_2 textarea, .tp-static-layers .sc_contact_form_contact_2 input {font-size: 13px !important;	}
	.tp-static-layers .sc_contact_form_contact_2 textarea {height: 56px !important;}
	.tp-static-layers form .message {width: 98.5% !important;}
	.tp-static-layers .sc_contact_form_contact_2 .sc_contact_form_button > div {margin-left: -4px !important;}

	/* Booking Calendar */
	.booking_select_calendar_container {width: 50%;}
}

@media (max-width: 480px) {
	/* Rev slider content */
	.rev_slider_wrapper .tp-caption.subtext, .rev_slider_wrapper .tp-caption.subtext_a {top: 138px !important;}
	.rev_slider_wrapper .rev_sl2_logo {top: 48px !important;}
	.rev_slider_wrapper .tp-caption.subtext_b {top: 158px !important;}

	.rev_slider_wrapper .law_title_3 * {font-size: 18px !important;}
	.rev_slider_wrapper .sl_3_text_bg {
		left: 138px !important;
		top: 184px !important;
	}
	.rev_slider_wrapper .tp-caption.sl_3_text_1, .rev_slider_wrapper .tp-caption.subtext_black {
		left: 143px !important;
	}
	.rev_slider_wrapper .tp-caption.sl_3_text_1 {top:197px !important;}
	.rev_slider_wrapper .tp-caption.subtext_black {top:187px !important;}
	.rev_slider_wrapper .tp-caption.law_title_sl_3 {left: 0 !important;right: 0 !important;margin: 0 auto !important;text-align: center !important;}
	.rev_slider_wrapper .tp-caption.law_title_sl_3 + .tp-caption.law_title_sl_3{margin-top: 10px !important;}

	.rev_slider_wrapper li:not(.slide_2_1) .law_title,
	.rev_slider_wrapper .law_slide2_text,
	.rev_slider_wrapper .law_slide2_name {display: none;}

	/* other */
	.admin-bar #sidemenu_button {margin-left: 0;}

	/* slider form */
	.tp-static-layers .tp-caption.static_form_header {font-size: 14px !important;top: 10px !important;}
	.tp-static-layers .rev_form_wrapper {top: 32px !important;}
	.tp-static-layers .sc_section {width: 180px !important;}
	.tp-static-layers .roundButton > a, .tp-static-layers .sc_contact_form_contact_2 textarea, .tp-static-layers .sc_contact_form_contact_2 input {font-size: 13px !important;	}
	.tp-static-layers .sc_contact_form_contact_2 textarea {height: 46px !important;margin-top: 1px !important;}
	.tp-static-layers form .message {width: 98% !important;}
	.tp-static-layers .sc_contact_form_contact_2 .sc_contact_form_button > div {margin-left: -4px !important;}
	.tp-static-layers .sc_contact_form_contact_2 input {height: 22px !important;}
	.tp-static-layers .roundButton > a {line-height: 28px !important;height: 28px !important;}
    .top-menu_user-login {
        float: right;
    }

    /* Woocommerce */
    .woocommerce a.added_to_cart, .woocommerce-page a.added_to_cart {
        padding-top: 15px;
    }

    .booking_month_container_all .booking_month_name {font-size: 20px;line-height: 28px;}
    .booking_month_container_all .booking_month_year {font-size: 30px;line-height: 35px;}
}

@media (max-width: 360px) {
	/* Rev slider content */
	.rev_slider_wrapper .tp-caption.subtext_b {top: 284px !important;}

	.rev_slider_wrapper .rev_sl2_logo {top: 28px !important;}

	.rev_slider_wrapper .tp-caption.subtext, .rev_slider_wrapper .tp-caption.subtext_a {  top: 114px !important;	}

	.rev_slider_wrapper .rev_sl2_text_bg {top: 115px !important;}
	.rev_slider_wrapper .tp-caption.subtext, .rev_slider_wrapper .tp-caption.subtext_a {top: 125px !important;}
	.rev_slider_wrapper .tp-caption.subtext_b {top: 125px !important;}

	.rev_slider_wrapper .sl_3_slice_bg {display: none;}
	.rev_slider_wrapper .tp-caption.sl_3_text_1,
	.rev_slider_wrapper .tp-caption.subtext_black,
	.rev_slider_wrapper .sl_3_text_bg {
		left: 0 !important;
		right: 0 !important;
		margin: 0 auto !important;
		text-align: center !important;
	}
	.rev_slider_wrapper .sl_3_text_bg {top: 400px !important;}
	.rev_slider_wrapper .tp-caption.sl_3_text_1 {top: 422px !important;}
	.rev_slider_wrapper .tp-caption.subtext_black {top: 405px !important;}
	.rev_slider_wrapper .sl_3_text_bg img {
		height: 37px !important;
		width: 210px !important;
	}

	.sc_contact_form_contact_2 textarea, .sc_contact_form_contact_2 input {width: 328px !important;    width: 270px !important;}
	/*.sc_contact_form_contact_2 .sc_contact_form_button {width: 326px !important;}*/
	.rev_slider_wrapper .rev_form_wrapper {left: 15px !important;}
    .sc_contact_form_contact_2 .sc_contact_form_button {
        width: auto !important;
        margin-left: 0 !important;
    }

	.rev_slider_wrapper .law_title_3,
	.rev_slider_wrapper .rev_sl2_text_bg,
	.rev_slider_wrapper .law_title_2,
	.rev_slider_wrapper .law_title_2 + .law_title_2,
	.rev_slider_wrapper li:not(.slide_2_1) .rev_sl2_logo {left: auto !important;right: 50px !important;}
	.rev_slider_wrapper .subtext_a {left: auto !important;right: 70px !important;}

	/* other */
	.admin-bar #sidemenu_button {margin-left: -20px;}

	/* slider form */
	.tp-static-layers .rev_form_wrapper {display: none;}
	.tp-static-layers .slider_form_btn_360 {display: block;left: -33px !important;}
	.tp-static-layers .tp-caption.static_form_header {left: 200px !important;}

	/* Booking Calendar */
	.booking_month_container_all .booking_month_name, .booking_month_container_all .booking_month_year {font-size: 20px;line-height: 28px;}
	.booking_month_container_all .booking_month_year {font-size: 34px;}

	.days_container_all .booking_day_number {padding: 20px 10px 0;}
	.days_container_all .booking_day_container {width: 129px;}
	#booking_container {padding: 1px 40px 30px;}
}

@media (max-width: 320px) {
	/* Rev slider content */

	.rev_slider_wrapper .law_title_3,
	.rev_slider_wrapper .rev_sl2_text_bg,
	.rev_slider_wrapper .law_title_2,
	.rev_slider_wrapper .law_title_2 + .law_title_2,
	.rev_slider_wrapper li:not(.slide_2_1) .rev_sl2_logo {left: auto !important;right: 20px !important;}
	.rev_slider_wrapper .rev_sl2_text_bg {top: 95px !important;}
	.rev_slider_wrapper .tp-caption.subtext, .rev_slider_wrapper .tp-caption.subtext_a,
	.rev_slider_wrapper .tp-caption.subtext_b {top: 100px !important;}
	.rev_slider_wrapper .rev_sl2_text_bg > img {
		height: 20px !important;
		width: 250px !important;
	}
	.rev_slider_wrapper .subtext_a {left: auto !important;right: 40px !important;}

	.rev_slider_wrapper .law_title_2 {font-size: 16px !important;}
	.rev_slider_wrapper .law_title_3 * {line-height: 19px !important;}
	.rev_slider_wrapper .law_title_2 + .law_title_2 {margin-top: 6px;}

	.rev_slider_wrapper .sl_3_text_bg {top: 300px !important;}
	.rev_slider_wrapper .tp-caption.sl_3_text_1 {top: 322px !important;}
	.rev_slider_wrapper .tp-caption.subtext_black {top: 305px !important;}

	/*.sc_contact_form_contact_2 textarea, .sc_contact_form_contact_2 input {width: 288px !important;}*/
	/*.sc_contact_form_contact_2 .sc_contact_form_button {width: 286px !important;}*/

	/* slider form */
	.tp-static-layers .slider_form_btn_360 {left: -25px !important;}
	.tp-static-layers .tp-caption.static_form_header {left: 168px !important;}
	#form_popup .sc_contact_form_contact_2 .sc_contact_form_button > div {margin-left: -26px !important;}

}


@media (min-width: 1600px) and (max-width: 1920px) {	
	/* Slider some styles */
	.page .content .rev_slider .tp-caption.all-day {
		left: 42% !important;
	}
	.page .content .rev_slider .tp-caption.running-man {
		left: 24% !important;
	}
    .page .rev_slider .tp-caption.all-day-services {
        left: 20% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.got-emergency {
        left: 32.5% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.call-now {
        left: 32.5% !important;
        top: 57% !important;
    }
    .fullScreenSlider .tp-caption.btn-orange-ellipse {
        left: 33% !important;
        top: 26% !important;
    }
    .fullScreenSlider .tp-caption.small-text-orange {
        left: 46.5% !important;
        top: 23.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text {
        left: 46.5% !important;
        top: 28.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text-sec {
        left: 46.5% !important;
        top: 32.5% !important;
    }
    .theplumbingcompany-950 {
        left: 51% !important;
        top: 21% !important;
    }
    .home-owners-950 {
        left: 51% !important;
        top: 28.5% !important;
    }
    .helping-homeowners-950 {
        left: 51% !important;
        top: 34.5% !important;
    }
    .bynow-950 {
        left: 51% !important;
        top: 46% !important;
    }
}

@media (min-width: 1440px) and (max-width: 1599px) {
	/* Slider some styles */
	.page .content .rev_slider .tp-caption.all-day {
		left: 41% !important;
	}	
	.page .content .rev_slider .tp-caption.running-man {
		left: 21% !important;
	}
    .page .rev_slider .tp-caption.all-day-services {
        left: 20% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.got-emergency {
        left: 32.5% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.call-now {
        left: 32.5% !important;
        top: 57% !important;
    }
    .fullScreenSlider .tp-caption.btn-orange-ellipse {
        left: 33% !important;
        top: 26% !important;
    }
    .fullScreenSlider .tp-caption.small-text-orange {
        left: 46.5% !important;
        top: 23.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text {
        left: 46.5% !important;
        top: 28.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text-sec {
        left: 46.5% !important;
        top: 32.5% !important;
    }
    .theplumbingcompany-950 {
        left: 51% !important;
        top: 21% !important;
    }
    .home-owners-950 {
        left: 51% !important;
        top: 28.5% !important;
    }
    .helping-homeowners-950 {
        left: 51% !important;
        top: 34.5% !important;
    }
    .bynow-950 {
        left: 51% !important;
        top: 46% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.dark-huge-uppercase {
        left: 10% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.logo-button_orange {
        left: 45% !important;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
	/* Slider some styles */
	.page .content .rev_slider .tp-caption.btn-yellow-trapeze {
		left: 73.5% !important;
	}	
	.page .content .rev_slider .tp-caption.white-huge {
		left: 45% !important;
	}	
	.page .content .rev_slider .tp-caption.all-day {
		left: 39% !important;
	}	
	.page .content .rev_slider .tp-caption.running-man {
		left: 17% !important;
	}
    .page .rev_slider .tp-caption.all-day-services {
        left: 18% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.got-emergency {
        left: 32.5% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.call-now {
        left: 32.5% !important;
        top: 57% !important;
    }
    .fullScreenSlider .tp-caption.btn-orange-ellipse {
        left: 31% !important;
        top: 26% !important;
    }
    .fullScreenSlider .tp-caption.small-text-orange {
        left: 46.5% !important;
        top: 23.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text {
        left: 46.5% !important;
        top: 28.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text-sec {
        left: 46.5% !important;
        top: 32.5% !important;
    }
    .theplumbingcompany-950 {
        left: 51% !important;
        top: 21% !important;
    }
    .home-owners-950 {
        left: 51% !important;
        top: 28.5% !important;
    }
    .helping-homeowners-950 {
        left: 51% !important;
        top: 34.5% !important;
    }
    .bynow-950 {
        left: 51% !important;
        top: 46% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.dark-huge-uppercase {
        left: 10% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.logo-button_orange {
        left: 51% !important;
    }
}

@media (min-width: 1168px) and (max-width: 1279px) {
	/* Slider some styles */
	.page .content .rev_slider .tp-caption.btn-yellow-trapeze {
		left: 73.5% !important;
	}	
	.page .content .rev_slider .tp-caption.white-huge {
		left: 41% !important;
	}	
	.page .content .rev_slider .tp-caption.btn-orange-ellipse {
		  right: 44% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text {
		  left: 57.5% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text-sec {
		  left: 57.5% !important;
	}	
	.page .content .rev_slider .tp-caption.small-text-orange {
		  left: 57.65% !important;
	}	
	.page .content .rev_slider .tp-caption.all-day {
		left: 37% !important;
	}	
	.page .content .rev_slider .tp-caption.running-man {
		left: 13% !important;
	}
    .page .rev_slider .tp-caption.all-day-services {
        left: 20% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.got-emergency {
        left: 36% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.call-now {
        left: 36% !important;
        top: 56% !important;
    }
    .fullScreenSlider .tp-caption.btn-orange-ellipse {
        left: 33% !important;
        top: 26% !important;
    }
    .fullScreenSlider .tp-caption.small-text-orange {
        left: 45.5% !important;
        top: 23.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text {
        left: 45.5% !important;
        top: 28.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text-sec {
        left: 45.5% !important;
        top: 32.5% !important;
    }
    .theplumbingcompany-950 {
        left: 51% !important;
        top: 21% !important;
    }
    .home-owners-950 {
        left: 51% !important;
        top: 28.5% !important;
    }
    .helping-homeowners-950 {
        left: 51% !important;
        top: 34.5% !important;
    }
    .bynow-950 {
        left: 51% !important;
        top: 46% !important;
    }
	
	.sc_parallax.paralax_plumber .sc_parallax_content {
		background-position-x: 100% !important
	}
}

@media (min-width: 1024px) and (max-width: 1167px) {
	
	/* Slider some styles */
	.page .content .rev_slider .tp-caption.btn-yellow-trapeze {
		left: 71% !important;
	}	
	.page .content .rev_slider .tp-caption.white-huge {
		left: 39% !important;
	}	
	.page .content .rev_slider .tp-caption.btn-orange-ellipse {
		  right: 45% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text {
		  left: 56.5% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text-sec {
		  left: 56.5% !important;
	}	
	.page .content .rev_slider .tp-caption.small-text-orange {
		  left: 56.65% !important;
	}	
	.page .content .rev_slider .tp-caption.all-day {
		left: 36% !important;
	}	
	.page .content .rev_slider .tp-caption.running-man {
		left: 11% !important;
	}
    .page .rev_slider .tp-caption.all-day-services {
        left: 20% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.got-emergency {
        left: 37% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.call-now {
        left: 37% !important;
        top: 56% !important;
    }
    .fullScreenSlider .tp-caption.btn-orange-ellipse {
        left: 33% !important;
        top: 26% !important;
    }
    .fullScreenSlider .tp-caption.small-text-orange {
        left: 46.5% !important;
        top: 23.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text {
        left: 46.5% !important;
        top: 28.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text-sec {
        left: 46.5% !important;
        top: 32.5% !important;
    }
    .theplumbingcompany-950 {
        left: 44% !important;
        top: 21% !important;
    }
    .home-owners-950 {
        left: 44% !important;
        top: 28.5% !important;
    }
    .helping-homeowners-950 {
        left: 44% !important;
        top: 34.5% !important;
    }
    .bynow-950 {
        left: 44% !important;
        top: 46% !important;
    }
	
	/* sc buttons */
	.columns1_4 .sc_button_size_medium, .columns1_4 .sc_button_size_large {
		margin: auto 0;
	}
	.columns1_4 .sc_button_size_medium a, .columns1_4 .sc_button_size_large a {
		padding: 0 1em;
	}
	.sc_emailer.inputSubmitAnimation a.sc_button.sc_emailer_button.roundButton {
		margin-top: 30px;
	}
}


@media (min-width: 980px) and (max-width: 1024px) {
	
	.sc_parallax.paralax_plumber .sc_parallax_content {
		background-position-x: 110% !important
	}
	
	/* Columns */
	.sc_columns_count_2 .columns1_2 {
		/*width: 100%;*/
	}
	.sc_columns_count_2 .columns1_2 .columns1_2 {
		float: left;
		margin: 0 4.1666% 0 0;
		width: 45.8334%;	
	}
}

@media (max-width: 1280px) and (max-height: 1024px) {

    .fullScreenSlider .rev_slider .tp-caption.dark-huge-uppercase {
        left: 10% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.logo-button_orange {
        left: 54% !important;
    }
    .fullScreenSlider .tp-caption.btn-orange-ellipse {
        left: 31% !important;
        top: 26% !important;
    }
    .fullScreenSlider .tp-caption.small-text-orange {
        left: 50.5% !important;
        top: 23.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text {
        left: 50.5% !important;
        top: 28.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text-sec {
        left: 50.5% !important;
        top: 32.5% !important;
    }

}

@media (max-width: 1024px) and (max-height: 768px) {

    .fullScreenSlider .rev_slider .tp-caption.logo-button_orange {
        left: 53% !important;
    }

}

@media (max-width: 768px) and (max-height: 1024px) {

    .fullScreenSlider .rev_slider .tp-caption.logo-button_orange {
        left: 57% !important;
    }

}

    @media (min-width: 800px) and (max-width: 1023px) {
	/* Slider some styles */
	.page .content .rev_slider .tp-caption.btn-yellow-trapeze {
		left: 70% !important;
	}	
	.page .content .rev_slider .tp-caption.white-huge {
		left: 39% !important;
	}	
	.page .content .rev_slider .tp-caption.btn-orange-ellipse {
		  right: 45% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text {
		  left: 56.5% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text-sec {
		  left: 56.5% !important;
	}	
	.page .content .rev_slider .tp-caption.small-text-orange {
		  left: 56.65% !important;
	}	
	.page .content .rev_slider .tp-caption.all-day {
		left: 36% !important;
	}	
	.page .content .rev_slider .tp-caption.running-man {
		left: 11% !important;
	}
    .page .rev_slider .tp-caption.all-day-services {
        left: 20% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.got-emergency {
        left: 37% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.call-now {
        left: 37% !important;
        top: 56% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.logo-button_orange {
       left: 56% !important;
    }
	
	.sc_parallax.paralax_plumber .sc_parallax_content {		
		background-position-x: 120% !important
	}
    .theplumbingcompany-950 {
        left: 48% !important;
        top: 21% !important;
    }
    .home-owners-950 {
        left: 48% !important;
        top: 28.5% !important;
    }
    .helping-homeowners-950 {
        left: 48% !important;
        top: 34.5% !important;
    }
    .bynow-950 {
        left: 48% !important;
        top: 46% !important;
    }
	
	/* Columns */
	.sc_columns_count_2 .columns1_2 {
		width: 100%;
	}
	.sc_columns_count_2 .columns1_2 .columns1_2 {
		float: left;
		margin: 0 4.1666% 0 0;
		width: 45.8334%;	
	}
}


@media (min-width: 480px) and (max-width: 799px) {
	/* Slider some styles */
	.page .content .rev_slider .tp-caption.btn-yellow-trapeze {
		left: 69% !important;
	}	
	.page .content .rev_slider .tp-caption.white-huge {
		left: 35% !important;
	}	
	.page .content .rev_slider .tp-caption.btn-orange-ellipse {
		  right: 45% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text {
		  left: 56.5% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text-sec {
		  left: 56.5% !important;
	}	
	.page .content .rev_slider .tp-caption.small-text-orange {
		  left: 56.65% !important;
	}	
	.page .content .rev_slider .tp-caption.all-day {
		left: 36% !important;
	}	
	.page .content .rev_slider .tp-caption.running-man {
		left: 11% !important;
	}
    .page .rev_slider .tp-caption.all-day-services {
        left: 20% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.got-emergency {
        left: 39% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.call-now {
        left: 39% !important;
        top: 55% !important;
    }
    .fullScreenSlider .tp-caption.btn-orange-ellipse {
        left: 33% !important;
        top: 26% !important;
    }
    .fullScreenSlider .tp-caption.small-text-orange {
        left: 52.5% !important;
        top: 23.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text {
        left: 52.5% !important;
        top: 28.5% !important;
    }
    .fullScreenSlider .tp-caption.large-white-text-sec {
        left: 52.5% !important;
        top: 32.5% !important;
    }
    .theplumbingcompany-950 {
        left: 45% !important;
        top: 21% !important;
    }
    .home-owners-950 {
        left: 45% !important;
        top: 28.5% !important;
    }
    .helping-homeowners-950 {
        left: 45% !important;
        top: 34.5% !important;
    }
    .bynow-950 {
        left: 45% !important;
        top: 46% !important;
    }
	
	.sc_parallax.paralax_plumber .sc_parallax_content {		
		background-image: none !important;
	}
	
	/* Columns */
	.sc_columns_count_2 .columns1_2 {
		width: 100%;
	}
	.sc_columns_count_2 .columns1_2 .columns1_2 {
		float: left;
		margin: 0 4.1666% 0 0;
		width: 45.8334%;	
	}
}


@media (max-width: 479px) {	
	/* Slider some styles */
	.page .content .rev_slider .tp-caption.btn-yellow-trapeze {
		left: 68% !important;
	}	
	.page .content .rev_slider .tp-caption.white-huge {
		left: 35% !important;
	}		
	.page .content .rev_slider .tp-caption.btn-orange-ellipse {
		  right: 46% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text {
		  left: 55.5% !important;
	}	
	.page .content .rev_slider .tp-caption.large-white-text-sec {
		  left: 55.5% !important;
	}	
	.page .content .rev_slider .tp-caption.small-text-orange {
		  left: 55.65% !important;
	}	
	.page .content .rev_slider .tp-caption.all-day {
		left: 36% !important;
	}	
	.page .content .rev_slider .tp-caption.running-man {
		left: 11% !important;
	}
    .page .rev_slider .tp-caption.all-day-services {
        left: 20% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.got-emergency {
        left: 40% !important;
        top: 43% !important;
    }
    .fullScreenSlider .rev_slider .tp-caption.call-now {
        left: 40% !important;
        top: 55% !important;
    }
    .theplumbingcompany-950 {
        left: 42% !important;
        top: 21% !important;
    }
    .home-owners-950 {
        left: 42% !important;
        top: 28.5% !important;
    }
    .helping-homeowners-950 {
        left: 42% !important;
        top: 34.5% !important;
    }
    .bynow-950 {
        left: 42% !important;
        top: 46% !important;
    }
	
	.sc_parallax.paralax_plumber .sc_parallax_content {		
		background-image: none !important;
	}	
	
	/* Contact form style 3 */
	.sc_contact_form_contact_3 .sc_columns_count_4>.columns2_4 .columns3_5 {
	    width: 100% !important;
	}

    .sc_skills_arc .sc_skills_legend {
        width: 100%;
    }
	
}
@media (max-width: 1024px) {
    .responsive_menu .menuTopWrap > ul > li > a {
        border-bottom: 1px solid #151515;
        color: #151515;
        font-size: 13px;
        font-weight: 700;
        height: 46px;
        line-height: 46px;
        padding: 0;
        border-bottom-color: #eee;
    }
    .responsive_menu .menuTopWrap > ul > li.appointment-btn_menu > a {
        border: none;
        margin-top: 25px;
        height: 43px;
        line-height: 43px;
    }
    .responsive_menu .menuTopWrap > ul > li > a:hover {

    }
}@media (min-width: 1168px) {
    .rev_slider .slider_contact_form {
        width: 660px;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { top: 40%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:65%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 25%; }
	
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 25%; }
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock { top: 45%; }
	
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.title { top: 68%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .order { top: 78%; }
    .fullScreenSlider .slider_contact_form,
    .fullScreenSlider .quick_service_request, .fullScreenSlider .all_day_service {
        left: 45% !important;
    }
}

@media (min-width: 1168px) and (max-width: 1279px) {
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { top: 40%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:65%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 25%; }
	
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 25%; }
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock { top: 45%; }

	.sliderHomeBullets.slider_alias_15 .slide-1 .imageBlock { top: 40%;}
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.title { top: 63%; }
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.text { top: 74%;  }
	.sliderHomeBullets.slider_alias_15 .slide-2 .imageBlock { top: 40%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.title { top: 72%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.text { top: 58%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .order { top: 84%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .imageBlock { top: 26%;}
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.title { top: 50%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.text { top: 63%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .order { top: 74%; }

}
@media (max-width: 1300px) {
    .fullScreenSlider .plumbingbigreglowwhite48 {
        margin-top: -0.5em;
    }
    .tp-caption.plumbingbigboldwhite48, .plumbingbigboldwhite48 {
        margin-top: -1em !important;
    }
    .fullscreenbanner .tp-caption.plumbingbigboldwhite48, .plumbingbigboldwhite48 {
        margin-top: inherit !important;
    }
}
@media (max-width: 1279px) {
    /* 1-st slider home 01 */
    .delivers_elite {
        margin-top: -0.5em !important;
    }
    .theplumbingcompany {
        margin-top: -2em !important;
    }
    /* 2-nd slider home 01 */
    .fullScreenSlider .delivers_elite, .fullScreenSlider .theplumbingcompany {
        margin-top: 0 !important;
    }
    /* 2-nd slider home 02 */
    .fullScreenSlider .slider_contact_form,
    .fullScreenSlider .quick_service_request, .fullScreenSlider .all_day_service {
        left: 40% !important;
    }

}

@media (min-width: 1024px) and (max-width: 1167px) {
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { top: 45%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:60%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 30%; }

	.sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 30%; }
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock { top: 45%; }

	.sliderHomeBullets.slider_alias_15 .slide-1 .imageBlock { top: 40%;}
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.title { top: 67%; }
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.text { top: 78%;  }
	.sliderHomeBullets.slider_alias_15 .slide-2 .imageBlock { top: 40%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.title { top: 72%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.text { top: 58%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .order { top: 84%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .imageBlock { top: 35%;}
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.title { top: 60%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.text { top: 71%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .order { top: 83%; }

	.columns2_5 .sc_button_size_huge a {
	  	font-size: 21px;
	}
    .rev_slider .slider_contact_form {
        width: 550px;
    }
    .fullScreenSlider .no_style {
        width: 55%;
    }
}

@media (min-width: 1167px) and (max-width: 768px) {
    .rev_slider.fullscreenbanner .tp-caption.plumbingbigreglowwhite48 {
        margin-top: -0.7em !important;
    }
}

@media (min-width: 800px) and (max-width: 1023px) {
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { top: 42%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:65%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 25%; }
	
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 25%; }
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock { top: 42%; }

	.sliderHomeBullets.slider_alias_15 .imageBlock,
	.sliderHomeBullets.slider_alias_15 .textBlock,
	.sliderHomeBullets.slider_alias_15 .order { width: 100%;}
	.sliderHomeBullets.slider_alias_15 .slide-1 .imageBlock { top: 20%;}
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.title { top: 62%; }
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.text { top: 78%;  }
	.sliderHomeBullets.slider_alias_15 .slide-2 .imageBlock { top: 10%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.title { top: 59%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.text { top: 40%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .order { top: 78%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .imageBlock { top: 6%;}
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.title { top: 46%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.text { top: 62%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .order { top: 78%; }

    #shortcode-btns .sc_section {
        float: left !important;
        margin-left: 0 !important;
        margin-right: 3.5em !important;
    }

    /* slider with form */
    .rev_slider .slider_contact_form {
        width: 480px;
    }
    .rev_slider .slider_contact_form,
    .quick_service_request, .all_day_service {
        left: 36% !important;
    }
    .fullScreenSlider .no_style {
        right: 5% !important;
        top: 3% !important;
        left: inherit !important;
        width: 50%;
    }
    .fullScreenSlider .no_style .first_line {
        font-size: 3.5em;
    }
    .fullScreenSlider .no_style .second_line {
        font-size: 5.5em;
    }
    .sliderbutton+.sliderbutton {
        margin-left: 20px !important;
    }
    .woocommerce.columns-4 ul.products li.product, .woocommerce-page.columns-4 ul.products li.product {
        margin-right: 2%;
        width: 23%;
    }

}


@media (max-width: 1167px) {
    .rev_slider.fullscreenbanner.tp-simpleresponsive .sc_button > a, .rev_slider.fullscreenbanner.tp-simpleresponsive .sc_button > span {
        height: 40px !important;
        line-height: 40px !important;
        padding: 0px 15px !important;
        font-size: 12px !important;
    }
    .rev_slider .fullscreenform {
        margin-right: 10% !important;
    }
    .rev_slider .sc_button.sc_button_size_big a {
        height: auto !important;
        line-height: 36px !important;
        font-size: 14px !important;
        padding: 0px 17px !important;
    }
    .fullscreenbanner .plumbingbigreglowwhite48 {
        margin-top: -0.3em !important;
    }
}
@media (max-width: 1023px) {
    .rev_slider .sc_contact_form input[type="text"],
    .rev_slider .sc_contact_form input[type="password"],
    .rev_slider .sc_contact_form textarea {
        height: 40px;
        line-height: 40px;
        margin: 1px 1px 10px;
        padding: 0 14px;
        font-size: 13px;
    }
    .sc_contact .sc_contact_form textarea, .fullScreenSlider .sc_contact_form textarea {
        line-height: 24px !important;
        padding-top: 8px !important;
    }
    .quick_service_request {
        font-size: 28px !important;
        line-height: 32px !important;
    }
    .all_day_service {
        font-size: 19px !important;
        line-height: 23px !important;
    }
    .fullScreenSlider .bg_form .sc_contact_form_contact_2 textarea {
        min-height: 100px !important;
        max-height: 150px !important;
    }
    .menu_user_left {
        clear: both;
    }
}
@media (max-height: 863px) {
    .fullScreenSlider .bg_form{
        padding: 9.3% 9% 5% 10%;
    }
    .fullScreenSlider .bg_form .sc_contact_form_contact_2 input {
        height: 32px;
        line-height: 32px;
        margin: 1px 1px 10px;
        padding: 0 14px;
        font-size: 13px;
    }
    .fullScreenSlider .bg_form .sc_contact_form_contact_2 textarea {
        max-height: 120px !important;
    }
}
@media (max-width: 799px) {
    .topTabsWrap .speedBar {
        float: left;
    }
    .topTabsWrap .pageTitle {
        clear: both;
        line-height: 35px;
        padding: 30px 0;
    }
    .sliderbutton+.sliderbutton {
        margin-left: 40px !important;
    }
}

@media (max-width: 767px) {
    .rev_slider.fullscreenbanner.tp-simpleresponsive .sc_button > a, .rev_slider.fullscreenbanner.tp-simpleresponsive .sc_button > span {
        height: auto !important;
        line-height: 24px !important;
        padding: 0px 12px !important;
        font-size: 10px !important;
    }
    .fullscreenbanner .sliderbutton+.sliderbutton {
        margin-left: 12em !important;
    }
    .rev_slider .sc_contact_form textarea {
        line-height: 16px;
        padding-top: 8px;
    }
}
@media (min-width: 480px) and (max-width: 799px) {
    .sc_button.mono > a, .sc_button.mono > span, .sc_button.global > a, .sc_button.global > span, .sc_button.dark > a, .sc_button.dark > span, .sc_button.light > a, .sc_button.light > span {
        border-width: 2px;
    }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { top: 40%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:65%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-2 .textBlock { top: 28%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-2 .textBlock .title { line-height: 120%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 18%; }
	
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { width: 6%; top: 18%; margin-left:-3%; }
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock { top: 40%; }

	.sliderHomeBullets.slider_alias_15 .imageBlock,
	.sliderHomeBullets.slider_alias_15 .textBlock,
	.sliderHomeBullets.slider_alias_15 .order { width: 100%;}
	.sliderHomeBullets.slider_alias_15 .slide-1 .imageBlock { top: 20%;}
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.title { top: 62%; }
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.text { top: 78%;  }
	.sliderHomeBullets.slider_alias_15 .slide-2 .imageBlock { top: 10%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.title { top: 59%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.text { top: 40%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .order { top: 78%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .imageBlock { top: 6%;}
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.title { top: 46%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.text { top: 62%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .order { top: 78%; }

    #shortcode-btns .sc_section, #shortcode-btns-2 .sc_section {
        margin: 0 auto !important;
        float: none !important;
        display: block;
        text-align: center;
    }
    .fullScreenSlider .no_style .first_line {
        font-size: 4em;
    }
    .fullScreenSlider .no_style .second_line {
        font-size: 6em;
    }
    .menu_user_right {
        float: left;
    }
    .masonryWrap .isotopeFiltr li {
        padding: 0 8px;
    }
}
@media (min-width: 668px) and (max-width: 799px) {
    .slider_contact_form {
        width: 70%;
    }
    .rev_slider .slider_contact_form,
    .quick_service_request, .all_day_service {
        left: 25% !important;
    }
    .fullScreenSlider .no_style {
        right: 5% !important;
        top: 10% !important;
        left: inherit !important;
        width: 60%;
    }
}

@media (max-width: 767px) {
    .rev_slider .fullscreenform {
        top: 21% !important;
    }
    .rev_slider .sc_contact_form input {
        padding-left: 10px !important;
        height: 30px !important;
        line-height: 30px !important;
        font-size: 10px !important;
    }
    .rev_slider .sc_contact_form textarea {
        padding: 6px 10px !important;
        line-height: 15px !important;
        font-size: 10px !important;
    }
    .rev_slider .sc_contact_form_button {
        margin-top: 15px !important;
    }
}
@media (max-width: 667px) {
    .rev_slider .sc_contact_form input[type="text"], .rev_slider .sc_contact_form input[type="password"], .rev_slider .sc_contact_form textarea {
    }
    .bg_form .first_line {
        font-size: 3em;
    }
    .rev_slider .sc_button.sc_button_size_big a {
        height: auto !important;
        line-height: 30px !important;
        font-size: 12px !important;
        padding: 0px 12px !important;
    }
}


@media (min-width: 569px) and (max-width: 667px) {
    .slider_contact_form {
        width: 80%;
    }
    .rev_slider .slider_contact_form,
    .quick_service_request, .all_day_service {
        left: 15% !important;
    }
    .all_day_service {
        top: 25% !important;
    }
    .quick_service_request {
        top: 30% !important;
    }

    .theplumbingcompany {
        display: none;
    }
    .fullScreenSlider .no_style {
        right: 5% !important;
        top: 10% !important;
        left: inherit !important;
        width: 60%;
    }
}
@media (min-width: 480px) and (max-width: 568px) {
    .slider_contact_form {
        width: 90%;
    }
    .rev_slider .sc_contact_form input {
        height: 25px !important;
        line-height: 25px !important;
    }
    .rev_slider .slider_contact_form,
    .quick_service_request, .all_day_service {
        left: 5% !important;
    }
    .all_day_service {
        top: 25% !important;
    }
    .quick_service_request {
        top: 30% !important;
    }

    .theplumbingcompany {
        display: none;
    }
    .fullScreenSlider .no_style {
        right: 5% !important;
        top: 0% !important;
        left: inherit !important;
        width: 90%;
    }
    .fullscreenbanner .sliderbutton+.sliderbutton {
        margin-left: 15em !important;
    }
}
@media (max-width: 568px) {
    .rev_slider .sc_contact_form .sc_infobox {
        margin-top: -40px !important;
    }
    .sc_contact_form_contact_2 .sc_contact_form_button {
        float: left;
    }
}
@media (max-width: 479px) {
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .textBlock { top: 42%; line-height: 140%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .order { top:70%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-2 .textBlock { top: 40%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-2 .textBlock .title { line-height: 120%; }
	.fullScreenSlider .sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 20%; }
	
	.sliderHomeBullets.slider_alias_12 .slide-3 .image { top: 20%; }
	.sliderHomeBullets.slider_alias_12 .slide-3 .textBlock { top: 40%; }

	.sliderHomeBullets.slider_alias_15 .imageBlock,
	.sliderHomeBullets.slider_alias_15 .textBlock,
	.sliderHomeBullets.slider_alias_15 .order { width: 100%;}
	.sliderHomeBullets.slider_alias_15 .order a { font-size: 2em; }
	.sliderHomeBullets.slider_alias_15 .slide-1 .imageBlock { top: 10%;}
	.sliderHomeBullets.slider_alias_15 .slide-1 .imageBlock img { height: 14%;}
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.title { top: 62%; }
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.text { top: 78%;  }
	.sliderHomeBullets.slider_alias_15 .slide-1 .textBlock.text div { font-size: 2em;  }
	.sliderHomeBullets.slider_alias_15 .slide-2 .imageBlock { top: 10%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .imageBlock img { height: 8%;}
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.title { top: 62%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.text { top: 45%; }
	.sliderHomeBullets.slider_alias_15 .slide-2 .textBlock.text div { font-size: 1.5em;  }
	.sliderHomeBullets.slider_alias_15 .slide-2 .order { top: 78%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .imageBlock { top: 6%;}
	.sliderHomeBullets.slider_alias_15 .slide-3 .imageBlock img { height: 8%;}
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.title { top: 48%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.text { top: 62%; }
	.sliderHomeBullets.slider_alias_15 .slide-3 .textBlock.text div { font-size: 1.2em;  }
	.sliderHomeBullets.slider_alias_15 .slide-3 .order { top: 78%; }


    .rev_slider .sc_button.sc_button_size_big a {
        height: auto !important;
        line-height: 18px !important;
        font-size: 8px !important;
        padding: 0px 10px !important;
    }


    .rev_slider .sc_contact_form input[type="text"],
    .rev_slider .sc_contact_form input[type="password"],
    .rev_slider .sc_contact_form textarea {
        height: 35px;
        line-height: 35px;
    }
    .rev_slider .fullscreenform {
        top: 30% !important;
    }
    .rev_slider .sc_contact_form textarea {
        padding-top: 8px !important;
        min-height: 90px;
        line-height: 18px !important;
    }

    .slider_contact_form {
        top: 22% !important;
        left: 5% !important;
        width: 90%;
    }
    .all_day_service {
        left: 5% !important;
        top: 5% !important;
    }
    .quick_service_request {
        left: 5% !important;
        top: 10% !important;
    }
    .fullscreenbanner .tp-caption.plumbingbigboldwhite48 {
        left: 35% !important;
    }
    .fullscreenbanner .plumbingbigreglowwhite48 {
        left: 35% !important;
    }
     .fullscreenbanner .sliderbutton.home2_sl1_btn1 {
         left: 35% !important;
     }
     .fullscreenbanner .sliderbutton.home2_sl1_btn2 {
         left: 48% !important;
     }

    .fullscreenbanner .sliderbutton+.sliderbutton {
        margin-left: 25em !important;
    }

    .theplumbingcompany {
        display: none;
    }
    .fullScreenSlider .slider_contact_form {
        left: 5% !important;
    }
    .fullScreenSlider .no_style {
        right: 5% !important;
        top: 8% !important;
        left: inherit !important;
        width: 90%;
    }
    .fullScreenSlider .no_style .first_line {
        font-size: 7.5em;
    }
    .fullScreenSlider .no_style .second_line {
        font-size: 9.5em;
    }
    .fullScreenSlider .no_style {
        top: -5% !important;
    }
    .fullScreenSlider .no_style input[type="text"], .fullScreenSlider .no_style input[type="password"], .fullScreenSlider .no_style textarea {
        height: 20px;
        line-height: 20px;
    }
    .fullScreenSlider .no_style .bg_form .sc_contact_form_contact_2 textarea {
        width: 100% !important;
        max-height: 50px !important;
    }
    .menu_user_right {
        clear: both;
    }
    .topWrap .usermenu_area .menuItemRight {
        float: left;
    }
    .topWrap .menuItemRight.top-menu_user-login {
        float: right;
    }
    .topWrap .usermenu_area .menuItemLeft, .topWrap .usermenu_area .menuItemRight {
        height: 25px;
        line-height: 25px;
    }
    .sidemenu_button {
        margin-bottom: 15px;
    }
    .topWrap .usermenu_area {
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .masonryWrap .isotopeFiltr li {
        padding: 0 7px;
    }
    .post .postSharing li, article div ul li.roundButton {
        margin: 0px 3px;
        margin-top: 10px;
    }
    #shortcode-btns .sc_section {
        float: left !important;
    }
    #shortcode-btns-2 .sc_section, #shortcode-btns .sc_section {
        margin-left: 50px !important;
    }
    .sc_contact_form_contact_1 input[type="text"], .sc_contact_form_contact_1 input[type="password"], .sc_contact_form_contact_1 textarea {
        width: 97%;
    }
    .sc_contact_form_contact_1 textarea {
        margin-left: 1px;
    }
    .top-menu_user-login {
        display: none;
    }
    .rev_slider_wrapper form .sc_infobox {
        margin-top: -35px !important;
        margin-left: 110px;
        text-align: center;
    }
}
@media (max-width: 355px) {
    .fullScreenSlider .slider_contact_form {
        top: 35% !important;
    }
    .fullScreenSlider .quick_service_request {
        line-height: 27px !important;
        margin-top: 0.5em !important;
    }
    .plumbingbigboldwhite36 {
        font-size: 26px !important;
    }
}/* skins/default.css edits from original. Used to overwrite styles in separate stylesheet */
a:hover,
.theme_accent,
.topWrap .topMenuStyleLine > ul > li ul li a:hover,
.infoPost a:hover,
.tabsButton ul li a:hover,
.widgetWrap  ul  li:before,
.widget_popular_posts article h3:before,
.widgetTabs .widget_popular_posts article .post_info .post_date a:hover,
.sidebar .widget_popular_posts article .post_info .post_date a:hover,
.sidebar .widget_recent_posts article .post_info .post_date a:hover,
.main .widgetWrap a:hover,
.main .widgetWrap a:hover span,
.widgetWrap a:hover span,
.roundButton a:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.roundButton.border > a,
.nav_pages_parts > a:hover,
.nav_comments > a:hover,
.comments_list a.comment-edit-link:hover,
.widget_area ul.tabs > li.roundButtonlite.ui-state-active > a,
#wp-calendar tbody td a,
#wp-calendar tbody td.today a:hover,
.wp-calendar tbody td a,
.wp-calendar tbody td.today a:hover,
blockquote cite,
blockquote cite a,
.sc_quote_title,
.sc_quote_title a,
.postLink a,
.masonry article .masonryInfo a:hover,
.masonry article .masonryInfo span.infoTags a:hover,
.relatedPostWrap article .relatedInfo a:hover,
.relatedPostWrap article .relatedInfo span.infoTags a:hover,
.infoPost span.infoTags a:hover,
.page404 p a,
.page404 .searchAnimation.sFocus .searchIcon,
.sc_team .sc_team_item .sc_team_item_position,
.copyWrap a,
.comments .commBody li.commItem .replyWrap .posted a:hover,
.comments .commBody li.commItem h4 a:hover,
.ratingItem span:before,
.reviewBlock .totalRating,
.widget_area .contactInfo .fContact:before,
.widget_area .widgetWrap a:hover,
.widget_area .widgetWrap a:hover span,
.widget_area .widgetWrap ul > li > a:hover,
.widget_area .widgetWrap ul > li > a:hover span,
.footerStyleLight .widget_area article .post_title:before,
.footerStyleLight .widget_area article .post_info a:hover,
.footerStyleLight .widget_area article .post_info .post_date a:hover,
.sc_list_style_arrows li:before,
.sc_list_style_arrows li a:hover,
.sc_list_style_iconed li a:hover,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item.sc_active .sc_accordion_title,
.sc_toggles.sc_toggles_style_1 .sc_toggles_item .sc_toggles_title:before,
.sc_toggles.sc_toggles_style_2 .sc_toggles_item.sc_active .sc_toggles_title:before,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item.sc_active .sc_toggles_title,
.sc_dropcaps.sc_dropcaps_style_3 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_4 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_5 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_6 .sc_dropcap,
.sc_highlight.sc_highlight_style_2,
.sc_tooltip_parent,
a > .sc_title_icon:hover:before,
.sc_scroll_controls .flex-direction-nav a:hover:before,
.sc_testimonials_style_1 .flex-direction-nav a:hover:before,
.sc_testimonials_style_3 .flex-direction-nav a:hover:before,
.sc_testimonials_style_3 .flex-direction-nav a:active:before,
.pagination .pageLibrary > li.libPage > .pageFocusBlock .flex-direction-nav a:hover:before,
.topWrap .usermenu_area ul.usermenu_list li.usermenu_currency > a:hover,
.topWrap .usermenu_area ul.usermenu_list li.usermenu_currency > a,
.topWrap .usermenu_area ul.usermenu_list li.usermenu_currency.sfHover > a,
.topWrap .usermenu_area ul.usermenu_list li ul li a:hover,
.topWrap .usermenu_area ul.usermenu_list li.usermenu_cart .widget_area ul li a:hover,
.sidemenu_wrap .usermenu_area ul.usermenu_list li.usermenu_currency > a:hover,
.sidemenu_wrap .usermenu_area ul.usermenu_list li.usermenu_currency > a,
.sidemenu_wrap .usermenu_area ul.usermenu_list li.usermenu_currency.sfHover > a,
.sidemenu_wrap .usermenu_area ul.usermenu_list li ul li a:hover,
.sidemenu_wrap .usermenu_area ul.usermenu_list li.usermenu_cart .widget_area ul li a:hover,
.sc_blogger a:hover,
.sc_blogger.style_date .load_more:before,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_date .day_month,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_info .comments_number,
.sc_blogger.style_accordion .sc_blogger_info .comments_number,
.widgetTabs .widgetTop ul > li:not(.tabs):before,
.widgetTabs .widgetTop ul > li:not(.tabs) > a:hover,
.widgetTabs .widgetTop ul > li:not(.tabs) > a:hover span,
.widgetTabs .widgetTop.widget_popular_posts article .post_title:before,
.swpRightPos .tabsMenuBody a:hover,
.swpRightPos .tabsMenuBody a:hover:before,
.openRightMenu:hover:before,
.topWrap .search:not(.searchOpen):hover:before,
.user-popUp .formItems.loginFormBody .remember .forgotPwd,
.user-popUp .formItems.loginFormBody .loginProblem,
.user-popUp .formItems.registerFormBody .i-agree a,
.sc_slider_pagination_area .flex-control-nav.manual .slide_info .slide_title,
.relatedPostWrap article .relatedInfo a,
.sc_list_style_iconed li:before,
.sc_list_style_arrows li:before,
.sc_team .sc_team_item .sc_team_item_title a,
.footerStyleLight .footerWidget .widgetWrap .title,
#footerStyleLight .footerWidget .wp-calendar thead th,
.footerStyleLight .footerWidget .wp-calendar thead th,
#wp-calendar thead tr th,
.wp-calendar thead tr + tr th,
.page404 .h2,
.usermenu_area .sidemenu_button i,
.relatedPostWrap article .relatedInfo .separator,
.relatedPostWrap article .relatedInfo span.infoTags a,
.openResponsiveMenu:hover,
.sidemenu_wrap .sidemenu_area ul li ul li ul li a:hover,
.booking_weekdays_custom,
.woocommerce div.product span.price, .woocommerce div.product p.price, .woocommerce #content div.product span.price, .woocommerce #content div.product p.price, .woocommerce-page div.product span.price, .woocommerce-page div.product p.price, .woocommerce-page #content div.product span.price, .woocommerce-page #content div.product p.price,
.topWrap .usermenu_area .phone_number,
.portfolioWrap .isotopeFiltr ul a:hover,
.portfolioWrap .isotopeFiltr ul .active a,
.masonryWrap .isotopeFiltr ul a:hover,
.masonryWrap .isotopeFiltr ul .active a,
h4 > a:hover,
ul > li.share > ul.shareDrop > li > a:hover {
    color: #ea6f13;
}

.hoverIncrease .hoverIcon
{  background-color: #cf6311;}
.sc_title_bg:before,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item .sc_accordion_title,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item .sc_toggles_title {
    background-color: #cf6311;}
#booking_submit_button,
.booking_book_now_custom,
.booking_book_now_custom:hover,
.booking_ok_button,
.booking_ok_button:hover,
.themerex_message_dialog .themerex_message_button:hover
{   background-color: #cf6311; }

.sc_table.sc_table_style_1 table tr:first-child th,
.sc_table.sc_table_style_1 table tr:first-child td {
    border-top-color: #cf6311;
}
.sc_table.sc_table_style_1 table tr:first-child th:first-child,
.sc_table.sc_table_style_1 table tr:first-child td:first-child {
    border-left-color: #cf6311;
}
.sc_table.sc_table_style_1 table tr:first-child th:last-child,
.sc_table.sc_table_style_1 table tr:first-child td:last-child {
    border-right-color: #cf6311;
}
.ih-item.circle.effect17.colored a:hover .img:before {
    box-shadow: inset 0 0 0 110px #f1c458, inset 0 0 0 16px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(0, 0, 0, 0.1);
}
.theme_accent_border,
.postSharing > ul > li > a:active,
.postSharing > ul > li > span:active
.roundButton > a:active,
.roundButton.border > a,
.nav_pages_parts > span.page_num,
.nav_comments > span.current,
#wp-calendar thead tr th,
.wp-calendar thead tr + tr th,
.sc_skills_bar .sc_skills_item .sc_skills_count,
.itemPageFull .itemDescriptionWrap .toggleButton:active,
.footerWidget .sc_video_player:active .sc_video_play_button:after,
.topWrap .topMenuStyleLine > ul > li ul,
.topMenuStyleLine > ul#mainmenu ul.menu-panel,
.sc_scroll_controls .flex-direction-nav a:active,
.sc_testimonials_style_1 .flex-direction-nav a:active,
.pagination .flex-direction-nav a:active,
.sliderLogo .elastislide-wrapper nav span:active:before,
.sc_dropcaps.sc_dropcaps_style_4 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_5 .sc_dropcap,
.sc_dropcaps.sc_dropcaps_style_6 .sc_dropcap,
.sc_accordion.sc_accordion_style_3 .sc_accordion_item,
.sc_toggles.sc_toggles_style_3 .sc_toggles_item,
.sc_tooltip_parent,
pre.code,
.widgetWrap .tagcloud a:hover,
.widgetWrap .tagcloud a:active
{ border-color: #cf6311;}
/* WooCommerce colors */
.woocommerce #respond input#submit:hover, .woocommerce #content input.button:hover,.woocommerce-page #respond input#submit:hover, .woocommerce-page #content input.button:hover,
.woocommerce .quantity input[type="button"]:hover, .woocommerce #content input[type="button"]:hover, .woocommerce-page .quantity input[type="button"]:hover, .woocommerce-page #content .quantity input[type="button"]:hover,
.woocommerce a:hover h3, .woocommerce-page a:hover h3,
.woocommerce .cart-collaterals .order-total strong, .woocommerce-page .cart-collaterals .order-total strong,
.woocommerce .star-rating, .woocommerce-page .star-rating, .woocommerce .star-rating:before, .woocommerce-page .star-rating:before,
.widget_area .widgetWrap ul > li .star-rating span, .woocommerce #review_form #respond .stars a, .woocommerce-page #review_form #respond .stars a
{
    color: #ea6f13;
}
/* Theme Accent2 Color */
.theme_accent2,
.sc_team .sc_team_item .sc_team_item_position,
h3 > a, .h3 > a,
.sc_blogger h3 > a, .sc_blogger .h3 > a,
.openRightMenu:hover:before,
.topWrap .search:not(.searchOpen):hover:before,
.sliderHomeBullets.slider_alias_15 .order a:hover,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_info .post_author,
.sc_blogger.style_date .sc_blogger_item .sc_blogger_info .comments_number,
#wp-calendar tbody td.today a,
.wp-calendar tbody td.today a
{ color: #ea6f13; }
.portfolio .isotopeElement .folioShowBlock:before { background-color: #cf6311;}
.topWrap .search.searchOpen { border-color: #cf6311; }
.topWrap .topMenuStyleLine > ul > li.current-menu-ancestor > a {color: #ea6f13;}
.topWrap .topMenuStyleLine > ul > li > a:hover {color: #ea6f13;}
.topWrap .topMenuStyleLine > ul > li.highlight > a { border: 1px solid #ea6f13; color: #ea6f13;}
.top_panel_above.responsive_menu  header.noFixMenu .topWrap .topMenuStyleLine > ul > li:not(.highlight) > a:hover {color: #ea6f13;}
.copyWrap a { color: #cf6311; }
.sc_toggles.sc_toggles_style_1 .sc_toggles_item .sc_toggles_title:hover {
    color: #cf6311;
}
.sc_team .sc_team_item .sc_team_item_avatar:after { background-color: rgba(207,99,17,0.7);}
.hover_red .sc_section:hover .sc_title_icon:before {color: #ea6f13;}
input[type="submit"], input[type="button"] {
    color: #fff;
    background-color: #ea6f13;
    border-color: #ea6f13;
}
input[type="submit"]:hover, input[type="button"]:hover {
    color: #ea6f13;
}.bestsellerazon-items {
	
}

.bestsellerazon-items-table {
	border-collapse: collapse;
	width: 100%;
}

.bestsellerazon-item {
	margin: 0;
	padding: 0;
	vertical-align: top;
}

.bestsellerazon-item td {
	padding: 0;
	vertical-align: top;
}

.bestsellerazon-item td > div {
	padding: 5px;
}

.bestsellerazon-item-image {
	width: 106px;
}

.bestsellerazon-item td.bestsellerazon-item-image > div {
	padding-left: 0;
}

.bestsellerazon-item-image img {
	border: 0;
	display: block;
	max-width: 106px; 
}

.bestsellerazon-item-description {
	
}

.bestsellerazon-item-amazon {
	width: 105px;
}

.bestsellerazon-item-amazon a {
	background: transparent url(/wp-content/plugins/bestsellerazon/resources/frontend/img/amazon-button.png) no-repeat center center;
	display: block;
	height: 21px;
	width: 85px;
}

.bestsellerazon-item-buy {
	text-align: right;
	min-width: 142px;
}

.bestsellerazon-item td.bestsellerazon-item-buy > div {
	padding-right: 0;
}

.bestsellerazon-item-buy .bestsellerazon-item-buy-button {
	display: block;
	line-height: 1;
}

.bestsellerazon-item-buy .bestsellerazon-item-buy-button img {
	max-width: 100%;
}
