@charset "UTF-8";

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

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

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

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}


@-webkit-keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

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

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

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

@keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

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

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

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

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

@-webkit-keyframes flash {

    from,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    from,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes shake {

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

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

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

@keyframes shake {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none
    }

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

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none
    }

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

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes jello {

    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
}

@keyframes jello {

    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

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

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

@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

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

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

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

@-webkit-keyframes bounceInDown {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInLeft {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInRight {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInUp {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

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

@keyframes bounceInUp {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

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

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }

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

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

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

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }

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

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

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

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }

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

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

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

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }

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

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

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

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

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

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

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

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

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1
    }

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

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes rollOut {
    from {
        opacity: 1
    }

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

@keyframes rollOut {
    from {
        opacity: 1
    }

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

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

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

    50% {
        opacity: 1
    }
}

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

    50% {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

body {
    margin: 0;
}
.main{
    margin-bottom: 50px;
}

/* Banner Carousel Layout */
.banner-carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    height: 300px;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-item {
    position: absolute;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.5);
}

/* Merkez - En büyük */
.banner-item.center {
    width: 250px;
    height: 250px;
    z-index: 5;
    opacity: 1;
    transform: scale(1) translateX(0);
}

/* Sağ yan - Orta boyut */
.banner-item.side-right {
    width: 180px;
    height: 180px;
    z-index: 3;
    opacity: 0.8;
    transform: scale(1) translateX(250px);
}

/* Sol yan - Orta boyut */
.banner-item.side-left {
    width: 180px;
    height: 180px;
    z-index: 3;
    opacity: 0.8;
    transform: scale(1) translateX(-250px);
}

/* Sağ uzak - Küçük boyut */
.banner-item.far-right {
    width: 120px;
    height: 120px;
    z-index: 1;
    opacity: 0.5;
    transform: scale(1) translateX(420px);
}

/* Sol uzak - Küçük boyut */
.banner-item.far-left {
    width: 120px;
    height: 120px;
    z-index: 1;
    opacity: 0.5;
    transform: scale(1) translateX(-420px);
}

/* Gizli elemanlar */
.banner-item.hidden {
    opacity: 0;
    transform: scale(0.3);
    z-index: 0;
}

.banner-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.banner-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .banner-carousel-container { height: 200px; }
    .banner-item.center { width: 150px; height: 150px; }
    .banner-item.side-right, .banner-item.side-left { width: 100px; height: 100px; }
    .banner-item.far-right, .banner-item.far-left { width: 70px; height: 70px; }
    .banner-item.side-right { transform: scale(1) translateX(150px); }
    .banner-item.side-left { transform: scale(1) translateX(-150px); }
    .banner-item.far-right { transform: scale(1) translateX(250px); }
    .banner-item.far-left { transform: scale(1) translateX(-250px); }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    margin: .67em 0;
    font-size: 2em
}

mark {
    color: #000;
    background: #ff0
}

small {
    font-size: 80%
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

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

input {
    line-height: normal
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid #c0c0c0
}

legend {
    padding: 0;
    border: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-spacing: 0;
    border-collapse: collapse
}

td,
th {
    padding: 0
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {

    *,
    *:before,
    *:after {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a,
    a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: ""
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr,
    img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn>.caret,
    .dropup>.btn>.caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,
    .table th {
        background-color: #fff !important
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('/Assets/fonts/glyphicons-halflings-regular.eot');
    src: url('/Assets/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/Assets/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/Assets/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/Assets/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/Assets/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
    content: "\002a"
}

.glyphicon-plus:before {
    content: "\002b"
}

.glyphicon-euro:before,
.glyphicon-eur:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.glyphicon-cd:before {
    content: "\e201"
}

.glyphicon-save-file:before {
    content: "\e202"
}

.glyphicon-open-file:before {
    content: "\e203"
}

.glyphicon-level-up:before {
    content: "\e204"
}

.glyphicon-copy:before {
    content: "\e205"
}

.glyphicon-paste:before {
    content: "\e206"
}

.glyphicon-alert:before {
    content: "\e209"
}

.glyphicon-equalizer:before {
    content: "\e210"
}

.glyphicon-king:before {
    content: "\e211"
}

.glyphicon-queen:before {
    content: "\e212"
}

.glyphicon-pawn:before {
    content: "\e213"
}

.glyphicon-bishop:before {
    content: "\e214"
}

.glyphicon-knight:before {
    content: "\e215"
}

.glyphicon-baby-formula:before {
    content: "\e216"
}

.glyphicon-tent:before {
    content: "\26fa"
}

.glyphicon-blackboard:before {
    content: "\e218"
}

.glyphicon-bed:before {
    content: "\e219"
}

.glyphicon-apple:before {
    content: "\f8ff"
}

.glyphicon-erase:before {
    content: "\e221"
}

.glyphicon-hourglass:before {
    content: "\231b"
}

.glyphicon-lamp:before {
    content: "\e223"
}

.glyphicon-duplicate:before {
    content: "\e224"
}

.glyphicon-piggy-bank:before {
    content: "\e225"
}

.glyphicon-scissors:before {
    content: "\e226"
}

.glyphicon-bitcoin:before {
    content: "\e227"
}

.glyphicon-btc:before {
    content: "\e227"
}

.glyphicon-xbt:before {
    content: "\e227"
}

.glyphicon-yen:before {
    content: "\00a5"
}

.glyphicon-jpy:before {
    content: "\00a5"
}

.glyphicon-ruble:before {
    content: "\20bd"
}

.glyphicon-rub:before {
    content: "\20bd"
}

.glyphicon-scale:before {
    content: "\e230"
}

.glyphicon-ice-lolly:before {
    content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232"
}

.glyphicon-education:before {
    content: "\e233"
}

.glyphicon-option-horizontal:before {
    content: "\e234"
}

.glyphicon-option-vertical:before {
    content: "\e235"
}

.glyphicon-menu-hamburger:before {
    content: "\e236"
}

.glyphicon-modal-window:before {
    content: "\e237"
}

.glyphicon-oil:before {
    content: "\e238"
}

.glyphicon-grain:before {
    content: "\e239"
}

.glyphicon-sunglasses:before {
    content: "\e240"
}

.glyphicon-text-size:before {
    content: "\e241"
}

.glyphicon-text-color:before {
    content: "\e242"
}

.glyphicon-text-background:before {
    content: "\e243"
}

.glyphicon-object-align-top:before {
    content: "\e244"
}

.glyphicon-object-align-bottom:before {
    content: "\e245"
}

.glyphicon-object-align-horizontal:before {
    content: "\e246"
}

.glyphicon-object-align-left:before {
    content: "\e247"
}

.glyphicon-object-align-vertical:before {
    content: "\e248"
}

.glyphicon-object-align-right:before {
    content: "\e249"
}

.glyphicon-triangle-right:before {
    content: "\e250"
}

.glyphicon-triangle-left:before {
    content: "\e251"
}

.glyphicon-triangle-bottom:before {
    content: "\e252"
}

.glyphicon-triangle-top:before {
    content: "\e253"
}

.glyphicon-console:before {
    content: "\e254"
}

.glyphicon-superscript:before {
    content: "\e255"
}

.glyphicon-subscript:before {
    content: "\e256"
}

.glyphicon-menu-left:before {
    content: "\e257"
}

.glyphicon-menu-right:before {
    content: "\e258"
}

.glyphicon-menu-down:before {
    content: "\e259"
}

.glyphicon-menu-up:before {
    content: "\e260"
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #000000;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #4d4d4d;
    text-decoration: none
}

a:hover,
a:focus {
    color: #4d4d4d;
    text-decoration: underline
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

.img-responsive,
.thumbnail>img,
.thumbnail a>img,
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
    display: block;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

[role="button"] {
    cursor: pointer
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
    font-size: 65%
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
    font-size: 75%
}

h1,
.h1 {
    font-size: 36px
}

h2,
.h2 {
    font-size: 30px
}

h3,
.h3 {
    font-size: 24px
}

h4,
.h4 {
    font-size: 18px
}

h5,
.h5 {
    font-size: 14px
}

h6,
.h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media(min-width:768px) {
    .lead {
        font-size: 21px
    }
}

small,
.small {
    font-size: 85%
}

mark,
.mark {
    padding: .2em;
    background-color: #fcf8e3
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #337ab7
}

a.text-primary:hover,
a.text-primary:focus {
    color: #286090
}

.text-success {
    color: #3c763d
}

a.text-success:hover,
a.text-success:focus {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:hover,
a.text-info:focus {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:hover,
a.text-warning:focus {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:hover,
a.text-danger:focus {
    color: #843534
}

.bg-primary {
    color: #fff;
    background-color: #337ab7
}

a.bg-primary:hover,
a.bg-primary:focus {
    background-color: #286090
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:hover,
a.bg-success:focus {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:hover,
a.bg-info:focus {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:hover,
a.bg-warning:focus {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:hover,
a.bg-danger:focus {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none
}

.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dt,
dd {
    line-height: 1.42857143
}

dt {
    font-weight: bold
}

dd {
    margin-left: 0
}

@media(min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
    margin-bottom: 0
}

blockquote footer,
blockquote small,
blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    text-align: right;
    border-right: 5px solid #eee;
    border-left: 0
}

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
    content: ''
}

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
    content: '\00A0 \2014'
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    -webkit-box-shadow: none;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media(min-width:768px) {
    .container {
        width: 750px
    }
}

@media(min-width:992px) {
    .container {
        width: 970px
    }
}

@media(min-width:1200px) {
    .container {
        width: 1170px
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    margin-right: -11px;
    margin-left: -11px
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@media(min-width:768px) {

    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

@media(min-width:992px) {

    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

@media(min-width:1200px) {

    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>td {
    border-top: 0
}

.table>tbody+tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed>thead>tr>th,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>td {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
    border: 1px solid #ddd
}

.table-bordered>thead>tr>th,
.table-bordered>thead>tr>td {
    border-bottom-width: 2px
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover>tbody>tr:hover {
    background-color: #f5f5f5
}

table col[class*="col-"] {
    position: static;
    display: table-column;
    float: none
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    display: table-cell;
    float: none
}

.table>thead>tr>td.active,
.table>tbody>tr>td.active,
.table>tfoot>tr>td.active,
.table>thead>tr>th.active,
.table>tbody>tr>th.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>tbody>tr.active>td,
.table>tfoot>tr.active>td,
.table>thead>tr.active>th,
.table>tbody>tr.active>th,
.table>tfoot>tr.active>th {
    background-color: #f5f5f5
}

.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover,
.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr.active:hover>th {
    background-color: #e8e8e8
}

.table>thead>tr>td.success,
.table>tbody>tr>td.success,
.table>tfoot>tr>td.success,
.table>thead>tr>th.success,
.table>tbody>tr>th.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>tbody>tr.success>td,
.table>tfoot>tr.success>td,
.table>thead>tr.success>th,
.table>tbody>tr.success>th,
.table>tfoot>tr.success>th {
    background-color: #dff0d8
}

.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover,
.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr.success:hover>th {
    background-color: #d0e9c6
}

.table>thead>tr>td.info,
.table>tbody>tr>td.info,
.table>tfoot>tr>td.info,
.table>thead>tr>th.info,
.table>tbody>tr>th.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>tbody>tr.info>td,
.table>tfoot>tr.info>td,
.table>thead>tr.info>th,
.table>tbody>tr.info>th,
.table>tfoot>tr.info>th {
    background-color: #d9edf7
}

.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover,
.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr.info:hover>th {
    background-color: #c4e3f3
}

.table>thead>tr>td.warning,
.table>tbody>tr>td.warning,
.table>tfoot>tr>td.warning,
.table>thead>tr>th.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>tbody>tr.warning>td,
.table>tfoot>tr.warning>td,
.table>thead>tr.warning>th,
.table>tbody>tr.warning>th,
.table>tfoot>tr.warning>th {
    background-color: #fcf8e3
}

.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover,
.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr.warning:hover>th {
    background-color: #faf2cc
}

.table>thead>tr>td.danger,
.table>tbody>tr>td.danger,
.table>tfoot>tr>td.danger,
.table>thead>tr>th.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>tbody>tr.danger>td,
.table>tfoot>tr.danger>td,
.table>thead>tr.danger>th,
.table>tbody>tr.danger>th,
.table>tfoot>tr.danger>th {
    background-color: #f2dede
}

.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover,
.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
    background-color: #ebcccc
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }

    .table-responsive>.table {
        margin-bottom: 0
    }

    .table-responsive>.table>thead>tr>th,
    .table-responsive>.table>tbody>tr>th,
    .table-responsive>.table>tfoot>tr>th,
    .table-responsive>.table>thead>tr>td,
    .table-responsive>.table>tbody>tr>td,
    .table-responsive>.table>tfoot>tr>td {
        white-space: nowrap
    }

    .table-responsive>.table-bordered {
        border: 0
    }

    .table-responsive>.table-bordered>thead>tr>th:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child {
        border-left: 0
    }

    .table-responsive>.table-bordered>thead>tr>th:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child {
        border-right: 0
    }

    .table-responsive>.table-bordered>tbody>tr:last-child>th,
    .table-responsive>.table-bordered>tfoot>tr:last-child>th,
    .table-responsive>.table-bordered>tbody>tr:last-child>td,
    .table-responsive>.table-bordered>tfoot>tr:last-child>td {
        border-bottom: 0
    }
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

input[type="file"] {
    display: block
}

input[type="range"] {
    display: block;
    width: 100%
}

select[multiple],
select[size] {
    height: auto
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

input[type="search"] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px
    }

    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: 30px
    }

    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        line-height: 46px
    }
}

.form-group {
    margin-bottom: 15px
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.radio label,
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: -20px
}

.radio+.radio,
.checkbox+.checkbox {
    margin-top: -5px
}

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    vertical-align: middle;
    cursor: pointer
}

.radio-inline+.radio-inline,
.checkbox-inline+.checkbox-inline {
    margin-top: 0;
    margin-left: 10px
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-control-static {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0
}

.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-right: 0;
    padding-left: 0
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

textarea.input-sm,
select[multiple].input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-lg {
    height: 46px;
    line-height: 46px
}

textarea.input-lg,
select[multiple].input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.input-lg+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.form-group-lg .form-control+.form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.input-sm+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.form-group-sm .form-control+.form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label~.form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only~.form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

@media(min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
        width: auto
    }

    .form-inline .input-group>.form-control {
        width: 100%
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio label,
    .form-inline .checkbox label {
        padding-left: 0
    }

    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px
}

@media(min-width:768px) {
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media(min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px
    }
}

@media(min-width:768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn:hover,
.btn:focus,
.btn.focus {
    color: #333;
    text-decoration: none
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default:focus,
.btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active:hover,
.btn-default.active:hover,
.open>.dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open>.dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open>.dropdown-toggle.btn-default.focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c
}

.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
    background-image: none
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40
}

.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open>.dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open>.dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open>.dropdown-toggle.btn-primary.focus {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40
}

.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
    background-image: none
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success:focus,
.btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active,
.btn-success.active,
.open>.dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active:hover,
.btn-success.active:hover,
.open>.dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open>.dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open>.dropdown-toggle.btn-success.focus {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success:active,
.btn-success.active,
.open>.dropdown-toggle.btn-success {
    background-image: none
}

.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info:focus,
.btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active:hover,
.btn-info.active:hover,
.open>.dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open>.dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open>.dropdown-toggle.btn-info.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85
}

.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
    background-image: none
}

.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning:focus,
.btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active,
.btn-warning.active,
.open>.dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open>.dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open>.dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open>.dropdown-toggle.btn-warning.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d
}

.btn-warning:active,
.btn-warning.active,
.open>.dropdown-toggle.btn-warning {
    background-image: none
}

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger:focus,
.btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active,
.btn-danger.active,
.open>.dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active:hover,
.btn-danger.active:hover,
.open>.dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open>.dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open>.dropdown-toggle.btn-danger.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19
}

.btn-danger:active,
.btn-danger.active,
.open>.dropdown-toggle.btn-danger {
    background-image: none
}

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    font-weight: normal;
    color: #337ab7;
    border-radius: 0
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent
}

.btn-link:hover,
.btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #777;
    text-decoration: none
}

.btn-lg,
.btn-group-lg>.btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.btn-sm,
.btn-group-sm>.btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-xs,
.btn-group-xs>.btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: 5px
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropup,
.dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #337ab7;
    outline: 0
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    color: #777
}

.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.open>.dropdown-menu {
    display: block
}

.open>a {
    outline: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.pull-right>.dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media(min-width:768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group>.btn,
.btn-group-vertical>.btn {
    position: relative;
    float: left
}

.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover,
.btn-group>.btn:focus,
.btn-group-vertical>.btn:focus,
.btn-group>.btn:active,
.btn-group-vertical>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn.active {
    z-index: 2
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
    margin-left: 5px
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group>.btn:first-child {
    margin-left: 0
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group>.btn-group {
    float: left
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group>.btn+.dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px
}

.btn-group>.btn-lg+.dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical>.btn-group>.btn {
    float: none
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
    display: table-cell;
    float: none;
    width: 1%
}

.btn-group-justified>.btn-group .btn {
    width: 100%
}

.btn-group-justified>.btn-group .dropdown-menu {
    left: auto
}

[data-toggle="buttons"]>.btn input[type="radio"],
[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],
[data-toggle="buttons"]>.btn input[type="checkbox"],
[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*="col-"] {
    float: none;
    padding-right: 0;
    padding-left: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-group-lg>.form-control,
select.input-group-lg>.input-group-addon,
select.input-group-lg>.input-group-btn>.btn {
    height: 46px;
    line-height: 46px
}

textarea.input-group-lg>.form-control,
textarea.input-group-lg>.input-group-addon,
textarea.input-group-lg>.input-group-btn>.btn,
select[multiple].input-group-lg>.form-control,
select[multiple].input-group-lg>.input-group-addon,
select[multiple].input-group-lg>.input-group-btn>.btn {
    height: auto
}

.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm>.form-control,
select.input-group-sm>.input-group-addon,
select.input-group-sm>.input-group-btn>.btn {
    height: 30px;
    line-height: 30px
}

textarea.input-group-sm>.form-control,
textarea.input-group-sm>.input-group-addon,
textarea.input-group-sm>.input-group-btn>.btn,
select[multiple].input-group-sm>.form-control,
select[multiple].input-group-sm>.input-group-addon,
select[multiple].input-group-sm>.input-group-btn>.btn {
    height: auto
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn>.btn {
    position: relative
}

.input-group-btn>.btn+.btn {
    margin-left: -1px
}

.input-group-btn>.btn:hover,
.input-group-btn>.btn:focus,
.input-group-btn>.btn:active {
    z-index: 2
}

.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
    margin-right: -1px
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav>li {
    position: relative;
    display: block
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav>li>a:hover,
.nav>li>a:focus {
    text-decoration: none;
    background-color: #eee
}

.nav>li.disabled>a {
    color: #777
}

.nav>li.disabled>a:hover,
.nav>li.disabled>a:focus {
    color: #777;
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background-color: #eee;
    border-color: #337ab7
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav>li>a>img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.nav-tabs.nav-justified>li {
    float: none
}

.nav-tabs.nav-justified>li>a {
    margin-bottom: 5px;
    text-align: center
}

.nav-tabs.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media(min-width:768px) {
    .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%
    }

    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:hover,
.nav-tabs.nav-justified>.active>a:focus {
    border: 1px solid #ddd
}

@media(min-width:768px) {
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs.nav-justified>.active>a,
    .nav-tabs.nav-justified>.active>a:hover,
    .nav-tabs.nav-justified>.active>a:focus {
        border-bottom-color: #fff
    }
}

.nav-pills>li {
    float: left
}

.nav-pills>li>a {
    border-radius: 4px
}

.nav-pills>li+li {
    margin-left: 2px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
    color: #fff;
    background-color: #337ab7
}

.nav-stacked>li {
    float: none
}

.nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified {
    width: 100%
}

.nav-justified>li {
    float: none
}

.nav-justified>li>a {
    margin-bottom: 5px;
    text-align: center
}

.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media(min-width:768px) {
    .nav-justified>li {
        display: table-cell;
        width: 1%
    }

    .nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs-justified {
    border-bottom: 0
}

.nav-tabs-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:hover,
.nav-tabs-justified>.active>a:focus {
    border: 1px solid #ddd
}

@media(min-width:768px) {
    .nav-tabs-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified>.active>a,
    .nav-tabs-justified>.active>a:hover,
    .nav-tabs-justified>.active>a:focus {
        border-bottom-color: #fff
    }
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

@media(min-width:768px) {
    .navbar {
        border-radius: 4px
    }
}

@media(min-width:768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1)
}

.navbar-collapse.in {
    overflow-y: auto
}

@media(min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important
    }

    .navbar-collapse.in {
        overflow-y: visible
    }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0
    }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px
}

@media(max-device-width:480px) and (orientation:landscape) {

    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px
    }
}

.container>.navbar-header,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container-fluid>.navbar-collapse {
    margin-right: -15px;
    margin-left: -15px
}

@media(min-width:768px) {

    .container>.navbar-header,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container-fluid>.navbar-collapse {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media(min-width:768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media(min-width:768px) {

    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none
}

.navbar-brand>img {
    display: block
}

@media(min-width:768px) {

    .navbar>.container .navbar-brand,
    .navbar>.container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px
}

@media(min-width:768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 7.5px -15px
}

.navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

@media(max-width:767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-nav .open .dropdown-menu>li>a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px
    }

    .navbar-nav .open .dropdown-menu>li>a {
        line-height: 20px
    }

    .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-nav .open .dropdown-menu>li>a:focus {
        background-image: none
    }
}

@media(min-width:768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }

    .navbar-nav>li {
        float: left
    }

    .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.navbar-form {
    padding: 10px 15px;
    margin-top: 8px;
    margin-right: -15px;
    margin-bottom: 8px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1)
}

@media(min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .form-control-static {
        display: inline-block
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn,
    .navbar-form .input-group .form-control {
        width: auto
    }

    .navbar-form .input-group>.form-control {
        width: 100%
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio label,
    .navbar-form .checkbox label {
        padding-left: 0
    }

    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media(max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media(min-width:768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px
}

.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px
}

.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px
}

@media(min-width:768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px
    }
}

@media(min-width:768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px
    }

    .navbar-right~.navbar-right {
        margin-right: 0
    }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav>li>a {
    color: #777
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #333;
    background-color: transparent
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #555;
    background-color: #e7e7e7
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:hover,
.navbar-default .navbar-nav>.disabled>a:focus {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    color: #555;
    background-color: #e7e7e7
}

@media(max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #777
    }

    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #333;
        background-color: transparent
    }

    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #555;
        background-color: #e7e7e7
    }

    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
    color: #333
}

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #080808
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
    color: #fff;
    background-color: #080808
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:hover,
.navbar-inverse .navbar-nav>.disabled>a:focus {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
    color: #fff;
    background-color: #080808
}

@media(max-width:767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
        border-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #9d9d9d
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #fff;
        background-color: transparent
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #fff;
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px
}

.breadcrumb>li {
    display: inline-block
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0"
}

.breadcrumb>.active {
    color: #777
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination>li {
    display: inline
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none
}

.pager li {
    display: inline
}

.pager li>a,
.pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li>a:hover,
.pager li>a:focus {
    text-decoration: none;
    background-color: #eee
}

.pager .next>a,
.pager .next>span {
    float: right
}

.pager .previous>a,
.pager .previous>span {
    float: left
}

.pager .disabled>a,
.pager .disabled>a:hover,
.pager .disabled>a:focus,
.pager .disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

a.label:hover,
a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

.label-default {
    background-color: #777
}

.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #337ab7
}

.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #286090
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #c9302c
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-xs .badge,
.btn-group-xs>.btn .badge {
    top: 0;
    padding: 1px 5px
}

a.badge:hover,
a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
    color: #337ab7;
    background-color: #fff
}

.list-group-item>.badge {
    float: right
}

.list-group-item>.badge+.badge {
    margin-right: 5px
}

.nav-pills>li>a>.badge {
    margin-left: 3px
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.jumbotron h1,
.jumbotron .h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.jumbotron>hr {
    border-top-color: #d5d5d5
}

.container .jumbotron,
.container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 6px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px
    }

    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
}

.thumbnail>img,
.thumbnail a>img {
    margin-right: auto;
    margin-left: auto
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #337ab7
}

.thumbnail .caption {
    padding: 9px;
    color: #333
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: bold
}

.alert>p,
.alert>ul {
    margin-bottom: 0
}

.alert>p+p {
    margin-top: 5px
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px
}

.progress.active .progress-bar,
.progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media,
.media-body {
    overflow: hidden;
    zoom: 1
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right,
.media>.pull-right {
    padding-left: 10px
}

.media-left,
.media>.pull-left {
    padding-right: 10px
}

.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    padding-left: 0;
    margin-bottom: 20px
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

a.list-group-item,
button.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #eee
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
    color: #777
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading>small,
.list-group-item.active:hover .list-group-item-heading>small,
.list-group-item.active:focus .list-group-item-heading>small,
.list-group-item.active .list-group-item-heading>.small,
.list-group-item.active:hover .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading>.small {
    color: inherit
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
    color: #c7ddef
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
}

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel-heading>.dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title>a,
.panel-title>small,
.panel-title>.small,
.panel-title>small>a,
.panel-title>.small>a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.list-group,
.panel>.panel-collapse>.list-group {
    margin-bottom: 0
}

.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.panel-heading+.list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group+.panel-footer {
    border-top-width: 0
}

.panel>.table,
.panel>.table-responsive>.table,
.panel>.panel-collapse>.table {
    margin-bottom: 0
}

.panel>.table caption,
.panel>.table-responsive>.table caption,
.panel>.panel-collapse>.table caption {
    padding-right: 15px;
    padding-left: 15px
}

.panel>.table:first-child,
.panel>.table-responsive:first-child>.table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.table:first-child>thead:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel>.table:last-child,
.panel>.table-responsive:last-child>.table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
    border-top: 1px solid #ddd
}

.panel>.table>tbody:first-child>tr:first-child th,
.panel>.table>tbody:first-child>tr:first-child td {
    border-top: 0
}

.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
    border: 0
}

.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child {
    border-left: 0
}

.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child {
    border-right: 0
}

.panel>.table-bordered>thead>tr:first-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.panel>.table-bordered>tbody>tr:first-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.panel>.table-bordered>thead>tr:first-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,
.panel>.table-bordered>tbody>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th {
    border-bottom: 0
}

.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
    border-bottom: 0
}

.panel>.table-responsive {
    margin-bottom: 0;
    border: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel+.panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-group .panel-heading+.panel-collapse>.list-group {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd
}

.panel-default>.panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #337ab7
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #337ab7
}

.panel-primary>.panel-heading .badge {
    color: #337ab7;
    background-color: #fff
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #337ab7
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success>.panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #d6e9c6
}

.panel-success>.panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info>.panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #bce8f1
}

.panel-info>.panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning>.panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #faebcc
}

.panel-warning>.panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger>.panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ebccd1
}

.panel-danger>.panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 134%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, .15)
}

.well-lg {
    padding: 24px;
    border-radius: 6px
}

.well-sm {
    padding: 9px;
    border-radius: 3px
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0
}

.modal-open {
    overflow: hidden
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%)
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media(min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media(min-width:992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    filter: alpha(opacity=0);
    opacity: 0;
    line-break: auto
}

.tooltip.in {
    filter: alpha(opacity=90);
    opacity: .9
}

.tooltip.top {
    padding: 5px 0;
    margin-top: -3px
}

.tooltip.right {
    padding: 0 5px;
    margin-left: 3px
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px
}

.tooltip.left {
    padding: 0 5px;
    margin-left: -3px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    line-break: auto
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover>.arrow,
.popover>.arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover>.arrow {
    border-width: 11px
}

.popover>.arrow:after {
    content: "";
    border-width: 10px
}

.popover.top>.arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0
}

.popover.top>.arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0
}

.popover.right>.arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0
}

.popover.right>.arrow:after {
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0
}

.popover.bottom>.arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25)
}

.popover.bottom>.arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left>.arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25)
}

.popover.left>.arrow:after {
    right: 1px;
    bottom: -10px;
    content: " ";
    border-right-width: 0;
    border-left-color: #fff
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner>.item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
    line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-inner>.item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }

    .carousel-inner>.item.next,
    .carousel-inner>.item.active.right {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    .carousel-inner>.item.prev,
    .carousel-inner>.item.active.left {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    .carousel-inner>.item.next.left,
    .carousel-inner>.item.prev.right,
    .carousel-inner>.item.active {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
    display: block
}

.carousel-inner>.active {
    left: 0
}

.carousel-inner>.next,
.carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner>.next {
    left: 100%
}

.carousel-inner>.prev {
    left: -100%
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
    left: 0
}

.carousel-inner>.active.left {
    left: -100%
}

.carousel-inner>.active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: .5
}

.carousel-control.right {
    right: 0;
    left: auto
}

.carousel-control:hover,
.carousel-control:focus {
    color: #fff;
    text-decoration: none;
    filter: alpha(opacity=90);
    outline: 0;
    opacity: .9
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    font-family: serif;
    line-height: 1
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width:768px) {

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical>.btn-group:before,
.btn-group-vertical>.btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " "
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical>.btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
    clear: both
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important
}

.affix {
    position: fixed
}

@-ms-viewport {
    width: device-width
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important
}

@media(max-width:767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important
    }
}

@media(max-width:767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media(max-width:767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media(max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media(min-width:1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important
    }
}

@media(min-width:1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media(min-width:1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media(min-width:1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media(max-width:767px) {
    .hidden-xs {
        display: none !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important
    }
}

@media(min-width:1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}

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

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

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

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

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

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

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

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

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

.fa-ul>li {
    position: relative
}

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

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

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

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

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

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

.pull-right {
    float: right
}

.pull-left {
    float: left
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
    color: #fff
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

/*! lightgallery - v1.2.14 - 2016-01-18
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */
.lg-css3.lg-zoom-in .lg-item {
    opacity: 0
}

.lg-css3.lg-zoom-in .lg-item.lg-prev-slide {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3)
}

.lg-css3.lg-zoom-in .lg-item.lg-next-slide {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3)
}

.lg-css3.lg-zoom-in .lg-item.lg-current {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1
}

.lg-css3.lg-zoom-in .lg-item.lg-prev-slide,
.lg-css3.lg-zoom-in .lg-item.lg-next-slide,
.lg-css3.lg-zoom-in .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-zoom-in-big .lg-item {
    opacity: 0
}

.lg-css3.lg-zoom-in-big .lg-item.lg-prev-slide {
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2)
}

.lg-css3.lg-zoom-in-big .lg-item.lg-next-slide {
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2)
}

.lg-css3.lg-zoom-in-big .lg-item.lg-current {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1
}

.lg-css3.lg-zoom-in-big .lg-item.lg-prev-slide,
.lg-css3.lg-zoom-in-big .lg-item.lg-next-slide,
.lg-css3.lg-zoom-in-big .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-zoom-out .lg-item {
    opacity: 0
}

.lg-css3.lg-zoom-out .lg-item.lg-prev-slide {
    -webkit-transform: scale3d(0.7, 0.7, 0.7);
    transform: scale3d(0.7, 0.7, 0.7)
}

.lg-css3.lg-zoom-out .lg-item.lg-next-slide {
    -webkit-transform: scale3d(0.7, 0.7, 0.7);
    transform: scale3d(0.7, 0.7, 0.7)
}

.lg-css3.lg-zoom-out .lg-item.lg-current {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1
}

.lg-css3.lg-zoom-out .lg-item.lg-prev-slide,
.lg-css3.lg-zoom-out .lg-item.lg-next-slide,
.lg-css3.lg-zoom-out .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-zoom-out-big .lg-item {
    opacity: 0
}

.lg-css3.lg-zoom-out-big .lg-item.lg-prev-slide {
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0)
}

.lg-css3.lg-zoom-out-big .lg-item.lg-next-slide {
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0)
}

.lg-css3.lg-zoom-out-big .lg-item.lg-current {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1
}

.lg-css3.lg-zoom-out-big .lg-item.lg-prev-slide,
.lg-css3.lg-zoom-out-big .lg-item.lg-next-slide,
.lg-css3.lg-zoom-out-big .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-zoom-out-in .lg-item {
    opacity: 0
}

.lg-css3.lg-zoom-out-in .lg-item.lg-prev-slide {
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0)
}

.lg-css3.lg-zoom-out-in .lg-item.lg-next-slide {
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2)
}

.lg-css3.lg-zoom-out-in .lg-item.lg-current {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1
}

.lg-css3.lg-zoom-out-in .lg-item.lg-prev-slide,
.lg-css3.lg-zoom-out-in .lg-item.lg-next-slide,
.lg-css3.lg-zoom-out-in .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-zoom-in-out .lg-item {
    opacity: 0
}

.lg-css3.lg-zoom-in-out .lg-item.lg-prev-slide {
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2)
}

.lg-css3.lg-zoom-in-out .lg-item.lg-next-slide {
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0)
}

.lg-css3.lg-zoom-in-out .lg-item.lg-current {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1
}

.lg-css3.lg-zoom-in-out .lg-item.lg-prev-slide,
.lg-css3.lg-zoom-in-out .lg-item.lg-next-slide,
.lg-css3.lg-zoom-in-out .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-soft-zoom .lg-item {
    opacity: 0
}

.lg-css3.lg-soft-zoom .lg-item.lg-prev-slide {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
}

.lg-css3.lg-soft-zoom .lg-item.lg-next-slide {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
}

.lg-css3.lg-soft-zoom .lg-item.lg-current {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1
}

.lg-css3.lg-soft-zoom .lg-item.lg-prev-slide,
.lg-css3.lg-soft-zoom .lg-item.lg-next-slide,
.lg-css3.lg-soft-zoom .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-scale-up .lg-item {
    opacity: 0
}

.lg-css3.lg-scale-up .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
    -o-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
    -ms-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
    -webkit-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
    transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0)
}

.lg-css3.lg-scale-up .lg-item.lg-next-slide {
    -moz-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
    -o-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
    -ms-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
    -webkit-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
    transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0)
}

.lg-css3.lg-scale-up .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-scale-up .lg-item.lg-prev-slide,
.lg-css3.lg-scale-up .lg-item.lg-next-slide,
.lg-css3.lg-scale-up .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-slide-circular .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.lg-css3.lg-slide-circular .lg-item.lg-next-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.lg-css3.lg-slide-circular .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-slide-circular-up .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-circular-up .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0)
}

.lg-css3.lg-slide-circular-up .lg-item.lg-next-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0)
}

.lg-css3.lg-slide-circular-up .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide-circular-up .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-up .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-up .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-slide-circular-down .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-circular-down .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0)
}

.lg-css3.lg-slide-circular-down .lg-item.lg-next-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0)
}

.lg-css3.lg-slide-circular-down .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide-circular-down .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-down .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-down .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-slide-circular-vertical .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
    transform: scale3d(0, 0, 0) translate3d(0, -100%, 0)
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
    transform: scale3d(0, 0, 0) translate3d(0, 100%, 0)
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-slide-circular-vertical-left .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0)
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-next-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0)
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-slide-circular-vertical-down .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0)
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-next-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0)
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s
}

.lg-css3.lg-slide-vertical .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-vertical .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
}

.lg-css3.lg-slide-vertical .lg-item.lg-next-slide {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
}

.lg-css3.lg-slide-vertical .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide-vertical .lg-item.lg-prev-slide,
.lg-css3.lg-slide-vertical .lg-item.lg-next-slide,
.lg-css3.lg-slide-vertical .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-vertical-growth .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
    -o-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
    -ms-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
    -webkit-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
    transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0)
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-next-slide {
    -moz-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
    -o-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
    -ms-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
    -webkit-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
    transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0)
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-prev-slide,
.lg-css3.lg-slide-vertical-growth .lg-item.lg-next-slide,
.lg-css3.lg-slide-vertical-growth .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-only .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-only .lg-item.lg-prev-slide {
    -moz-transform: skew(10deg, 0deg);
    -o-transform: skew(10deg, 0deg);
    -ms-transform: skew(10deg, 0deg);
    -webkit-transform: skew(10deg, 0deg);
    transform: skew(10deg, 0deg)
}

.lg-css3.lg-slide-skew-only .lg-item.lg-next-slide {
    -moz-transform: skew(10deg, 0deg);
    -o-transform: skew(10deg, 0deg);
    -ms-transform: skew(10deg, 0deg);
    -webkit-transform: skew(10deg, 0deg);
    transform: skew(10deg, 0deg)
}

.lg-css3.lg-slide-skew-only .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    -webkit-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
    opacity: 1
}

.lg-css3.lg-slide-skew-only .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-only .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-only .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-only-rev .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-prev-slide {
    -moz-transform: skew(-10deg, 0deg);
    -o-transform: skew(-10deg, 0deg);
    -ms-transform: skew(-10deg, 0deg);
    -webkit-transform: skew(-10deg, 0deg);
    transform: skew(-10deg, 0deg)
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide {
    -moz-transform: skew(-10deg, 0deg);
    -o-transform: skew(-10deg, 0deg);
    -ms-transform: skew(-10deg, 0deg);
    -webkit-transform: skew(-10deg, 0deg);
    transform: skew(-10deg, 0deg)
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    -webkit-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
    opacity: 1
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-only-rev .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-only-y .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-prev-slide {
    -moz-transform: skew(0deg, 10deg);
    -o-transform: skew(0deg, 10deg);
    -ms-transform: skew(0deg, 10deg);
    -webkit-transform: skew(0deg, 10deg);
    transform: skew(0deg, 10deg)
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-next-slide {
    -moz-transform: skew(0deg, 10deg);
    -o-transform: skew(0deg, 10deg);
    -ms-transform: skew(0deg, 10deg);
    -webkit-transform: skew(0deg, 10deg);
    transform: skew(0deg, 10deg)
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    -webkit-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
    opacity: 1
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-only-y .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-only-y .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-prev-slide {
    -moz-transform: skew(0deg, -10deg);
    -o-transform: skew(0deg, -10deg);
    -ms-transform: skew(0deg, -10deg);
    -webkit-transform: skew(0deg, -10deg);
    transform: skew(0deg, -10deg)
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-slide {
    -moz-transform: skew(0deg, -10deg);
    -o-transform: skew(0deg, -10deg);
    -ms-transform: skew(0deg, -10deg);
    -webkit-transform: skew(0deg, -10deg);
    transform: skew(0deg, -10deg)
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    -webkit-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
    opacity: 1
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew .lg-item.lg-prev-slide {
    -moz-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
    -o-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
    -ms-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
    -webkit-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
    transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px)
}

.lg-css3.lg-slide-skew .lg-item.lg-next-slide {
    -moz-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
    -o-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
    -ms-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
    -webkit-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
    transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px)
}

.lg-css3.lg-slide-skew .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    opacity: 1
}

.lg-css3.lg-slide-skew .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-rev .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide {
    -moz-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
    -o-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
    -ms-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
    -webkit-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
    transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px)
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-next-slide {
    -moz-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
    -o-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
    -ms-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
    -webkit-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
    transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px)
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    opacity: 1
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-rev .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-rev .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-cross .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-prev-slide {
    -moz-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
    -o-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
    -ms-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
    -webkit-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
    transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px)
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-next-slide {
    -moz-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
    -o-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
    -ms-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
    -webkit-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
    transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px)
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    opacity: 1
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-cross .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-cross .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-cross-rev .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-prev-slide {
    -moz-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
    -o-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
    -ms-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
    -webkit-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
    transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px)
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-slide {
    -moz-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
    -o-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
    -ms-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
    -webkit-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
    transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px)
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    opacity: 1
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-ver .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-prev-slide {
    -moz-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
    -o-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
    -ms-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
    -webkit-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
    transform: skew(60deg, 0deg) translate3d(0, -100%, 0px)
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-next-slide {
    -moz-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
    -o-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
    -ms-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
    -webkit-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
    transform: skew(60deg, 0deg) translate3d(0, 100%, 0px)
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    opacity: 1
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-ver .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-ver .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-ver-rev .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide {
    -moz-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
    -o-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
    -ms-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
    -webkit-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
    transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px)
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-slide {
    -moz-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
    -o-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
    -ms-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
    -webkit-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
    transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px)
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    opacity: 1
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-ver-cross .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-prev-slide {
    -moz-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
    -o-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
    -ms-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
    -webkit-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
    transform: skew(0deg, 20deg) translate3d(0, -100%, 0px)
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-next-slide {
    -moz-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
    -o-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
    -ms-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
    -webkit-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
    transform: skew(0deg, 20deg) translate3d(0, 100%, 0px)
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    opacity: 1
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item {
    opacity: 0
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-prev-slide {
    -moz-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
    -o-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
    -ms-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
    -webkit-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
    transform: skew(0deg, -20deg) translate3d(0, -100%, 0px)
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-slide {
    -moz-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
    -o-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
    -ms-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
    -webkit-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
    transform: skew(0deg, -20deg) translate3d(0, 100%, 0px)
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-current {
    -moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    -webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
    opacity: 1
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-prev-slide,
.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-slide,
.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-lollipop .lg-item {
    opacity: 0
}

.lg-css3.lg-lollipop .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.lg-css3.lg-lollipop .lg-item.lg-next-slide {
    -moz-transform: translate3d(0, 0, 0) scale(0.5);
    -o-transform: translate3d(0, 0, 0) scale(0.5);
    -ms-transform: translate3d(0, 0, 0) scale(0.5);
    -webkit-transform: translate3d(0, 0, 0) scale(0.5);
    transform: translate3d(0, 0, 0) scale(0.5)
}

.lg-css3.lg-lollipop .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-lollipop .lg-item.lg-prev-slide,
.lg-css3.lg-lollipop .lg-item.lg-next-slide,
.lg-css3.lg-lollipop .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-lollipop-rev .lg-item {
    opacity: 0
}

.lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide {
    -moz-transform: translate3d(0, 0, 0) scale(0.5);
    -o-transform: translate3d(0, 0, 0) scale(0.5);
    -ms-transform: translate3d(0, 0, 0) scale(0.5);
    -webkit-transform: translate3d(0, 0, 0) scale(0.5);
    transform: translate3d(0, 0, 0) scale(0.5)
}

.lg-css3.lg-lollipop-rev .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.lg-css3.lg-lollipop-rev .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide,
.lg-css3.lg-lollipop-rev .lg-item.lg-next-slide,
.lg-css3.lg-lollipop-rev .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-rotate .lg-item {
    opacity: 0
}

.lg-css3.lg-rotate .lg-item.lg-prev-slide {
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg)
}

.lg-css3.lg-rotate .lg-item.lg-next-slide {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

.lg-css3.lg-rotate .lg-item.lg-current {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1
}

.lg-css3.lg-rotate .lg-item.lg-prev-slide,
.lg-css3.lg-rotate .lg-item.lg-next-slide,
.lg-css3.lg-rotate .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-rotate-rev .lg-item {
    opacity: 0
}

.lg-css3.lg-rotate-rev .lg-item.lg-prev-slide {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

.lg-css3.lg-rotate-rev .lg-item.lg-next-slide {
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg)
}

.lg-css3.lg-rotate-rev .lg-item.lg-current {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1
}

.lg-css3.lg-rotate-rev .lg-item.lg-prev-slide,
.lg-css3.lg-rotate-rev .lg-item.lg-next-slide,
.lg-css3.lg-rotate-rev .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-tube .lg-item {
    opacity: 0
}

.lg-css3.lg-tube .lg-item.lg-prev-slide {
    -moz-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
    -o-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
    -ms-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
    -webkit-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
    transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0)
}

.lg-css3.lg-tube .lg-item.lg-next-slide {
    -moz-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
    -o-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
    -ms-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
    -webkit-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
    transform: scale3d(1, 0, 1) translate3d(100%, 0, 0)
}

.lg-css3.lg-tube .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-tube .lg-item.lg-prev-slide,
.lg-css3.lg-tube .lg-item.lg-next-slide,
.lg-css3.lg-tube .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

/*! lightgallery - v1.2.14 - 2016-01-18
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */
@font-face {
    font-family: 'lg';
    src: url("/Assets/fonts/lg.eot?n1z373");
    src: url("/Assets/fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("/Assets/fonts/lg.woff?n1z373") format("woff"), url("/Assets/fonts/lg.ttf?n1z373") format("truetype"), url("/Assets/fonts/lg.svg?n1z373#lg") format("svg");
    font-weight: normal;
    font-style: normal
}

.lg-icon {
    font-family: 'lg';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 2px;
    color: #999;
    cursor: pointer;
    display: block;
    font-size: 22px;
    margin-top: -10px;
    padding: 8px 10px 9px;
    position: absolute;
    top: 50%;
    z-index: 1080
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
    pointer-events: none;
    opacity: .5
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    color: #FFF
}

.lg-actions .lg-next {
    right: 20px
}

.lg-actions .lg-next:before {
    content: "\e095"
}

.lg-actions .lg-prev {
    left: 20px
}

.lg-actions .lg-prev:after {
    content: "\e094"
}

@-webkit-keyframes lg-right-end {
    0% {
        left: 0
    }

    50% {
        left: -30px
    }

    100% {
        left: 0
    }
}

@-moz-keyframes lg-right-end {
    0% {
        left: 0
    }

    50% {
        left: -30px
    }

    100% {
        left: 0
    }
}

@-ms-keyframes lg-right-end {
    0% {
        left: 0
    }

    50% {
        left: -30px
    }

    100% {
        left: 0
    }
}

@keyframes lg-right-end {
    0% {
        left: 0
    }

    50% {
        left: -30px
    }

    100% {
        left: 0
    }
}

@-webkit-keyframes lg-left-end {
    0% {
        left: 0
    }

    50% {
        left: 30px
    }

    100% {
        left: 0
    }
}

@-moz-keyframes lg-left-end {
    0% {
        left: 0
    }

    50% {
        left: 30px
    }

    100% {
        left: 0
    }
}

@-ms-keyframes lg-left-end {
    0% {
        left: 0
    }

    50% {
        left: 30px
    }

    100% {
        left: 0
    }
}

@keyframes lg-left-end {
    0% {
        left: 0
    }

    50% {
        left: 30px
    }

    100% {
        left: 0
    }
}

.lg-outer.lg-right-end .lg-object {
    -webkit-animation: lg-right-end .3s;
    -o-animation: lg-right-end .3s;
    animation: lg-right-end .3s;
    position: relative
}

.lg-outer.lg-left-end .lg-object {
    -webkit-animation: lg-left-end .3s;
    -o-animation: lg-left-end .3s;
    animation: lg-left-end .3s;
    position: relative
}

.lg-toolbar {
    z-index: 1080;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45)
}

.lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none
}

.lg-toolbar .lg-icon:hover {
    color: #FFF
}

.lg-toolbar .lg-close:after {
    content: "\e070"
}

.lg-toolbar .lg-download:after {
    content: "\e0f2"
}

.lg-sub-html {
    background-color: rgba(0, 0, 0, 0.45);
    bottom: 0;
    color: #EEE;
    font-size: 16px;
    left: 0;
    padding: 10px 40px;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 1080
}

.lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold
}

.lg-sub-html p {
    font-size: 12px;
    margin: 5px 0 0
}

#lg-counter {
    color: #999;
    display: inline-block;
    font-size: 16px;
    padding-left: 20px;
    padding-top: 12px;
    vertical-align: middle
}

.lg-toolbar,
.lg-prev,
.lg-next {
    opacity: 1;
    -webkit-transition: -webkit-transform .35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .35s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: -moz-transform .35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .35s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform .35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .35s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform .35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .35s cubic-bezier(0, 0, 0.25, 1) 0s
}

.lg-hide-items .lg-prev {
    opacity: 0;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
}

.lg-hide-items .lg-next {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
}

.lg-hide-items .lg-toolbar {
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
    -webkit-transition: -webkit-transform 250ms ease 0s, opacity 250ms !important;
    -moz-transition: -moz-transform 250ms ease 0s, opacity 250ms !important;
    -o-transition: -o-transform 250ms ease 0s, opacity 250ms !important;
    transition: transform 250ms ease 0s, opacity 250ms !important;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1
}

.lg-outer .lg-thumb-outer {
    background-color: #0D0A0A;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1080;
    max-height: 350px;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: -webkit-transform .25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: -moz-transform .25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform .25s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform .25s cubic-bezier(0, 0, 0.25, 1) 0s
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0)
}

.lg-outer .lg-thumb {
    padding: 10px 0;
    height: 100%;
    margin-bottom: -5px
}

.lg-outer .lg-thumb-item {
    border-radius: 5px;
    cursor: pointer;
    float: left;
    overflow: hidden;
    height: 100%;
    border: 2px solid #FFF;
    border-radius: 4px;
    margin-bottom: 5px
}

@media(min-width:1025px) {
    .lg-outer .lg-thumb-item {
        -webkit-transition: border-color .25s ease;
        -o-transition: border-color .25s ease;
        transition: border-color .25s ease
    }
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #a90707
}

.lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%
}

.lg-outer.lg-has-thumb .lg-item {
    padding-bottom: 120px
}

.lg-outer.lg-can-toggle .lg-item {
    padding-bottom: 0
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
    -webkit-transition: bottom .25s ease;
    -o-transition: bottom .25s ease;
    transition: bottom .25s ease
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 100px
}

.lg-outer .lg-toogle-thumb {
    background-color: #0D0A0A;
    border-radius: 2px 2px 0 0;
    color: #999;
    cursor: pointer;
    font-size: 24px;
    height: 39px;
    line-height: 27px;
    padding: 5px 0;
    position: absolute;
    right: 20px;
    text-align: center;
    top: -39px;
    width: 50px
}

.lg-outer .lg-toogle-thumb:after {
    content: "\e1ff"
}

.lg-outer .lg-toogle-thumb:hover {
    color: #FFF
}

.lg-outer .lg-video-cont {
    display: inline-block;
    vertical-align: middle;
    max-width: 1140px;
    max-height: 100%;
    width: 100%;
    padding: 0 5px
}

.lg-outer .lg-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative
}

.lg-outer .lg-video .lg-object {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important
}

.lg-outer .lg-video .lg-video-play {
    width: 84px;
    height: 59px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -42px;
    margin-top: -30px;
    z-index: 1080;
    cursor: pointer
}

.lg-outer .lg-has-vimeo .lg-video-play {
    background: url("../images/vimeo-play.png") no-repeat scroll 0 0 transparent
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
    background: url("../images/vimeo-play.png") no-repeat scroll 0 -58px transparent
}

.lg-outer .lg-has-html5 .lg-video-play {
    background: transparent url("../images/video-play.png") no-repeat scroll 0 0;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
    width: 64px;
    opacity: .8
}

.lg-outer .lg-has-html5:hover .lg-video-play {
    opacity: 1
}

.lg-outer .lg-has-youtube .lg-video-play {
    background: url("../images/youtube-play.png") no-repeat scroll 0 0 transparent
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
    background: url("../images/youtube-play.png") no-repeat scroll 0 -60px transparent
}

.lg-outer .lg-video-object {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0
}

.lg-outer .lg-has-video .lg-video-object {
    visibility: hidden
}

.lg-outer .lg-has-video.lg-video-palying .lg-object,
.lg-outer .lg-has-video.lg-video-palying .lg-video-play {
    display: none
}

.lg-outer .lg-has-video.lg-video-palying .lg-video-object {
    visibility: visible
}

.lg-progress-bar {
    background-color: #333;
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1080;
    opacity: 0;
    -webkit-transition: opacity .08s ease 0s;
    -moz-transition: opacity .08s ease 0s;
    -o-transition: opacity .08s ease 0s;
    transition: opacity .08s ease 0s
}

.lg-progress-bar .lg-progress {
    background-color: #a90707;
    height: 5px;
    width: 0
}

.lg-progress-bar.lg-start .lg-progress {
    width: 100%
}

.lg-show-autoplay .lg-progress-bar {
    opacity: 1
}

.lg-autoplay-button:after {
    content: "\e01d"
}

.lg-show-autoplay .lg-autoplay-button:after {
    content: "\e01a"
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
    -webkit-transition-duration: 0s;
    transition-duration: 0s
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    -webkit-transition: -webkit-transform .3s ease 0s;
    -moz-transition: -moz-transform .3s ease 0s;
    -o-transition: -o-transform .3s ease 0s;
    transition: transform .3s ease 0s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform .3s ease 0s, opacity .15s !important;
    -moz-transition: -moz-transform .3s ease 0s, opacity .15s !important;
    -o-transition: -o-transform .3s ease 0s, opacity .15s !important;
    transition: transform .3s ease 0s, opacity .15s !important;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

#lg-zoom-in:after {
    content: "\e311"
}

#lg-zoom-out {
    opacity: .5;
    pointer-events: none
}

#lg-zoom-out:after {
    content: "\e312"
}

.lg-zoomed #lg-zoom-out {
    opacity: 1;
    pointer-events: auto
}

.lg-outer .lg-pager-outer {
    bottom: 60px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1080;
    height: 10px
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
    overflow: visible
}

.lg-outer .lg-pager-cont {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    margin: 0 5px
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
    box-shadow: 0 0 0 2px white inset
}

.lg-outer .lg-pager-thumb-cont {
    background-color: #fff;
    color: #FFF;
    bottom: 100%;
    height: 83px;
    left: 0;
    margin-bottom: 20px;
    margin-left: -60px;
    opacity: 0;
    padding: 5px;
    position: absolute;
    width: 120px;
    border-radius: 3px;
    -webkit-transition: opacity .15s ease 0s, -webkit-transform .15s ease 0s;
    -moz-transition: opacity .15s ease 0s, -moz-transform .15s ease 0s;
    -o-transition: opacity .15s ease 0s, -o-transform .15s ease 0s;
    transition: opacity .15s ease 0s, transform .15s ease 0s;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
}

.lg-outer .lg-pager-thumb-cont img {
    width: 100%;
    height: 100%
}

.lg-outer .lg-pager {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
    display: block;
    height: 12px;
    -webkit-transition: box-shadow .3s ease 0s;
    -o-transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s;
    width: 12px
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
    box-shadow: 0 0 0 8px white inset
}

.lg-outer .lg-caret {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px dashed;
    bottom: -10px;
    display: inline-block;
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    vertical-align: middle;
    width: 0
}

.lg-fullscreen:after {
    content: "\e20c"
}

.lg-fullscreen-on .lg-fullscreen:after {
    content: "\e20d"
}

.group {
    *zoom: 1
}

.group:before,
.group:after {
    display: table;
    content: "";
    line-height: 0
}

.group:after {
    clear: both
}

.lg-outer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    opacity: 0;
    -webkit-transition: opacity .15s ease 0s;
    -o-transition: opacity .15s ease 0s;
    transition: opacity .15s ease 0s
}

.lg-outer * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.lg-outer.lg-visible {
    opacity: 1
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
    opacity: 1
}

.lg-outer.lg-grab img.lg-object {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing
}

.lg-outer .lg {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%
}

.lg-outer .lg-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap
}

.lg-outer .lg-item {
    background: url("../images/loading.gif") no-repeat scroll center center transparent;
    display: none !important
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
    display: inline-block !important
}

.lg-outer.lg-css .lg-current {
    display: inline-block !important
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px
}

.lg-outer .lg-img-wrap {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 5px
}

.lg-outer .lg-item.lg-complete {
    background-image: none
}

.lg-outer .lg-item.lg-current {
    z-index: 1060
}

.lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
    opacity: 0;
    -webkit-transition: opacity .15s ease 0s;
    -o-transition: opacity .15s ease 0s;
    transition: opacity .15s ease 0s
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
    opacity: 1
}

.lg-outer .lg-empty-html {
    display: none
}

.lg-outer.lg-hide-download #lg-download {
    display: none
}

.lg-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity .15s ease 0s;
    -o-transition: opacity .15s ease 0s;
    transition: opacity .15s ease 0s
}

.lg-backdrop.in {
    opacity: 1
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
    -webkit-transition: none 0s ease 0s !important;
    -moz-transition: none 0s ease 0s !important;
    -o-transition: none 0s ease 0s !important;
    transition: none 0s ease 0s !important
}

.lg-css3.lg-use-css3 .lg-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

.lg-css3.lg-use-left .lg-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

.lg-css3.lg-fade .lg-item {
    opacity: 0
}

.lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
    -webkit-transition: opacity .1s ease 0s;
    -moz-transition: opacity .1s ease 0s;
    -o-transition: opacity .1s ease 0s;
    transition: opacity .1s ease 0s
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
    opacity: 0
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide.lg-use-left .lg-item {
    opacity: 0;
    position: absolute;
    left: 0
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    left: -100%
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
    left: 100%
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    left: 0;
    opacity: 1
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s;
    transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity .1s ease 0s
}

.pt0 {
    padding-top: 0
}

.pt5 {
    padding-top: 5px
}

.pt10 {
    padding-top: 10px
}

.pt15 {
    padding-top: 15px
}

.pt20 {
    padding-top: 20px
}

.pt25 {
    padding-top: 25px
}

.pt30 {
    padding-top: 30px
}

.pt35 {
    padding-top: 35px
}

.pt40 {
    padding-top: 40px
}

.pt45 {
    padding-top: 45px
}

.pt50 {
    padding-top: 50px
}

.pt55 {
    padding-top: 55px
}

.pt60 {
    padding-top: 60px
}

.pt65 {
    padding-top: 65px
}

.pt70 {
    padding-top: 70px
}

.pt75 {
    padding-top: 75px
}

.pt80 {
    padding-top: 80px
}

.pt85 {
    padding-top: 85px
}

.pt90 {
    padding-top: 90px
}

.pt95 {
    padding-top: 95px
}

.pt100 {
    padding-top: 100px
}

.pt110 {
    padding-top: 110px
}

.pt120 {
    padding-top: 120px
}

.pt130 {
    padding-top: 130px
}

.pt140 {
    padding-top: 140px
}

.pt150 {
    padding-top: 150px
}

.pt160 {
    padding-top: 160px
}

.pt170 {
    padding-top: 170px
}

.pt180 {
    padding-top: 180px
}

.pt190 {
    padding-top: 190px
}

.pt200 {
    padding-top: 200px
}

.pb0 {
    padding-bottom: 0
}

.pb5 {
    padding-bottom: 5px
}

.pb10 {
    padding-bottom: 10px
}

.pb15 {
    padding-bottom: 15px
}

.pb20 {
    padding-bottom: 20px
}

.pb25 {
    padding-bottom: 25px
}

.pb30 {
    padding-bottom: 30px
}

.pb35 {
    padding-bottom: 35px
}

.pb40 {
    padding-bottom: 40px
}

.pb45 {
    padding-bottom: 45px
}

.pb50 {
    padding-bottom: 50px
}

.pb55 {
    padding-bottom: 55px
}

.pb60 {
    padding-bottom: 60px
}

.pb65 {
    padding-bottom: 65px
}

.pb70 {
    padding-bottom: 70px
}

.pb75 {
    padding-bottom: 75px
}

.pb80 {
    padding-bottom: 80px
}

.pb85 {
    padding-bottom: 85px
}

.pb90 {
    padding-bottom: 90px
}

.pb95 {
    padding-bottom: 95px
}

.pb100 {
    padding-bottom: 100px
}

.pb110 {
    padding-bottom: 110px
}

.pb120 {
    padding-bottom: 120px
}

.pb130 {
    padding-bottom: 130px
}

.pb140 {
    padding-bottom: 140px
}

.pb150 {
    padding-bottom: 150px
}

.pb160 {
    padding-bottom: 160px
}

.pb170 {
    padding-bottom: 170px
}

.pb180 {
    padding-bottom: 180px
}

.pb190 {
    padding-bottom: 190px
}

.pb200 {
    padding-bottom: 200px
}

div[class^=mb],
div[class^=mt] {
    min-height: 1px
}

.mt0 {
    margin-top: 0 !important
}

.mt5 {
    margin-top: 5px !important
}

.mt10 {
    margin-top: 10px !important
}

.mt10-r {
    margin-top: -10px !important
}

.mt15 {
    margin-top: 15px !important
}

.mt15-r {
    margin-top: -15px !important
}

.mt20 {
    margin-top: 20px !important
}

.mt25 {
    margin-top: 25px !important
}

.mt30 {
    margin-top: 30px !important
}

.mt35 {
    margin-top: 35px !important
}

.mt40 {
    margin-top: 40px !important
}

.mt45 {
    margin-top: 45px !important
}

.mt50 {
    margin-top: 50px !important
}

.mt55 {
    margin-top: 55px !important
}

.mt60 {
    margin-top: 60px !important
}

.mt65 {
    margin-top: 65px !important
}

.mt70 {
    margin-top: 70px !important
}

.mt75 {
    margin-top: 75px !important
}

.mt80 {
    margin-top: 80px !important
}

.mt85 {
    margin-top: 85px !important
}

.mt90 {
    margin-top: 90px !important
}

.mt95 {
    margin-top: 95px !important
}

.mt100 {
    margin-top: 100px !important
}

.mt110 {
    margin-top: 110px !important
}

.mt120 {
    margin-top: 120px !important
}

.mt130 {
    margin-top: 130px !important
}

.mt140 {
    margin-top: 140px !important
}

.mt150 {
    margin-top: 150px !important
}

.mt160 {
    margin-top: 160px !important
}

.mt170 {
    margin-top: 170px !important
}

.mt180 {
    margin-top: 180px !important
}

.mt190 {
    margin-top: 190px !important
}

.mt200 {
    margin-top: 200px !important
}

.mb0 {
    margin-bottom: 0 !important
}

.mb5 {
    margin-bottom: 5px !important
}

.mb10 {
    margin-bottom: 10px !important
}

.mb15 {
    margin-bottom: 15px !important
}

.mb20 {
    margin-bottom: 20px !important
}

.mb25 {
    margin-bottom: 25px !important
}

.mb30 {
    margin-bottom: 30px !important
}

.mb35 {
    margin-bottom: 35px !important
}

.mb40 {
    margin-bottom: 40px !important
}

.mb45 {
    margin-bottom: 45px !important
}

.mb50 {
    margin-bottom: 50px !important
}

.mb55 {
    margin-bottom: 55px !important
}

.mb60 {
    margin-bottom: 60px !important
}

.mb65 {
    margin-bottom: 65px !important
}

.mb70 {
    margin-bottom: 70px !important
}

.mb75 {
    margin-bottom: 75px !important
}

.mb80 {
    margin-bottom: 80px !important
}

.mb85 {
    margin-bottom: 85px !important
}

.mb90 {
    margin-bottom: 90px !important
}

.mb95 {
    margin-bottom: 95px !important
}

.mb100 {
    margin-bottom: 100px !important
}

.mb110 {
    margin-bottom: 110px !important
}

.mb120 {
    margin-bottom: 120px !important
}

.mb130 {
    margin-bottom: 130px !important
}

.mb140 {
    margin-bottom: 140px !important
}

.mb150 {
    margin-bottom: 150px !important
}

.mb160 {
    margin-bottom: 160px !important
}

.mb170 {
    margin-bottom: 170px !important
}

.mb180 {
    margin-bottom: 180px !important
}

.mb190 {
    margin-bottom: 190px !important
}

.mb200 {
    margin-bottom: 200px !important
}

@media(max-width:991px) {
    .pt0-sm {
        padding-top: 0
    }

    .pt5-sm {
        padding-top: 5px
    }

    .pt10-sm {
        padding-top: 10px
    }

    .pt15-sm {
        padding-top: 15px
    }

    .pt20-sm {
        padding-top: 20px
    }

    .pt25-sm {
        padding-top: 25px
    }

    .pt30-sm {
        padding-top: 30px
    }

    .pt35-sm {
        padding-top: 35px
    }

    .pt40-sm {
        padding-top: 40px
    }

    .pt45-sm {
        padding-top: 45px
    }

    .pt50-sm {
        padding-top: 50px
    }

    .pt55-sm {
        padding-top: 55px
    }

    .pt60-sm {
        padding-top: 60px
    }

    .pt65-sm {
        padding-top: 65px
    }

    .pt70-sm {
        padding-top: 70px
    }

    .pt75-sm {
        padding-top: 75px
    }

    .pt80-sm {
        padding-top: 80px
    }

    .pt85-sm {
        padding-top: 85px
    }

    .pt90-sm {
        padding-top: 90px
    }

    .pt95-sm {
        padding-top: 95px
    }

    .pt100-sm {
        padding-top: 100px
    }

    .pt110-sm {
        padding-top: 110px
    }

    .pt120-sm {
        padding-top: 120px
    }

    .pt130-sm {
        padding-top: 130px
    }

    .pt140-sm {
        padding-top: 140px
    }

    .pt150-sm {
        padding-top: 150px
    }

    .pt160-sm {
        padding-top: 160px
    }

    .pt170-sm {
        padding-top: 170px
    }

    .pt180-sm {
        padding-top: 180px
    }

    .pt190-sm {
        padding-top: 190px
    }

    .pt200-sm {
        padding-top: 200px
    }

    .pb0-sm {
        padding-bottom: 0
    }

    .pb5-sm {
        padding-bottom: 5px
    }

    .pb10-sm {
        padding-bottom: 10px
    }

    .pb15-sm {
        padding-bottom: 15px
    }

    .pb20-sm {
        padding-bottom: 20px
    }

    .pb25-sm {
        padding-bottom: 25px
    }

    .pb30-sm {
        padding-bottom: 30px
    }

    .pb35-sm {
        padding-bottom: 35px
    }

    .pb40-sm {
        padding-bottom: 40px
    }

    .pb45-sm {
        padding-bottom: 45px
    }

    .pb50-sm {
        padding-bottom: 50px
    }

    .pb55-sm {
        padding-bottom: 55px
    }

    .pb60-sm {
        padding-bottom: 60px
    }

    .pb65-sm {
        padding-bottom: 65px
    }

    .pb70-sm {
        padding-bottom: 70px
    }

    .pb75-sm {
        padding-bottom: 75px
    }

    .pb80-sm {
        padding-bottom: 80px
    }

    .pb85-sm {
        padding-bottom: 85px
    }

    .pb90-sm {
        padding-bottom: 90px
    }

    .pb95-sm {
        padding-bottom: 95px
    }

    .pb100-sm {
        padding-bottom: 100px
    }

    .pb110-sm {
        padding-bottom: 110px
    }

    .pb120-sm {
        padding-bottom: 120px
    }

    .pb130-sm {
        padding-bottom: 130px
    }

    .pb140-sm {
        padding-bottom: 140px
    }

    .pb150-sm {
        padding-bottom: 150px
    }

    .pb160-sm {
        padding-bottom: 160px
    }

    .pb170-sm {
        padding-bottom: 170px
    }

    .pb180-sm {
        padding-bottom: 180px
    }

    .pb190-sm {
        padding-bottom: 190px
    }

    .pb200-sm {
        padding-bottom: 200px
    }

    .mt0-sm {
        margin-top: 0 !important
    }

    .mt5-sm {
        margin-top: 5px !important
    }

    .mt10-sm {
        margin-top: 10px !important
    }

    .mt15-sm {
        margin-top: 15px !important
    }

    .mt20-sm {
        margin-top: 20px !important
    }

    .mt25-sm {
        margin-top: 25px !important
    }

    .mt30-sm {
        margin-top: 30px !important
    }

    .mt35-sm {
        margin-top: 35px !important
    }

    .mt40-sm {
        margin-top: 40px !important
    }

    .mt45-sm {
        margin-top: 45px !important
    }

    .mt50-sm {
        margin-top: 50px !important
    }

    .mt55-sm {
        margin-top: 55px !important
    }

    .mt60-sm {
        margin-top: 60px !important
    }

    .mt65-sm {
        margin-top: 65px !important
    }

    .mt70-sm {
        margin-top: 70px !important
    }

    .mt75-sm {
        margin-top: 75px !important
    }

    .mt80-sm {
        margin-top: 80px !important
    }

    .mt85-sm {
        margin-top: 85px !important
    }

    .mt90-sm {
        margin-top: 90px !important
    }

    .mt95-sm {
        margin-top: 95px !important
    }

    .mt100-sm {
        margin-top: 100px !important
    }

    .mt110-sm {
        margin-top: 110px !important
    }

    .mt120-sm {
        margin-top: 120px !important
    }

    .mt130-sm {
        margin-top: 130px !important
    }

    .mt140-sm {
        margin-top: 140px !important
    }

    .mt150-sm {
        margin-top: 150px !important
    }

    .mt160-sm {
        margin-top: 160px !important
    }

    .mt170-sm {
        margin-top: 170px !important
    }

    .mt180-sm {
        margin-top: 180px !important
    }

    .mt190-sm {
        margin-top: 190px !important
    }

    .mt200-sm {
        margin-top: 200px !important
    }

    .mb0-sm {
        margin-bottom: 0 !important
    }

    .mb5-sm {
        margin-bottom: 5px !important
    }

    .mb10-sm {
        margin-bottom: 10px !important
    }

    .mb15-sm {
        margin-bottom: 15px !important
    }

    .mb20-sm {
        margin-bottom: 20px !important
    }

    .mb25-sm {
        margin-bottom: 25px !important
    }

    .mb30-sm {
        margin-bottom: 30px !important
    }

    .mb35-sm {
        margin-bottom: 35px !important
    }

    .mb40-sm {
        margin-bottom: 40px !important
    }

    .mb45-sm {
        margin-bottom: 45px !important
    }

    .mb50-sm {
        margin-bottom: 50px !important
    }

    .mb55-sm {
        margin-bottom: 55px !important
    }

    .mb60-sm {
        margin-bottom: 60px !important
    }

    .mb65-sm {
        margin-bottom: 65px !important
    }

    .mb70-sm {
        margin-bottom: 70px !important
    }

    .mb75-sm {
        margin-bottom: 75px !important
    }

    .mb80-sm {
        margin-bottom: 80px !important
    }

    .mb85-sm {
        margin-bottom: 85px !important
    }

    .mb90-sm {
        margin-bottom: 90px !important
    }

    .mb95-sm {
        margin-bottom: 95px !important
    }

    .mb100-sm {
        margin-bottom: 100px !important
    }

    .mb110-sm {
        margin-bottom: 110px !important
    }

    .mb120-sm {
        margin-bottom: 120px !important
    }

    .mb130-sm {
        margin-bottom: 130px !important
    }

    .mb140-sm {
        margin-bottom: 140px !important
    }

    .mb150-sm {
        margin-bottom: 150px !important
    }

    .mb160-sm {
        margin-bottom: 160px !important
    }

    .mb170-sm {
        margin-bottom: 170px !important
    }

    .mb180-sm {
        margin-bottom: 180px !important
    }

    .mb190-sm {
        margin-bottom: 190px !important
    }

    .mb200-sm {
        margin-bottom: 200px !important
    }
}

@media(max-width:767px) {
    .pt0-xs {
        padding-top: 0
    }

    .pt5-xs {
        padding-top: 5px
    }

    .pt10-xs {
        padding-top: 10px
    }

    .pt15-xs {
        padding-top: 15px
    }

    .pt20-xs {
        padding-top: 20px
    }

    .pt25-xs {
        padding-top: 25px
    }

    .pt30-xs {
        padding-top: 30px
    }

    .pt35-xs {
        padding-top: 35px
    }

    .pt40-xs {
        padding-top: 40px
    }

    .pt45-xs {
        padding-top: 45px
    }

    .pt50-xs {
        padding-top: 50px
    }

    .pt55-xs {
        padding-top: 55px
    }

    .pt60-xs {
        padding-top: 60px
    }

    .pt65-xs {
        padding-top: 65px
    }

    .pt70-xs {
        padding-top: 70px
    }

    .pt75-xs {
        padding-top: 75px
    }

    .pt80-xs {
        padding-top: 80px
    }

    .pt85-xs {
        padding-top: 85px
    }

    .pt90-xs {
        padding-top: 90px
    }

    .pt95-xs {
        padding-top: 95px
    }

    .pt100-xs {
        padding-top: 100px
    }

    .pt110-xs {
        padding-top: 110px
    }

    .pt120-xs {
        padding-top: 120px
    }

    .pt130-xs {
        padding-top: 130px
    }

    .pt140-xs {
        padding-top: 140px
    }

    .pt150-xs {
        padding-top: 150px
    }

    .pt160-xs {
        padding-top: 160px
    }

    .pt170-xs {
        padding-top: 170px
    }

    .pt180-xs {
        padding-top: 180px
    }

    .pt190-xs {
        padding-top: 190px
    }

    .pt200-xs {
        padding-top: 200px
    }

    .pb0-xs {
        padding-bottom: 0
    }

    .pb5-xs {
        padding-bottom: 5px
    }

    .pb10-xs {
        padding-bottom: 10px
    }

    .pb15-xs {
        padding-bottom: 15px
    }

    .pb20-xs {
        padding-bottom: 20px
    }

    .pb25-xs {
        padding-bottom: 25px
    }

    .pb30-xs {
        padding-bottom: 30px
    }

    .pb35-xs {
        padding-bottom: 35px
    }

    .pb40-xs {
        padding-bottom: 40px
    }

    .pb45-xs {
        padding-bottom: 45px
    }

    .pb50-xs {
        padding-bottom: 50px
    }

    .pb55-xs {
        padding-bottom: 55px
    }

    .pb60-xs {
        padding-bottom: 60px
    }

    .pb65-xs {
        padding-bottom: 65px
    }

    .pb70-xs {
        padding-bottom: 70px
    }

    .pb75-xs {
        padding-bottom: 75px
    }

    .pb80-xs {
        padding-bottom: 80px
    }

    .pb85-xs {
        padding-bottom: 85px
    }

    .pb90-xs {
        padding-bottom: 90px
    }

    .pb95-xs {
        padding-bottom: 95px
    }

    .pb100-xs {
        padding-bottom: 100px
    }

    .pb110-xs {
        padding-bottom: 110px
    }

    .pb120-xs {
        padding-bottom: 120px
    }

    .pb130-xs {
        padding-bottom: 130px
    }

    .pb140-xs {
        padding-bottom: 140px
    }

    .pb150-xs {
        padding-bottom: 150px
    }

    .pb160-xs {
        padding-bottom: 160px
    }

    .pb170-xs {
        padding-bottom: 170px
    }

    .pb180-xs {
        padding-bottom: 180px
    }

    .pb190-xs {
        padding-bottom: 190px
    }

    .pb200-xs {
        padding-bottom: 200px
    }

    .mt0-xs {
        margin-top: 0 !important
    }

    .mt5-xs {
        margin-top: 5px !important
    }

    .mt10-xs {
        margin-top: 10px !important
    }

    .mt15-xs {
        margin-top: 15px !important
    }

    .mt20-xs {
        margin-top: 20px !important
    }

    .mt25-xs {
        margin-top: 25px !important
    }

    .mt30-xs {
        margin-top: 30px !important
    }

    .mt35-xs {
        margin-top: 35px !important
    }

    .mt40-xs {
        margin-top: 40px !important
    }

    .mt45-xs {
        margin-top: 45px !important
    }

    .mt50-xs {
        margin-top: 50px !important
    }

    .mt55-xs {
        margin-top: 55px !important
    }

    .mt60-xs {
        margin-top: 60px !important
    }

    .mt65-xs {
        margin-top: 65px !important
    }

    .mt70-xs {
        margin-top: 70px !important
    }

    .mt75-xs {
        margin-top: 75px !important
    }

    .mt80-xs {
        margin-top: 80px !important
    }

    .mt85-xs {
        margin-top: 85px !important
    }

    .mt90-xs {
        margin-top: 90px !important
    }

    .mt95-xs {
        margin-top: 95px !important
    }

    .mt100-xs {
        margin-top: 100px !important
    }

    .mt110-xs {
        margin-top: 110px !important
    }

    .mt120-xs {
        margin-top: 120px !important
    }

    .mt130-xs {
        margin-top: 130px !important
    }

    .mt140-xs {
        margin-top: 140px !important
    }

    .mt150-xs {
        margin-top: 150px !important
    }

    .mt160-xs {
        margin-top: 160px !important
    }

    .mt170-xs {
        margin-top: 170px !important
    }

    .mt180-xs {
        margin-top: 180px !important
    }

    .mt190-xs {
        margin-top: 190px !important
    }

    .mt200-xs {
        margin-top: 200px !important
    }

    .mb0-xs {
        margin-bottom: 0 !important
    }

    .mb5-xs {
        margin-bottom: 5px !important
    }

    .mb10-xs {
        margin-bottom: 10px !important
    }

    .mb15-xs {
        margin-bottom: 15px !important
    }

    .mb20-xs {
        margin-bottom: 20px !important
    }

    .mb25-xs {
        margin-bottom: 25px !important
    }

    .mb30-xs {
        margin-bottom: 30px !important
    }

    .mb35-xs {
        margin-bottom: 35px !important
    }

    .mb40-xs {
        margin-bottom: 40px !important
    }

    .mb45-xs {
        margin-bottom: 45px !important
    }

    .mb50-xs {
        margin-bottom: 50px !important
    }

    .mb55-xs {
        margin-bottom: 55px !important
    }

    .mb60-xs {
        margin-bottom: 60px !important
    }

    .mb65-xs {
        margin-bottom: 65px !important
    }

    .mb70-xs {
        margin-bottom: 70px !important
    }

    .mb75-xs {
        margin-bottom: 75px !important
    }

    .mb80-xs {
        margin-bottom: 80px !important
    }

    .mb85-xs {
        margin-bottom: 85px !important
    }

    .mb90-xs {
        margin-bottom: 90px !important
    }

    .mb95-xs {
        margin-bottom: 95px !important
    }

    .mb100-xs {
        margin-bottom: 100px !important
    }

    .mb110-xs {
        margin-bottom: 110px !important
    }

    .mb120-xs {
        margin-bottom: 120px !important
    }

    .mb130-xs {
        margin-bottom: 130px !important
    }

    .mb140-xs {
        margin-bottom: 140px !important
    }

    .mb150-xs {
        margin-bottom: 150px !important
    }

    .mb160-xs {
        margin-bottom: 160px !important
    }

    .mb170-xs {
        margin-bottom: 170px !important
    }

    .mb180-xs {
        margin-bottom: 180px !important
    }

    .mb190-xs {
        margin-bottom: 190px !important
    }

    .mb200-xs {
        margin-bottom: 200px !important
    }
}

.bg-custom {
    background-color: #f3dbce;
    color: #fff
}

.bg-custom2 {
    background-color: #4d4d4d;
    color: #fff
}

.bg-custom6 {
    background-color: #81ccfc;
    color: #fff
}

.bg-custom7 {
    background-color: #73c6fc;
    color: #fff
}

.bg-dark {
    background-color: #171717;
    color: #fff
}

.bg-darker {
    background-color: #101010;
    color: #fff
}

.bg-gray {
    background-color: #f0f0f0
}

.bg-gray2 {
    background-color: #eee
}

.bg-gray3 {
    background-color: #f8f8f8
}

.bg-white {
    background-color: #fff
}

.icon {
    background-image: url("https://cdn.bendensana.com/Assets/images/sprite.png?ts=2025")
}

body {
    color: #8B7355 !important;
}

.header {
    background-color: #fef2e3 !important;
    border-color: #BC9A6A !important;
}

.footer {
    background-color: #fef2e3 !important;
    color: #8B7355 !important;
}

.btn {
    background-color: #fef2e3 !important;
    border-color: #BC9A6A !important;
    color: #8B7355 !important;
}

.btn:hover {
    background-color: #BC9A6A !important;
    border-color: #A0855C !important;
}

.product {
    background-color: #FAF0E6 !important;
    border-color: #fef2e3 !important;
}

.product-title {
    color: #8B7355 !important;
}

.product-price {
    color: #A0855C !important;
}



body,
.container,
.row,
.col-md-12,
.col-md-9,
.col-md-3,
.widget,
.product,
.banner,
.footer-inner {
    border-radius: 12px !important;
}

.hero-section {
    border-radius: 25px !important;
}

.platform-card {
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
}

.platform-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.feature-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.platform-btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.btn,
.form-control,
.dropdown,
.modal-content,
.tab-pane {
    border-radius: 6px !important;
}



body {
    color: #888;
    font: 400 15px/1.6 Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative
}

.container-fluid {
    padding-left: 20px;
    padding-right: 20px
}

@media(min-width:992px) {
    .container-fluid {
        padding-left: 40px;
        padding-right: 40px
    }
}

.container-fluid.max {
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto
}

@media(min-width:1200px) {
    .container-fluid .row {
        margin-left: -20px;
        margin-right: -20px
    }

    .container-fluid .row [class*="col-"],
    .container-fluid .row .col-5 {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media(min-width:1600px) {
    .container-fluid .row.row-lg {
        margin-left: -25px;
        margin-right: -25px
    }

    .container-fluid .row.row-lg [class*="col-"] {
        padding-left: 25px;
        padding-right: 25px
    }
}

@media(min-width:1200px) {
    .container-fluid .row.row-sm {
        margin-left: -15px;
        margin-right: -15px
    }

    .container-fluid .row.row-sm [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px
    }
}

.container-fluid .row.fullwidth {
    margin: 0
}

.container-fluid .row.fullwidth [class*="col-"] {
    padding: 0
}

.container-fluid.fullwidth {
    padding: 0
}

.container-fluid.fullwidth .row {
    margin: 0
}

.container-fluid.fullwidth [class*="col-"] {
    padding: 0
}

@media(min-width:1600px) {
    .col-xlg-5 {
        width: 20%
    }
}

.col-5 {
    position: relative
}

@media(min-width:992px) {
    .col-5 {
        float: left;
        width: 20%
    }
}

.visible-xlg {
    display: none
}

@media(min-width:1600px) {
    .visible-xlg {
        display: block
    }
}

@media(min-width:1280px) {
    .container {
        width: 1230px
    }
}

#wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative
}

@media(min-width:1920px) {
    #wrapper.boxed .container-fluid {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto
    }
}

::-moz-selection {
    background-color: #f3dbce;
    color: #fff
}

::selection {
    background-color: #f3dbce;
    color: #fff
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0
}

a:focus,
a:active,
select:focus,
select:active,
input:focus,
input:active,
textarea:focus,
textarea:active,
button:focus,
button:active {
    outline: none !important
}

iframe {
    border: 0;
    outline: 0
}

@media(max-width:480px) {
    .col-xss-12 {
        width: 100%;
        float: none
    }
}

.visible-xss {
    display: none
}

@media(max-width:480px) {
    .visible-xss {
        display: block
    }
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #e6e6e6
}

.text-white {
    color: #fff
}

.text-underline {
    text-decoration: underline
}

.bg-image,
.parallax {
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
}

.parallax {
    background-attachment: fixed
}

.overlay-container {
    position: relative
}

.overlay-container>.container,
.overlay-container>.container-fluid {
    position: relative;
    z-index: 1
}

.overlay-container .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .4;
    background-color: #000;
    z-index: 0
}

.overlay-container .overlay.custom {
    background-color: #f3dbce
}

.overlay-container .overlay.custom2 {
    background-color: #4d4d4d
}

.overlay-container .overlay.light {
    background-color: #fff
}

.carousel-overflow-container {
    overflow: hidden
}

.carousel-overflow-container.row {
    margin-left: -18px;
    margin-right: -18px
}

@media(min-width:1200px) {
    .carousel-overflow-container.row {
        margin-left: -25px;
        margin-right: -25px
    }
}

.carousel-overflow-container.row [class*="col-"] {
    padding-left: 18px;
    padding-right: 18px
}

@media(min-width:1200px) {
    .carousel-overflow-container.row [class*="col-"] {
        padding-left: 25px;
        padding-right: 25px
    }
}

.carousel-overflow-container .swiper-container,
.carousel-overflow-container .swiper-wrapper {
    overflow: visible !important
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 600;
    line-height: 1;
    font-family: "Open Sans", sans-serif;
    color: #666;
    margin: 0 0 33px;
    letter-spacing: .7px
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small {
    color: inherit
}

h1,
.h1 {
    font-size: 20px
}

h2,
.h2 {
    font-size: 20px
}

h3,
.h3 {
    font-size: 22px;
    margin-bottom: 28px
}

h4,
.h4 {
    font-size: 18px;
    margin-bottom: 23px
}

h5,
.h5 {
    font-size: 16px;
    margin-bottom: 20px
}

h6,
.h6 {
    font-size: 14px;
    margin-bottom: 16px
}

a {
    color: #777;
    transition: color .4s
}

a:hover,
a:focus {
    color: #4d4d4d;
    text-decoration: none
}

.text-custom {
    color: #f3dbce !important
}

.text-custom2 {
    color: #4d4d4d !important
}

.text-custom3 {
    color: #7ccbfb !important
}

.text-custom4 {
    color: #ed4e24 !important
}

.text-custom5 {
    color: #6ed1ff !important
}

.text-white {
    color: #fff !important
}

.text-muted {
    color: #c0c0c0
}

blockquote {
    position: relative;
    padding: 28px 50px 29px 70px;
    margin: 0 0 20px;
    background-color: #f6f6fa;
    border: 0;
    border-radius: 6px;
    font: italic 400 16px/1.55 "Fira Sans", Arial, sans-serif;
    color: #7e8282
}

@media(max-width:767px) {
    blockquote {
        padding: 23px 20px 21px 50px
    }
}

blockquote:after {
    content: '';
    display: block;
    width: 22px;
    height: 16px;
    background-image: url("/Assets/images/quote-icon.png");
    position: absolute;
    left: 30px;
    top: 30px
}

@media(max-width:767px) {
    blockquote:after {
        top: 22px;
        left: 18px
    }
}

blockquote p {
    margin-bottom: 8px
}

blockquote cite {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    color: #a4a8a8
}

blockquote.blockquote-reverse {
    border: 0;
    padding: 28px 70px 29px 50px
}

@media(max-width:767px) {
    blockquote.blockquote-reverse {
        padding: 23px 50px 21px 20px
    }
}

blockquote.blockquote-reverse:after {
    background-image: url("/Assets/images/quote-icon-reverse.png");
    left: auto;
    right: 30px
}

@media(max-width:767px) {
    blockquote.blockquote-reverse:after {
        left: auto;
        top: 22px;
        right: 18px
    }
}

p {
    margin-bottom: 20px
}

.highlight {
    background-color: #666;
    color: #fff;
    padding: 0 4px
}

.highlight.custom {
    background-color: #f3dbce
}

.highlight.custom2 {
    background-color: #4d4d4d
}

.text-lineth {
    text-decoration: line-through
}

.text-underline {
    text-decoration: underline
}

.dropcap::first-letter {
    font: 500 2.7em/1.18 Arial, sans-serif;
    padding: 0 .12em 0;
    float: left;
    margin-right: .2em;
    color: #fff;
    background-color: #101010
}

.dropcap.gray::first-letter {
    color: #666;
    background-color: #cecece
}

.dropcap.custom::first-letter {
    background-color: #f3dbce
}

.dropcap.custom2::first-letter {
    color: #fff;
    background-color: #4d4d4d
}

@media(min-width:768px) {

    .title-container h2,
    .title-container h3,
    .title-container h4,
    .title-container h5 {
        margin-top: 12px;
        float: left
    }
}

@media(max-width:767px) {

    .title-container h2,
    .title-container h3,
    .title-container h4,
    .title-container h5 {
        margin-bottom: 15px
    }

    .scroll-top.icon.fixed {
        position: fixed;
        bottom: 10px;
        right: 20px
    }
}

@media(min-width:480px) {
    .carousel-header {
        margin-bottom: 33px
    }
}

.carousel-header.bordered {
    border-bottom: 2px solid #e9e9e9;
    padding-bottom: 19px;
    margin-bottom: 30px
}

.carousel-header:after {
    content: '';
    clear: both;
    display: table
}

.carousel-title {
    margin-bottom: 12px;
    color: #585858;
    font-weight: 700
}

@media(min-width:480px) {
    .carousel-header .carousel-title {
        float: left;
        margin-bottom: 0;
        margin-top: 10px
    }
}

.carousel-title.v2 {
    font-weight: 400;
    font-family: "Fira Sans", Arial, sans-serif;
    margin-bottom: 26px
}

@media(min-width:768px) {
    .carousel-title.v2 {
        margin-bottom: 35px
    }
}

@media(min-width:992px) {
    .carousel-title.v2 {
        margin-bottom: 44px
    }
}

.page-header {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0
}

.page-header h1 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    margin: 15px 0 0
}

@media(min-width:768px) {
    .page-header h1 {
        margin: 16px 0 12px;
        float: left
    }
}

@media(min-width:768px) {
    .page-header h1+.breadcrumb {
        float: right
    }
}

.page-header.larger {
    padding: 6px 0
}

.page-header.largest {
    padding: 41px 0 40px;
    margin-bottom: 70px
}

@media(min-width:1200px) {
    .page-header.largest {
        margin-bottom: 80px
    }
}

@media(min-width:1600px) {
    .page-header.largest {
        margin-bottom: 90px
    }
}

.page-header.largest h1 {
    float: none;
    font: 700 45px/1 "Fira Sans", Arial, sans-serif;
    margin: 0 0 12px
}

.page-header.largest h1+.breadcrumb {
    float: none
}

.page-header.largest .breadcrumb {
    font-size: 12px;
    padding: 0;
    text-transform: uppercase
}

@media(min-width:768px) {
    .page-header.text-center:not(.largest) h1 {
        float: none;
        margin: 10px 0 0
    }

    .page-header.text-center:not(.largest) h1+.breadcrumb {
        float: none;
        padding-bottom: 5px
    }
}

@media(min-width:768px) {
    .page-header.text-right:not(.largest) h1 {
        float: right
    }

    .page-header.text-right:not(.largest) h1+.breadcrumb {
        float: left
    }
}

.breadcrumb {
    padding: 10px 0;
    margin: 0;
    background-color: transparent;
    border-radius: 0;
    letter-spacing: .7px;
    font: 500 13px/17px "Open Sans", sans-serif
}

@media(min-width:768px) {
    .breadcrumb {
        padding: 0 0 16px
    }
}

.breadcrumb li a {
    color: #777
}

.breadcrumb li a:hover,
.breadcrumb li a:focus {
    color: #f3dbce
}

.breadcrumb>.active {
    color: #b0afaf;
    font-weight: 700
}

.breadcrumb li+li:before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 9px;
    background-image: url("/Assets/images/breadcrumb-arrow.png");
    margin: 0 15px 0 10px;
    vertical-align: middle
}

@media(min-width:768px) {
    .breadcrumb li+li:before {
        margin: 0 29px 0 25px
    }
}

.page-header.custom {
    background-color: #4d4d4d
}

.page-header.custom h1 {
    color: #fff
}

.page-header.custom .breadcrumb li a {
    color: #fff
}

.page-header.custom .breadcrumb li a:hover,
.page-header.custom .breadcrumb li a:focus {
    color: #ace7f6
}

.page-header.custom .breadcrumb>.active {
    color: #fff
}

.page-header.custom .breadcrumb li+li:before {
    background-position: 0 -9px
}

.page-header.parallax,
.page-header.bg-image {
    position: relative
}

.page-header.parallax:after,
.page-header.bg-image:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1
}

.page-header.parallax .container-fluid,
.page-header.parallax .container,
.page-header.bg-image .container-fluid,
.page-header.bg-image .container {
    position: relative;
    z-index: 2
}

.page-header.parallax .breadcrumb li a:hover,
.page-header.parallax .breadcrumb li a:focus,
.page-header.bg-image .breadcrumb li a:hover,
.page-header.bg-image .breadcrumb li a:focus {
    color: #f3dbce
}

.panel-group .panel+.panel {
    margin-top: -3px
}

.panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 0
}

.panel {
    background-color: transparent;
    margin-bottom: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none
}

.panel .panel-heading {
    padding: 0;
    border-radius: 0;
    border: 0
}

.panel .panel-heading .panel-title {
    position: relative;
    font: 500 17px/1 "Open Sans", sans-serif;
    letter-spacing: .08em
}

.panel .panel-heading .panel-title a {
    border: 3px solid transparent;
    display: block;
    padding: 22px 40px 19px 19px;
    transition: all .4s;
    text-transform: uppercase
}

.panel .panel-heading .panel-title a:before {
    display: inline-block;
    font-family: 'FontAwesome';
    content: "\f106";
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -8.5px;
    color: #8c8c8c
}

.panel .panel-heading .panel-title a.collapsed:before {
    content: "\f107"
}

.panel .panel-body {
    padding: 35px 0
}

@media(min-width:1600px) {
    .panel .panel-body {
        padding: 45px 0
    }
}

.panel .panel-body p {
    margin-bottom: 13px
}

.panel .panel-body p:last-child {
    margin-bottom: 0
}

.panel.panel-default .panel-heading {
    background-color: transparent
}

.panel.panel-default .panel-heading a {
    color: #555;
    background-color: transparent;
    border-color: #e7e7e7
}

.panel.panel-default .panel-heading a:hover,
.panel.panel-default .panel-heading a:focus {
    color: #333;
    background-color: transparent;
    border-color: #e7e7e7
}

.panel.panel-custom .panel-heading .panel-title {
    font-family: "Fira Sans", Arial, sans-serif;
    font-size: 18px
}

.panel.panel-custom .panel-heading .panel-title a {
    padding-top: 21px
}

.panel.panel-custom .panel-heading a {
    color: #555;
    border-color: #4d4d4d
}

.panel.panel-custom .panel-heading a:hover,
.panel.panel-custom .panel-heading a:focus {
    color: #333;
    border-color: #4d4d4d
}

.nav.nav-tabs {
    margin-bottom: 30px;
    border-bottom: 1px solid #ececec;
    font-size: 0
}

@media(min-width:768px) {
    .nav.nav-tabs {
        margin-bottom: 45px
    }
}

@media(min-width:992px) {
    .nav.nav-tabs {
        margin-bottom: 55px
    }
}

.nav.nav-tabs>li {
    float: none;
    display: inline-block
}

.nav.nav-tabs>li+li {
    margin-left: 2px
}

@media(min-width:768px) {
    .nav.nav-tabs>li+li {
        margin-left: 6px
    }
}

@media(min-width:992px) {
    .nav.nav-tabs>li+li {
        margin-left: 8px
    }
}

@media(min-width:1200px) {
    .nav.nav-tabs>li+li {
        margin-left: 10px
    }
}

.nav.nav-tabs>li>a {
    padding: 11px 6px 8px;
    font: 600 12px/1.5 "Open Sans", sans-serif;
    letter-spacing: .07em;
    transition: background .35s;
    border-color: #ececec;
    border-radius: 10px 10px 0 0;
    margin: 0
}

@media(min-width:768px) {
    .nav.nav-tabs>li>a {
        padding: 12px 18px 9px;
        font-size: 13px
    }
}

@media(min-width:992px) {
    .nav.nav-tabs>li>a {
        padding: 14px 22px 11px;
        font-size: 15px
    }
}

@media(min-width:1200px) {
    .nav.nav-tabs>li>a {
        padding: 17px 30px 13px;
        font-size: 16px
    }
}

.nav.nav-tabs>li>a:hover,
.nav.nav-tabs>li>a:focus {
    background-color: #c2c2c2;
    color: #fff;
    border-color: #ececec
}

.nav.nav-tabs>li.active>a {
    background-color: #c2c2c2;
    color: #fff;
    border-color: #ececec
}

.nav.nav-tabs.v2 {
    max-width: 650px;
    margin: 0 auto 30px;
    border-bottom: 1px solid #f4f4f4
}

.nav.nav-tabs.v2>li {
    float: none;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px
}

@media(min-width:480px) {
    .nav.nav-tabs.v2>li {
        margin-left: 10px;
        margin-right: 10px
    }
}

@media(min-width:768px) {
    .nav.nav-tabs.v2>li {
        margin-left: 15px;
        margin-right: 15px
    }
}

.nav.nav-tabs.v2>li+li {
    margin-left: 0
}

.nav.nav-tabs.v2>li>a {
    padding: 8px 8px 5px;
    font: 400 12px/1.5 "Fira Sans", Arial, sans-serif;
    color: #888;
    letter-spacing: .1em;
    border-color: transparent;
    border-radius: 8px 8px 0 0;
    margin: 0
}

@media(min-width:480px) {
    .nav.nav-tabs.v2>li>a {
        font-size: 13px;
        padding: 8px 14px 5px
    }
}

@media(min-width:768px) {
    .nav.nav-tabs.v2>li>a {
        padding: 8px 20px 5px
    }
}

@media(min-width:768px) {
    .nav.nav-tabs.v2>li>a {
        padding: 8px 20px 5px
    }
}

.nav.nav-tabs.v2>li>a:hover,
.nav.nav-tabs.v2>li>a:focus {
    background-color: transparent;
    color: #888;
    border-color: #c2c2c2;
    border-bottom-color: #fff
}

.nav.nav-tabs.v2>li.active>a {
    background-color: #c2c2c2;
    color: #fff;
    border-color: #ececec
}

.nav.nav-icons.nav-justified {
    margin-bottom: 30px;
    max-width: 1210px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0
}

@media(min-width:768px) {
    .nav.nav-icons.nav-justified {
        display: table;
        margin-bottom: 35px
    }
}

@media(min-width:992px) {
    .nav.nav-icons.nav-justified {
        margin-bottom: 45px
    }
}

@media(min-width:1600px) {
    .nav.nav-icons.nav-justified {
        margin-bottom: 55px
    }
}

.nav.nav-icons.nav-justified>li {
    border: 0;
    position: relative;
    font-size: 15px;
    line-height: 1
}

@media(min-width:768px) {
    .nav.nav-icons.nav-justified>li {
        width: auto
    }
}

@media(max-width:767px) {
    .nav.nav-icons.nav-justified>li {
        display: inline-block
    }
}

.nav.nav-icons.nav-justified>li:first-child:before,
.nav.nav-icons.nav-justified>li:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -1px;
    width: 2px;
    height: 30px;
    margin-top: -15px;
    background-color: #e9e9e9;
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    opacity: .15
}

.nav.nav-icons.nav-justified>li:first-child:before {
    right: auto;
    left: -1px
}

.nav.nav-icons.nav-justified>li+li {
    margin-left: 0
}

.nav.nav-icons.nav-justified>li>a {
    padding: 0 5px;
    border: 0;
    border-radius: 0;
    margin: 0
}

.nav.nav-icons.nav-justified>li>a:hover,
.nav.nav-icons.nav-justified>li>a:focus {
    background-color: transparent;
    border-color: transparent
}

.nav.nav-icons.nav-justified>li.active>a {
    background-color: transparent;
    border-color: transparent
}

.nav-icons-container {
    background-color: #f2f2f2;
    overflow: hidden;
    margin-bottom: 35px
}

@media(min-width:768px) {
    .nav-icons-container {
        margin-bottom: 50px
    }
}

@media(min-width:992px) {
    .nav-icons-container {
        margin-bottom: 60px
    }
}

@media(min-width:1200px) {
    .nav-icons-container {
        margin-bottom: 70px
    }
}

@media(min-width:1600px) {
    .nav-icons-container {
        margin-bottom: 80px
    }
}

.nav-icons-container .nav.nav-icons.nav-justified {
    margin-bottom: 0
}

.nav-icons-container .nav.nav-icons.nav-justified>li:first-child:before,
.nav-icons-container .nav.nav-icons.nav-justified>li:after {
    background-color: #e9e9e9;
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    opacity: .15
}

.nav-icons-container .nav.nav-icons.nav-justified>li>a {
    padding: 2.5px 2px 5.5px;
    border: 0;
    border-radius: 0;
    margin: 0;
    border-top: 3px solid transparent
}

@media(min-width:768px) {
    .nav-icons-container .nav.nav-icons.nav-justified>li>a {
        padding-top: 8.5px;
        padding-bottom: 11.5px
    }
}

.nav-icons-container .nav.nav-icons.nav-justified>li>a:hover,
.nav-icons-container .nav.nav-icons.nav-justified>li>a:focus {
    background-color: transparent;
    border-color: transparent
}

.nav-icons-container .nav.nav-icons.nav-justified>li.active>a {
    background-color: #fff;
    border-top-color: #f3dbce
}

.tab-icon {
    display: inline-block;
    width: 55px;
    height: 55px
}

.tab-icon.icon-camera {
    background-position: 0 -8608px
}

li.active .tab-icon.icon-camera,
li:hover .tab-icon.icon-camera {
    background-position: 0 -8662px
}

.tab-icon.icon-camera.icon2 {
    background-position: 0 -8500px
}

li.active .tab-icon.icon-camera.icon2,
li:hover .tab-icon.icon-camera.icon2 {
    background-position: 0 -8554px
}

.tab-icon.icon-monitor {
    background-position: 0 -7636px
}

.active .tab-icon.icon-monitor,
li:hover .tab-icon.icon-monitor {
    background-position: 0 -7690px
}

.tab-icon.icon-monitor.icon2 {
    background-position: 0 -7528px
}

li.active .tab-icon.icon-monitor.icon2,
li:hover .tab-icon.icon-monitor.icon2 {
    background-position: 0 -7582px
}

.tab-icon.icon-phone {
    background-position: 0 -7204px
}

.active .tab-icon.icon-phone,
li:hover .tab-icon.icon-phone {
    background-position: 0 -7258px
}

.tab-icon.icon-phone.icon2 {
    background-position: 0 -8014px
}

li.active .tab-icon.icon-phone.icon2,
li:hover .tab-icon.icon-phone.icon2 {
    background-position: 0 -8392px
}

.tab-icon.icon-headphone {
    background-position: 0 -7852px
}

.active .tab-icon.icon-headphone,
li:hover .tab-icon.icon-headphone {
    background-position: 0 -7906px
}

.tab-icon.icon-headphone.icon2 {
    background-position: 0 -7744px
}

li.active .tab-icon.icon-headphone.icon2,
li:hover .tab-icon.icon-headphone.icon2 {
    background-position: 0 -7798px
}

.tab-icon.icon-speaker {
    background-position: 0 -7042px
}

.active .tab-icon.icon-speaker,
li:hover .tab-icon.icon-speaker {
    background-position: 0 -8878px
}

.tab-icon.icon-speaker.icon2 {
    background-position: 0 -7150px
}

li.active .tab-icon.icon-speaker.icon2,
li:hover .tab-icon.icon-speaker.icon2 {
    background-position: 0 -7096px
}

.tab-icon.icon-owen {
    background-position: 0 -7420px
}

.active .tab-icon.icon-owen,
li:hover .tab-icon.icon-owen {
    background-position: 0 -7474px
}

.tab-icon.icon-owen.icon2 {
    background-position: 0 -7312px
}

li.active .tab-icon.icon-owen.icon2,
li:hover .tab-icon.icon-owen.icon2 {
    background-position: 0 -7366px
}

.tab-icon.icon-forma {
    background-position: 0 -8284px
}

.active .tab-icon.icon-forma,
li:hover .tab-icon.icon-forma {
    background-position: 0 -8338px
}

.tab-icon.icon-forma.icon2 {
    background-position: 0 -8176px
}

li.active .tab-icon.icon-forma.icon2,
li:hover .tab-icon.icon-forma.icon2 {
    background-position: 0 -8230px
}

.tab-icon.icon-projector {
    background-position: 0 -8716px
}

.active .tab-icon.icon-projector,
li:hover .tab-icon.icon-projector {
    background-position: 0 -8446px
}

.tab-icon.icon-projector.icon2 {
    background-position: 0 -8824px
}

li.active .tab-icon.icon-projector.icon2,
li:hover .tab-icon.icon-projector.icon2 {
    background-position: 0 -8770px
}

.tab-icon.icon-fridge {
    background-position: 0 -8068px
}

.active .tab-icon.icon-fridge,
li:hover .tab-icon.icon-fridge {
    background-position: 0 -8122px
}

.tab-icon.icon-fridge.icon2 {
    background-position: 0 -7960px
}

li.active .tab-icon.icon-fridge.icon2,
li:hover .tab-icon.icon-fridge.icon2 {
    background-position: 0 -6988px
}

.nav.nav-pills {
    margin-bottom: 30px
}

@media(min-width:768px) {
    .nav.nav-pills {
        margin-bottom: 45px
    }
}

@media(min-width:992px) {
    .nav.nav-pills {
        margin-bottom: 55px
    }
}

.nav.nav-pills>li+li {
    margin-left: 2px
}

.nav.nav-pills>li>a {
    position: relative;
    padding: 12px 6px 9px;
    font: 600 12px/1.5 "Open Sans", sans-serif;
    color: #b1b1b1;
    background-color: #ececec;
    letter-spacing: .07em;
    transition: background .35s;
    border: 0;
    border-radius: 0;
    margin: 0
}

@media(min-width:768px) {
    .nav.nav-pills>li>a {
        padding: 14px 10px 11px;
        font-size: 13px
    }
}

@media(min-width:992px) {
    .nav.nav-pills>li>a {
        padding: 17px 12px 14px;
        font-size: 14px
    }
}

@media(min-width:1600px) {
    .nav.nav-pills>li>a {
        padding: 20px 20px 16px;
        font-size: 16px
    }
}

.nav.nav-pills>li>a:after {
    content: '';
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 10px 6px;
    border-color: transparent transparent #ececec transparent
}

@media(min-width:768px) {
    .nav.nav-pills>li>a:after {
        border-bottom-color: #fff
    }
}

.nav.nav-pills>li>a:hover,
.nav.nav-pills>li>a:focus {
    background-color: #f3dbce;
    color: #fff
}

.nav.nav-pills>li.active>a {
    background-color: #f3dbce;
    color: #fff
}

.nav.nav-pills>li.active>a:after {
    display: block
}

@media(min-width:768px) {
    .nav.nav-pills.nav-justified>li+li {
        padding-left: 2px
    }
}

@media(min-width:992px) {
    .nav.nav-pills.nav-justified>li+li {
        padding-left: 3px
    }
}

@media(min-width:1200px) {
    .nav.nav-pills.nav-justified>li+li {
        padding-left: 4px
    }
}

@media(min-width:1600px) {
    .nav.nav-pills.nav-justified>li+li {
        padding-left: 6px
    }
}

.nav.nav-pills.nav-bordered {
    margin-bottom: 22px;
    font-size: 0
}

@media(min-width:992px) {
    .nav.nav-pills.nav-bordered {
        margin-bottom: 40px
    }
}

.nav.nav-pills.nav-bordered>li {
    float: none;
    display: inline-block;
    margin: 0 5px
}

@media(min-width:768px) {
    .nav.nav-pills.nav-bordered>li {
        margin: 0 10px
    }
}

@media(min-width:992px) {
    .nav.nav-pills.nav-bordered>li {
        margin: 0 15px
    }
}

@media(min-width:1200px) {
    .nav.nav-pills.nav-bordered>li {
        margin: 0 23px
    }
}

.nav.nav-pills.nav-bordered>li+li {
    margin-left: 0
}

.nav.nav-pills.nav-bordered>li>a {
    position: relative;
    padding: 6px 14.5px 4px;
    font: 700 15px/1.5 "Open Sans", sans-serif;
    color: #9d9c9c;
    background-color: transparent;
    letter-spacing: .05em;
    transition: background .35s;
    border: 2px solid transparent;
    text-transform: uppercase;
    border-radius: 18px;
    margin: 0
}

@media(min-width:992px) {
    .nav.nav-pills.nav-bordered>li>a {
        font-size: 16px;
        padding: 7px 23px 5px
    }
}

.nav.nav-pills.nav-bordered>li>a:after {
    display: none
}

.nav.nav-pills.nav-bordered>li>a:hover,
.nav.nav-pills.nav-bordered>li>a:focus {
    background-color: transparent;
    border-color: #f3dbce;
    color: #f3dbce
}

.nav.nav-pills.nav-bordered>li.active>a {
    background-color: transparent;
    border-color: #f3dbce;
    color: #f3dbce
}

.nav.nav-pills.nav-bordered>li.active>a:after {
    display: none
}

.nav.nav-pills.nav-bordered.simple-tabs {
    margin-bottom: 22px
}

@media(min-width:992px) {
    .nav.nav-pills.nav-bordered.simple-tabs {
        margin-bottom: 35px
    }
}

.nav.nav-pills.nav-bordered.simple-tabs>li>a {
    color: #9d9c9c
}

.nav.nav-pills.nav-bordered.simple-tabs>li>a:hover,
.nav.nav-pills.nav-bordered.simple-tabs>li>a:focus {
    background-color: #eaeaea;
    border-color: #eaeaea;
    color: #555
}

.nav.nav-pills.nav-bordered.simple-tabs>li.active>a {
    background-color: #eaeaea;
    border-color: #eaeaea;
    color: #555
}

.nav.nav-pills.nav-bordered.v2 {
    font-size: 0
}

.nav.nav-pills.nav-bordered.v2>li {
    margin: 0 6px
}

@media(min-width:768px) {
    .nav.nav-pills.nav-bordered.v2>li {
        margin: 0 12px
    }
}

@media(min-width:992px) {
    .nav.nav-pills.nav-bordered.v2>li {
        margin: 0 17px
    }
}

@media(min-width:1200px) {
    .nav.nav-pills.nav-bordered.v2>li {
        margin: 0 25px
    }
}

.nav.nav-pills.nav-bordered.v2>li>a {
    padding: 6px 14.5px 4px;
    font: 400 16px/1.5 "Fira Sans", Arial, sans-serif;
    color: #bcbcbc;
    font-style: italic;
    text-transform: capitalize
}

@media(min-width:992px) {
    .nav.nav-pills.nav-bordered.v2>li>a {
        font-size: 17px;
        padding: 6.5px 26px 4.5px
    }
}

.nav.nav-pills.nav-bordered.v2>li>a:after {
    display: none
}

.nav.nav-pills.nav-bordered.v2>li>a:hover,
.nav.nav-pills.nav-bordered.v2>li>a:focus {
    background-color: transparent;
    border-color: #f3dbce;
    color: #f3dbce
}

.nav.nav-pills.nav-bordered.v2>li.active>a {
    background-color: transparent;
    border-color: #f3dbce;
    color: #f3dbce
}

.nav.nav-pills.nav-bordered.v2>li.active>a:after {
    display: none
}

.tab-content {
    font-size: 16px;
    line-height: 1.65
}

@media(min-width:768px) {
    .tab-content {
        font-size: 16px
    }
}

.tab-content p {
    margin-bottom: 20px
}

.tab-content p:last-child {
    margin-bottom: 0
}

.tab-content ul {
    list-style: disc;
    padding-left: 16px
}

.tab-content ul li {
    margin-bottom: 7px
}

.tab-carousel-container .tab-content>.tab-pane {
    display: block;
    height: 0;
    overflow: hidden
}

.tab-carousel-container .tab-content>.tab-pane.active {
    display: block;
    height: auto;
    overflow: visible
}

.tab-carousel-container .carousel-overflow-container.top-align {
    padding-top: 25px;
    margin-top: -25px
}

.btn {
    font-size: 15px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    letter-spacing: .2px;
    text-transform: uppercase;
    padding: 13px 24px 10px;
    border-radius: 20px;
    transition: all .35s, color .1s
}

.btn.no-radius {
    border-radius: 0 !important
}

.btn.btn-border {
    padding: 12px 23px 9px;
    border-width: 2px
}

.btn.btn-sm {
    font-size: 13px;
    padding: 9px 15px 7px;
    border-radius: 16px
}

.btn.btn-sm.btn-border {
    padding: 8px 10px 6px
}

.btn.btn-lg {
    font-size: 17px;
    padding: 17.5px 34px 15.5px;
    border-radius: 24px
}

.btn.btn-lg.btn-border {
    padding: 16.5px 33px 14.5px
}

.btn:active,
.btn.active {
    box-shadow: none
}

.btn:hover,
.btn:focus {
    border-radius: 0 !important;
    box-shadow: none
}

.btn.min-width {
    min-width: 170px
}

.btn.min-width-sm {
    min-width: 140px
}

.btn.min-width-md {
    min-width: 195px
}

.btn-group>.btn+.btn {
    border-left: 1px solid rgba(255, 255, 255, 0.15)
}

.btn-group .dropdown-menu {
    padding: 7px 0;
    border-radius: 0;
    font-size: 14px;
    border-color: #e1e1e1
}

.btn-group .dropdown-menu li a {
    color: #666;
    padding: 4px 15px;
    transition: background .4s
}

.btn-group .dropdown-menu li a:hover,
.btn-group .dropdown-menu li a:focus {
    color: #666;
    background-color: #f1f1f1
}

.btn.btn-custom {
    color: #fff;
    background-color: #4d4d4d;
    border-color: #4d4d4d
}

.btn.btn-custom:hover,
.btn.btn-custom:focus {
    color: #fff;
    background-color: #f3dbce;
    border-color: #f3dbce
}

.btn.btn-custom.btn-border {
    background-color: transparent;
    color: #4d4d4d;
    border-color: #4d4d4d
}

.btn.btn-custom.btn-border:hover,
.btn.btn-custom.btn-border:focus {
    color: #fff;
    background-color: #f3dbce;
    border-color: #f3dbce
}

.btn.btn-custom2 {
    color: #fff;
    background-color: #4d4d4d;
    border-color: #4d4d4d
}

.btn.btn-custom2:hover,
.btn.btn-custom2:focus {
    color: #fff;
    background-color: #48caea;
    border-color: #48caea
}

.btn.btn-custom2.btn-border {
    color: #4d4d4d;
    background-color: transparent;
    border-color: #4d4d4d
}

.btn.btn-custom2.btn-border:hover,
.btn.btn-custom2.btn-border:focus {
    color: #fff;
    background-color: #4d4d4d;
    border-color: #4d4d4d
}

.btn.btn-custom3 {
    color: #fff;
    background-color: #ed4e24;
    border-color: #ed4e24
}

.btn.btn-custom3:hover,
.btn.btn-custom3:focus {
    color: #fff;
    background-color: #ec461b;
    border-color: #ec461b
}

.btn.btn-custom3.btn-border {
    color: #ed4e24;
    background-color: transparent;
    border-color: #ed4e24
}

.btn.btn-custom3.btn-border:hover,
.btn.btn-custom3.btn-border:focus {
    color: #fff;
    background-color: #ed4e24;
    border-color: #ed4e24
}

.btn.btn-custom4 {
    color: #fff;
    background-color: #ffb800;
    border-color: #ffb800
}

.btn.btn-custom4:hover,
.btn.btn-custom4:focus {
    color: #fff;
    background-color: #f5b100;
    border-color: #f5b100
}

.btn.btn-custom4.btn-border {
    color: #ffb800;
    background-color: transparent;
    border-color: #ffb800
}

.btn.btn-custom4.btn-border:hover,
.btn.btn-custom4.btn-border:focus {
    color: #fff;
    background-color: #ffb800;
    border-color: #ffb800
}

.btn.btn-orange {
    color: #fff;
    background-color: #ed4e24;
    border-color: #ed4e24
}

.btn.btn-orange:hover,
.btn.btn-orange:focus {
    color: #fff;
    background-color: #ec461b;
    border-color: #ec461b
}

.btn.btn-orange.btn-border {
    color: #ed4e24;
    background-color: transparent;
    border-color: #ed4e24
}

.btn.btn-orange.btn-border:hover,
.btn.btn-orange.btn-border:focus {
    color: #fff;
    background-color: #ed4e24;
    border-color: #ed4e24
}

.btn.btn-red {
    color: #fff;
    background-color: #f41d1d;
    border-color: #f41d1d
}

.btn.btn-red:hover,
.btn.btn-red:focus {
    color: #fff;
    background-color: #f41313;
    border-color: #f41313
}

.btn.btn-red.btn-border {
    color: #f41d1d;
    background-color: transparent;
    border-color: #f41d1d
}

.btn.btn-red.btn-border:hover,
.btn.btn-red.btn-border:focus {
    color: #fff;
    background-color: #f41d1d;
    border-color: #f41d1d
}

.btn.btn-darkred {
    color: #fff;
    background-color: #d10707;
    border-color: #d10707
}

.btn.btn-darkred:hover,
.btn.btn-darkred:focus {
    color: #fff;
    background-color: #c70707;
    border-color: #c70707
}

.btn.btn-darkred.btn-border {
    color: #d10707;
    background-color: transparent;
    border-color: #d10707
}

.btn.btn-darkred.btn-border:hover,
.btn.btn-darkred.btn-border:focus {
    color: #fff;
    background-color: #d10707;
    border-color: #d10707
}

.btn.btn-blue {
    color: #fff;
    background-color: #0172b8;
    border-color: #0172b8
}

.btn.btn-blue:hover,
.btn.btn-blue:focus {
    color: #fff;
    background-color: #016cae;
    border-color: #016cae
}

.btn.btn-blue.btn-border {
    color: #0172b8;
    background-color: transparent;
    border-color: #0172b8
}

.btn.btn-blue.btn-border:hover,
.btn.btn-blue.btn-border:focus {
    color: #fff;
    background-color: #0172b8;
    border-color: #0172b8
}

.btn.btn-lightblue {
    color: #fff;
    background-color: #2599e2;
    border-color: #2599e2
}

.btn.btn-lightblue:hover,
.btn.btn-lightblue:focus {
    color: #fff;
    background-color: #1e94df;
    border-color: #1e94df
}

.btn.btn-lightblue.btn-border {
    color: #2599e2;
    background-color: transparent;
    border-color: #2599e2
}

.btn.btn-lightblue.btn-border:hover,
.btn.btn-lightblue.btn-border:focus {
    color: #fff;
    background-color: #2599e2;
    border-color: #2599e2
}

.btn.btn-green {
    color: #fff;
    background-color: #49ba17;
    border-color: #49ba17
}

.btn.btn-green:hover,
.btn.btn-green:focus {
    color: #fff;
    background-color: #45b116;
    border-color: #45b116
}

.btn.btn-green.btn-border {
    color: #49ba17;
    background-color: transparent;
    border-color: #49ba17
}

.btn.btn-green.btn-border:hover,
.btn.btn-green.btn-border:focus {
    color: #fff;
    background-color: #49ba17;
    border-color: #49ba17
}

.btn.btn-green2 {
    color: #fff;
    background-color: #06b0aa;
    border-color: #06b0aa
}

.btn.btn-green2:hover,
.btn.btn-green2:focus {
    color: #fff;
    background-color: #06a6a0;
    border-color: #06a6a0
}

.btn.btn-green2.btn-border {
    color: #06b0aa;
    background-color: transparent;
    border-color: #06b0aa
}

.btn.btn-green2.btn-border:hover,
.btn.btn-green2.btn-border:focus {
    color: #fff;
    background-color: #06b0aa;
    border-color: #06b0aa
}

.btn.btn-lightgreen {
    color: #fff;
    background-color: #7aed47;
    border-color: #7aed47
}

.btn.btn-lightgreen:hover,
.btn.btn-lightgreen:focus {
    color: #fff;
    background-color: #73ec3e;
    border-color: #73ec3e
}

.btn.btn-lightgreen.btn-border {
    color: #7aed47;
    background-color: transparent;
    border-color: #7aed47
}

.btn.btn-lightgreen.btn-border:hover,
.btn.btn-lightgreen.btn-border:focus {
    color: #fff;
    background-color: #7aed47;
    border-color: #7aed47
}

.btn.btn-yellow {
    color: #fff;
    background-color: #f4b907;
    border-color: #f4b907
}

.btn.btn-yellow:hover,
.btn.btn-yellow:focus {
    color: #fff;
    background-color: #eab107;
    border-color: #eab107
}

.btn.btn-yellow.btn-border {
    color: #f4b907;
    background-color: transparent;
    border-color: #f4b907
}

.btn.btn-yellow.btn-border:hover,
.btn.btn-yellow.btn-border:focus {
    color: #fff;
    background-color: #f4b907;
    border-color: #f4b907
}

.btn.btn-purple {
    color: #fff;
    background-color: #f003d7;
    border-color: #f003d7
}

.btn.btn-purple:hover,
.btn.btn-purple:focus {
    color: #fff;
    background-color: #e603ce;
    border-color: #e603ce
}

.btn.btn-purple.btn-border {
    color: #f003d7;
    background-color: transparent;
    border-color: #f003d7
}

.btn.btn-purple.btn-border:hover,
.btn.btn-purple.btn-border:focus {
    color: #fff;
    background-color: #f003d7;
    border-color: #f003d7
}

.btn.btn-darkpurple {
    color: #fff;
    background-color: #b0069e;
    border-color: #b0069e
}

.btn.btn-darkpurple:hover,
.btn.btn-darkpurple:focus {
    color: #fff;
    background-color: #a60695;
    border-color: #a60695
}

.btn.btn-darkpurple.btn-border {
    color: #b0069e;
    background-color: transparent;
    border-color: #b0069e
}

.btn.btn-darkpurple.btn-border:hover,
.btn.btn-darkpurple.btn-border:focus {
    color: #fff;
    background-color: #b0069e;
    border-color: #b0069e
}

.btn.btn-black {
    color: #fff;
    background-color: #222;
    border-color: #222
}

.btn.btn-black:hover,
.btn.btn-black:focus {
    color: #fff;
    background-color: #1d1d1d;
    border-color: #1d1d1d
}

.btn.btn-black.btn-border {
    color: #222;
    background-color: transparent;
    border-color: #222
}

.btn.btn-black.btn-border:hover,
.btn.btn-black.btn-border:focus {
    color: #fff;
    background-color: #222;
    border-color: #222
}

.btn.btn-gray {
    color: #777;
    background-color: #e1e1e1;
    border-color: #e1e1e1
}

.btn.btn-gray:hover,
.btn.btn-gray:focus {
    color: #333;
    background-color: gainsboro;
    border-color: gainsboro
}

.btn.btn-gray.btn-border {
    background-color: transparent
}

.btn.btn-gray.btn-border:hover,
.btn.btn-gray.btn-border:focus {
    background-color: #777;
    border-color: #777;
    color: #fff
}

.btn.btn-gray2 {
    color: #c2c2c2;
    background-color: #777;
    border-color: #777
}

.btn.btn-gray2:hover,
.btn.btn-gray2:focus {
    color: #c2c2c2;
    background-color: #727272;
    border-color: #727272
}

.btn.btn-gray2.btn-border {
    background-color: transparent;
    color: #777;
    border-color: #c2c2c2
}

.btn.btn-gray2.btn-border:hover,
.btn.btn-gray2.btn-border:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    color: #fff
}

.btn.btn-gray3 {
    color: #fff;
    background-color: #c2c2c2;
    border-color: #c2c2c2
}

.btn.btn-gray3:hover,
.btn.btn-gray3:focus {
    color: #fff;
    background-color: #bdbdbd;
    border-color: #bdbdbd
}

.btn.btn-white {
    background-color: #fff;
    color: #333
}

.btn.btn-white:hover,
.btn.btn-white:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    color: #fff
}

.btn.btn-white.btn-border {
    color: #fff;
    background-color: transparent;
    border-color: #fff
}

.btn.btn-white.btn-border:hover,
.btn.btn-white.btn-border:focus {
    color: #fff;
    background-color: #f3dbce;
    border-color: #f3dbce
}

.btn.btn-dark {
    background-color: #fff;
    color: #555
}

.btn.btn-dark:hover,
.btn.btn-dark:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    color: #fff
}

.btn.btn-dark.btn-border {
    color: #555;
    background-color: transparent;
    border-color: #555
}

.btn.btn-dark.btn-border:hover,
.btn.btn-dark.btn-border:focus {
    color: #fff;
    background-color: #f3dbce;
    border-color: #f3dbce
}

.btn.btn-dark2.btn-border {
    color: #555;
    background-color: transparent;
    border-color: #555
}

.btn.btn-dark2.btn-border:hover,
.btn.btn-dark2.btn-border:focus {
    color: #f3dbce;
    background-color: transparent;
    border-color: #f3dbce;
    border-radius: 20px !important
}

.elements-page-btn .btn {
    margin-bottom: 4px
}

.elements-page-btn .btn-group .btn {
    margin-bottom: 0
}

.form-group {
    position: relative;
    margin-bottom: 15px
}

.form-group .form-control {
    margin-bottom: 0
}

.form-group.label-overlay {
    background-color: #fff
}

.form-group.label-overlay label {
    position: absolute;
    left: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-bottom: 0;
    z-index: 0;
    transition: all .4s ease;
    background-color: #fff;
    opacity: 1;
    visibility: visible
}

.form-group.label-overlay label.not-empty {
    opacity: 0;
    visibility: hidden
}

.form-group.label-overlay .form-control {
    position: relative;
    z-index: 1
}

.form-group.label-overlay .form-control:focus+label {
    opacity: 0;
    visibility: hidden
}

.form-group.label-overlay.textarea-group label {
    top: 18px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.form-control {
    height: 56px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #9b9b9b;
    border-color: #e1e1e1;
    padding: 16.5px 10px 13.5px;
    box-shadow: none;
    transition: all .4s;
    background-color: transparent
}

.form-control::-webkit-input-placeholder {
    color: #9b9b9b
}

.form-control::-moz-placeholder {
    color: #9b9b9b
}

.form-control:-ms-input-placeholder {
    color: #9b9b9b
}

.form-control::placeholder {
    color: #9b9b9b
}

.form-control.input-sm {
    height: 42px;
    font-size: 14px;
    padding: 10px 15px 9px;
    border-radius: 3px
}

.form-control.input-lg {
    height: 66px;
    font-size: 19px;
    padding: 20.5px 25px 18.5px;
    border-radius: 8px
}

.form-control:focus {
    border-color: #f3dbce;
    box-shadow: none
}

.input-group {
    margin-bottom: 15px;
    border-radius: 0
}

.input-group .input-group-addon {
    font-size: 17px;
    border-radius: 5px 0 0 5px;
    border-color: #e1e1e1;
    background-color: #f4f4f4;
    color: #888;
    width: 100px
}

.input-group .form-control:last-child {
    border-radius: 0 5px 5px 0
}

.input-group.input-group-sm .input-group-addon {
    font-size: 14px;
    height: 42px;
    padding: 3px 15px;
    border-radius: 3px 0 0 3px
}

.input-group.input-group-sm .form-control {
    font-size: 14px;
    height: 42px;
    padding: 10px 15px 9px
}

.input-group.input-group-sm .form-control:last-child {
    border-radius: 0 3px 3px 0
}

.input-group.input-group-lg .input-group-addon {
    height: auto;
    font-size: 19px;
    padding: 3px 25px;
    border-radius: 8px 0 0 8px
}

.input-group.input-group-lg .form-control {
    height: 66px;
    font-size: 19px;
    padding: 20.5px 25px 18.5px
}

.input-group.input-group-lg .form-control:last-child {
    border-radius: 0 8px 8px 0
}

.input-desc {
    font: 400 17px "Open Sans", sans-serif;
    color: #9b9b9b;
    margin-bottom: 7px
}

.input-desc i {
    margin-right: 10px
}

.input-icon {
    display: inline-block;
    height: 22px;
    width: 22px;
    vertical-align: -4px
}

.input-icon.input-user {
    background-position: 0 -2732px
}

.input-icon.input-user.gray {
    background-position: 0 -2710px
}

.input-icon.input-email {
    background-position: 0 -2424px
}

.input-icon.input-email.gray {
    background-position: 0 -2402px
}

.input-icon.input-phone {
    background-position: 0 -2556px
}

.input-icon.input-fax {
    background-position: 0 -2446px
}

.input-icon.input-suitcase {
    background-position: 0 -2688px
}

.input-icon.input-pin {
    background-position: 0 -2578px
}

.input-icon.input-city {
    background-position: 0 -2380px
}

.input-icon.input-postcode {
    background-position: 0 -2600px
}

.input-icon.input-flag {
    background-position: 0 -1808px
}

.input-icon.input-state {
    background-position: 0 -2622px
}

.input-icon.input-password {
    background-position: 0 -2534px
}

.input-icon.input-subject {
    background-position: 0 -2644px
}

.input-icon.input-subject2 {
    background-position: 0 -2666px
}

.input-icon.input-message {
    background-position: 0 -2512px
}

.input-icon.input-message.gray {
    background-position: 0 -2490px
}

.input-icon.input-calendar {
    background-position: 0 -2358px
}

.input-required {
    color: #4d4d4d
}

textarea.form-control {
    height: auto
}

textarea.form-control.min-height {
    min-height: 227px
}

.textarea-container {
    position: relative;
    width: 100%;
    padding-top: 56px
}

.textarea-container .input-group-addon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    text-align: left;
    border-right: 1px solid #e1e1e1;
    border-radius: 5px 5px 0 0;
    padding: 18.5px 20px
}

.textarea-container .form-control {
    border-radius: 0 0 5px 5px !important;
    border-top-color: transparent
}

.textarea-container .form-control:focus {
    border-top-color: #f3dbce
}

select.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("/Assets/images/select-icon.png");
    background-position: calc(100% - 19px) center;
    background-repeat: no-repeat
}

select.form-control.input-sm {
    height: 42px;
    line-height: 38px;
    padding-top: 2px;
    padding-bottom: 0
}

select.form-control.input-lg {
    height: 66px;
    line-height: 62px;
    padding-top: 2px;
    padding-bottom: 0
}

.checkbox,
.radio {
    margin: 0 0 30px;
    font: 400 17px/1.5 "Open Sans", sans-serif
}

.radio label.custom-radio-wrapper,
.checkbox label.custom-checkbox-wrapper {
    padding-left: 0
}

.input-group-addon.custom-checkbox-wrapper,
.input-group-addon.custom-radio-wrapper {
    line-height: 0
}

.custom-checkbox-container,
.custom-radio-container {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 1px solid #e1e1e1;
    position: relative;
    margin-right: 6px;
    border-radius: 2px;
    color: #777;
    margin-top: -3px;
    top: 6px
}

.custom-radio-container {
    border-radius: 50%
}

.custom-checkbox-container input[type="checkbox"] {
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    border: 1px solid #e1e1e1;
    left: 0;
    top: 0;
    z-index: 10
}

.custom-checkbox-container .custom-checkbox-icon {
    position: absolute;
    z-index: 9;
    width: 22px;
    height: 22px;
    border: 1px solid #f3dbce;
    left: -1px;
    top: -1px;
    color: #f3dbce;
    opacity: 0;
    filter: alpha(opacity=0);
    text-align: center;
    border-radius: 2px;
    font: 11px/1 Glyphicons Halflings
}

.custom-checkbox-container .custom-checkbox-icon:before {
    content: "\e013";
    line-height: 20px
}

.custom-radio-container input[type="radio"] {
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10
}

.custom-radio-container .custom-radio-icon {
    position: absolute;
    z-index: 9;
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 16px;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    margin-left: -8px;
    background-color: #f3dbce;
    border-radius: 50%;
    transition: all .4s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

.disabled .custom-checkbox-container .custom-checkbox-icon {
    display: none
}

.disabled .custom-radio-container .custom-radio-icon {
    background-color: transparent
}

.custom-checkbox-container input[type="checkbox"]:checked+.custom-checkbox-icon,
.custom-checkbox-container input[type="checkbox"]:checked+.custom-radio-icon,
.custom-radio-container input[type="radio"]:checked+.custom-checkbox-icon,
.custom-radio-container input[type="radio"]:checked+.custom-radio-icon {
    opacity: 1;
    filter: alpha(opacity=100)
}

.custom-radio-container input[type="radio"]:checked+.custom-radio-icon {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.disabled .custom-checkbox-container input[type="checkbox"]:checked+.custom-checkbox-icon {
    background-color: transparent
}

.custom-checkbox-wrapper.checkbox-inline,
.custom-checkbox-wrapper.radio-inline,
.custom-radio-wrapper.checkbox-inline,
.custom-radio-wrapper.radio-inline {
    padding-left: 0
}

.progress-container {
    position: relative;
    margin-bottom: 32px
}

@media(min-width:992px) {
    .progress-container {
        margin-bottom: 38px
    }
}

.progress-container .progress-title {
    color: #888;
    font: 400 17px/1.2 "Open Sans", sans-serif;
    margin-bottom: 4px
}

.progress {
    height: 20px;
    margin-bottom: 0;
    background-color: #e9e9e9;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible
}

.progress.progress-sm {
    height: 10px;
    background-color: #e1e1e1
}

.progress.progress-sm .progress-bar {
    background-color: #f3dbce
}

.progress .progress-bar {
    position: relative;
    box-shadow: none;
    background-color: #4d4d4d
}

.progress .progress-bar .progress-val {
    display: inline-block;
    min-width: 34px;
    text-align: center;
    color: #fff;
    background-color: #f3dbce;
    border-radius: 3px 3px 0 3px;
    position: absolute;
    right: -8px;
    bottom: 100%;
    z-index: 99;
    margin-bottom: 13px;
    font: 600 12px/1 "Open Sans", sans-serif;
    padding: 5px 0 3px
}

.progress .progress-bar .progress-val:after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #008bcc transparent transparent transparent;
    z-index: 0
}

.progress .progress-bar .progress-val.custom2 {
    background-color: #ed4e24
}

.progress .progress-bar .progress-val.custom2:after {
    border-color: #cd3811 transparent transparent transparent
}

.pagination-container {
    margin: 0 0 110px;
    padding: 0;
    font-family: "Open Sans", sans-serif
}

@media(min-width:992px) {
    .pagination-container {
        margin-bottom: 130px
    }
}

@media(min-width:1200px) {
    .pagination-container {
        margin-bottom: 160px
    }
}

@media(min-width:1440px) {
    .pagination-container {
        margin-bottom: 180px
    }
}

.pagination-container label,
.pagination-container .pagination {
    vertical-align: middle
}

.pagination-container label {
    font-weight: 400;
    font-size: 16px;
    line-height: 45px;
    color: #888;
    margin-bottom: 0
}

@media(max-width:767px) {
    .pagination-container label {
        display: none
    }
}

@media(min-width:768px) {
    .pagination-container .pagination {
        float: right
    }
}

.pagination-container:after {
    content: '';
    clear: both;
    display: table
}

.page-view-filter {
    display: none;
    float: right
}

@media(min-width:768px) {
    .page-view-filter {
        display: block;
        margin-right: 65px
    }
}

@media(min-width:992px) {
    .page-view-filter {
        margin-right: 80px
    }
}

.page-view-filter select.form-control {
    font-size: 16px;
    height: auto;
    padding: 12px 40px 9px 20px;
    background-position: calc(100% - 19px) center;
    margin: 0
}

@media(min-width:768px) {
    .page-view-filter select.form-control {
        min-width: 140px
    }
}

@media(min-width:992px) {
    .page-view-filter select.form-control {
        min-width: 170px
    }
}

.pagination {
    margin: 0
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    margin-right: 0
}

.pagination>li>a,
.pagination>li>span {
    float: left;
    padding: 13px 13px 9px;
    color: #888;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dfdfdf;
    transition: all .45s;
    margin-right: 10px;
    border-radius: 2px;
    min-width: 45px;
    text-align: center;
    transition: background-color .4s, border .4s, background-image .01s
}

.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
    color: #fff;
    background-color: #f3dbce;
    border-color: #f3dbce
}

.pagination>li>a.next-icon {
    width: 45px;
    height: 45px;
    background-position: 0 -5710px
}

.pagination>li>a.next-icon:hover,
.pagination>li>a.next-icon:focus {
    background-position: 0 -5624px
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-radius: 2px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    min-width: 35px;
    text-align: center
}

.pagination>li.active>a,
.pagination>li.active>a:hover,
.pagination>li.active>a:focus,
.pagination>li.active>span,
.pagination>li.active>span:hover,
.pagination>li.active>span:focus {
    color: #f3dbce;
    background-color: #fff;
    border-color: #f3dbce
}

.social-icons {
    font-size: 0;
    margin-left: -6px;
    margin-right: -6px
}

.social-icons .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin: 0 4px 8px;
    transition: background-color .4s, border .4s;
    background-color: #e3e3e3
}

@media(min-width:992px) {
    .social-icons .social-icon {
        margin: 0 6px 12px
    }
}

.social-icons .social-icon.share {
    background-position: 0 -4834px;
    background-color: #dcdcdc
}

.social-icons .social-icon.share:hover,
.social-icons .social-icon.share:focus {
    background-color: #b8b8b8
}

.social-icons .social-icon.facebook {
    background-position: 0 -4554px
}

.social-icons .social-icon.facebook:hover,
.social-icons .social-icon.facebook:focus {
    background-color: #3f83c3 !important;
    border-color: #3f83c3 !important
}

.social-icons .social-icon.twitter {
    background-position: 0 -5034px
}

.social-icons .social-icon.twitter:hover,
.social-icons .social-icon.twitter:focus {
    background-color: #27c0c8 !important;
    border-color: #27c0c8 !important
}

.social-icons .social-icon.googleplus {
    background-position: 0 -4954px
}

.social-icons .social-icon.googleplus:hover,
.social-icons .social-icon.googleplus:focus {
    background-color: #cb3e2d !important;
    border-color: #cb3e2d !important
}

.social-icons .social-icon.linkedin {
    background-position: 0 -4674px
}

.social-icons .social-icon.linkedin:hover,
.social-icons .social-icon.linkedin:focus {
    background-color: #4975b6 !important;
    border-color: #4975b6 !important
}

.social-icons .social-icon.pinterest {
    background-position: 0 -4474px
}

.social-icons .social-icon.pinterest:hover,
.social-icons .social-icon.pinterest:focus {
    background-color: #de2f2f !important;
    border-color: #de2f2f !important
}

.social-icons .social-icon.instagram {
    background-position: 0 -4594px
}

.social-icons .social-icon.instagram:hover,
.social-icons .social-icon.instagram:focus {
    background-color: #937f65 !important;
    border-color: #937f65 !important
}

.social-icons .social-icon.flickr {
    background-position: 0 -4394px
}

.social-icons .social-icon.flickr:hover,
.social-icons .social-icon.flickr:focus {
    background-color: #cd4084 !important;
    border-color: #cd4084 !important
}

.social-icons .social-icon.skype {
    background-position: 0 -4634px
}

.social-icons .social-icon.skype:hover,
.social-icons .social-icon.skype:focus {
    background-color: #42b2d2 !important;
    border-color: #42b2d2 !important
}

.social-icons .social-icon.email {
    background-position: 0 -4994px
}

.social-icons .social-icon.email:hover,
.social-icons .social-icon.email:focus {
    background-color: #8f6540 !important;
    border-color: #8f6540 !important
}

.social-icons.smaller {
    margin-left: -3px;
    margin-right: -3px
}

.social-icons.smaller .social-icon {
    width: 32px;
    height: 32px;
    margin: 0 3px 6px
}

.social-icons.smaller .social-icon.facebook {
    background-position: 0 -3768px
}

.social-icons.smaller .social-icon.twitter {
    background-position: 0 -3672px
}

.social-icons.smaller .social-icon.pinterest {
    background-position: 0 -3832px
}

.social-icons.smaller .social-icon.instagram {
    background-position: 0 -3576px
}

.social-icons.smaller .social-icon.flickr {
    background-position: 0 -3864px
}

.social-icons.smaller .social-icon.skype {
    background-position: 0 -3736px
}

.social-icons.smaller .social-icon.email {
    background-position: 0 -3928px
}

.social-icons.smaller.bordered .social-icon {
    border: 2px solid #fff;
    background-color: transparent
}

.social-icons.smaller.bordered .social-icon.facebook {
    background-position: 0 -3248px
}

.social-icons.smaller.bordered .social-icon.twitter {
    background-position: 0 -3136px
}

.social-icons.smaller.bordered .social-icon.pinterest {
    background-position: 0 -3276px
}

.social-icons.smaller.bordered .social-icon.instagram {
    background-position: 0 -3304px
}

.social-icons.smaller.bordered .social-icon.flickr {
    background-position: 0 -3220px
}

.social-icons.smaller.bordered .social-icon.skype {
    background-position: 0 -3164px
}

.social-icons.smaller.bordered .social-icon.email {
    background-position: 0 -3192px
}

.social-icons.colored .social-icon {
    transition: all .4s
}

.social-icons.colored .social-icon:hover,
.social-icons.colored .social-icon:focus {
    border-radius: 0
}

.social-icons.colored .social-icon.facebook {
    background-color: #3f83c3 !important
}

.social-icons.colored .social-icon.twitter {
    background-color: #27c0c8 !important
}

.social-icons.colored .social-icon.googleplus {
    background-color: #cb3e2d !important
}

.social-icons.colored .social-icon.linkedin {
    background-color: #4975b6 !important
}

.social-icons.colored .social-icon.pinterest {
    background-color: #de2f2f !important
}

.social-icons.colored .social-icon.instagram {
    background-color: #937f65 !important
}

.social-icons.colored .social-icon.flickr {
    background-color: #cd4084 !important
}

.social-icons.colored .social-icon.skype {
    background-color: #42b2d2 !important
}

.social-icons.colored .social-icon.email {
    background-color: #8f6540 !important
}

.transparent .social-icon {
    background-color: transparent
}

.transparent .social-icon.facebook {
    background-position: 0 -4434px
}

.transparent .social-icon.facebook:hover,
.transparent .social-icon.facebook:focus {
    background-color: #3f83c3;
    background-position: 0 -4554px
}

.transparent .social-icon.twitter {
    background-position: 0 -4754px
}

.transparent .social-icon.twitter:hover,
.transparent .social-icon.twitter:focus {
    background-color: #27c0c8;
    background-position: 0 -5034px
}

.transparent .social-icon.googleplus {
    background-position: 0 -5074px
}

.transparent .social-icon.googleplus:hover,
.transparent .social-icon.googleplus:focus {
    background-color: #cb3e2d;
    background-position: 0 -4954px
}

.transparent .social-icon.linkedin {
    background-position: 0 -4794px
}

.transparent .social-icon.linkedin:hover,
.transparent .social-icon.linkedin:focus {
    background-color: #4975b6;
    background-position: 0 -4674px
}

.transparent .social-icon.pinterest {
    background-position: 0 -4914px
}

.transparent .social-icon.pinterest:hover,
.transparent .social-icon.pinterest:focus {
    background-color: #de2f2f;
    background-position: 0 -4474px
}

.transparent .social-icon.instagram {
    background-position: 0 -4714px
}

.transparent .social-icon.instagram:hover,
.transparent .social-icon.instagram:focus {
    background-color: #937f65;
    background-position: 0 -4594px
}

.transparent .social-icon.flickr {
    background-position: 0 -4514px
}

.transparent .social-icon.flickr:hover,
.transparent .social-icon.flickr:focus {
    background-color: #cd4084;
    background-position: 0 -4394px
}

.transparent .social-icon.skype {
    background-position: 0 -4354px
}

.transparent .social-icon.skype:hover,
.transparent .social-icon.skype:focus {
    background-color: #42b2d2;
    background-position: 0 -4634px
}

.transparent .social-icon.email {
    background-position: 0 -4874px
}

.transparent .social-icon.email:hover,
.transparent .social-icon.email:focus {
    background-color: #8f6540;
    background-position: 0 -4994px
}

.social-icons.animated .social-icon:not(.share) {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    transition-delay: 0
}

.social-icons.animated .social-icon:nth-child(2) {
    transition-delay: .1s
}

.social-icons.animated .social-icon:nth-child(3) {
    transition-delay: .2s
}

.social-icons.animated .social-icon:nth-child(4) {
    transition-delay: .3s
}

.social-icons.animated .social-icon:nth-child(5) {
    transition-delay: .4s
}

.social-icons.animated .social-icon:nth-child(6) {
    transition-delay: .5s
}

.social-icons.animated .social-icon:nth-child(7) {
    transition-delay: .6s
}

.social-icons.animated .social-icon:nth-child(8) {
    transition-delay: .7s
}

.social-icons.animated.opened .social-icon {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible
}

.carousel .item img {
    max-width: none;
    width: 100%
}

.carousel .item .carousel-caption {
    font-size: 15px;
    text-shadow: none;
    padding-bottom: 20px;
    color: #444
}

.carousel-control {
    top: 50%;
    bottom: auto;
    width: 45px;
    height: 45px;
    margin-top: -22.5px;
    font-size: 18px;
    line-height: 45px;
    opacity: 1;
    border-radius: 50%;
    border: 2px solid #444;
    text-shadow: none;
    z-index: 190;
    transition: background-color .4s, border-color .4s
}

@media(max-width:480px) {
    .portfolio-item .carousel-control {
        display: none
    }
}

.carousel-control.light {
    border-color: #fff
}

.carousel-control.light.left {
    background-position: 0 -5538px
}

.carousel-control.light.right {
    background-position: 0 -5667px
}

.carousel-control:hover,
.carousel-control:focus {
    border-color: #f3dbce;
    background-color: #f3dbce
}

.carousel-control.left {
    left: 40px;
    background-position: 0 -5409px
}

.carousel-control.left:hover,
.carousel-control.left:focus {
    background-position: 0 -5538px
}

.carousel-control.right {
    right: 40px;
    background-position: 0 -5452px
}

.carousel-control.right:hover,
.carousel-control.right:focus {
    background-position: 0 -5667px
}

.carousel-control.big {
    width: 55px;
    height: 55px;
    margin-top: -27.5px
}

.carousel-control.big.light.left {
    background-position: 0 -6882px
}

.carousel-control.big.light.right {
    background-position: 0 -6670px
}

.carousel-control.big.left {
    left: 30px;
    background-position: 0 -6935px
}

.carousel-control.big.left:hover,
.carousel-control.big.left:focus {
    background-position: 0 -6882px
}

.carousel-control.big.right {
    right: 30px;
    background-position: 0 -6723px
}

.carousel-control.big.right:hover,
.carousel-control.big.right:focus {
    background-position: 0 -6670px
}

.carousel-indicators {
    bottom: 20px;
    line-height: 0
}

.carousel-indicators li {
    width: 11px;
    height: 11px;
    margin: 0 4px;
    border: 2px solid #444;
    background-color: transparent;
    transition: all .4s
}

.carousel-indicators li:hover,
.carousel-indicators li:focus {
    border-color: #f3dbce
}

.carousel-indicators li.active {
    width: 11px;
    height: 11px;
    margin: 0 4.5px;
    background-color: #f3dbce;
    border-color: #f3dbce
}

.tooltip {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .4px
}

.tooltip-inner {
    padding: 3px 8px;
    border-radius: 0;
    border-radius: 4px
}

.modal {
    background-color: rgba(0, 0, 0, 0.5)
}

@media(min-width:768px) {
    .modal-dialog {
        width: 480px
    }

    .modal-dialog.modal-sm {
        width: 360px
    }
}

.modal-content {
    border: 0;
    border-radius: 0
}

.modal-content .modal-header {
    background-color: #f3dbce;
    border: 0
}

.modal-content .modal-header .modal-title {
    color: #fff
}

.modal-content .modal-header .close {
    margin-top: 2px
}

.modal-body .form-group:last-child,
.modal-body .form-group:last-child .form-control {
    margin-bottom: 6px
}

.modal-footer {
    padding: 10px 15px
}

.header {
    background-color: #fff;
    position: relative;
}

.header .container-fluid:after {
    content: '';
    display: table;
    clear: both
}

.header.border-less {
    border-bottom-width: 1px
}

.header.border-gray {
    border-bottom-color: #e2e2e2
}

.header .dropdown .dropdown-menu {
    position: absolute;
    display: block;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    visibility: hidden;
    transition: all .4s;
    background: #fff;
    border-radius: 0;
    border: 1px solid #ebebeb;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
    margin-top: 0
}

.header .dropdown.open>.dropdown-menu,
.header .dropdown:focus .dropdown-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    overflow-y: auto;
    overflow-x: hidden
}

.logo {
    float: none;
    margin-top: 24px
}

@media(min-width:768px) {
    .logo {
        float: left
    }
}

@media(max-width:767px) {
    .logo {
        text-align: center
    }
}

.logo a {
    display: inline-block
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto
}

.icon-header {
    display: inline-block;
    height: 17px;
    width: 17px
}

.icon-header.icon-user {
    background-position: 0 -1559px
}

.icon-header.icon-cart {
    background-position: 0 -1202px
}

.icon-header.icon-globe {
    background-position: 0 -1236px
}

.dropdowns-container {
    font-size: 0;
    float: none
}

@media(min-width:768px) {
    .dropdowns-container {
        float: right
    }
}

@media(max-width:991px) {
    .dropdowns-container .dropdowns-wrapper {
        float: right
    }
}

.dropdowns-container:after {
    content: '';
    clear: both;
    display: table
}

.icon-dropdown {
    display: inline-block;
    height: 13px;
    width: 13px
}

.icon-dropdown.icon-language {
    background-position: 0 -507px
}

.icon-dropdown.icon-currency {
    background-position: 0 -546px
}

.icon-dropdown.icon-dropdown-user {
    background-position: 0 -286px
}

.icon-dropdown.icon-dropdown-wishlist {
    background-position: 0 -260px
}

.icon-dropdown.icon-dropdown-heart {
    background-position: 0 -338px
}

.icon-dropdown.icon-dropdown-check {
    background-position: 0 -364px
}

.icon-dropdown.icon-dropdown-lock {
    background-position: 0 -312px
}

.header-dropdown {
    display: inline-block;
    margin-top: 21px;
    font: 400 12px/1.5 "Fira Sans", sans-serif
}

@media(min-width:768px) {
    .header-dropdown {
        margin-top: 41px
    }
}

.header-dropdown:hover .icon-header.icon-user,
.header-dropdown:focus .icon-header.icon-user,
.header-dropdown>li:hover .icon-header.icon-user,
.header-dropdown>li:focus .icon-header.icon-user {
    background-position: 0 -1015px
}

.header-dropdown:hover .icon-header.icon-cart,
.header-dropdown:focus .icon-header.icon-cart,
.header-dropdown>li:hover .icon-header.icon-cart,
.header-dropdown>li:focus .icon-header.icon-cart {
    background-position: 0 -1168px
}

.header-dropdown:hover .icon-header.icon-globe,
.header-dropdown:focus .icon-header.icon-globe,
.header-dropdown>li:hover .icon-header.icon-globe,
.header-dropdown>li:focus .icon-header.icon-globe {
    background-position: 0 -1219px
}

.header-dropdown+.header-dropdown {
    margin-left: 10px
}

@media(min-width:992px) {
    .header-dropdown+.header-dropdown {
        margin-left: 10px
    }
}

@media(min-width:1200px) {
    .header-dropdown+.header-dropdown {
        margin-left: 20px
    }
}

.header-dropdown>li>a,
.header-dropdown>a {
    display: inline-block;
    padding: 0 0 14px;
    min-width: 20px;
    text-align: right
}

@media(min-width:768px) {

    .header-dropdown>li>a,
    .header-dropdown>a {
        padding-bottom: 36px
    }
}

.header-dropdown>li>a>span,
.header-dropdown>a>span {
    display: none
}

.header-dropdown li {
    position: relative;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase
}

.header-dropdown li:hover>ul,
.header-dropdown li:focus>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.header-dropdown ul {
    position: absolute;
    right: 0;
    top: 100%;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    visibility: hidden;
    transition: all .4s;
    background-color: #fff;
    min-width: 170px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    z-index: 999
}

.header-dropdown ul li img,
.header-dropdown ul li i,
.header-dropdown ul li span {
    display: inline-block;
    vertical-align: middle
}

.header-dropdown ul li img {
    max-width: 100%;
    height: auto;
    margin-right: 7px
}

.header-dropdown ul li i {
    margin-right: 7px
}

.header-dropdown ul li+li {
    margin-top: -1px
}

.header-dropdown ul li a {
    display: block;
    color: #666;
    border: 1px solid #e2e2e2;
    padding: 12px 20px 10px
}

.header-dropdown ul li:hover>a,
.header-dropdown ul li a:hover,
.header-dropdown ul li a:focus {
    color: #fff;
    background-color: #f3dbce;
    border-color: #f3dbce
}

.header-dropdown ul li:hover>a .icon-dropdown.icon-language,
.header-dropdown ul li a:hover .icon-dropdown.icon-language,
.header-dropdown ul li a:focus .icon-dropdown.icon-language {
    background-position: 0 -520px
}

.header-dropdown ul li:hover>a .icon-dropdown.icon-currency,
.header-dropdown ul li a:hover .icon-dropdown.icon-currency,
.header-dropdown ul li a:focus .icon-dropdown.icon-currency {
    background-position: 0 -559px
}

.header-dropdown ul li:hover>a .icon-dropdown.icon-dropdown-user,
.header-dropdown ul li a:hover .icon-dropdown.icon-dropdown-user,
.header-dropdown ul li a:focus .icon-dropdown.icon-dropdown-user {
    background-position: 0 -299px
}

.header-dropdown ul li:hover>a .icon-dropdown.icon-dropdown-wishlist,
.header-dropdown ul li a:hover .icon-dropdown.icon-dropdown-wishlist,
.header-dropdown ul li a:focus .icon-dropdown.icon-dropdown-wishlist {
    background-position: 0 -273px
}

.header-dropdown ul li:hover>a .icon-dropdown.icon-dropdown-heart,
.header-dropdown ul li a:hover .icon-dropdown.icon-dropdown-heart,
.header-dropdown ul li a:focus .icon-dropdown.icon-dropdown-heart {
    background-position: 0 -351px
}

.header-dropdown ul li:hover>a .icon-dropdown.icon-dropdown-check,
.header-dropdown ul li a:hover .icon-dropdown.icon-dropdown-check,
.header-dropdown ul li a:focus .icon-dropdown.icon-dropdown-check {
    background-position: 0 -416px
}

.header-dropdown ul li:hover>a .icon-dropdown.icon-dropdown-lock,
.header-dropdown ul li a:hover .icon-dropdown.icon-dropdown-lock,
.header-dropdown ul li a:focus .icon-dropdown.icon-dropdown-lock {
    background-position: 0 -325px
}

.header-dropdown ul li:last-child {
    border-bottom: 0
}

.header-dropdown ul ul {
    right: 100%;
    margin-right: -1px;
    top: 0
}

@media(max-width:767px) {
    .header-dropdown ul ul {
        right: 0;
        top: 100%;
        margin-right: 0
    }
}

.header-dropdown.account-dropdown ul {
    min-width: 200px;
    right: 0;
    margin-right: -50px
}

@media(max-width:767px) {
    .header-dropdown.cart-dropdown {
        position: static
    }
}

.header-dropdown.cart-dropdown>a {
    position: relative
}

.header-dropdown.cart-dropdown>a .dcart-total-count {
    display: block;
    opacity: 1 !important;
    visibility: visible;
    transition: all .4s;
    min-width: 14px;
    position: absolute;
    right: -7px;
    top: 6px;
    border-radius: 50%;
    color: #fff;
    background-color: red;
    text-align: center;
    font: 700 10px/14px "Fira Sans", Arial, sans-serif
}

.header-dropdown.cart-dropdown.open>a .dcart-total-count,
.header-dropdown.cart-dropdown:hover>a .dcart-total-count,
.header-dropdown.cart-dropdown:focus>a .dcart-total-count {
    opacity: 1;
    visibility: visible
}

.header-dropdown.cart-dropdown .dropdown-menu {
    left: 0;
    right: 0;
    padding: 17px 19px 29px;
    width: auto;
    color: #777
}

@media(min-width:768px) {
    .header-dropdown.cart-dropdown .dropdown-menu {
        left: auto;
        right: -50px;
        width: 350px
    }
}

@media(min-width:992px) {
    .header-dropdown.cart-dropdown .dropdown-menu {
        right: -50px
    }
}

@media(min-width:1200px) {
    .header-dropdown.cart-dropdown .dropdown-menu {
        right: -37px
    }
}

.header-dropdown.cart-dropdown .dropdown-menu>p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px
}

.header-dropdown.cart-dropdown .dropdown-menu>p span {
    font-weight: 500
}

.header-dropdown.cart-dropdown .dcart-products {
    margin-bottom: 30px
}

.header-dropdown.cart-dropdown .product.product-sm {
    position: relative;
    padding: 0;
    margin-bottom: 20px;
    border: 0
}

.header-dropdown.cart-dropdown .product.product-sm figure {
    max-width: 90px
}

.header-dropdown.cart-dropdown .product.product-sm figure img {
    width: 90px !important;
    height: auto !important
}

.header-dropdown.cart-dropdown .product.product-sm .product-meta {
    padding-left: 110px
}

.header-dropdown.cart-dropdown .product.product-sm .product-title {
    font-size: 13px;
    line-height: 1.23;
    max-width: 150px;
    margin-bottom: 7px
}

.header-dropdown.cart-dropdown .product.product-sm .product-price-container {
    margin-bottom: 0;
    color: #cbcbcb;
    font-family: Arial, sans-serif
}

.header-dropdown.cart-dropdown .product.product-sm .product-price-container .product-old-price,
.header-dropdown.cart-dropdown .product.product-sm .product-price-container .product-price {
    font-size: 15px;
    font-weight: 700
}

.header-dropdown.cart-dropdown .product.product-sm .product-price-container .product-old-price+.product-price {
    margin-top: 4px
}

.header-dropdown.cart-dropdown .product.product-sm .delete-btn {
    position: absolute;
    right: -2px;
    top: 0
}

.header-dropdown.cart-dropdown .product.product-sm.last-child {
    margin-bottom: 0
}

.header-dropdown.cart-dropdown .dcart-action-container:after {
    content: '';
    display: table;
    clear: both
}

.header-dropdown.cart-dropdown .dcart-action-info {
    padding-top: 4px;
    float: left;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase
}

.header-dropdown.cart-dropdown .dcart-action-info p {
    margin-bottom: 4px;
    letter-spacing: .04em
}

.header-dropdown.cart-dropdown .dcart-action-info p span {
    font-weight: 700;
    font-family: Arial, sans-serif
}

.header-dropdown.cart-dropdown .dcart-action-info p:last-child {
    margin-bottom: 0
}

.header-dropdown.cart-dropdown .dcart-action {
    float: right;
    width: 120px
}

.header-dropdown.cart-dropdown .dcart-action .btn {
    display: block;
    font-size: 13px
}

.header-dropdown.cart-dropdown .dcart-action .btn+.btn {
    margin-top: 6px
}

.header-search-container {
    float: none;
    font-family: "Open Sans", sans-serif;
    margin-top: 22px;
    width: 100%
}

@media(min-width:768px) {
    .header-search-container {
        float: left;
        margin-top: 29px;
        margin-left: 30px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .header-search-container {
        width: 300px
    }
}

@media(min-width:992px) {
    .header-search-container {
        width: auto
    }
}

@media(min-width:1600px) {
    .header-search-container {
        width: 380px;
        margin-left: 50px
    }
}

@media(min-width:1920px) {
    .header-search-container {
        margin-left: 140px
    }
}

.header-search-container .header-search-form {
    position: relative;
    border-radius: 20px;
    border: 2px solid #e4e4e4;
    opacity: .8
}

.header-search-container .icon-search-arrow {
    display: inline-block;
    width: 10px;
    height: 6px;
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: -3px;
    background-position: 0 0
}

@media(min-width:992px) {
    .header-search-container .icon-search-arrow {
        right: 20px
    }
}

.header-search-container .dropdown.search-dropdown {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .025em;
    margin: 0;
    position: absolute;
    left: -3px;
    top: -2px
}

.header-search-container .dropdown.search-dropdown>a {
    display: inline-block;
    position: relative;
    border-radius: 20px 0 0 20px;
    background-color: #4d4d4d;
    padding: 13px 20px 10.5px 15px;
    color: #fff;
    font-size: 11px;
    line-height: 1.5;
    width: 140px;
    font-weight: 600;
    transition: all .4s
}

@media(min-width:992px) {
    .header-search-container .dropdown.search-dropdown>a {
        width: 176px;
        font-size: 13px;
        padding: 11px 30px 9px 22px
    }
}

.header-search-container .dropdown.search-dropdown .dropdown-menu {
    width: 100%;
    border: 1px solid #4d4d4d;
    font-size: 11px;
    padding: 10px 20px 7px;
    box-shadow: none;
    min-width: 140px
}

.header-search-container .dropdown.search-dropdown .dropdown-menu li {
    margin-bottom: 0
}

.header-search-container .dropdown.search-dropdown .dropdown-menu li:last-child {
    margin-bottom: 0
}

.header-search-container .dropdown.search-dropdown .dropdown-menu li a {
    color: #777;
    padding: 4px 0;
    font-weight: 500
}

.header-search-container .dropdown.search-dropdown .dropdown-menu li a:hover,
.header-search-container .dropdown.search-dropdown .dropdown-menu li a:focus {
    color: #4d4d4d;
    background-color: transparent
}

.header-search-container .dropdown.search-dropdown.open>a,
.header-search-container .dropdown.search-dropdown:hover>a,
.header-search-container .dropdown.search-dropdown:focus>a {
    border-radius: 20px 0 0 0
}

.header-search-container .form-control {
    height: 36px;
    font-size: 13px;
    padding: 10.5px 66px 7.5px 150px;
    color: #666;
    border: 0;
    margin: 0;
    border-radius: 20px;
    background-color: #fff
}

@media(min-width:992px) {
    .header-search-container .form-control {
        padding-left: 190px
    }
}

.header-search-container .form-control::-webkit-input-placeholder {
    color: #666
}

.header-search-container .form-control::-moz-placeholder {
    color: #666
}

.header-search-container .form-control:-ms-input-placeholder {
    color: #666
}

.header-search-container .form-control::placeholder {
    color: #666
}

.header-search-container .icon-header-search {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-position: 0 -659px
}

.header-search-container .btn {
    position: absolute;
    right: -3px;
    top: -2px;
    background-color: transparent;
    border: 0;
    width: 56px;
    text-align: center;
    padding: 12px 10px 9px;
    border-radius: 20px;
    line-height: 1;
    background-color:whitesmoke !important;

}

.header-search-container .btn:hover,
.header-search-container .btn:focus {
    background-color: #4d4d4d;
    border-radius: 20px !important
}

.header-search-container .btn:hover .icon-header-search,
.header-search-container .btn:focus .icon-header-search {
    background-position: 0 -644px
}

.header-search-container .search-dropdown-btn {
    display: none;
    padding: 10px 10px 6px;
    line-height: 1
}

.header-search-container .search-dropdown-btn .icon-header-search {
    background-position: 0 -614px
}

@media(min-width:992px) and (max-width:1599px) {
    .header-search-container .search-dropdown-btn {
        display: block
    }
}

.header-search-container.search-dropdown-fix {
    position: relative
}

@media(min-width:992px) and (max-width:1599px) {
    .header-search-container.search-dropdown-fix {
        width: auto;
        margin-left: 50px;
        margin-top: 31px
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .header-search-container.search-dropdown-fix {
        margin-left: 10px
    }
}

@media(min-width:992px) and (max-width:1599px) {
    .header-search-container.search-dropdown-fix form {
        width: 380px;
        position: absolute;
        right: -20px;
        top: 100%;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
        transition: all .4s;
        margin-top: 8px;
        z-index: 999;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1)
    }

    .header-search-container.search-dropdown-fix form:before {
        content: '';
        position: absolute;
        top: -10px;
        right: 28px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 6px 9px 6px;
        border-color: transparent transparent #e4e4e4 transparent
    }
}

@media(min-width:992px) and (max-width:1599px) {
    .header-search-container.search-dropdown-fix.open form {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.menu-container {
    float: left
}

@media(min-width:992px) {
    .menu-container {
        margin-left: 20px
    }
}

@media(min-width:1280px) {
    .menu-container {
        margin-left: 50px
    }
}

@media(min-width:1600px) {
    .menu-container {
        margin-left: 50px
    }
}

@media(min-width:1920px) {
    .menu-container {
        margin-left: 178px
    }
}

.menu {
    font-family: "Open Sans", sans-serif;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .035em;
    display: none
}

@media(min-width:992px) {
    .menu {
        display: block
    }
}

.menu:after {
    content: '';
    display: table;
    clear: both
}

.menu>li {
    float: left;
    padding: 32.5px 0
}

.menu>li+li {
    margin-left: 10px
}

@media(min-width:1200px) {
    .menu>li+li {
        margin-left: 0
    }
}

@media(min-width:1600px) {
    .menu>li+li {
        margin-left: 20px
    }
}

@media(min-width:1920px) {
    .menu>li+li {
        margin-left: 25px
    }
}

.menu>li>a {
    display: block;
    color: #555;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 12px 5px;
    border-radius: 20px
}

.menu>li>a>span {
    position: relative
}

@media(min-width:992px) and (max-width:1199px) {
    .menu>li>a {
        font-size: 14px;
        padding-top: 8.5px;
        padding-bottom: 5.5px
    }
}

@media(min-width:1200px) {
    .menu>li>a {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media(min-width:1920px) {
    .menu>li>a {
        padding-left: 25px;
        padding-right: 25px
    }
}

.menu>li.open>a {
    color: #fff;
    background-color: #f3dbce
}

.menu li {
    position: relative
}

.menu li li {
    border-bottom: 1px solid #e2e2e2
}

.menu li li:last-child {
    border-bottom: 0
}

.menu li li a {
    display: block;
    font: 400 12px/1.5 "Open Sans", sans-serif;
    padding: 12px 20px 10px;
    font-weight: 600;
    color: #666;
    margin: 0 -1px
}

.menu li li.open>a {
    background-color: #f3dbce;
    color: #fff
}

.menu li .reverse ul {
    left: auto;
    right: 100%
}

.menu ul,
.menu .megamenu {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    z-index: 1000
}

.menu ul {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e2e2;
    background-color: #fff;
    min-width: 200px
}

.menu ul ul {
    top: -1px;
    left: 100%
}

.menu .reverse ul,
.menu .reverse .megamenu {
    left: auto;
    right: 0
}

.menu .reverse ul ul {
    left: auto;
    right: 100%
}

.menu li.open>ul,
.menu li.open>.megamenu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.mmenu-container {
    position: static !important
}

.mmenu-container .row {
    margin-left: -15px;
    margin-right: -15px
}

@media(min-width:768px) {
    .mmenu-container .row+.row {
        margin-top: 25px
    }
}

@media(min-width:992px) {
    .mmenu-container .row+.row {
        margin-top: 40px
    }
}

.mmenu-container .col-5 {
    padding: 0 15px
}

@media(min-width:768px) {
    .mmenu-container .col-5 {
        float: left;
        width: 33.3%
    }
}

@media(min-width:992px) {
    .mmenu-container .col-5 {
        width: 20%
    }
}

.megamenu {
    left: 0;
    right: 0;
    background-color: #f9f9f9;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 25px 0 10px
}

@media(min-width:768px) {
    .megamenu {
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
        padding: 48px 0 40px
    }
}

.megamenu .mmenu-title {
    font: 500 15px/1 "Fira Sans", Arial, sans-serif;
    color: #777;
    margin-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: .045em
}

.megamenu ul {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    border: 0;
    box-shadow: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    visibility: inherit;
    background-color: transparent
}

.megamenu ul li {
    border: 0;
    margin-bottom: 4px
}

.megamenu ul li a {
    background-color: transparent;
    color: #777;
    padding: 5px 0;
    font-weight: 400
}

.megamenu ul li a>span {
    position: relative
}

.megamenu ul li.open a {
    color: #f3dbce;
    background-color: transparent
}

.megamenu .banner {
    margin-bottom: 10px
}

@media(min-width:768px) {
    .megamenu .banner {
        margin-bottom: 0
    }
}

.tip {
    font: 500 9px/1 "Open Sans", sans-serif;
    background-color: #f3dbce;
    color: #fff;
    position: absolute;
    left: 100%;
    bottom: 100%;
    margin-left: 4px;
    margin-bottom: -9px;
    text-transform: uppercase;
    padding: 5px 5px 1px;
    letter-spacing: .035em;
    border-radius: 3px;
    z-index: 500
}

.tip.hot {
    background-color: #ed4e24
}

.navbar-toggle {
    position: static;
    float: left;
    padding: 9px 0;
    margin-top: 8px;
    margin-right: 15px;
    margin-top: 11px;
    margin-bottom: 11px;
    border: 0;
    border-radius: 0
}

.navbar-toggle .toggle-wrapper {
    position: relative;
    display: block
}

.navbar-toggle .toggle-text {
    font: 600 16px/1 "Open Sans", sans-serif;
    text-transform: uppercase;
    position: absolute;
    left: 100%;
    top: 50%;
    margin-left: 10px;
    margin-top: -7px;
    display: none;
    letter-spacing: .035em;
    color: #fff
}

.navbar-toggle .icon-bar {
    position: relative;
    width: 31px;
    height: 4px;
    border-radius: 0;
    background-color: #666;
    transition: all .4s
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px
}

.navbar-toggle:hover .icon-bar,
.navbar-toggle:focus .icon-bar,
.navbar-toggle.open .icon-bar {
    background-color: #f3dbce
}

@media(max-width:767px) {
    .navbar-toggle.open:after {
        content: '';
        position: absolute;
        bottom: 7px;
        left: 0;
        z-index: 10;
        display: block;
        height: 44px;
        right: 0;
        background-color: #f3dbce
    }
}

@media(max-width:767px) {
    .navbar-toggle.open .toggle-text {
        display: block;
        z-index: 19
    }
}

@media(max-width:767px) {
    .navbar-toggle.open .icon-bar {
        background-color: #fff;
        z-index: 19
    }
}

@media(min-width:768px) {
    .navbar-toggle {
        display: inline-block;
        margin-top: 32px;
        margin-right: 10px
    }

    .navbar-toggle>.toggle-text {
        display: none
    }
}

@media(min-width:992px) {
    .navbar-toggle {
        display: none
    }
}

.mobile-menu {
    border: 1px solid #e2e2e2;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .4s;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
    overflow-x: hidden
}

@media(max-width:767px) {
    .mobile-menu {
        margin-top: -7px
    }
}

.mobile-menu>li {
    border-bottom: 1px solid #e2e2e2;
    background-color: #f9f9f9
}

.mobile-menu>li>a {
    color: #555;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 20px 9px
}

.mobile-menu>li>a:hover,
.mobile-menu>li>a:focus {
    color: #f3dbce
}

.mobile-menu>li:last-child {
    border-bottom: 0
}

.mobile-menu li:not(.mmenu-container) li {
    border-bottom: 1px solid #f1f1f1;
    background-color: #fcfcfc
}

.mobile-menu li:not(.mmenu-container) li a {
    font-size: 14px;
    font-weight: 600;
    padding: 11px 20px 8px 30px
}

.mobile-menu li:not(.mmenu-container) li:last-child {
    border-bottom: 0
}

.mobile-menu li:not(.mmenu-container) li li {
    padding-left: 10px;
    background-color: #fff
}

.mobile-menu li:not(.mmenu-container) li li a {
    font-size: 13px;
    font-weight: 500
}

.mobile-menu li {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase
}

.mobile-menu li ul {
    padding: 0
}

.mobile-menu li ul,
.mobile-menu li .megamenu {
    background-color: #fff;
    display: none;
    border-top: 1px solid #e2e2e2;
    box-shadow: none
}

.mobile-menu li li {
    font-size: 12px
}

.mobile-menu li a {
    display: inline-block;
    color: #777
}

.mobile-menu li a:hover,
.mobile-menu li a:focus {
    color: #f3dbce
}

.mobile-menu li.open>ul,
.mobile-menu li.open>.megamenu {
    display: block
}

.mobile-menu .megamenu {
    border: 0
}

.mobile-menu .megamenu ul {
    display: block;
    margin-bottom: 20px;
    border-top: 0;
    padding-left: 15px
}

.mobile-menu .megamenu .mmenu-title {
    margin-bottom: 8px;
    font-size: 14px;
    padding-left: 15px
}

.mobile-menu .megamenu a {
    padding: 4px 0
}

.mobile-menu .megamenu a:hover,
.mobile-menu .megamenu a:focus {
    color: #f3dbce
}

.mobile-menu .container {
    width: 100%
}

.mobile-menu.open {
    display: block
}

@media(min-width:992px) {

    .mobile-menu,
    .mobile-menu.open {
        display: none
    }
}

.mobile-menu .banner img {
    width: auto;
    max-width: 100%
}

@-webkit-keyframes fixedHeader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-80px);
        transform: translateY(-80px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fixedHeader {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-80px);
        transform: translateY(-80px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.header.sticky-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-animation-name: fixedHeader;
    animation-name: fixedHeader;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    border-bottom-width: 0
}

.header.sticky-header.fixed .logo {
    margin-top: 9px
}

.header.sticky-header.fixed .menu>li {
    padding: 14px 0
}

.header.sticky-header.fixed .header-top {
    display: none
}

.header.sticky-header.fixed .header-dropdown {
    margin-top: 23px
}

.header.sticky-header.fixed .header-dropdown>li>a,
.header.sticky-header.fixed .header-dropdown>a {
    padding-bottom: 17px
}

@media(min-width:992px) {
    .header.sticky-header.fixed .header-search-container {
        margin-top: 13px
    }
}

@media(min-width:992px) and (max-width:1599px) {
    .header.sticky-header.fixed .header-search-container.search-dropdown-fix {
        margin-top: 14px
    }
}

.header-inner {
    position: relative
}

.header-top:after {
    content: '';
    display: table;
    clear: both
}

.top-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-right: 3px;
    margin-top: -2px
}

.top-icon.top-icon-user {
    background-position: 0 -143px
}

.top-icon.top-icon-check {
    background-position: 0 -390px
}

.top-icon.top-icon-wishlist {
    background-position: 0 -182px
}

.top-icon.top-icon-creditcard {
    background-position: 0 -377px
}

.top-icon.top-icon-flag {
    background-position: 0 -455px
}

.top-dropdowns {
    float: right;
    font-family: "Open Sans", sans-serif;
    font-size: 0;
    margin-bottom: -1px;
    margin-right: -20px
}

@media(min-width:992px) {
    .top-dropdowns {
        margin-right: -40px
    }
}

.top-dropdowns>li {
    display: inline-block
}

.top-dropdowns>li>a {
    display: block;
    font-weight: 400;
    padding: 8px 15px 4px;
    font-size: 14px;
    color: #777
}

@media(min-width:768px) {
    .top-dropdowns>li>a {
        min-width: 120px;
        padding-left: 15px;
        padding-right: 15px
    }
}

@media(min-width:992px) {
    .top-dropdowns>li>a {
        min-width: 140px;
        padding-left: 21px;
        padding-right: 21px
    }
}

@media(max-width:360px) {
    .top-dropdowns>li>a i {
        display: none
    }
}

.top-dropdowns>li:hover>a,
.top-dropdowns>li:focus>a {
    color: #fff;
    background-color: #f3dbce
}

.top-dropdowns>li:hover .top-icon.top-icon-user,
.top-dropdowns>li:focus .top-icon.top-icon-user {
    background-position: 0 -130px
}

.top-dropdowns>li:hover .top-icon.top-icon-lock,
.top-dropdowns>li:focus .top-icon.top-icon-lock {
    background-position: 0 -117px
}

.top-dropdowns>li:hover .top-icon.top-icon-heart,
.top-dropdowns>li:focus .top-icon.top-icon-heart {
    background-position: 0 -481px
}

.top-dropdowns>li:hover .top-icon.top-icon-check,
.top-dropdowns>li:focus .top-icon.top-icon-check {
    background-position: 0 -533px
}

.top-dropdowns>li:hover .top-icon.top-icon-wishlist,
.top-dropdowns>li:focus .top-icon.top-icon-wishlist {
    background-position: 0 -169px
}

.top-dropdowns>li:hover .top-icon.top-icon-creditcard,
.top-dropdowns>li:focus .top-icon.top-icon-creditcard {
    background-position: 0 -403px
}

.top-dropdowns>li:hover .top-icon.top-icon-flag,
.top-dropdowns>li:focus .top-icon.top-icon-flag {
    background-position: 0 -429px
}

.top-dropdowns li {
    position: relative
}

.top-dropdowns li li {
    border: 1px solid #e6dfd1;
    background-color: #fbfaf4;
    margin-bottom: -1px
}

.top-dropdowns li li:first-child {
    border-top: 0
}

.top-dropdowns li li a {
    display: block;
    font-size: 12px;
    color: #666;
    padding: 9.5px 0 6.5px 19px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 -1px
}

.top-dropdowns li li a img {
    margin-right: 4px
}

@media(max-width:767px) {
    .top-dropdowns li li a {
        padding-left: 10px;
        font-size: 11px
    }
}

.top-dropdowns li li:hover,
.top-dropdowns li li:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.top-dropdowns li li:hover a,
.top-dropdowns li li:focus a {
    color: #fff
}

.top-dropdowns li ul {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    transition: all .4s;
    visibility: hidden;
    opacity: 0;
    z-index: 990;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1)
}

.top-dropdowns li:hover>ul,
.top-dropdowns li:focus>ul {
    opacity: 1;
    visibility: visible
}

.dropdown.login-dropdown .dropdown-menu {
    width: 329px;
    padding: 30px 20px 30px;
    text-align: center
}

@media(min-width:1600px) {
    .dropdown.login-dropdown .dropdown-menu {
        width: 400px;
        padding: 38px 30px 40px
    }
}

.dropdown.login-dropdown .dropdown-menu form {
    display: none
}

.dropdown.login-dropdown .dropdown-menu .dropdown-title {
    font: 600 21px/1 "Open Sans", sans-serif;
    color: #555;
    letter-spacing: .04em;
    margin-bottom: 18px;
    text-transform: uppercase
}

@media(min-width:1200px) {
    .dropdown.login-dropdown .dropdown-menu .dropdown-title {
        font-size: 23px
    }
}

@media(min-width:1600px) {
    .dropdown.login-dropdown .dropdown-menu .dropdown-title {
        font-size: 25px
    }
}

.dropdown.login-dropdown .dropdown-menu .form-group {
    margin-bottom: 10px
}

.dropdown.login-dropdown .dropdown-menu .form-group:last-of-type {
    margin-bottom: 19px
}

@media(min-width:1200px) {
    .dropdown.login-dropdown .dropdown-menu .form-group:last-of-type {
        margin-bottom: 28px
    }
}

.dropdown.login-dropdown .dropdown-menu .form-control {
    font-size: 16px;
    height: 50px;
    padding: 14.5px 20px 11.5px
}

.dropdown.login-dropdown .dropdown-menu .input-desc {
    font-size: 16px
}

.dropdown.login-dropdown .dropdown-menu .input-desc i {
    margin-bottom: -2px
}

.dropdown.login-dropdown .dropdown-menu .btn {
    min-width: 200px
}

.dropdown.login-dropdown.open>.dropdown-menu form,
.dropdown.login-dropdown:hover .dropdown-menu form,
.dropdown.login-dropdown:focus .dropdown-menu form {
    display: block
}

@media(min-width:768px) {
    .header-bottom .col-sm-4:after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        display: block;
        width: 1px;
        height: 22px;
        margin-top: -11px;
        background-color: #dedede
    }
}

.header-bottom .col-sm-4:last-child:after {
    display: none
}

.header-bottom .row {
    margin-left: -20px;
    margin-right: -20px
}

@media(max-width:767px) {
    .header-bottom .info-box-container {
        border-bottom: 1px solid #e6e6e6;
        background-color: #f9f9f9
    }
}

.header-bottom .info-box {
    text-align: center;
    font-family: "Open Sans", sans-serif;
    letter-spacing: .05em;
    font-size: 15px;
    font-weight: 500;
    color: #a9a9a9;
    line-height: 1.3;
    margin-bottom: 0;
    padding: 12px 0 6px;
    max-width: none
}

@media(min-width:768px) and (max-width:992px) {
    .header-bottom .info-box {
        font-size: 13px
    }
}

.header-bottom .info-box h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
    color: #666;
    letter-spacing: .06em;
    text-transform: uppercase
}

@media(max-width:991px) {
    .header-bottom .info-box h5 {
        font-size: 12px
    }
}

@media(max-width:767px) {
    .header-bottom .info-box h5 {
        font-size: 13px
    }
}

.header-bottom .info-box p {
    margin-bottom: 0
}

.header.header2 {
    border-bottom: 1px solid #dedede
}

.header.header2 .header-top {
    border-bottom: 1px solid #dedede
}

.header.header2 .header-inner {
    border-bottom: 1px solid #dedede;
    background-color: #fff
}

.header.header2 .dropdown .dropdown-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

@media(max-width:767px) {
    .header.header2 .dropdowns-container .dropdowns-wrapper {
        border-top: 1px solid #e6e6e6;
        float: none;
        margin-left: -20px;
        margin-right: -20px
    }
}

.header.header2 .header-dropdown {
    margin-top: 0;
    vertical-align: middle
}

@media(max-width:767px) {
    .header.header2 .header-dropdown {
        width: 50%
    }
}

.header.header2 .header-dropdown ul {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.header.header2 .header-dropdown+.header-dropdown {
    margin-left: 0
}

.header.header2 .header-dropdown .dropdown-menu {
    border-color: #dedede
}

.header.header2 .header-dropdown .icon-header {
    margin-top: -2px
}

.header.header2 .header-dropdown .icon-header.icon-cart {
    background-position: 0 -1185px
}

.header.header2 .header-dropdown .icon-header.icon-lock {
    background-position: 0 -930px
}

.header.header2 .header-dropdown>a {
    color: #666;
    font-size: 0;
    padding: 16px 10px 13px 8px;
    border-left: 1px solid #dedede
}

@media(min-width:768px) {
    .header.header2 .header-dropdown>a {
        padding: 30px 20px 27px 17px
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header2 .header-dropdown>a {
        padding: 31.5px 10px 28.5px 8px
    }
}

@media(min-width:1200px) {
    .header.header2 .header-dropdown>a {
        padding-left: 18px;
        padding-right: 20px
    }
}

@media(min-width:1600px) {
    .header.header2 .header-dropdown>a {
        padding-left: 38px;
        padding-right: 40px
    }
}

.header.header2 .header-dropdown>a>span {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.header.header2 .header-dropdown>a>span:first-child {
    margin-right: 9px;
    margin-top: -2px
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header2 .header-dropdown>a>span:first-child {
        margin-right: 4px
    }
}

.header.header2 .header-dropdown>a .dropdown-text {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header2 .header-dropdown>a .dropdown-text {
        font-size: 12px
    }
}

@media(min-width:768px) {
    .header.header2 .header-dropdown.cart-dropdown>a {
        padding-right: 0
    }
}

@media(max-width:767px) {
    .header.header2 .header-dropdown.cart-dropdown>a {
        display: block;
        text-align: center
    }
}

.header.header2 .header-dropdown.cart-dropdown .dropdown-menu {
    right: 0
}

@media(max-width:767px) {
    .header.header2 .header-dropdown.login-dropdown {
        position: static;
        width: auto
    }
}

@media(max-width:767px) {
    .header.header2 .header-dropdown.login-dropdown>a {
        border-left: none !important;
        padding: 5px 0;
        min-width: auto;
        position: absolute;
        right: 23px;
        top: 46px
    }

    .header.header2 .header-dropdown.login-dropdown>a .icon-header.icon-lock {
        background-position: 0 -981px
    }
}

.header.header2 .header-dropdown.login-dropdown>a>span:first-child {
    margin-right: 6px
}

@media(max-width:767px) {
    .header.header2 .header-dropdown.login-dropdown>a>span:first-child {
        margin-right: 0
    }
}

@media(max-width:767px) {
    .header.header2 .header-dropdown.login-dropdown>a .dropdown-text {
        display: none
    }
}

.header.header2 .header-dropdown.login-dropdown .dropdown-menu {
    left: auto;
    right: 0
}

@media(min-width:1200px) {
    .header.header2 .header-dropdown.login-dropdown .dropdown-menu {
        margin-right: -100px
    }
}

@media(min-width:1600px) {
    .header.header2 .header-dropdown.login-dropdown .dropdown-menu {
        margin-right: -130px
    }
}

@media(max-width:767px) {
    .header.header2 .header-dropdown.login-dropdown .dropdown-menu {
        top: 100%;
        margin-top: -51px;
        width: 100%
    }
}

.header.header2 .search-form {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border-left: 1px solid #dedede
}

@media(max-width:767px) {
    .header.header2 .search-form {
        width: 50%;
        border-left: none
    }
}

.header.header2 .search-form .icon-header.icon-search {
    background-position: 0 -1151px
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header2 .search-form .icon-header {
        display: none
    }
}

.header.header2 .search-form .form-control {
    position: relative;
    border: 0;
    height: 50px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 0;
    padding: 17px 10px 13px 20px;
    color: #666;
    background-color: transparent;
    z-index: 1;
    transition: width .4s
}

@media(min-width:768px) {
    .header.header2 .search-form .form-control {
        width: 120px;
        height: 78px;
        padding: 31px 10px 27px 10px
    }
}

@media(min-width:992px) {
    .header.header2 .search-form .form-control {
        width: 70px;
        padding-left: 10px;
        padding-right: 10px
    }
}

@media(min-width:1320px) {
    .header.header2 .search-form .form-control {
        width: 120px;
        padding-left: 20px;
        padding-right: 20px
    }
}

@media(min-width:1600px) {
    .header.header2 .search-form .form-control {
        width: 140px
    }
}

.header.header2 .search-form .form-control::-webkit-input-placeholder {
    color: #666
}

.header.header2 .search-form .form-control::-moz-placeholder {
    color: #666
}

.header.header2 .search-form .form-control:-ms-input-placeholder {
    color: #666
}

.header.header2 .search-form .form-control::placeholder {
    color: #666
}

.header.header2 .search-form .form-control:focus {
    width: 100%
}

@media(min-width:768px) {
    .header.header2 .search-form .form-control:focus {
        width: 200px
    }
}

@media(min-width:992px) {
    .header.header2 .search-form .form-control:focus {
        width: 70px
    }
}

@media(min-width:1320px) {
    .header.header2 .search-form .form-control:focus {
        width: 160px
    }
}

@media(min-width:1600px) {
    .header.header2 .search-form .form-control:focus {
        width: 320px
    }
}

.header.header2 .search-form .form-control:focus+.overlay-search {
    visibility: hidden;
    opacity: 0
}

.header.header2 .search-form .form-control:focus+.overlay-search .icon {
    display: none
}

.header.header2 .search-form .form-control:focus+.overlay-search+.btn {
    opacity: 1;
    visibility: visible
}

.header.header2 .search-form .overlay-search {
    position: absolute;
    z-index: 0;
    left: 0;
    width: 100%;
    text-align: center;
    top: 50%;
    font-size: 14px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    line-height: 1;
    color: #666;
    text-transform: uppercase;
    white-space: normal;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 2px;
    transition: all .4s
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header2 .search-form .overlay-search {
        font-size: 12px
    }
}

.header.header2 .search-form .overlay-search i,
.header.header2 .search-form .overlay-search span {
    vertical-align: middle
}

.header.header2 .search-form .overlay-search i {
    margin-right: 4px;
    margin-top: -3px
}

.header.header2 .search-form .btn.btn-link {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    line-height: 1;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
    padding: 0;
    transition: all .4s
}

@media(min-width:1600px) {
    .header.header2 .search-form .btn.btn-link {
        right: 35px
    }
}

.header.header2 .logo {
    margin-top: 41px;
    margin-bottom: 36px
}

@media(min-width:768px) {
    .header.header2 .logo {
        margin-top: 23px;
        margin-bottom: 0
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header2 .menu-container {
        margin-left: 10px
    }
}

.header.header2 .menu>li {
    padding: 21.5px 0
}

@media(min-width:992px) and (max-width:1280px) {
    .header.header2 .menu>li+li {
        margin-left: 0
    }
}

.header.header2 .menu li ul,
.header.header2 .menu li .megamenu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

@media(max-width:767px) {
    .header.header2 .mobile-menu {
        margin-top: 0
    }
}

@media(min-width:768px) {
    .header.header2 .navbar-toggle {
        margin-top: 22.5px;
        margin-right: 30px
    }
}

@media(max-width:767px) {
    .header.header2 .navbar-toggle {
        position: absolute;
        left: 20px;
        top: 30px
    }

    .header.header2 .navbar-toggle:after {
        display: none
    }
}

.header.header2 .navbar-toggle .icon-bar {
    width: 26px;
    background-color: #666
}

.header.header2 .navbar-toggle .icon-bar+.icon-bar {
    margin-top: 3px
}

@media(min-width:992px) {

    .header2.sticky-header.fixed .header-top,
    .header2.sticky-header.fixed .header-bottom {
        display: none
    }

    .header2.sticky-header.fixed .logo {
        margin-top: 12.5px
    }

    .header2.sticky-header.fixed .menu>li {
        padding-top: 11.5px;
        padding-bottom: 11.5px
    }

    .header2.sticky-header.fixed .header-dropdown {
        margin-top: 0
    }

    .header2.sticky-header.fixed .header-dropdown>a {
        padding-top: 20px;
        padding-bottom: 17px
    }

    .header2.sticky-header.fixed .search-form .form-control {
        height: 58px;
        padding-top: 21px;
        padding-bottom: 17px
    }
}

.header.header3 {
    border-bottom: 0
}

.header.header3 .top-icon.top-icon-lock {
    background-position: 0 -494px
}

.header.header3 .top-icon.top-icon-heart {
    background-position: 0 -468px
}

.header.header3 .top-icon.top-icon-check {
    background-position: 0 -572px
}

.header.header3 .top-icon.top-icon-wishlist {
    background-position: 0 -156px
}

.header.header3 .top-icon.top-icon-creditcard {
    background-position: 0 -247px
}

.header.header3 .top-icon.top-icon-flag {
    background-position: 0 -442px
}

.header.header3 .top-dropdowns {
    margin-bottom: 0
}

.header.header3 .top-dropdowns>li>a {
    padding-top: 9px;
    padding-bottom: 5px
}

.header.header3 .top-dropdowns>li:hover>a,
.header.header3 .top-dropdowns>li:focus>a {
    background-color: #6ed1ff;
    border-color: #6ed1ff
}

.header.header3 .top-dropdowns li li:hover,
.header.header3 .top-dropdowns li li:focus {
    background-color: #6ed1ff;
    border-color: #6ed1ff
}

.header.header3 .top-dropdowns li ul {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px)
}

.header.header3 .top-dropdowns li:hover>ul {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.header.header3 .header-inner {
    background-color: #81ccfc
}

.header.header3 .header-inner .dropdown.header-dropdown .dropdown-menu {
    border-top: 0
}

.header.header3 .icon-header {
    height: 20px;
    width: 20px
}

.header.header3 .icon-header.icon-user {
    background-position: 0 -1648px
}

.header.header3 .icon-header.icon-cart {
    background-position: 0 -1748px
}

@media(min-width:768px) {
    .header.header3 .header-dropdown {
        margin-top: 33px
    }
}

.header.header3 .header-dropdown:hover .icon-header.icon-user,
.header.header3 .header-dropdown:focus .icon-header.icon-user,
.header.header3 .header-dropdown.open .icon-header.icon-user,
.header.header3 .header-dropdown>li>a:hover .icon-header.icon-user,
.header.header3 .header-dropdown>li>a:focus .icon-header.icon-user,
.header.header3 .header-dropdown>li>a.open .icon-header.icon-user,
.header.header3 .header-dropdown>a:hover .icon-header.icon-user,
.header.header3 .header-dropdown>a:focus .icon-header.icon-user,
.header.header3 .header-dropdown>a.open .icon-header.icon-user {
    background-position: 0 -1648px
}

.header.header3 .header-dropdown:hover .icon-header.icon-cart,
.header.header3 .header-dropdown:focus .icon-header.icon-cart,
.header.header3 .header-dropdown.open .icon-header.icon-cart,
.header.header3 .header-dropdown>li>a:hover .icon-header.icon-cart,
.header.header3 .header-dropdown>li>a:focus .icon-header.icon-cart,
.header.header3 .header-dropdown>li>a.open .icon-header.icon-cart,
.header.header3 .header-dropdown>a:hover .icon-header.icon-cart,
.header.header3 .header-dropdown>a:focus .icon-header.icon-cart,
.header.header3 .header-dropdown>a.open .icon-header.icon-cart {
    background-position: 0 -1748px
}

@media(min-width:768px) {

    .header.header3 .header-dropdown>li>a,
    .header.header3 .header-dropdown>a {
        padding-bottom: 27px
    }
}

.header.header3 .header-dropdown.account-dropdown ul {
    margin-right: -60px
}

.header.header3 .header-dropdown.cart-dropdown>a .dcart-total-count {
    background-color: #ed4e24
}

@media(min-width:768px) {
    .header.header3 .header-dropdown.cart-dropdown .dropdown-menu {
        right: -20px
    }
}

@media(min-width:992px) {
    .header.header3 .header-dropdown.cart-dropdown .dropdown-menu {
        right: -40px
    }
}

@media(min-width:768px) {
    .header.header3 .header-search-container {
        margin-top: 23px
    }
}

@media(min-width:1600px) {
    .header.header3 .header-search-container {
        margin-left: 40px
    }
}

@media(min-width:1920px) {
    .header.header3 .header-search-container {
        margin-left: 140px
    }
}

.header.header3 .header-search-container .icon-header-search {
    background-position: 0 -599px
}

.header.header3 .header-search-container .search-dropdown-btn .icon-header-search {
    background-position: 0 -644px
}

.header.header3 .header-search-container .btn:hover,
.header.header3 .header-search-container .btn:focus {
    background-color: #f3dbce
}

.header.header3 .header-search-container .btn:hover .icon-header-search,
.header.header3 .header-search-container .btn:focus .icon-header-search {
    background-position: 0 -644px
}

.header.header3 .header-search-container .dropdown.search-dropdown>a {
    background-color: #f3dbce
}

.header.header3 .header-search-container .dropdown.search-dropdown .dropdown-menu {
    border-color: #f3dbce
}

.header.header3 .header-search-container .header-search-form {
    border-color: #fff
}

@media(max-width:1599px) and (min-width:992px) {
    .header.header3 .header-search-container.search-dropdown-fix {
        margin-top: 25.5px
    }
}

@media(max-width:1599px) and (min-width:992px) {
    .header.header3 .header-search-container.search-dropdown-fix form:before {
        border-bottom-color: #fff
    }
}

.header.header3 .logo {
    margin-top: 26px
}

@media(min-width:1600px) {
    .header.header3 .menu-container {
        margin-left: 40px
    }
}

@media(min-width:1920px) {
    .header.header3 .menu-container {
        margin-left: 142px
    }
}

.header.header3 .menu>li {
    padding-top: 25.5px;
    padding-bottom: 25.5px
}

.header.header3 .menu>li+li {
    margin-left: 5px
}

@media(min-width:1200px) {
    .header.header3 .menu>li+li {
        margin-left: 10px
    }
}

@media(min-width:1600px) {
    .header.header3 .menu>li+li {
        margin-left: 18px
    }
}

@media(min-width:1920px) {
    .header.header3 .menu>li+li {
        margin-left: 25px
    }
}

.header.header3 .menu>li>a {
    color: #fff
}

.header.header3 .menu>li.open>a {
    color: #6ed1ff;
    background-color: #fff
}

.header.header3 .menu li li.open>a {
    color: #fff;
    background-color: #6ed1ff
}

.header.header3 .menu li .megamenu li.open>a {
    color: #6ed1ff;
    background-color: transparent
}

@media(min-width:768px) {
    .header.header3 .navbar-toggle {
        margin-top: 25.5px
    }
}

.header.header3 .navbar-toggle .icon-bar {
    background-color: #fff
}

@media(min-width:992px) {
    .header3.sticky-header.fixed .logo {
        margin-top: 16px
    }

    .header3.sticky-header.fixed .menu>li {
        padding-top: 15.5px;
        padding-bottom: 15.5px
    }

    .header3.sticky-header.fixed .header-dropdown {
        margin-top: 22px
    }

    .header3.sticky-header.fixed .header-dropdown>li>a,
    .header3.sticky-header.fixed .header-dropdown>a {
        padding-bottom: 18px
    }
}

@media(min-width:992px) {
    .header3.sticky-header.fixed .header-search-container {
        margin-top: 13px
    }
}

@media(min-width:992px) and (max-width:1599px) {
    .header3.sticky-header.fixed .header-search-container.search-dropdown-fix {
        margin-top: 15px
    }
}

.header.header4 {
    border-bottom: 0
}

.header.header4 .header-top {
    color: #777;
    font: 400 14px/1.25 "Open Sans", sans-serif;
    border-bottom: 1px solid #eeeded
}

.header.header4 .dropdown .dropdown-menu {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px)
}

.header.header4 .dropdown.open>.dropdown-menu,
.header.header4 .dropdown:hover .dropdown-menu,
.header.header4 .dropdown:focus .dropdown-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.header.header4 .header-top-text {
    float: left;
    display: none;
    letter-spacing: .05em;
    margin-top: 7px
}

@media(min-width:992px) {
    .header.header4 .header-top-text {
        display: block
    }
}

.header.header4 .top-dropdowns>li {
    position: relative
}

@media(min-width:768px) {
    .header.header4 .top-dropdowns>li {
        margin-left: -20px
    }
}

.header.header4 .top-dropdowns>li i {
    visibility: hidden;
    margin-right: 7px
}

.header.header4 .top-dropdowns>li:hover,
.header.header4 .top-dropdowns>li:focus {
    z-index: 100
}

.header.header4 .top-dropdowns>li:hover i,
.header.header4 .top-dropdowns>li:focus i {
    visibility: visible
}

.header.header4 .top-dropdowns li ul {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px)
}

.header.header4 .top-dropdowns li:hover>ul {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

@media(min-width:768px) and (max-width:991px) {
    .header.header4 .header-inner {
        border-bottom: 1px solid #eeeded
    }
}

@media(min-width:768px) {
    .header.header4 .logo {
        margin-top: 31px
    }
}

.header.header4 .header-boxes-container {
    float: left;
    display: none;
    font-size: 0
}

@media(min-width:1280px) {
    .header.header4 .header-boxes-container {
        display: block;
        margin-right: 10px
    }
}

.header.header4 .header-box {
    position: relative;
    display: inline-block;
    padding-left: 48px;
    margin-right: 40px;
    font-size: 14px;
    line-height: 1;
    color: #999;
    margin-top: 32px
}

@media(min-width:1600px) {
    .header.header4 .header-box {
        margin-right: 70px
    }
}

.header.header4 .header-box .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px
}

.header.header4 .header-box .icon.icon-truck {
    background-position: 0 -1688px
}

.header.header4 .header-box .icon.icon-phone {
    background-position: 0 -1668px
}

.header.header4 .header-box:after {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 26px;
    left: 38px;
    top: 50%;
    margin-top: -13px;
    background-color: #e3e3e3
}

.header.header4 .header-box .header-box-title {
    font: 600 13px/1 "Open Sans", sans-serif;
    color: #777;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 0
}

.header.header4 .header-box p {
    margin-bottom: 4px
}

.header.header4 .header-search-container {
    margin-top: 26px
}

@media(min-width:768px) {
    .header.header4 .header-search-container {
        margin-top: 25px;
        margin-left: 0;
        margin-right: 30px
    }
}

@media(min-width:992px) {
    .header.header4 .header-search-container {
        width: 380px
    }
}

@media(min-width:1200px) {
    .header.header4 .header-search-container {
        margin-right: 35px
    }
}

@media(min-width:1440px) {
    .header.header4 .header-search-container {
        margin-right: 45px;
        width: 480px
    }
}

@media(min-width:1600px) {
    .header.header4 .header-search-container {
        margin-right: 55px;
        width: 540px
    }
}

@media(min-width:1920px) {
    .header.header4 .header-search-container {
        width: 740px
    }
}

.header.header4 .header-search-container .header-search-form {
    border: 1px solid #e3e3e3
}

.header.header4 .header-search-container .icon-search-arrow {
    background-position: 0 -6px
}

.header.header4 .header-search-container .dropdown.search-dropdown {
    left: -1px;
    top: -1px
}

.header.header4 .header-search-container .dropdown.search-dropdown>a {
    background-color: #f5f5f5;
    padding: 12px 20px 10px 15px;
    color: #777;
    width: 140px;
    border: 1px solid #e3e3e3
}

@media(min-width:992px) {
    .header.header4 .header-search-container .dropdown.search-dropdown>a {
        width: 176px;
        font-size: 13px;
        padding: 11px 30px 8px 22px
    }
}

@media(min-width:1440px) {
    .header.header4 .header-search-container .dropdown.search-dropdown>a {
        width: 200px
    }
}

@media(min-width:1600px) {
    .header.header4 .header-search-container .dropdown.search-dropdown>a {
        width: 240px
    }
}

@media(min-width:1920px) {
    .header.header4 .header-search-container .dropdown.search-dropdown>a {
        width: 310px
    }
}

.header.header4 .header-search-container .dropdown.search-dropdown .dropdown-menu {
    border-color: #ffb800
}

.header.header4 .header-search-container .dropdown.search-dropdown .dropdown-menu li a:hover,
.header.header4 .header-search-container .dropdown.search-dropdown .dropdown-menu li a:focus {
    color: #ffb800
}

.header.header4 .header-search-container .dropdown.search-dropdown.open,
.header.header4 .header-search-container .dropdown.search-dropdown:hover,
.header.header4 .header-search-container .dropdown.search-dropdown:focus {
    top: -1px
}

.header.header4 .header-search-container .dropdown.search-dropdown.open>a,
.header.header4 .header-search-container .dropdown.search-dropdown:hover>a,
.header.header4 .header-search-container .dropdown.search-dropdown:focus>a {
    background-color: #ffb800;
    color: #fff;
    border-color: #ffb800
}

.header.header4 .header-search-container .dropdown.search-dropdown.open .icon-search-arrow,
.header.header4 .header-search-container .dropdown.search-dropdown:hover .icon-search-arrow,
.header.header4 .header-search-container .dropdown.search-dropdown:focus .icon-search-arrow {
    background-position: 0 0
}

.header.header4 .header-search-container .form-control {
    height: 38px;
    padding: 11.5px 66px 8.5px 190px;
    color: #777
}

.header.header4 .header-search-container .form-control::-webkit-input-placeholder {
    color: #777
}

.header.header4 .header-search-container .form-control::-moz-placeholder {
    color: #777
}

.header.header4 .header-search-container .form-control:-ms-input-placeholder {
    color: #777
}

.header.header4 .header-search-container .form-control::placeholder {
    color: #777
}

.header.header4 .header-search-container .btn {
    top: -1px;
    right: -1px
}

.header.header4 .header-search-container .btn:hover,
.header.header4 .header-search-container .btn:focus {
    background-color: #f3dbce
}

.header.header4 .icon-header.icon-lock {
    background-position: 0 -1338px
}

.header.header4 .icon-header.icon-user {
    background-position: 0 -1389px
}

.header.header4 .icon-header.icon-cart {
    background-position: 0 -1287px
}

@media(max-width:767px) {
    .header.header4 .icon-header.icon-lock {
        background-position: 0 -1321px
    }

    .header.header4 .icon-header.icon-user {
        background-position: 0 -1372px
    }

    .header.header4 .icon-header.icon-cart {
        background-position: 0 -1270px
    }
}

@media(min-width:768px) {
    .header.header4 .dropdowns-wrapper {
        float: right
    }
}

@media(min-width:768px) {
    .header.header4 .alldropdowns-wrapper {
        float: right
    }
}

@media(max-width:767px) {
    .header.header4 .alldropdowns-wrapper {
        background-color: #f3dbce;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 20px
    }
}

.header.header4 .alldropdowns-wrapper:after {
    content: '';
    display: table;
    clear: both
}

.header.header4 .header-dropdown {
    margin-top: 13px
}

@media(min-width:768px) {
    .header.header4 .header-dropdown {
        margin-top: 36px
    }
}

.header.header4 .header-dropdown>li>a,
.header.header4 .header-dropdown>a {
    padding-bottom: 8px
}

@media(min-width:768px) {

    .header.header4 .header-dropdown>li>a,
    .header.header4 .header-dropdown>a {
        padding-bottom: 31px
    }
}

.header.header4 .header-dropdown ul {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px)
}

.header.header4 .header-dropdown li:hover>ul,
.header.header4 .header-dropdown li:focus>ul {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.header.header4 .header-dropdown:hover .icon-header.icon-lock,
.header.header4 .header-dropdown:focus .icon-header.icon-lock,
.header.header4 .header-dropdown>li:hover .icon-header.icon-lock,
.header.header4 .header-dropdown>li:focus .icon-header.icon-lock {
    background-position: 0 -1304px
}

.header.header4 .header-dropdown:hover .icon-header.icon-user,
.header.header4 .header-dropdown:focus .icon-header.icon-user,
.header.header4 .header-dropdown>li:hover .icon-header.icon-user,
.header.header4 .header-dropdown>li:focus .icon-header.icon-user {
    background-position: 0 -1355px
}

.header.header4 .header-dropdown:hover .icon-header.icon-cart,
.header.header4 .header-dropdown:focus .icon-header.icon-cart,
.header.header4 .header-dropdown>li:hover .icon-header.icon-cart,
.header.header4 .header-dropdown>li:focus .icon-header.icon-cart {
    background-position: 0 -1253px
}

@media(max-width:767px) {

    .header.header4 .header-dropdown:hover .icon-header.icon-lock,
    .header.header4 .header-dropdown:focus .icon-header.icon-lock,
    .header.header4 .header-dropdown>li:hover .icon-header.icon-lock,
    .header.header4 .header-dropdown>li:focus .icon-header.icon-lock {
        background-position: 0 -1321px
    }

    .header.header4 .header-dropdown:hover .icon-header.icon-user,
    .header.header4 .header-dropdown:focus .icon-header.icon-user,
    .header.header4 .header-dropdown>li:hover .icon-header.icon-user,
    .header.header4 .header-dropdown>li:focus .icon-header.icon-user {
        background-position: 0 -1372px
    }

    .header.header4 .header-dropdown:hover .icon-header.icon-cart,
    .header.header4 .header-dropdown:focus .icon-header.icon-cart,
    .header.header4 .header-dropdown>li:hover .icon-header.icon-cart,
    .header.header4 .header-dropdown>li:focus .icon-header.icon-cart {
        background-position: 0 -1270px
    }
}

@media(max-width:767px) {
    .header.header4 .header-dropdown.login-dropdown {
        position: static
    }
}

.header.header4 .header-dropdown.login-dropdown .dropdown-menu {
    left: auto;
    right: 0;
    margin-right: 0
}

@media(max-width:767px) {
    .header.header4 .header-dropdown.login-dropdown .dropdown-menu {
        width: 100%
    }
}

.header.header4 .header-dropdown.cart-dropdown>a .dcart-total-count {
    background-color: #ffb800
}

.header.header4 .header-dropdown.cart-dropdown .dropdown-menu {
    right: 0;
    margin-right: 0
}

.header.header4 .header-dropdown.account-dropdown ul {
    margin-right: -50px
}

@media(min-width:1200px) {
    .header.header4 .header-dropdown.account-dropdown ul {
        margin-right: -60px
    }
}

.header.header4 .menu-wrapper {
    background-color: #fff
}

.header.header4 .menu {
    margin-left: -13px
}

@media(min-width:1200px) {
    .header.header4 .menu {
        margin-left: -20px
    }
}

@media(min-width:1920px) {
    .header.header4 .menu {
        margin-left: -25px
    }
}

.header.header4 .menu>li {
    padding: 6px 0
}

.header.header4 .menu>li+li {
    margin-left: 10px
}

@media(min-width:1200px) {
    .header.header4 .menu>li+li {
        margin-left: 10px
    }
}

@media(min-width:1600px) {
    .header.header4 .menu>li+li {
        margin-left: 15px
    }
}

@media(min-width:1920px) {
    .header.header4 .menu>li+li {
        margin-left: 25px
    }
}

.header.header4 .menu>li>a {
    color: #808184;
    padding: 6.5px 13px 3.5px;
    border-radius: 20px
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header4 .menu>li>a {
        padding-top: 7px;
        padding-bottom: 4px
    }
}

@media(min-width:1200px) {
    .header.header4 .menu>li>a {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media(min-width:1600px) {
    .header.header4 .menu>li>a {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media(min-width:1920px) {
    .header.header4 .menu>li>a {
        padding-left: 25px;
        padding-right: 25px
    }
}

.header.header4 .menu>li.open>a {
    color: #f3dbce;
    background-color: #fff
}

.header.header4 .menu>li .tip {
    border-radius: 6px 6px 6px 0
}

.header.header4 .menu>li .tip:not(.hot) {
    background-color: #4d4d4d
}

.header.header4 .menu li ul,
.header.header4 .menu li .megamenu {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px)
}

.header.header4 .menu li.open>ul,
.header.header4 .menu li.open>.megamenu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

@media(min-width:992px) {
    .header.header4 .megamenu {
        background-color: #f7f7f7
    }
}

.header.header4 .mobile-menu {
    margin-top: 0
}

.header.header4 .navbar-toggle {
    margin-top: 6px;
    margin-bottom: 6px
}

@media(min-width:768px) {
    .header.header4 .navbar-toggle {
        margin-top: 29px;
        margin-right: 4px
    }
}

@media(max-width:767px) {
    .header.header4 .navbar-toggle.open:after {
        bottom: 0
    }
}

.header.header4 .navbar-toggle .icon-bar {
    width: 26px;
    height: 2px;
    background-color: #999
}

@media(max-width:767px) {
    .header.header4 .navbar-toggle .icon-bar {
        background-color: #fff
    }
}

@media(min-width:992px) {
    .menu-wrapper.sticky-header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        -webkit-animation-name: fixedHeader;
        animation-name: fixedHeader;
        -webkit-animation-duration: .6s;
        animation-duration: .6s;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
        border-bottom-width: 0
    }
}

.header.header5 {
    border-bottom: 0
}

.header.header5 .header-top {
    color: #777;
    font-weight: 400;
    background-color: #4d4d4d
}

.header.header5 .header-box-container {
    border-bottom: 1px solid #fff;
    margin-left: -5px;
    margin-right: -5px;
    color: #fff;
    font-size: 0;
    line-height: 2;
    padding: 2.5px 20px
}

@media(min-width:768px) {
    .header.header5 .header-box-container {
        text-align: center;
        margin: 0;
        border: 0;
        padding-left: 0;
        padding-right: 0
    }
}

.header.header5 .header-box-container>.icon,
.header.header5 .header-box-container>span {
    display: inline-block;
    vertical-align: middle
}

.header.header5 .header-box-container .icon {
    width: 19px;
    height: 18px;
    margin-right: 14px
}

.header.header5 .header-box-container .icon.icon-truck {
    background-position: 0 -1630px
}

.header.header5 .header-box-container .icon.icon-support {
    background-position: 0 -1612px
}

.header.header5 .header-box-container .icon.icon-lock {
    background-position: 0 -1576px
}

.header.header5 .header-box-container .icon.icon-return {
    background-position: 0 -1594px
}

.header.header5 .header-box-container span {
    font-size: 15px
}

@media(min-width:992px) {
    .header.header5 .header-inner {
        text-align: center
    }
}

@media(min-width:768px) {
    .header.header5 .logo {
        margin-top: 46px
    }
}

@media(min-width:992px) {
    .header.header5 .logo {
        display: inline-block;
        float: none
    }
}

.header.header5 .header-search-container {
    text-align: left
}

@media(min-width:768px) {
    .header.header5 .header-search-container {
        margin-top: 39px
    }
}

@media(min-width:992px) {
    .header.header5 .header-search-container {
        width: 350px;
        margin-left: 0
    }
}

@media(min-width:1440px) {
    .header.header5 .header-search-container {
        width: 400px
    }
}

.header.header5 .header-search-container .header-search-form {
    border: 1px solid #e3e3e3
}

.header.header5 .header-search-container .icon-search-arrow {
    background-position: 0 -6px
}

.header.header5 .header-search-container .dropdown.search-dropdown {
    left: -1px;
    top: -1px
}

.header.header5 .header-search-container .dropdown.search-dropdown>a {
    background-color: #f8f8f8;
    padding: 12px 20px 10px 15px;
    color: #777;
    width: 140px;
    border: 1px solid #e3e3e3
}

@media(min-width:992px) {
    .header.header5 .header-search-container .dropdown.search-dropdown>a {
        width: 175px;
        font-size: 13px;
        padding: 11px 30px 8px 22px
    }
}

@media(min-width:1440px) {
    .header.header5 .header-search-container .dropdown.search-dropdown>a {
        width: 200px
    }
}

.header.header5 .header-search-container .dropdown.search-dropdown.open,
.header.header5 .header-search-container .dropdown.search-dropdown:hover,
.header.header5 .header-search-container .dropdown.search-dropdown:focus {
    top: -1px
}

.header.header5 .header-search-container .dropdown.search-dropdown.open>a,
.header.header5 .header-search-container .dropdown.search-dropdown:hover>a,
.header.header5 .header-search-container .dropdown.search-dropdown:focus>a {
    background-color: #4d4d4d;
    color: #fff;
    border-color: #4d4d4d
}

.header.header5 .header-search-container .dropdown.search-dropdown.open .icon-search-arrow,
.header.header5 .header-search-container .dropdown.search-dropdown:hover .icon-search-arrow,
.header.header5 .header-search-container .dropdown.search-dropdown:focus .icon-search-arrow {
    background-position: 0 0
}

.header.header5 .header-search-container .form-control {
    height: 38px;
    padding: 11.5px 66px 8.5px 190px;
    color: #777
}

.header.header5 .header-search-container .form-control::-webkit-input-placeholder {
    color: #777
}

.header.header5 .header-search-container .form-control::-moz-placeholder {
    color: #777
}

.header.header5 .header-search-container .form-control:-ms-input-placeholder {
    color: #777
}

.header.header5 .header-search-container .form-control::placeholder {
    color: #777
}

.header.header5 .header-search-container .btn {
    top: -1px;
    right: -1px
}

.header.header5 .icon-header.icon-user {
    background-position: 0 -1491px
}

.header.header5 .icon-header.icon-cart {
    background-position: 0 -1423px
}

.header.header5 .icon-header.icon-globe {
    background-position: 0 -1457px
}

@media(min-width:992px) {
    .header.header5 .dropdowns-container {
        text-align: right;
        width: 350px
    }
}

@media(min-width:1440px) {
    .header.header5 .dropdowns-container {
        width: 400px
    }
}

@media(min-width:768px) {
    .header.header5 .header-dropdown {
        margin-top: 48px
    }
}

@media(min-width:768px) {

    .header.header5 .header-dropdown>li>a,
    .header.header5 .header-dropdown>a {
        padding-bottom: 27px
    }
}

.header.header5 .header-dropdown:hover .icon-header.icon-user,
.header.header5 .header-dropdown:focus .icon-header.icon-user,
.header.header5 .header-dropdown>li:hover .icon-header.icon-user,
.header.header5 .header-dropdown>li:focus .icon-header.icon-user {
    background-position: 0 -1474px
}

.header.header5 .header-dropdown:hover .icon-header.icon-cart,
.header.header5 .header-dropdown:focus .icon-header.icon-cart,
.header.header5 .header-dropdown>li:hover .icon-header.icon-cart,
.header.header5 .header-dropdown>li:focus .icon-header.icon-cart {
    background-position: 0 -1406px
}

.header.header5 .header-dropdown:hover .icon-header.icon-globe,
.header.header5 .header-dropdown:focus .icon-header.icon-globe,
.header.header5 .header-dropdown>li:hover .icon-header.icon-globe,
.header.header5 .header-dropdown>li:focus .icon-header.icon-globe {
    background-position: 0 -1440px
}

.header.header5 .header-dropdown ul li:hover>a,
.header.header5 .header-dropdown ul li a:hover,
.header.header5 .header-dropdown ul li a:focus {
    color: #fff;
    background-color: #4d4d4d;
    border-color: #4d4d4d
}

@media(min-width:768px) {

    .header.header5 .header-dropdown ul,
    .header.header5 .header-dropdown .dropdown-menu {
        text-align: left
    }
}

.header.header5 .header-dropdown.cart-dropdown .product-price {
    color: #666
}

.header.header5 .header-dropdown.cart-dropdown>a .dcart-total-count {
    background-color: #ff3500
}

.header.header5 .header-dropdown.cart-dropdown .btn.btn-border {
    border-radius: 20px !important
}

.header.header5 .header-dropdown.cart-dropdown .btn.btn-border.hover,
.header.header5 .header-dropdown.cart-dropdown .btn.btn-border.focus {
    border-radius: 20px !important
}

.header.header5 .menu-wrapper {
    background-color: #fff
}

.header.header5 .menu {
    text-align: center
}

.header.header5 .menu>li {
    float: none;
    display: inline-block;
    padding: 10px 0
}

.header.header5 .menu>li>a {
    padding: 6.5px 13px 3.5px
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header5 .menu>li>a {
        padding-top: 7px;
        padding-bottom: 4px
    }
}

@media(min-width:1200px) {
    .header.header5 .menu>li>a {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media(min-width:1600px) {
    .header.header5 .menu>li>a {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media(min-width:1920px) {
    .header.header5 .menu>li>a {
        padding-left: 25px;
        padding-right: 25px
    }
}

.header.header5 .menu>li.open>a {
    color: #4d4d4d;
    background-color: #fff
}

.header.header5 .menu li ul,
.header.header5 .menu li .megamenu {
    text-align: left;
    border-top: 0;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05), 0 2px 5px rgba(0, 0, 0, 0.1)
}

.header.header5 .menu li .megamenu ul {
    box-shadow: none
}

.header.header5 .menu li .megamenu ul li.open>a {
    background-color: transparent;
    color: #4d4d4d
}

.header.header5 .menu li li.open>a {
    background-color: #4d4d4d;
    color: #fff
}

@media(min-width:992px) {
    .header.header5 .megamenu {
        background-color: #f7f7f7
    }
}

@media(min-width:768px) {
    .header.header5 .navbar-toggle {
        margin-top: 41px;
        margin-left: 15px
    }
}

@media(max-width:767px) {
    .header.header5 .navbar-toggle.open:after {
        background-color: #4d4d4d
    }
}

@media(max-width:767px) {
    .header.header5 .navbar-toggle.open .icon-bar {
        background-color: #fff
    }
}

.header.header5 .navbar-toggle .icon-bar {
    width: 27px;
    background-color: #a3a3a3;
    height: 2px
}

.menu-btn {
    position: static;
    display: inline-block;
    padding: 9px 0;
    margin-right: 35px;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    vertical-align: middle
}

.menu-btn .icon-bar {
    display: block;
    position: relative;
    width: 20px;
    height: 2px;
    border-radius: 0;
    background-color: #666;
    transition: all .4s
}

.menu-btn .icon-bar+.icon-bar {
    margin-top: 3px
}

.menu-btn:hover .icon-bar,
.menu-btn:focus .icon-bar,
.menu-btn.open .icon-bar {
    background-color: #f3dbce
}

.header.header6 {
    border-bottom: 0
}

@media(min-width:768px) {
    .header.header6 .header-bottom {
        background-color: #4d4d4d
    }
}

@media(min-width:768px) {
    .header.header6 .header-bottom .col-sm-4:after {
        background-color: #fff
    }
}

.header.header6 .header-bottom .row {
    margin-left: -20px;
    margin-right: -20px
}

@media(max-width:767px) {
    .header.header6 .header-bottom .info-box-container {
        border-bottom: 1px solid #fff;
        background-color: #4d4d4d
    }
}

.header.header6 .header-bottom .info-box {
    font-size: 14px;
    font-weight: 400;
    color: #f9f9f9
}

.header.header6 .header-bottom .info-box h5 {
    color: #fff
}

.header.header6 .header-bottom .info-box p {
    font-family: "Fira Sans", Arial, sans-serif;
    font-style: italic
}

.header.header6 .header-inner {
    position: relative
}

@media(min-width:768px) {
    .header.header6 .header-inner {
        text-align: center;
        font-size: 0
    }
}

.header.header6 .logo {
    margin-top: 42px
}

@media(min-width:768px) {
    .header.header6 .logo {
        margin-top: 0;
        display: inline-block;
        float: none;
        margin: 43px 25px 0;
        vertical-align: middle
    }
}

@media(min-width:992px) {
    .header.header6 .logo {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 0
    }
}

@media(min-width:1280px) {
    .header.header6 .logo {
        margin-left: 70px;
        margin-right: 70px
    }
}

@media(min-width:1440px) {
    .header.header6 .logo {
        margin-left: 90px;
        margin-right: 90px
    }
}

@media(min-width:1600px) {
    .header.header6 .logo {
        margin-left: 120px;
        margin-right: 120px
    }
}

@media(min-width:1920px) {
    .header.header6 .logo {
        margin-left: 140px;
        margin-right: 140px
    }
}

.header.header6 .header-left {
    float: left;
    text-align: left;
    font-size: 0;
    margin-top: 40px
}

@media(min-width:768px) {
    .header.header6 .header-left {
        width: 140px
    }
}

.header.header6 .header-left .side-account {
    padding: 6.5px 5px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px
}

@media(max-width:767px) {
    .header.header6 .header-left .side-account {
        position: absolute;
        right: 15px;
        top: 39px;
        z-index: 200
    }
}

.header.header6 .header-left .side-account:hover .icon-header.icon-user,
.header.header6 .header-left .side-account:focus .icon-header.icon-user,
.header.header6 .header-left .side-account.open .icon-header.icon-user {
    background-position: 0 -1032px
}

@media(max-width:767px) {
    .header.header6 .header-left .menu-btn {
        position: absolute;
        left: 20px;
        top: 37px;
        z-index: 200
    }
}

@media(max-width:767px) {
    .header.header6 .header-search-container {
        margin-top: 2px
    }
}

.header.header6 .header-search-container .dropdown-menu {
    border-color: #f3dbce
}

.header.header6 .header-search-container .dropdown-menu li a:hover,
.header.header6 .header-search-container .dropdown-menu li a:focus {
    color: #f3dbce
}

.header.header6 .header-search-container.search-dropdown-fix {
    width: auto;
    margin-left: 0;
    text-align: left;
    display: inline-block;
    float: none
}

@media(min-width:768px) {
    .header.header6 .header-search-container.search-dropdown-fix {
        margin-top: 0
    }
}

@media(max-width:767px) {
    .header.header6 .header-search-container.search-dropdown-fix {
        float: right
    }
}

.header.header6 .header-search-container .header-search-form {
    visibility: hidden;
    opacity: 0;
    border-color: #f3dbce;
    position: absolute;
    right: -10px;
    top: -4px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    margin-top: 0;
    width: 280px;
    z-index: 500
}

@media(min-width:768px) {
    .header.header6 .header-search-container .header-search-form {
        width: 340px
    }
}

@media(min-width:992px) {
    .header.header6 .header-search-container .header-search-form {
        width: 380px
    }
}

.header.header6 .header-search-container .header-search-form:before {
    display: none
}

.header.header6 .header-search-container.open .header-search-form {
    visibility: visible;
    opacity: 1
}

.header.header6 .header-search-container .icon-header-search {
    background-position: 0 -689px
}

.header.header6 .header-search-container .btn {
    right: -2px;
    padding: 13px 10px 8px
}

.header.header6 .header-search-container .btn:hover,
.header.header6 .header-search-container .btn:focus {
    background-color: #f3dbce;
    border-radius: 20px !important
}

.header.header6 .header-search-container .btn:hover .icon-header-search,
.header.header6 .header-search-container .btn:focus .icon-header-search {
    background-position: 0 -704px
}

.header.header6 .header-search-container .search-dropdown-btn {
    display: block
}

@media(max-width:767px) {
    .header.header6 .header-search-container .search-dropdown-btn {
        padding-right: 0
    }
}

.header.header6 .header-search-container .search-dropdown-btn .icon-header-search {
    background-position: 0 -689px
}

.header.header6 .header-search-container .dropdown.search-dropdown>a {
    background-color: #f3dbce;
    color: #fff;
    border-color: #f3dbce
}

.header.header6 .header-search-container .form-control {
    height: 38px;
    padding: 11.5px 66px 8.5px 190px;
    color: #777
}

@media(max-width:991px) {
    .header.header6 .header-search-container .form-control {
        padding-left: 158px
    }
}

.header.header6 .header-search-container .form-control::-webkit-input-placeholder {
    color: #777
}

.header.header6 .header-search-container .form-control::-moz-placeholder {
    color: #777
}

.header.header6 .header-search-container .form-control:-ms-input-placeholder {
    color: #777
}

.header.header6 .header-search-container .form-control::placeholder {
    color: #777
}

.header.header6 .icon-header.icon-user {
    background-position: 0 -998px
}

.header.header6 .icon-header.icon-cart {
    background-position: 0 -1508px
}

.header.header6 .icon-header.icon-globe {
    background-position: 0 -1542px
}

.header.header6 .dropdowns-container {
    margin-top: 17px
}

@media(min-width:768px) {
    .header.header6 .dropdowns-container {
        text-align: right;
        width: 140px;
        margin-top: 0
    }
}

@media(max-width:767px) {
    .header.header6 .dropdowns-container:before {
        content: '';
        display: table;
        clear: both
    }
}

.header.header6 .dropdowns-wrapper {
    display: inline-block;
    float: none
}

@media(max-width:767px) {
    .header.header6 .dropdowns-wrapper {
        float: left;
        display: block
    }
}

.header.header6 .header-dropdown {
    margin-top: 10px
}

@media(min-width:768px) {
    .header.header6 .header-dropdown {
        margin-top: 46px
    }
}

@media(min-width:768px) {

    .header.header6 .header-dropdown>li>a,
    .header.header6 .header-dropdown>a {
        padding-bottom: 40px
    }
}

@media(max-width:767px) {

    .header.header6 .header-dropdown>li>a,
    .header.header6 .header-dropdown>a {
        text-align: left;
        padding-bottom: 12px
    }
}

.header.header6 .header-dropdown:hover .icon-header.icon-cart,
.header.header6 .header-dropdown:focus .icon-header.icon-cart,
.header.header6 .header-dropdown>li:hover .icon-header.icon-cart,
.header.header6 .header-dropdown>li:focus .icon-header.icon-cart {
    background-position: 0 -1508px
}

.header.header6 .header-dropdown:hover .icon-header.icon-globe,
.header.header6 .header-dropdown:focus .icon-header.icon-globe,
.header.header6 .header-dropdown>li:hover .icon-header.icon-globe,
.header.header6 .header-dropdown>li:focus .icon-header.icon-globe {
    background-position: 0 -1525px
}

@media(max-width:767px) {
    .header.header6 .header-dropdown ul {
        right: auto;
        left: 0
    }
}

.header.header6 .header-dropdown ul li:hover>a,
.header.header6 .header-dropdown ul li a:hover,
.header.header6 .header-dropdown ul li a:focus {
    color: #fff;
    background-color: #4d4d4d;
    border-color: #4d4d4d
}

@media(min-width:768px) {

    .header.header6 .header-dropdown ul,
    .header.header6 .header-dropdown .dropdown-menu {
        text-align: left
    }
}

.header.header6 .header-dropdown.cart-dropdown>a .dcart-total-count {
    background-color: #f3dbce
}

@media(max-width:767px) {
    .header.header6 .header-dropdown.cart-dropdown>a .dcart-total-count {
        right: auto;
        left: 10px
    }
}

.header.header6 .header-dropdown.cart-dropdown .btn.btn-border {
    border-radius: 20px !important
}

.header.header6 .header-dropdown.cart-dropdown .btn.btn-border.hover,
.header.header6 .header-dropdown.cart-dropdown .btn.btn-border.focus {
    border-radius: 20px !important
}

.header.header6 .header-dropdown.cart-dropdown .dropdown-menu {
    margin-right: 0
}

@media(min-width:992px) {
    .header.header6 .menu {
        display: inline-block;
        vertical-align: middle;
        width: 195px
    }

    .header.header6 .menu.left-menu {
        text-align: right
    }

    .header.header6 .menu.right-menu {
        text-align: left
    }
}

@media(min-width:1200px) {
    .header.header6 .menu {
        width: 295px
    }
}

@media(min-width:1280px) {
    .header.header6 .menu {
        width: 305px
    }
}

@media(min-width:1600px) {
    .header.header6 .menu {
        width: 380px
    }
}

.header.header6 .menu>li {
    float: none;
    display: inline-block;
    padding: 40px 0
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header6 .menu>li+li {
        margin-left: 0
    }
}

.header.header6 .menu>li>a {
    padding: 6px 13px 3px;
    font-size: 14px;
    font-weight: 500
}

@media(min-width:992px) and (max-width:1199px) {
    .header.header6 .menu>li>a {
        padding: 7px 6px 4px;
        font-size: 13px
    }
}

@media(min-width:1200px) {
    .header.header6 .menu>li>a {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media(min-width:1600px) {
    .header.header6 .menu>li>a {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media(min-width:1920px) {
    .header.header6 .menu>li>a {
        padding-left: 25px;
        padding-right: 25px
    }
}

.header.header6 .menu>li.open>a {
    color: #fff;
    background-color: #4d4d4d
}

.header.header6 .menu li ul,
.header.header6 .menu li .megamenu {
    text-align: left
}

.header.header6 .menu li .megamenu ul {
    box-shadow: none
}

.header.header6 .menu li .megamenu ul li.open>a {
    background-color: transparent;
    color: #4d4d4d
}

.header.header6 .menu li li.open>a {
    background-color: #4d4d4d;
    color: #fff
}

@media(min-width:992px) {
    .header.header6 .megamenu {
        background-color: #f7f7f7
    }
}

@media(min-width:768px) {
    .header.header6 .navbar-toggle {
        margin-top: 41px;
        margin-left: 15px
    }
}

@media(max-width:767px) {
    .header.header6 .navbar-toggle.open:after {
        background-color: #4d4d4d
    }
}

@media(max-width:767px) {
    .header.header6 .navbar-toggle.open .icon-bar {
        background-color: #fff
    }
}

.header.header6 .navbar-toggle .icon-bar {
    width: 27px;
    background-color: #a3a3a3;
    height: 2px
}

.side-menu-container,
.side-account-menu {
    position: fixed;
    width: 100%;
    background-color: #272a2c;
    left: -300px;
    top: 0;
    bottom: 0;
    z-index: 999;
    transition: all .4s
}

@media(min-width:320px) {

    .side-menu-container,
    .side-account-menu {
        width: 300px
    }
}

@media(min-width:992px) {

    .side-menu-container,
    .side-account-menu {
        width: 320px;
        left: -320px
    }
}

@media(min-width:1600px) {

    .side-menu-container,
    .side-account-menu {
        width: 380px;
        left: -380px
    }
}

.side-menu-container .side-close-icon,
.side-account-menu .side-close-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    background-position: 0 -195px
}

.side-menu-container .side-close-btn,
.side-account-menu .side-close-btn {
    display: inline-block;
    padding: 5px;
    margin-left: -5px;
    margin-bottom: 20px
}

@media(min-width:1600px) {

    .side-menu-container .side-close-btn,
    .side-account-menu .side-close-btn {
        margin-bottom: 30px
    }
}

.side-menu-container .side-close-btn:hover .side-close-icon,
.side-menu-container .side-close-btn:focus .side-close-icon,
.side-account-menu .side-close-btn:hover .side-close-icon,
.side-account-menu .side-close-btn:focus .side-close-icon {
    background-position: 0 -208px
}

.side-menu-container.open,
.side-account-menu.open {
    left: 0
}

.side-menu-container .megamenu {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    padding: 0
}

.side-menu-container .megamenu ul li {
    margin-bottom: 3px
}

.side-menu-container .container,
.side-menu-container [class*="col-"] {
    float: none;
    width: 100%;
    padding: 0
}

.side-menu-container .row {
    margin: 0
}

.side-menu-container .row+.row {
    margin-top: 0
}

.side-menu-container .side-menu-wrapper {
    padding: 20px;
    height: 100%
}

@media(min-width:1200px) {
    .side-menu-container .side-menu-wrapper {
        padding: 30px
    }
}

@media(min-width:1600px) {
    .side-menu-container .side-menu-wrapper {
        padding: 40px
    }
}

.side-menu-container .banner {
    margin-bottom: 10px
}

.side-menu-container .banner img {
    max-width: 100%
}

.side-menu {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase
}

.side-menu>li {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 22px
}

.side-menu>li>a {
    color: #fcfcfc
}

.side-menu>li>a:hover,
.side-menu>li>a:focus {
    color: #f3dbce
}

.side-menu>li.open>a {
    color: #f3dbce
}

.side-menu li a {
    display: block;
    color: #e3e3e3
}

.side-menu li a:hover,
.side-menu li a:focus {
    color: #f3dbce
}

.side-menu li.open>a {
    color: #f3dbce
}

.side-menu li li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px
}

.side-menu li li li {
    margin-bottom: 14px
}

.side-menu li li:last-child {
    margin-bottom: 0
}

.side-menu ul,
.side-menu .megamenu {
    display: none;
    padding: 20px 0 0 20px
}

@media(min-width:1600px) {

    .side-menu ul,
    .side-menu .megamenu {
        padding: 30px 0 0 28px
    }
}

.side-menu ul ul,
.side-menu .megamenu ul {
    padding: 17px 0 17px 12px
}

@media(min-width:1600px) {

    .side-menu ul ul,
    .side-menu .megamenu ul {
        padding: 25px 0 25px 20px
    }
}

.side-menu ul ul li,
.side-menu .megamenu ul li {
    font-size: 12px;
    font-weight: 500
}

.side-menu ul ul li a,
.side-menu .megamenu ul li a {
    color: #c1c1c1
}

.side-menu ul ul li a:hover,
.side-menu ul ul li a:focus,
.side-menu .megamenu ul li a:hover,
.side-menu .megamenu ul li a:focus {
    color: #f3dbce
}

.side-menu ul ul li.open>a,
.side-menu .megamenu ul li.open>a {
    color: #f3dbce
}

.side-menu .open>ul,
.side-menu .open>.megamenu {
    display: block
}

.side-menu .megamenu ul {
    padding-top: 0
}

.side-menu .mmenu-title {
    cursor: pointer;
    color: #e3e3e3;
    font-size: 14px;
    transition: color .3s
}

.side-menu .mmenu-title:hover,
.side-menu .mmenu-title:focus {
    color: #f3dbce
}

.side-menu .open>.mmenu-title {
    color: #f3dbce
}

.side-account-menu {
    padding: 20px
}

@media(min-width:1200px) {
    .side-account-menu {
        padding: 30px
    }
}

@media(min-width:1600px) {
    .side-account-menu {
        padding: 40px
    }
}

.side-account-menu .account-list li {
    margin-bottom: 20px
}

@media(min-width:1200px) {
    .side-account-menu .account-list li {
        margin-bottom: 25px
    }
}

@media(min-width:1600px) {
    .side-account-menu .account-list li {
        margin-bottom: 25px
    }
}

.side-account-menu .account-list li a {
    position: relative;
    display: block;
    color: #f6f6f6;
    text-transform: uppercase;
    font: 600 15px/1.25 "Open Sans", sans-serif;
    letter-spacing: .02em;
    padding-left: 27px
}

.side-account-menu .account-list li a:hover,
.side-account-menu .account-list li a:focus {
    color: #f3dbce
}

.side-account-menu .icon-side-account {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 12px;
    margin-top: -6px
}

.side-account-menu .icon-side-account.icon-user {
    background-position: 0 -57px
}

.side-account-menu .icon-side-account.icon-wishlist {
    background-position: 0 -57px
}

.side-account-menu .icon-side-account.icon-lock {
    background-position: 0 -69px
}

.side-account-menu .icon-side-account.icon-heart {
    background-position: 0 -93px
}

.side-account-menu .icon-side-account.icon-check {
    background-position: 0 -105px
}

.side-account-menu .icon-side-account.icon-list {
    background-position: 0 -81px
}

@media(min-width:992px) {
    .header.header6.sticky-header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        -webkit-animation-name: fixedHeader;
        animation-name: fixedHeader;
        -webkit-animation-duration: .6s;
        animation-duration: .6s;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
        border-bottom-width: 0
    }

    .header.header6.sticky-header.fixed .logo {
        margin-top: 0
    }

    .header.header6.sticky-header.fixed .menu>li {
        padding: 15px 0
    }

    .header.header6.sticky-header.fixed .header-left {
        margin-top: 15px
    }

    .header.header6.sticky-header.fixed .header-bottom {
        display: none
    }

    .header.header6.sticky-header.fixed .header-dropdown {
        margin-top: 21px
    }

    .header.header6.sticky-header.fixed .header-dropdown>li>a,
    .header.header6.sticky-header.fixed .header-dropdown>a {
        padding-bottom: 16px
    }
}

.header.header6.sticky-header.fixed .header-search-container.search-dropdown-fix {
    margin-top: 14px
}

.rev_slider_bgcheck .rev_slider>ul>li:not(.active-revslide) .tp-bgimg,
.rev_slider_bgcheck .tp-revslider-mainul>li:not(.active-revslide) .tp-bgimg {
    display: none
}

.rev_slider {
    background-color: #e7e7e7
}

.tp-caption.revslider-title,
.tp-caption.revslider-text {
    color: #444
}

.tp-caption.revslider-title.lighter,
.tp-caption.revslider-text.lighter {
    color: #707070
}

.tp-caption.revslider-title.lighter.background--light,
.tp-caption.revslider-text.lighter.background--light {
    color: #707070
}

.tp-caption.revslider-title.background--light,
.tp-caption.revslider-text.background--light {
    color: #444
}

.tp-caption.revslider-title.light,
.tp-caption.revslider-title.background--dark,
.tp-caption.revslider-text.light,
.tp-caption.revslider-text.background--dark {
    color: #fff
}

.tp-caption.revslider-text {
    font-family: "Open Sans", sans-serif;
    letter-spacing: .05em
}

@media(max-width:767px) {
    .tp-caption.revslider-text {
        display: none !important
    }
}

.tp-caption.revslider-title.darker {
    color: #3e3e3e
}

.tp-caption.revslider-title.darker.background--light {
    color: #3e3e3e
}

.tp-caption.revslider-title.darker.light,
.tp-caption.revslider-title.darker.background--dark {
    color: #fff
}

.tp-caption.btn {
    padding-left: 10px;
    padding-right: 10px
}

.tp-caption.revslider-title {
    font-family: "Fira Sans", Arial, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em
}

.tp-caption.revslider-title.v2 {
    font-family: "Open Sans", sans-serif;
    letter-spacing: .1em
}

.tp-caption.revslider-subtitle {
    color: #555;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    letter-spacing: .07em
}

.tp-caption.revslider-subtitle.background--light {
    color: #555
}

.tp-caption.revslider-subtitle.background--dark {
    color: #fff
}

.tp-caption.revslider-subtitle.v2 {
    font-family: "Fira Sans", Arial, sans-serif
}

.custom.tp-bullets.background--light .tp-bullet {
    border-color: #444
}

.custom.tp-bullets .tp-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    transition: background-color .4s, border-color .4s
}

.custom.tp-bullets .tp-bullet:hover,
.custom.tp-bullets .tp-bullet:focus,
.custom.tp-bullets .tp-bullet.selected {
    background: #f3dbce;
    border-color: #f3dbce
}

.custom.tparrows {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    background-image: url("/Assets/images/slider-arrows.png");
    background-position: 0 0;
    transition: background-color .4s, border-color .4s
}

.custom.tparrows.background--light {
    border-color: #444;
    background-position: 0 -51px
}

.custom.tparrows.background--light:hover,
.custom.tparrows.background--light:focus {
    background-position: 0 0
}

.custom.tparrows:before {
    display: none
}

.custom.tparrows.tp-rightarrow {
    background-position: -51px 0
}

.custom.tparrows.tp-rightarrow.background--light {
    background-position: -51px -51px
}

.custom.tparrows.tp-rightarrow.background--light:hover,
.custom.tparrows.tp-rightarrow.background--light:focus {
    background-position: -51px 0
}

.custom.tparrows:hover,
.custom.tparrows:focus {
    background-color: #f3dbce;
    background-image: url("/Assets/images/slider-arrows.png");
    border-color: #f3dbce
}

.widget .product.product2 {
    position: relative;
    padding: 15px;
    margin-bottom: 0
}

.widget .product.product2:hover,
.widget .product.product2:focus {
    padding-bottom: 15px;
    margin-bottom: 0
}

.widget .product.product2:hover .product-meta,
.widget .product.product2:focus .product-meta {
    margin-top: 0
}

.widget .product.product2 .product-countdown .countdown-section {
    padding-top: 13px;
    padding-bottom: 12px
}

.widget .product.product2 .product-countdown .countdown-amount {
    font-size: 20px
}

@media(min-width:600px) {
    .dealoftheday-carousel.v2 .swiper-slide {
        width: 50%
    }
}

@media(min-width:1200px) {
    .dealoftheday-carousel.v2 .swiper-slide {
        width: 26.15%
    }
}

@media(min-width:600px) {
    .dealoftheday-carousel.v2 .swiper-slide.double {
        width: 50%
    }
}

@media(min-width:1200px) {
    .dealoftheday-carousel.v2 .swiper-slide.double {
        width: 47.7%
    }
}

.dealoftheday-carousel.v2 .product.product2:not(.wide) {
    margin-bottom: 30px;
    padding-bottom: 17px
}

.dealoftheday-carousel.v2 .product.product2:not(.wide) .product-brand {
    margin-bottom: 10px
}

.dealoftheday-carousel.v2 .product.product2:not(.wide) .product-title {
    letter-spacing: .05em;
    max-width: none;
    margin-bottom: 7px
}

.dealoftheday-carousel.v2 .product.product2:not(.wide) .product-colors {
    margin-bottom: 12px
}

.dealoftheday-carousel.v2 .product.product2:not(.wide):hover,
.dealoftheday-carousel.v2 .product.product2:not(.wide):focus {
    margin-bottom: 7px;
    padding-bottom: 70px
}

.dealoftheday-carousel.v2 .product.product2:not(.wide):hover .product-meta,
.dealoftheday-carousel.v2 .product.product2:not(.wide):focus .product-meta {
    margin-top: -30px
}

.product.product2.wide {
    margin-bottom: 30px;
    padding-bottom: 40px
}

.product.product2.wide:hover,
.product.product2.wide:focus {
    margin-bottom: 10px;
    padding-bottom: 90px
}

.product.product2.wide:hover .product-meta,
.product.product2.wide:focus .product-meta {
    margin-top: -30px
}

@media(min-width:992px) {
    .product.product2.wide .product-top {
        margin-bottom: 25px
    }
}

@media(min-width:1200px) {
    .product.product2.wide .product-top {
        margin-bottom: 30px
    }
}

.product.product2.wide .product-title {
    letter-spacing: .05em;
    max-width: none
}

@media(min-width:768px) {
    .product.product2.wide .product-title {
        font-size: 16px
    }
}

@media(min-width:992px) {
    .product.product2.wide .product-title {
        font-size: 17px;
        margin-bottom: 12px
    }
}

@media(min-width:1600px) {
    .product.product2.wide .product-title {
        margin-bottom: 15px
    }
}

@media(min-width:992px) {
    .product.product2.wide .product-brand {
        font-size: 18px
    }
}

.product.product2.wide .product-price-container {
    margin-bottom: 20px
}

@media(min-width:1600px) {
    .product.product2.wide .product-price-container {
        margin-bottom: 36px
    }
}

@media(min-width:992px) {

    .product.product2.wide .product-price-container .product-old-price,
    .product.product2.wide .product-price-container .product-price {
        font-size: 18px
    }
}

.product.product2.wide .product-countdown {
    max-width: 440px;
    margin: 0 auto
}

.product.product2.wide .product-countdown .countdown-section {
    padding-top: 16px;
    padding-bottom: 16px
}

.product.product2.wide .product-countdown .countdown-section .countdown-amount {
    font-size: 25px
}

.product.product2.wide .product-countdown .countdown-section .countdown-period {
    font-size: 11px;
    margin-top: 3px
}

.banner.newsletter-banner {
    margin-bottom: 70px
}

@media(min-width:768px) {
    .banner.newsletter-banner {
        margin-bottom: 85px
    }
}

@media(min-width:1200px) {
    .banner.newsletter-banner {
        margin-bottom: 97px
    }
}

@media(max-width:767px) {
    .banner.newsletter-banner {
        height: 240px
    }
}

@media(max-width:767px) {
    .banner.newsletter-banner img {
        width: auto;
        height: 100%
    }
}

@media(max-width:767px) {
    .banner.newsletter-banner .banner-content {
        display: inline-block;
        width: auto
    }
}

@media(max-width:600px) {
    .banner.newsletter-banner .banner-content {
        left: 20px;
        right: 20px;
        -webkit-transform: translateX(0) translateY(-50%);
        -ms-transform: translateX(0) translateY(-50%);
        transform: translateX(0) translateY(-50%)
    }
}

.banner.newsletter-banner p {
    max-width: 400px;
    margin: 0 auto 20px;
    line-height: 1.35;
    white-space: normal;
    display: none;
    color: #555
}

@media(min-width:768px) {
    .banner.newsletter-banner p {
        display: block;
        font-size: 17px
    }
}

@media(min-width:1200px) {
    .banner.newsletter-banner p {
        font-size: 17px;
        margin-bottom: 20px
    }
}

@media(min-width:1600px) {
    .banner.newsletter-banner p {
        max-width: 460px;
        font-size: 19px;
        margin-bottom: 30px
    }
}

.banner.newsletter-banner h4 {
    color: #535353;
    font-size: 13px;
    letter-spacing: .05em;
    margin-bottom: 15px
}

@media(min-width:768px) {
    .banner.newsletter-banner h4 {
        font-size: 15px;
        margin-bottom: 10px
    }
}

@media(min-width:1200px) {
    .banner.newsletter-banner h4 {
        font-size: 17px;
        margin-bottom: 20px
    }
}

@media(min-width:1600px) {
    .banner.newsletter-banner h4 {
        font-size: 20px;
        margin-bottom: 36px
    }
}

.banner.newsletter-banner h3 {
    color: #484848;
    font-size: 32px;
    letter-spacing: .05em;
    margin-bottom: 14px
}

@media(min-width:768px) {
    .banner.newsletter-banner h3 {
        font-size: 48px;
        margin-bottom: 8px
    }
}

@media(min-width:1200px) {
    .banner.newsletter-banner h3 {
        font-size: 60px;
        margin-bottom: 12px
    }
}

@media(min-width:1600px) {
    .banner.newsletter-banner h3 {
        font-size: 70px;
        margin-bottom: 24px
    }
}

.banner.newsletter-banner form {
    width: 100%;
    margin: 0 auto;
    position: relative
}

@media(min-width:480px) {
    .banner.newsletter-banner form {
        max-width: 420px
    }
}

@media(min-width:992px) {
    .banner.newsletter-banner form {
        max-width: 460px
    }
}

.banner.newsletter-banner .form-control {
    border: 0;
    height: 43px;
    font: 400 16px/1.8 "Open Sans", sans-serif;
    padding: 8px 130px 7px 20px;
    background-color: #fff;
    color: #555;
    border-radius: 20px;
    margin-bottom: 0
}

@media(min-width:992px) {
    .banner.newsletter-banner .form-control {
        font-size: 17px;
        height: 46px;
        padding: 9px 150px 7px 30px
    }
}

.banner.newsletter-banner .form-control::-webkit-input-placeholder {
    color: #555
}

.banner.newsletter-banner .form-control::-moz-placeholder {
    color: #555
}

.banner.newsletter-banner .form-control:-ms-input-placeholder {
    color: #555
}

.banner.newsletter-banner .form-control::placeholder {
    color: #555
}

.banner.newsletter-banner .form-control:hover,
.banner.newsletter-banner .form-control:focus {
    background-color: #fff
}

.banner.newsletter-banner .btn {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    min-width: 110px;
    text-align: center;
    border-radius: 20px;
    padding: 11.5px 10px 8.5px
}

@media(min-width:992px) {
    .banner.newsletter-banner .btn {
        min-width: 120px;
        font-size: 16px;
        padding: 12px 10px 10px
    }
}

.banner.newsletter-banner .btn:hover,
.banner.newsletter-banner .btn:focus {
    border-radius: 0
}

.banner.newsletter-banner form.larger {
    max-width: 440px;
    margin: 0 auto;
    position: relative
}

@media(min-width:768px) {
    .banner.newsletter-banner form.larger {
        max-width: 540px
    }
}

@media(min-width:992px) {
    .banner.newsletter-banner form.larger {
        max-width: 620px
    }
}

.banner.newsletter-banner form.larger .form-control {
    height: 43px;
    font: 400 16px/1.8 "Open Sans", sans-serif;
    padding: 8px 130px 7px 20px;
    border-radius: 30px;
    margin-bottom: 0
}

@media(min-width:768px) {
    .banner.newsletter-banner form.larger .form-control {
        font-size: 18px;
        height: 50px;
        padding: 9px 165px 9px 25px
    }
}

@media(min-width:992px) {
    .banner.newsletter-banner form.larger .form-control {
        font-size: 20px;
        height: 56px;
        padding: 10px 190px 10px 30px
    }
}

.banner.newsletter-banner form.larger .btn {
    font-size: 14px;
    min-width: 110px;
    border-radius: 30px;
    padding: 12px 10px 9px
}

@media(min-width:768px) {
    .banner.newsletter-banner form.larger .btn {
        min-width: 140px;
        font-size: 16px;
        padding: 14px 10px 12px
    }
}

@media(min-width:992px) {
    .banner.newsletter-banner form.larger .btn {
        min-width: 160px;
        font-size: 18px;
        padding: 16px 10px 13px
    }
}

.banner.newsletter-banner form.larger .btn.btn-link-icon {
    padding: 0 10px;
    min-width: 83px;
    background-color: transparent;
    line-height: 0
}

@media(min-width:768px) {
    .banner.newsletter-banner form.larger .btn.btn-link-icon {
        padding-top: 3.5px;
        padding-bottom: 3.5px
    }
}

@media(min-width:992px) {
    .banner.newsletter-banner form.larger .btn.btn-link-icon {
        padding-top: 6.5px;
        padding-bottom: 6.5px
    }
}

.banner.newsletter-banner form.larger .btn.btn-link-icon .icon-btn-arrow {
    display: inline-block;
    width: 43px;
    height: 43px;
    background-position: 0 -5581px
}

.banner.newsletter-banner form.larger .btn.btn-link-icon:hover,
.banner.newsletter-banner form.larger .btn.btn-link-icon:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    border-radius: 28px !important
}

.banner.newsletter-banner form.larger .btn.btn-link-icon:hover .icon-btn-arrow,
.banner.newsletter-banner form.larger .btn.btn-link-icon:focus .icon-btn-arrow {
    background-position: 0 -5366px
}

.deal-carousel-container {
    overflow: hidden
}

.dealoftheday-carousel.swiper-container {
    margin-left: -15px !important;
    margin-right: -15px !important
}

.dealoftheday-carousel .swiper-slide {
    width: 100%;
    padding: 0 15px
}

@media(min-width:600px) {
    .dealoftheday-carousel .swiper-slide {
        width: 32%
    }
}

@media(min-width:992px) {
    .dealoftheday-carousel .swiper-slide {
        width: 25%
    }
}

@media(min-width:1200px) {
    .dealoftheday-carousel .swiper-slide {
        width: 20%
    }
}

@media(min-width:600px) {
    .dealoftheday-carousel .swiper-slide.double {
        width: 68%
    }
}

@media(min-width:992px) {
    .dealoftheday-carousel .swiper-slide.double {
        width: 50%
    }
}

@media(min-width:1200px) {
    .dealoftheday-carousel .swiper-slide.double {
        width: 40%
    }
}

.dealoftheday-carousel .swiper-slide:last-child {
    margin-right: 0 !important
}

.dealoftheday-carousel .product:not(.wide) {
    margin-bottom: 40px
}

.dealoftheday-carousel .product:not(.wide) .product-title {
    max-width: 260px
}

.dealoftheday-carousel .product:not(.wide) .product-price-container {
    margin-bottom: 0
}

.product.wide {
    margin-bottom: 30px
}

@media(min-width:768px) {
    .product.wide {
        margin-bottom: 50px
    }
}

@media(min-width:992px) {
    .product.wide .product-top {
        margin-bottom: 28px
    }
}

@media(min-width:1200px) {
    .product.wide .product-top {
        margin-bottom: 30px
    }
}

@media(min-width:1600px) {
    .product.wide .product-top {
        margin-bottom: 36px
    }
}

.product.wide .product-title {
    letter-spacing: 0
}

@media(min-width:992px) {
    .product.wide .product-title {
        font-size: 18px;
        max-width: 460px;
        margin-bottom: 14px
    }
}

@media(min-width:1200px) {
    .product.wide .product-title {
        font-size: 23px
    }
}

@media(min-width:992px) {
    .product.wide .product-brand {
        font-size: 17px
    }
}

@media(min-width:1200px) {
    .product.wide .product-price-container {
        margin-bottom: 22px
    }
}

@media(min-width:1600px) {
    .product.wide .product-price-container {
        margin-bottom: 28px
    }
}

@media(min-width:992px) {

    .product.wide .product-price-container .product-old-price,
    .product.wide .product-price-container .product-price {
        font-size: 19px
    }
}

@media(min-width:1200px) {

    .product.wide .product-price-container .product-old-price,
    .product.wide .product-price-container .product-price {
        font-size: 21px
    }
}

.product.wide .product-countdown {
    max-width: 440px
}

.bg-custom7 .testimonial blockquote {
    color: #fff;
    background-color: #9dd6fb
}

.bg-custom7 .testimonial blockquote:after {
    background-image: url("/Assets/images/quote-icon-white.png")
}

.bg-custom7 .testimonial .testimonial-owner figure {
    max-width: 76px
}

.bg-custom7 .testimonial .testimonial-owner figure:after {
    border-top-color: #9dd6fb
}

.bg-custom7 .testimonial .testimonial-owner figure img {
    border-width: 5px;
    border-color: #73c6fc
}

.bg-custom7 .testimonial .testimonial-owner .owner-meta {
    color: #fff
}

.ins-feed figure {
    position: relative;
    text-align: center
}

.ins-feed figure:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #c2c2c2;
    opacity: 0;
    transition: all .4s;
    visibility: hidden
}

.ins-feed img {
    display: block;
    width: 100%;
    height: auto
}

.ins-feed .btn-instagram {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    z-index: 40;
    min-width: 156px;
    margin-top: -23px
}

.ins-feed:hover figure:after {
    visibility: visible;
    opacity: .7
}

.ins-feed:hover figure .btn-instagram {
    visibility: visible;
    opacity: 1
}

figure+.ins-meta {
    margin-top: 26px
}

.ing-hashtag {
    display: block;
    font: 400 17px/1 "Open Sans", sans-serif;
    color: #666;
    margin-bottom: 8px
}

@media(min-width:1440px) {
    .ing-hashtag {
        font-size: 19px
    }
}

.ing-hashtag:hover,
.ing-hashtag:focus {
    color: #f3dbce
}

.ins-info {
    font: 400 0/1.5 "Fira Sans", Arial, sans-serif
}

.ins-info a {
    color: #777;
    font-size: 17px
}

@media(min-width:1440px) {
    .ins-info a {
        font-size: 18px
    }
}

.ins-info a:hover,
.ins-info a:focus {
    color: #f3dbce
}

.ins-info a+a {
    margin-left: 20px
}

.ins-info a span {
    vertical-align: middle
}

.ins-icon {
    display: inline-block;
    width: 18px;
    height: 17px;
    vertical-align: middle;
    margin-right: 7px
}

.ins-icon.ins-heart {
    background-position: 0 -1083px
}

.ins-icon.ins-comment {
    background-position: 0 -1134px
}

.deal-carousel-container .carousel-header {
    margin-left: 15px;
    margin-right: 15px
}

@media(min-width:1600px) {
    .deal-carousel-container .carousel-header {
        margin-left: 20px;
        margin-right: 20px
    }
}

.dealoftheday-carousel.v3 {
    margin-bottom: 3px
}

@media(min-width:1600px) {
    .dealoftheday-carousel.v3.swiper-container {
        margin-left: -20px !important;
        margin-right: -20px !important
    }
}

@media(min-width:600px) {
    .dealoftheday-carousel.v3 .swiper-slide {
        width: 35%
    }
}

@media(min-width:1200px) {
    .dealoftheday-carousel.v3 .swiper-slide {
        width: 27.5%
    }
}

@media(min-width:1600px) {
    .dealoftheday-carousel.v3 .swiper-slide {
        padding: 0 20px
    }
}

@media(min-width:600px) {
    .dealoftheday-carousel.v3 .swiper-slide.double {
        width: 65%
    }
}

@media(min-width:1200px) {
    .dealoftheday-carousel.v3 .swiper-slide.double {
        width: 45%
    }
}

.dealoftheday-carousel.v3 .product.product3:not(.wide) {
    margin-bottom: 30px
}

.dealoftheday-carousel.v3 .product.product3:not(.wide) .product-brand {
    margin-bottom: 10px
}

.dealoftheday-carousel.v3 .product.product3:not(.wide) .product-title {
    max-width: 190px;
    font-size: 17px
}

.product.product3.wide {
    margin-bottom: 60px
}

@media(min-width:992px) {
    .product.product3.wide .product-top {
        margin-bottom: 25px
    }
}

@media(min-width:1200px) {
    .product.product3.wide .product-top {
        margin-bottom: 30px
    }
}

.product.product3.wide .product-title {
    letter-spacing: 0;
    max-width: 290px
}

@media(min-width:1200px) {
    .product.product3.wide .product-title {
        margin-bottom: 12px
    }
}

@media(min-width:1200px) {
    .product.product3.wide .product-brand {
        margin-bottom: 15px
    }
}

@media(min-width:1200px) {
    .product.product3.wide .product-content-wrapper {
        padding-right: 130px
    }
}

.product.product3.wide .product-price-container {
    margin-bottom: 0
}

@media(min-width:1200px) {
    .product.product3.wide .product-price-container {
        width: 128px
    }
}

@media(min-width:1600px) {
    .product.product3.wide .product-price-container {
        margin-bottom: 36px
    }
}

@media(min-width:1200px) {
    .product.product3.wide .product-price-container .product-old-price {
        font-size: 13px
    }
}

@media(min-width:1600px) {
    .product.product3.wide .product-price-container .product-old-price {
        font-size: 16px
    }
}

@media(min-width:1200px) {
    .product.product3.wide .product-price-container .product-price {
        font-size: 27px
    }
}

@media(min-width:1600px) {
    .product.product3.wide .product-price-container .product-price {
        font-size: 30px
    }
}

.product.product3.wide .product-countdown {
    max-width: 440px;
    margin: 0 0 40px 0
}

.product.product3.wide .product-countdown .countdown-section {
    padding-top: 16px;
    padding-bottom: 16px
}

.banner.newsletter-banner.newsv2 p {
    max-width: 400px;
    margin: 0 auto 20px;
    line-height: 1.35;
    color: #555;
    letter-spacing: 0
}

@media(min-width:768px) {
    .banner.newsletter-banner.newsv2 p {
        display: none;
        font-size: 17px
    }
}

@media(min-width:1200px) {
    .banner.newsletter-banner.newsv2 p {
        display: block;
        max-width: 620px;
        font-size: 15px;
        margin-bottom: 20px
    }
}

@media(min-width:1600px) {
    .banner.newsletter-banner.newsv2 p {
        font-size: 19px;
        margin-bottom: 30px
    }
}

.banner.newsletter-banner.newsv2 h4 {
    color: #535353;
    font-size: 13px;
    letter-spacing: .05em;
    margin-bottom: 15px
}

@media(min-width:768px) {
    .banner.newsletter-banner.newsv2 h4 {
        font-size: 14px;
        margin-bottom: 10px
    }
}

@media(min-width:1200px) {
    .banner.newsletter-banner.newsv2 h4 {
        font-size: 15px;
        margin-bottom: 20px
    }
}

@media(min-width:1600px) {
    .banner.newsletter-banner.newsv2 h4 {
        font-size: 19px;
        margin-bottom: 36px
    }
}

.banner.newsletter-banner.newsv2 h3 {
    color: #484848;
    font-size: 28px;
    letter-spacing: .04em;
    margin-bottom: 16px;
    line-height: .88
}

@media(min-width:768px) {
    .banner.newsletter-banner.newsv2 h3 {
        font-size: 44px
    }
}

@media(min-width:1200px) {
    .banner.newsletter-banner.newsv2 h3 {
        font-size: 50px;
        margin-bottom: 12px;
        line-height: .8
    }
}

@media(min-width:1600px) {
    .banner.newsletter-banner.newsv2 h3 {
        font-size: 70px;
        margin-bottom: 24px
    }
}

.sidebar.home3-sidebar .widget {
    margin-bottom: 60px
}

@media(min-width:768px) {
    .sidebar.home3-sidebar .widget {
        margin-bottom: 70px
    }
}

@media(min-width:992px) {
    .sidebar.home3-sidebar .widget {
        margin-bottom: 90px
    }
}

@media(min-width:1200px) {
    .sidebar.home3-sidebar .widget {
        margin-bottom: 110px
    }
}

@media(min-width:1600px) {
    .sidebar.home3-sidebar .widget {
        margin-bottom: 145px
    }
}

@media(min-width:992px) {
    .sidebar.home3-sidebar .widget:first-child {
        margin-top: 10px
    }
}

.sidebar.home3-sidebar .widget.widget-tagcloud {
    margin-bottom: 45px
}

@media(min-width:768px) {
    .sidebar.home3-sidebar .widget.widget-tagcloud {
        margin-bottom: 55px
    }
}

@media(min-width:992px) {
    .sidebar.home3-sidebar .widget.widget-tagcloud {
        margin-bottom: 75px
    }
}

@media(min-width:1200px) {
    .sidebar.home3-sidebar .widget.widget-tagcloud {
        margin-bottom: 100px
    }
}

@media(min-width:1600px) {
    .sidebar.home3-sidebar .widget.widget-tagcloud {
        margin-bottom: 135px
    }
}

.sidebar.home3-sidebar .widget .widget-title {
    border: 0;
    border-bottom: 2px solid #e9e9e9;
    font-size: 23px;
    color: #585858;
    letter-spacing: .04em;
    padding: 0 70px 18.5px 8px;
    margin-bottom: 30px;
    font-size: 20px
}

@media(min-width:1600px) {
    .sidebar.home3-sidebar .widget .widget-title {
        font-size: 23px
    }
}

.sidebar.home3-sidebar .widget .swiper-button-prev,
.sidebar.home3-sidebar .widget .swiper-button-next {
    top: -79px
}

@media(min-width:1600px) {

    .sidebar.home3-sidebar .widget .swiper-button-prev,
    .sidebar.home3-sidebar .widget .swiper-button-next {
        top: -82px
    }
}

@media(min-width:768px) {
    .sidebar.home3-sidebar .widget .widget-body {
        padding: 0 10px
    }
}

.sidebar.home3-sidebar .widget.product-count-widget .product.product-sm .product-price-container {
    font-family: "Open Sans", sans-serif;
    color: #c2c2c2;
    position: relative;
    padding-left: 11px
}

.sidebar.home3-sidebar .widget.product-count-widget .product.product-sm .product-price-container.no-border {
    padding-left: 0
}

.sidebar.home3-sidebar .widget.product-count-widget .product.product-sm .product-price-container.no-border:before {
    display: none
}

.sidebar.home3-sidebar .widget.product-count-widget .product.product-sm .product-price-container .product-old-price {
    font-size: 14px;
    font-weight: 700
}

.sidebar.home3-sidebar .widget.product-count-widget .product.product-sm .product-price-container .product-price {
    font-size: 23px;
    font-weight: 600;
    margin-top: 3px
}

.sidebar.home3-sidebar .widget.product-count-widget .product.product-sm .product-price-container:before {
    content: '';
    display: block;
    height: 33px;
    width: 4px;
    background-color: #dedede;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -16.5px
}

.home4 #wrapper {
    background-color: #f6f6f6
}

.home4 .testimonials-section {
    margin-bottom: 70px
}

@media(min-width:992px) {
    .home4 .testimonials-section {
        margin-bottom: 80px
    }
}

@media(min-width:1200px) {
    .home4 .testimonials-section {
        margin-bottom: 100px
    }
}

.category-tab-container {
    margin-bottom: 70px
}

@media(min-width:992px) {
    .category-tab-container {
        margin-bottom: 90px
    }
}

@media(min-width:1200px) {
    .category-tab-container {
        margin-bottom: 110px
    }
}

@media(min-width:1600px) {
    .category-tab-container {
        margin-bottom: 130px
    }
}

@media(min-width:1200px) {
    .category-tab-container .col-lg-3 {
        width: 24.46%
    }
}

@media(min-width:1200px) {
    .category-tab-container .col-lg-9 {
        width: 75.54%
    }
}

.category-tab-container .banner {
    display: none
}

@media(min-width:1200px) {
    .category-tab-container .banner {
        display: block;
        margin-bottom: 0
    }
}

.category-tab-slider {
    overflow: hidden;
    padding-bottom: 10px
}

.category-tab-slider .swiper-container,
.category-tab-slider .swiper-wrapper {
    overflow: visible !important
}

.category-tab-slider .tab-content>.tab-pane.active {
    display: block;
    height: auto;
    overflow: visible
}

.category-tab-slider .tab-content>.tab-pane {
    display: block;
    height: 0;
    overflow: hidden
}

.category-tab-slider header {
    padding-right: 60px;
    border-bottom: 2px solid #e9e9e9;
    margin-bottom: 25px
}

@media(min-width:768px) {
    .category-tab-slider header {
        padding-right: 80px
    }
}

@media(min-width:1200px) {
    .category-tab-slider header {
        padding-right: 100px
    }
}

.category-tab-slider header h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    color: #585858;
    margin-bottom: 20px
}

@media(min-width:768px) {
    .category-tab-slider header h2 {
        margin-top: 11px;
        margin-bottom: 0;
        float: left
    }
}

.category-tab-slider header .nav.nav-tabs {
    margin-bottom: 0
}

@media(min-width:768px) {
    .category-tab-slider header .nav.nav-tabs {
        text-align: right
    }
}

.category-tab-slider .nav.nav-tabs {
    border-bottom: 0
}

.category-tab-slider .nav.nav-tabs>li {
    margin-bottom: -2px
}

.category-tab-slider .nav.nav-tabs>li+li {
    margin-left: 8px
}

@media(min-width:768px) {
    .category-tab-slider .nav.nav-tabs>li+li {
        margin-left: 18px
    }
}

@media(min-width:1200px) {
    .category-tab-slider .nav.nav-tabs>li+li {
        margin-left: 31px
    }
}

@media(min-width:1600px) {
    .category-tab-slider .nav.nav-tabs>li+li {
        margin-left: 41px
    }
}

.category-tab-slider .nav.nav-tabs>li>a {
    padding: 11px 5px 7px;
    font: 600 13px/1.5 "Open Sans", sans-serif;
    color: #adadad;
    letter-spacing: .06em;
    transition: background .35s;
    border: 2px solid transparent;
    border-radius: 0;
    margin: 0
}

@media(min-width:768px) {
    .category-tab-slider .nav.nav-tabs>li>a {
        font-size: 14px;
        padding-left: 14px;
        padding-right: 14px
    }
}

@media(min-width:1200px) {
    .category-tab-slider .nav.nav-tabs>li>a {
        padding-left: 21px;
        padding-right: 21px
    }
}

.category-tab-slider .nav.nav-tabs>li>a:hover,
.category-tab-slider .nav.nav-tabs>li>a:focus {
    background-color: transparent;
    color: #f3dbce
}

.category-tab-slider .nav.nav-tabs>li.active>a {
    background-color: transparent;
    color: #f3dbce;
    border-color: #e8e8e8;
    border-bottom-color: #f6f6f6
}

@media(min-width:1600px) {
    .dealoftheday-carousel.v4.swiper-container {
        margin-left: -20px !important;
        margin-right: -20px !important
    }
}

@media(min-width:600px) {
    .dealoftheday-carousel.v4 .swiper-slide {
        width: 40%
    }
}

@media(min-width:1200px) {
    .dealoftheday-carousel.v4 .swiper-slide {
        width: 30%
    }
}

@media(min-width:1600px) {
    .dealoftheday-carousel.v4 .swiper-slide {
        padding: 0 20px
    }
}

@media(min-width:600px) {
    .dealoftheday-carousel.v4 .swiper-slide.double {
        width: 60%
    }
}

@media(min-width:1200px) {
    .dealoftheday-carousel.v4 .swiper-slide.double {
        width: 40%
    }
}

.dealoftheday-carousel.v4 .product.product-sm {
    margin-bottom: 40px;
    padding: 0;
    border-bottom: 0
}

@media(min-width:1600px) {
    .dealoftheday-carousel.v4 .product.product-sm {
        margin-bottom: 50px
    }
}

.dealoftheday-carousel.v4 .product.product-sm figure img {
    display: block;
    max-width: none;
    width: 100%
}

@media(min-width:1800px) {
    .dealoftheday-carousel.v4 .product.product-sm figure {
        max-width: 180px;
        width: 180px;
        margin-right: 20px
    }
}

.dealoftheday-carousel.v4 .product.product-sm .product-title {
    max-width: 190px;
    font-size: 16px;
    line-height: 1.35;
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 6px
}

@media(min-width:1800px) {
    .dealoftheday-carousel.v4 .product.product-sm .product-meta {
        padding-left: 200px
    }
}

.dealoftheday-carousel.v4 .product.product-sm .product-meta .product-brand {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    float: none
}

.dealoftheday-carousel.v4 .product.product-sm .product-meta .product-brand a {
    color: #b5b5b5
}

.dealoftheday-carousel.v4 .product.product-sm .product-meta .product-brand a:hover,
.dealoftheday-carousel.v4 .product.product-sm .product-meta .product-brand a:focus {
    color: #f3dbce
}

.dealoftheday-carousel.v4 .product.product-sm .product-meta .ratings-container {
    float: none;
    margin-bottom: 0
}

.dealoftheday-carousel.v4 .product.product-sm .product-colors {
    margin-top: 0;
    margin-bottom: 0
}

.dealoftheday-carousel.v4 .product.product-sm .product-colors span {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border: 1px solid #666;
    margin-right: 7px
}

.dealoftheday-carousel.v4 .product.product-sm .product-colors span:last-child {
    margin-right: 0
}

.dealoftheday-carousel.v4 .product.product-sm .product-price-container {
    font-family: "Fira Sans", Arial, sans-serif;
    margin-bottom: 10px
}

.dealoftheday-carousel.v4 .product.product-sm .product-price-container .product-old-price {
    display: inline-block;
    font-size: 16px;
    font-weight: 500
}

.dealoftheday-carousel.v4 .product.product-sm .product-price-container .product-old-price+.product-price {
    display: inline-block;
    margin-top: 0;
    margin-left: 5px
}

.dealoftheday-carousel.v4 .product.product-sm .product-price-container .product-price {
    font-size: 16px;
    font-weight: 500
}

.product.product5.wide {
    margin-bottom: 40px
}

.product.product5.wide:hover,
.product.product5.wide:focus {
    padding: 0;
    background-color: transparent;
    margin: 0 0 40px;
    box-shadow: none
}

@media(min-width:992px) {
    .product.product5.wide .product-top {
        margin-bottom: 22px
    }
}

@media(min-width:1200px) {
    .product.product5.wide .product-top {
        margin-bottom: 26px
    }
}

.product.product5.wide .product-title {
    letter-spacing: 0;
    max-width: 440px;
    line-height: 1.2
}

@media(min-width:992px) {
    .product.product5.wide .product-title {
        font-size: 18px;
        margin-bottom: 11px
    }
}

@media(min-width:1200px) {
    .product.product5.wide .product-title {
        font-size: 20px
    }
}

@media(min-width:1600px) {
    .product.product5.wide .product-title {
        font-size: 22px
    }
}

.product.product5.wide .product-meta {
    margin-bottom: 15px
}

.product.product5.wide .product-brand {
    margin-bottom: 0
}

@media(min-width:992px) {
    .product.product5.wide .product-brand {
        font-size: 15px
    }
}

@media(min-width:1200px) {
    .product.product5.wide .product-brand {
        font-size: 16px
    }
}

.product.product5.wide .product-price-container {
    margin-bottom: 20px
}

@media(min-width:1200px) {
    .product.product5.wide .product-price-container .product-old-price {
        font-size: 18px
    }
}

@media(min-width:1600px) {
    .product.product5.wide .product-price-container .product-old-price {
        font-size: 21px
    }
}

@media(min-width:1200px) {
    .product.product5.wide .product-price-container .product-price {
        font-size: 18px
    }
}

@media(min-width:1600px) {
    .product.product5.wide .product-price-container .product-price {
        font-size: 21px
    }
}

.product.product5.wide .product-countdown {
    max-width: 480px;
    margin: 0 auto;
    left: 0;
    right: 0
}

.product.product5.wide .product-countdown .countdown-section {
    padding-top: 15px;
    padding-bottom: 14px
}

@media(min-width:1600px) {
    .product.product5.wide .product-countdown .countdown-section .countdown-amount {
        font-size: 38px
    }
}

@media(min-width:1600px) {
    .product.product5.wide .product-countdown .countdown-section .countdown-period {
        font-size: 12px
    }
}

.product.product5.wide .product-countdown.countdown-sep {
    margin-left: auto;
    margin-right: auto
}

.product.product5.wide .product-countdown.countdown-sep .countdown-section {
    margin: 0 10px;
    position: relative
}

.product.product5.wide .product-countdown.countdown-sep .countdown-section:after {
    content: ':';
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    left: 100%;
    margin-left: 8px;
    top: 50%;
    margin-top: -15px;
    color: #b8b8b8;
    font-family: "Open Sans", sans-serif
}

@media(min-width:1600px) {
    .product.product5.wide .product-countdown.countdown-sep .countdown-section:after {
        margin-left: 11.5px
    }
}

.product.product5.wide .product-countdown.countdown-sep .countdown-section:last-child:after {
    display: none
}

.product.product5.wide .product-countdown.countdown-sep .countdown-show3 .countdown-section {
    width: calc(33.33% - 20px)
}

@media(min-width:1600px) {
    .product.product5.wide .product-countdown.countdown-sep .countdown-show3 .countdown-section {
        width: calc(33.33% - 30px)
    }
}

.product.product5.wide .product-countdown.countdown-sep .countdown-show4 .countdown-section {
    width: calc(25% - 20px)
}

@media(min-width:1600px) {
    .product.product5.wide .product-countdown.countdown-sep .countdown-show4 .countdown-section {
        width: calc(25% - 30px)
    }
}

.socials-section.smaller {
    overflow: hidden;
    background-color: #aaa;
    text-align: center;
    color: #fff;
    margin-bottom: 80px
}

@media(min-width:768px) {
    .socials-section.smaller {
        margin-bottom: 90px
    }
}

@media(min-width:992px) {
    .socials-section.smaller {
        margin-bottom: 105px
    }
}

@media(min-width:1200px) {
    .socials-section.smaller {
        margin-bottom: 135px
    }
}

.socials-section.smaller .carousel-inner>.item {
    padding-top: 50px;
    padding-bottom: 70px
}

@media(min-width:992px) {
    .socials-section.smaller .carousel-inner>.item {
        min-height: 430px
    }
}

.socials-section.smaller h2 {
    font: 700 25px/1 "Fira Sans", Arial, sans-serif;
    margin-bottom: 20px;
    letter-spacing: .09em
}

@media(min-width:992px) {
    .socials-section.smaller h2 {
        font-size: 30px;
        margin-bottom: 25px
    }
}

@media(min-width:1600px) {
    .socials-section.smaller h2 {
        font-size: 35px;
        margin-bottom: 30px
    }
}

.socials-section.smaller .socials-twitter-container {
    margin-bottom: 30px
}

@media(min-width:768px) {
    .socials-section.smaller .socials-twitter-container {
        margin-bottom: 35px
    }
}

@media(min-width:992px) {
    .socials-section.smaller .socials-twitter-container {
        margin-bottom: 45px
    }
}

@media(min-width:1600px) {
    .socials-section.smaller .socials-twitter-container p {
        font-size: 19px
    }
}

.socials-section.smaller .carousel-indicators {
    bottom: 30px
}

.socials-section.smaller .social-show-icon {
    margin-bottom: 30px
}

.widget-area .widget {
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
    padding-top: 5px
}

.widget-area .widget .swiper-container,
.widget-area .widget .swiper-wrapper {
    overflow: visible !important
}

.widget-area .widget .swiper-button-prev,
.widget-area .widget .swiper-button-next {
    top: -60px
}

.widget-area .widget .swiper-button-prev {
    right: 30px
}

.widget-area .widget .swiper-button-next {
    right: 0
}

.widget-area .widget .widget-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 35px
}

.widget-area .widget .product.product-sm {
    padding-left: 0;
    padding-right: 0
}

.widget-area .widget .product.product-sm .product-title {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    max-width: 188px;
    line-height: 1.2;
    margin-bottom: 8px
}

.widget-area .widget .product.product-sm .product-price-container {
    font-family: "Fira Sans", Arial, sans-serif;
    font-weight: 500;
    color: #cbcbcb
}

.widget-area .widget .product.product-sm .product-price-container .product-price {
    font-size: 15px
}

.widget-area .widget .product.product-sm .product-price-container .product-price+.product-old-price {
    display: block;
    margin-top: 5px;
    margin-left: 0
}

.widget-area .widget .product.product-sm .product-price-container .product-old-price {
    display: block;
    color: #cbcbcb;
    font-size: 14px
}

.widget-area .widget .product.product-sm .product-price-container .product-old-price+.product-price {
    display: block;
    margin-top: 5px;
    margin-left: 0
}

@media(min-width:992px) {
    .sidebar-wrapper {
        box-shadow: 3px 0 3px rgba(31, 28, 22, 0.1)
    }
}

.sidebar.v2 .widget .widget-title {
    border: 0;
    border-bottom: 4px solid #f3dbce;
    background-color: #f3f3f3;
    padding: 18.5px 70px 13.5px 20px
}

.sidebar.v2 .widget:last-child,
.sidebar.v2 .widget:last-child *:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0
}

.sidebar.v2 .widget .swiper-button-prev,
.sidebar.v2 .widget .swiper-button-next {
    border-color: #7f7f7f
}

.sidebar.v2 .widget .swiper-button-prev:hover,
.sidebar.v2 .widget .swiper-button-prev:focus,
.sidebar.v2 .widget .swiper-button-next:hover,
.sidebar.v2 .widget .swiper-button-next:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.sidebar .widget.product-count-widget .product.product-sm {
    position: relative;
    padding: 0 20px 20px 60px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee
}

@media(min-width:480px) {
    .sidebar .widget.product-count-widget .product.product-sm {
        padding-left: 80px
    }
}

@media(min-width:992px) {
    .sidebar .widget.product-count-widget .product.product-sm {
        padding-left: 50px;
        padding-bottom: 25px;
        margin-bottom: 25px
    }
}

@media(min-width:1200px) {
    .sidebar .widget.product-count-widget .product.product-sm {
        padding-left: 80px;
        padding-bottom: 30px;
        margin-bottom: 30px
    }
}

@media(min-width:1600px) {
    .sidebar .widget.product-count-widget .product.product-sm {
        padding-left: 100px;
        padding-bottom: 35px;
        margin-bottom: 35px
    }
}

.sidebar .widget.product-count-widget .product.product-sm:last-child {
    margin-bottom: 0
}

.sidebar .widget.product-count-widget .product.product-sm figure {
    float: right;
    margin-right: 0;
    margin-left: 10px;
    border: 0;
    max-width: 60px
}

@media(min-width:480px) {
    .sidebar .widget.product-count-widget .product.product-sm figure {
        max-width: 80px
    }
}

@media(min-width:992px) {
    .sidebar .widget.product-count-widget .product.product-sm figure {
        max-width: 50px
    }
}

@media(min-width:1200px) {
    .sidebar .widget.product-count-widget .product.product-sm figure {
        max-width: 80px
    }
}

@media(min-width:1600px) {
    .sidebar .widget.product-count-widget .product.product-sm figure {
        max-width: 120px
    }
}

.sidebar .widget.product-count-widget .product.product-sm .product-title {
    text-transform: capitalize;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400
}

@media(min-width:480px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-title {
        font-size: 15px
    }
}

@media(min-width:1200px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-title {
        font-size: 16px
    }
}

.sidebar .widget.product-count-widget .product.product-sm .product-meta {
    padding-left: 0;
    padding-right: 70px
}

@media(min-width:480px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-meta {
        padding-right: 90px
    }
}

@media(min-width:992px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-meta {
        padding-right: 60px
    }
}

@media(min-width:1200px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-meta {
        padding-right: 90px
    }
}

@media(min-width:1600px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-meta {
        padding-right: 130px
    }
}

.sidebar .widget.product-count-widget .product.product-sm .product-count-number {
    font: 300 28px/1 "Fira Sans", Arial, sans-serif;
    position: absolute;
    left: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -17.5px;
    color: #d0d0d0;
    letter-spacing: .03em
}

@media(min-width:480px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-count-number {
        font-size: 32px
    }
}

@media(min-width:992px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-count-number {
        left: 10px;
        font-size: 24px
    }
}

@media(min-width:1200px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-count-number {
        font-size: 42px
    }
}

@media(min-width:1600px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-count-number {
        left: 16px;
        font-size: 55px
    }
}

.sidebar .widget.product-count-widget .product.product-sm:last-child .product-count-number {
    margin-top: 0
}

.sidebar .widget.product-count-widget .product.product-sm .product-colors {
    margin-top: 0;
    margin-bottom: 0
}

.sidebar .widget.product-count-widget .product.product-sm .product-colors span {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border: 1px solid #666;
    margin-right: 7px
}

.sidebar .widget.product-count-widget .product.product-sm .product-colors span:last-child {
    margin-right: 0
}

.sidebar .widget.product-count-widget .product.product-sm .ratings-container {
    float: none;
    margin-bottom: 0
}

.sidebar .widget.product-count-widget .product.product-sm .product-price-container {
    font-family: "Fira Sans", Arial, sans-serif;
    color: #bfbfbf;
    font-weight: 500;
    margin-bottom: 7px
}

@media(min-width:768px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-price-container {
        margin-bottom: 10px
    }
}

@media(min-width:992px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-price-container {
        margin-bottom: 13px
    }
}

.sidebar .widget.product-count-widget .product.product-sm .product-price-container .product-old-price {
    font-size: 12px
}

@media(min-width:768px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-price-container .product-old-price {
        font-size: 14px
    }
}

.sidebar .widget.product-count-widget .product.product-sm .product-price-container .product-old-price+.product-price {
    margin-left: 0
}

.sidebar .widget.product-count-widget .product.product-sm .product-price-container .product-price {
    font-size: 16px;
    display: block;
    margin-top: 4px
}

@media(min-width:768px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-price-container .product-price {
        font-size: 18px
    }
}

@media(min-width:1200px) {
    .sidebar .widget.product-count-widget .product.product-sm .product-price-container .product-price {
        font-size: 20px
    }
}

.widget .product-deals-slider .product.product5:hover,
.widget .product-deals-slider .product.product5:focus {
    background-color: #fff;
    padding: 0;
    margin: 0;
    box-shadow: none
}

.home7 #wrapper {
    background-color: #fcfcfc
}

.home7 .socials-section h2 {
    font-size: 30px;
    font-weight: 400;
    font-family: "Fira Sans", Arial, sans-serif;
    margin-bottom: 30px
}

@media(min-width:992px) {
    .home7 .socials-section h2 {
        margin-bottom: 35px
    }
}

.home7 .socials-section .socials-twitter-container {
    font-family: "Fira Sans", Arial, sans-serif
}

.home7 .socials-section .carousel-inner>.item {
    padding-top: 85px;
    padding-bottom: 100px
}

@media(min-width:992px) {
    .home7 .socials-section .carousel-inner>.item {
        min-height: 530px
    }
}

.home7 .entry {
    background-color: #fff
}

.banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px
}

@media(min-width:768px) {
    .banner {
        margin-bottom: 30px
    }
}

@media(min-width:1200px) {
    .banner {
        margin-bottom: 40px
    }
}

.banner>a {
    display: block
}

.banner img {
    display: block;
    width: 100%;
    height: auto
}

.banner .banner-content {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 20;
    text-align: center;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    padding-top: 5px;
    color: #666
}

@media(min-width:768px) {
    .banner .banner-content {
        padding-top: 10px;
        white-space: nowrap
    }
}

@media(min-width:1600px) {
    .banner .banner-content {
        padding-top: 20px
    }
}

.banner .banner-content.light,
.banner .banner-content.light h3,
.banner .banner-content.light h4,
.banner .banner-content.light p,
.banner .banner-content.background--dark,
.banner .banner-content.background--dark h3,
.banner .banner-content.background--dark h4,
.banner .banner-content.background--dark p {
    color: #fff !important
}

.banner h3 {
    font: 700 15px/1 "Fira Sans", Arial, sans-serif;
    color: #444;
    margin-bottom: 11px;
    text-transform: uppercase
}

@media(min-width:768px) {
    .banner h3 {
        font-size: 20px;
        margin-bottom: 14px
    }
}

@media(min-width:1200px) {
    .banner h3 {
        font-size: 28px;
        margin-bottom: 14px
    }
}

@media(min-width:1600px) {
    .banner h3 {
        font-size: 38px;
        margin-bottom: 21px
    }
}

.banner h4 {
    font: 600 12px/1 "Open Sans", sans-serif;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase
}

@media(min-width:768px) {
    .banner h4 {
        font-size: 13px;
        margin-bottom: 14px
    }
}

@media(min-width:1200px) {
    .banner h4 {
        font-size: 14px;
        margin-bottom: 28px
    }
}

@media(min-width:1600px) {
    .banner h4 {
        margin-bottom: 31px
    }
}

.banner p {
    font: 400 16px/1.1 "Open Sans", sans-serif
}

.banner .btn.btn-sm {
    font-size: 12px;
    padding: 9px 20px 6px;
    border-radius: 20px
}

@media(min-width:1200px) {
    .banner .btn.btn-sm {
        font-size: 14px;
        padding: 11px 26px 8px;
        min-width: 140px
    }
}

.banner .btn.btn-sm.btn-border {
    padding: 8px 19px 5px
}

@media(min-width:1200px) {
    .banner .btn.btn-sm.btn-border {
        padding: 8.5px 24.5px 7.5px
    }
}

.banner .btn {
    font-size: 13px;
    padding: 9.5px 14px 6.5px
}

@media(min-width:768px) {
    .banner .btn {
        font-size: 14px;
        padding: 10.5px 14px 7.5px
    }
}

@media(min-width:1200px) {
    .banner .btn {
        font-size: 16px;
        padding: 12.5px 14px 9.5px
    }
}

.banner.bigger .banner-content {
    padding-top: 0;
    left: 40px;
    -webkit-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%)
}

@media(min-width:768px) {
    .banner.bigger .banner-content {
        left: 70px
    }
}

@media(min-width:1200px) {
    .banner.bigger .banner-content {
        left: 100px
    }
}

@media(min-width:1600px) {
    .banner.bigger .banner-content {
        left: 170px
    }
}

.banner.bigger h3 {
    font-size: 14px;
    margin-bottom: 11px
}

@media(min-width:768px) {
    .banner.bigger h3 {
        font-size: 32px;
        margin-bottom: 19px
    }
}

@media(min-width:1200px) {
    .banner.bigger h3 {
        font-size: 36px;
        margin-bottom: 24px
    }
}

@media(min-width:1600px) {
    .banner.bigger h3 {
        font-size: 45px;
        margin-bottom: 29px
    }
}

.banner.bigger h4 {
    font-size: 13px;
    margin-bottom: 10px
}

@media(min-width:768px) {
    .banner.bigger h4 {
        font-size: 13px;
        margin-bottom: 18px
    }
}

@media(min-width:1200px) {
    .banner.bigger h4 {
        font-size: 16px;
        margin-bottom: 22px
    }
}

@media(min-width:1600px) {
    .banner.bigger h4 {
        margin-bottom: 33px
    }
}

@media(max-width:480px) {
    .banner.bigger h4 {
        display: none
    }
}

@media(max-width:767px) {
    .banner.v1 .banner-content {
        display: block;
        width: 100%
    }
}

.banner.v2 {
    margin-bottom: 0
}

.banner.v2 .banner-content {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
    left: 20px
}

@media(min-width:768px) {
    .banner.v2 .banner-content {
        left: 40px
    }
}

@media(min-width:1200px) {
    .banner.v2 .banner-content {
        left: 50px
    }
}

@media(min-width:1600px) {
    .banner.v2 .banner-content {
        left: 70px
    }
}

.banner.v2.text-right .banner-content {
    text-align: right;
    left: auto;
    right: 20px
}

@media(min-width:768px) {
    .banner.v2.text-right .banner-content {
        right: 40px
    }
}

@media(min-width:1200px) {
    .banner.v2.text-right .banner-content {
        right: 50px
    }
}

@media(min-width:1600px) {
    .banner.v2.text-right .banner-content {
        right: 70px
    }
}

.banner.v2 h3 {
    font-size: 26px;
    margin-bottom: 12px
}

@media(min-width:480px) {
    .banner.v2 h3 {
        font-size: 36px;
        margin-bottom: 16px
    }
}

@media(min-width:768px) {
    .banner.v2 h3 {
        font-size: 32px;
        margin-bottom: 19px
    }
}

@media(min-width:1200px) {
    .banner.v2 h3 {
        font-size: 36px;
        margin-bottom: 12px
    }
}

@media(min-width:1600px) {
    .banner.v2 h3 {
        font-size: 45px;
        margin-bottom: 12px
    }
}

.banner.v2 h4 {
    font-size: 14px;
    margin-bottom: 12px
}

@media(min-width:480px) {
    .banner.v2 h4 {
        font-size: 16px;
        margin-bottom: 20px
    }
}

@media(min-width:768px) {
    .banner.v2 h4 {
        font-size: 16px;
        margin-bottom: 18px
    }
}

@media(min-width:1200px) {
    .banner.v2 h4 {
        font-size: 18px;
        margin-bottom: 22px
    }
}

@media(min-width:1600px) {
    .banner.v2 h4 {
        font-size: 20px;
        margin-bottom: 22px
    }
}

.banner.v2 p {
    letter-spacing: .06em;
    margin-bottom: 20px
}

@media(max-width:1199px) {
    .banner.v2 p {
        display: none
    }
}

@media(min-width:1600px) {
    .banner.v2 p {
        font-size: 18px
    }
}

.banner-group .banner-col {
    padding: 0 15px
}

@media(min-width:992px) {
    .banner-group .banner-col {
        float: left
    }
}

@media(min-width:992px) {
    .banner-group .banner-col-1 {
        width: 42%
    }
}

@media(min-width:1600px) {
    .banner-group .banner-col-1 {
        width: 41.7%
    }
}

@media(min-width:992px) {
    .banner-group .banner-col-2 {
        width: 28.4%
    }
}

@media(min-width:1600px) {
    .banner-group .banner-col-2 {
        width: 28%
    }
}

@media(min-width:992px) {
    .banner-group .banner-col-3 {
        width: 29.6%
    }
}

@media(min-width:1600px) {
    .banner-group .banner-col-3 {
        width: 30.3%
    }
}

.banner.v3 {
    transition: all .4s
}

@media(min-width:992px) {
    .banner.v3 {
        margin-bottom: 38px
    }
}

.banner.v3:after {
    content: '';
    display: block;
    width: 240px;
    -webkit-transform: skew(25deg);
    -ms-transform: skew(25deg);
    transform: skew(25deg);
    background-color: #fff;
    position: absolute;
    left: -500px;
    top: -25%;
    bottom: -25%;
    opacity: .5;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.6);
    transition: all .7s
}

.banner.v3:hover:after,
.banner.v3:focus:after {
    left: calc(100% + 160px)
}

.banner.v4 {
    transition: all .4s
}

@media(min-width:992px) {
    .banner.v4 {
        margin-bottom: 30px
    }
}

@media(min-width:1200px) {
    .banner.v4 {
        margin-bottom: 40px
    }
}

@media(max-width:767px) {
    .banner-top-container {
        padding: 0 5px
    }
}

.banner-top-container .row {
    margin-left: -10px;
    margin-right: -10px
}

@media(min-width:768px) {
    .banner-top-container .row .slider-col {
        float: left;
        width: 64.66%;
        padding: 0 10px
    }
}

@media(min-width:768px) {
    .banner-top-container .row .banner-col {
        float: left;
        width: 35.34%;
        padding: 0 10px
    }
}

.banner.v5 {
    margin-bottom: 20px
}

.slider-col .banner-top-slider {
    margin-bottom: 20px
}

.slider-col .banner.v5 {
    margin-bottom: 0
}

.slider-col .banner.v5 .banner-content {
    padding-top: 0;
    left: 20px;
    text-align: left;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media(min-width:1200px) {
    .slider-col .banner.v5 .banner-content {
        left: 40px
    }
}

@media(min-width:1600px) {
    .slider-col .banner.v5 .banner-content {
        left: 60px
    }
}

.slider-col .banner.v5 .banner-content.right {
    left: auto;
    right: 20px
}

@media(min-width:1200px) {
    .slider-col .banner.v5 .banner-content.right {
        right: 50px
    }
}

@media(min-width:1600px) {
    .slider-col .banner.v5 .banner-content.right {
        right: 90px
    }
}

.slider-col .banner.v5 h4 {
    font-size: 27px;
    font-weight: 300;
    color: #777;
    letter-spacing: .1em;
    margin-bottom: 7px
}

@media(max-width:1199px) {
    .slider-col .banner.v5 h4 {
        font-size: 24px
    }
}

@media(max-width:480px) {
    .slider-col .banner.v5 h4 {
        font-size: 18px
    }
}

.slider-col .banner.v5 h3 {
    font-weight: 700;
    color: #f3dbce;
    font-size: 40px;
    margin-bottom: 9px
}

@media(max-width:1199px) {
    .slider-col .banner.v5 h3 {
        font-size: 32px
    }
}

@media(max-width:480px) {
    .slider-col .banner.v5 h3 {
        font-size: 28px
    }
}

.slider-col .banner.v5 p {
    color: #666;
    font-size: 19px;
    line-height: 1.15;
    letter-spacing: .04em;
    margin-bottom: 16px
}

@media(max-width:1199px) {
    .slider-col .banner.v5 p {
        font-size: 17px
    }
}

@media(max-width:480px) {
    .slider-col .banner.v5 p {
        display: none
    }
}

@media(min-width:480px) {
    .slider-col .banner.v5 .btn {
        min-width: 140px
    }
}

@media(min-width:992px) {
    .slider-col .banner.v5 .btn {
        min-width: 155px
    }
}

.slider-col .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px;
    line-height: 0
}

.slider-col .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
    background: transparent;
    opacity: 1;
    border: 2px solid #444;
    transition: all .4s
}

.slider-col .swiper-pagination-bullet.swiper-pagination-bullet-active,
.slider-col .swiper-pagination-bullet:hover,
.slider-col .swiper-pagination-bullet:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.slider-col .swiper-pagination-bullets.background--dark .swiper-pagination-bullet {
    border-color: #fff
}

.slider-col .swiper-pagination-bullets.background--dark .swiper-pagination-bullet.swiper-pagination-bullet-active,
.slider-col .swiper-pagination-bullets.background--dark .swiper-pagination-bullet:hover,
.slider-col .swiper-pagination-bullets.background--dark .swiper-pagination-bullet:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.slider-col .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6.5px
}

.banner-row-container .banner-main-col {
    padding: 0 10px
}

@media(min-width:768px) {
    .banner-row-container .banner-main-col {
        float: left;
        width: 57%
    }
}

@media(min-width:1200px) {
    .banner-row-container .banner-main-col {
        padding: 0 20px;
        width: 57.9%
    }
}

@media(min-width:1600px) {
    .banner-row-container .banner-main-col {
        width: 57.2%
    }
}

.banner-row-container .banner-side-col {
    padding: 0 10px
}

@media(min-width:768px) {
    .banner-row-container .banner-side-col {
        float: left;
        width: 43%
    }
}

@media(min-width:1200px) {
    .banner-row-container .banner-side-col {
        padding: 0 20px;
        width: 42.1%
    }
}

@media(min-width:1600px) {
    .banner-row-container .banner-side-col {
        width: 42.8%
    }
}

.banner.v6 {
    margin-bottom: 20px
}

@media(min-width:1200px) {
    .banner.v6 {
        margin-bottom: 40px
    }
}

.banner.v6 .banner-content {
    left: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
    padding-top: 0
}

@media(min-width:992px) {
    .banner.v6 .banner-content {
        left: 30px
    }
}

.banner.v6 .banner-content.right {
    left: auto;
    right: 20px
}

@media(min-width:992px) {
    .banner.v6 .banner-content.right {
        right: 30px
    }
}

.banner.v6 h4 {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .08em;
    margin-bottom: 10px
}

@media(min-width:1600px) {
    .banner.v6 h4 {
        font-size: 17px;
        margin-bottom: 15px
    }
}

@media(max-width:480px) {
    .banner.v6 h4 {
        display: none
    }
}

.banner.v6 h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: .88;
    margin-bottom: 10px
}

@media(min-width:1600px) {
    .banner.v6 h3 {
        font-size: 48px;
        margin-bottom: 18px
    }
}

.banner.v6 h3 span {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 28px
}

@media(min-width:1600px) {
    .banner.v6 h3 span {
        font-size: 45px
    }
}

@media(min-width:768px) and (max-width:1199px) {
    .banner.v6:not(.bigger) h4 {
        display: none
    }
}

@media(max-width:480px) {
    .banner.v6:not(.bigger) h3 {
        font-size: 26px
    }
}

@media(max-width:480px) {
    .banner.v6:not(.bigger) h3 span {
        font-size: 24px
    }
}

.banner.v6.bigger h3 {
    font-size: 47px;
    margin-bottom: 12px
}

@media(min-width:1600px) {
    .banner.v6.bigger h3 {
        font-size: 67px;
        margin-bottom: 16px
    }
}

@media(max-width:480px) {
    .banner.v6.bigger h3 {
        font-size: 36px
    }
}

.banner.v6.bigger h3 span {
    font-size: 45px
}

@media(min-width:1600px) {
    .banner.v6.bigger h3 span {
        font-size: 65px;
        margin-bottom: 8px
    }
}

@media(max-width:480px) {
    .banner.v6.bigger h3 span {
        font-size: 33px
    }
}

.banner.v6 p {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 300;
    letter-spacing: .05em;
    margin-bottom: 12px
}

@media(max-width:1199px) {
    .banner.v6 p {
        display: none
    }
}

@media(min-width:1600px) {
    .banner.v6 p {
        margin-bottom: 17px
    }
}

@media(min-width:480px) {
    .banner.v6 .btn {
        min-width: 120px
    }
}

@media(min-width:1600px) {
    .banner.v6 .btn {
        min-width: 155px
    }
}

@media(min-width:768px) and (max-width:1439px) {
    .banner.v6 .btn {
        font-size: 14px;
        padding: 9px 10px 6px
    }
}

.banner-pack .banner {
    margin-bottom: 0
}

.banner-pack .row {
    margin: 0
}

@media(min-width:768px) {
    .banner-pack .banner-wrapper {
        float: left;
        padding: 0
    }
}

@media(min-width:768px) {
    .banner-pack .pack-col1 {
        width: 65.1%
    }
}

@media(min-width:768px) {
    .banner-pack .pack-col2 {
        width: 34.9%
    }
}

@media(min-width:768px) {
    .banner-pack .pack-col3 {
        width: 60%
    }
}

@media(min-width:768px) {
    .banner-pack .pack-col4 {
        width: 40%
    }
}

@media(min-width:768px) {
    .banner-pack .pack-col5 {
        width: 29.7%
    }
}

@media(min-width:768px) {
    .banner-pack .pack-col6 {
        width: 70.3%
    }
}

@media(min-width:768px) {
    .banner-pack .pack-col7 {
        width: 62.96%
    }
}

@media(min-width:768px) {
    .banner-pack .pack-col8 {
        width: 37.04%
    }
}

.banner-pack:after {
    content: '';
    display: table;
    clear: both
}

.banner.v7 {
    margin-bottom: 0
}

@media(max-width:767px) {
    .banner.v7 {
        max-height: 240px;
        overflow: hidden
    }
}

.banner.v7 .banner-content {
    padding-top: 0;
    left: 20px;
    top: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: left
}

@media(min-width:992px) {
    .banner.v7 .banner-content {
        left: 28px;
        top: 30px
    }
}

@media(min-width:1200px) {
    .banner.v7 .banner-content {
        left: 35px;
        top: 35px
    }
}

@media(min-width:1600px) {
    .banner.v7 .banner-content {
        left: 48px;
        top: 48px
    }
}

.banner.v7 .banner-content.bottom {
    top: auto;
    bottom: 20px
}

@media(min-width:992px) {
    .banner.v7 .banner-content.bottom {
        bottom: 30px
    }
}

@media(min-width:1200px) {
    .banner.v7 .banner-content.bottom {
        bottom: 35px
    }
}

@media(min-width:1600px) {
    .banner.v7 .banner-content.bottom {
        bottom: 50px
    }
}

.banner.v7 .banner-content.center {
    text-align: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.banner.v7 h4 {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #444;
    letter-spacing: 0
}

@media(min-width:992px) {
    .banner.v7 h4 {
        font-size: 20px
    }
}

@media(min-width:1600px) {
    .banner.v7 h4 {
        font-size: 30px;
        margin-bottom: 14px
    }
}

.banner.v7 h3 {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 13px;
    color: #333;
    letter-spacing: .01em
}

@media(min-width:768px) {
    .banner.v7 h3 {
        font-size: 26px
    }
}

@media(min-width:992px) {
    .banner.v7 h3 {
        font-size: 32px
    }
}

@media(min-width:1200px) {
    .banner.v7 h3 {
        font-size: 36px;
        letter-spacing: .05em
    }
}

@media(min-width:1600px) {
    .banner.v7 h3 {
        font-size: 45px;
        margin-bottom: 17px;
        letter-spacing: .1em
    }
}

.banner.v7 .social-content h3 {
    margin-bottom: 10px
}

@media(min-width:992px) {
    .banner.v7 .social-content h3 {
        margin-bottom: 38px
    }
}

@media(min-width:1600px) {
    .banner.v7 .social-content h3 {
        margin-bottom: 38px
    }
}

.banner.v7 .banner-content-tweets {
    white-space: normal;
    width: 100%;
    margin: auto;
    padding: 0 15px
}

@media(min-width:992px) {
    .banner.v7 .banner-content-tweets {
        width: 90%;
        padding: 0
    }
}

@media(min-width:1600px) {
    .banner.v7 .banner-content-tweets {
        width: 80%
    }
}

.banner.v7 .swiper-container {
    position: static;
    overflow-y: visible
}

.banner.v7 .banner-tweet p {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.45;
    font-family: "Open Sans", sans-serif
}

@media(min-width:768px) {
    .banner.v7 .banner-tweet p {
        font-size: 13px
    }
}

@media(min-width:992px) {
    .banner.v7 .banner-tweet p {
        font-size: 15px;
        margin-bottom: 10px
    }
}

@media(min-width:1200px) {
    .banner.v7 .banner-tweet p {
        font-size: 17px;
        margin-bottom: 17px
    }
}

@media(max-width:420px) {
    .banner.v7 .banner-tweet p {
        font-size: 12px
    }
}

.banner.v7 .banner-tweet span {
    font-size: 13px;
    font-style: italic;
    font-family: "Fira Sans", Arial, sans-serif
}

@media(min-width:992px) {
    .banner.v7 .banner-tweet span {
        font-size: 14px
    }
}

@media(min-width:1200px) {
    .banner.v7 .banner-tweet span {
        font-size: 16px
    }
}

@media(max-width:420px) {
    .banner.v7 .banner-tweet span {
        font-size: 12px
    }
}

.banner.v7.banner-twitter {
    overflow: hidden
}

@media(max-width:767px) {
    .banner.v7.banner-twitter {
        max-height: none
    }
}

.banner.v7.banner-twitter h3 {
    margin-bottom: 14px
}

@media(min-width:1200px) {
    .banner.v7.banner-twitter h3 {
        margin-bottom: 28px
    }
}

@media(min-width:1600px) {
    .banner.v7.banner-twitter h3 {
        margin-bottom: 38px
    }
}

.banner.v7 .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: -20px;
    line-height: 0
}

@media(min-width:1200px) {
    .banner.v7 .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: -60px
    }
}

@media(max-width:480px) {
    .banner.v7 .swiper-container-horizontal>.swiper-pagination-bullets {
        display: none
    }
}

.banner.v7 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    opacity: 1;
    border: 2px solid #fff;
    transition: all .4s
}

.banner.v7 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    border-color: #fff
}

.banner.v7 .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px
}

.banner-top-slider2 {
    border-right: 1px solid #fff
}

.banner-top-slider2.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px;
    line-height: 0
}

.banner-top-slider2 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
    background: transparent;
    opacity: 1;
    border: 2px solid #fff;
    transition: all .4s
}

.banner-top-slider2 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.banner-top-slider2 .swiper-pagination-bullet:hover,
.banner-top-slider2 .swiper-pagination-bullet:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.banner-top-slider2 .swiper-pagination-bullets.background--light .swiper-pagination-bullet {
    border-color: #555
}

.banner-top-slider2 .swiper-pagination-bullets.background--light .swiper-pagination-bullet.swiper-pagination-bullet-active,
.banner-top-slider2 .swiper-pagination-bullets.background--light .swiper-pagination-bullet:hover,
.banner-top-slider2 .swiper-pagination-bullets.background--light .swiper-pagination-bullet:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.banner-top-slider2 .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6.5px
}

.banner.v8 {
    margin-bottom: 0;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff
}

@media(min-width:768px) {
    .banner.v8.last {
        border-bottom: 0
    }
}

.banner.v8 .banner-content {
    padding-top: 0;
    left: 20px;
    text-align: left;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media(min-width:768px) {
    .banner.v8 .banner-content {
        left: 25px
    }
}

@media(min-width:1200px) {
    .banner.v8 .banner-content {
        left: 30px
    }
}

@media(min-width:1600px) {
    .banner.v8 .banner-content {
        left: 40px
    }
}

.banner.v8 .banner-content.background--light .btn.btn-border.btn-white {
    color: #555;
    border-color: #555
}

.banner.v8 .btn.btn-border {
    border-radius: 28px !important
}

@media(min-width:768px) {
    .banner.v8 .btn.btn-border {
        min-width: 126px
    }
}

@media(min-width:992px) {
    .banner.v8 .btn.btn-border {
        min-width: 156px
    }
}

.banner.v8 .btn.btn-border:hover,
.banner.v8 .btn.btn-border:focus {
    color: #f3dbce !important;
    border-radius: 28px !important;
    border-color: #f3dbce !important;
    background-color: transparent !important
}

.banner.v8 h3 {
    color: #444;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: .05em;
    text-transform: none;
    line-height: .9;
    margin-bottom: 12px
}

@media(min-width:768px) {
    .banner.v8 h3 {
        font-size: 24px;
        margin-bottom: 15px
    }
}

@media(min-width:1200px) {
    .banner.v8 h3 {
        font-size: 34px;
        margin-bottom: 20px
    }
}

@media(min-width:1600px) {
    .banner.v8 h3 {
        font-size: 50px;
        margin-bottom: 30px
    }
}

.banner.v8 h4 {
    font-size: 16px;
    font-style: italic;
    color: #555;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 10px
}

@media(min-width:768px) {
    .banner.v8 h4 {
        font-size: 18px;
        margin-bottom: 13px
    }
}

@media(min-width:1200px) {
    .banner.v8 h4 {
        font-size: 20px;
        margin-bottom: 16px
    }
}

@media(min-width:1600px) {
    .banner.v8 h4 {
        font-size: 23px;
        margin-bottom: 18px
    }
}

.banner.v8.bigger {
    border-right: 0
}

@media(min-width:768px) {
    .banner.v8.bigger {
        border-bottom: 0
    }
}

.banner.v8.bigger .banner-content {
    left: 20px
}

@media(min-width:768px) {
    .banner.v8.bigger .banner-content {
        left: 30px
    }
}

@media(min-width:1200px) {
    .banner.v8.bigger .banner-content {
        left: 40px
    }
}

@media(min-width:1600px) {
    .banner.v8.bigger .banner-content {
        left: 55px
    }
}

.banner.v8.bigger h3 {
    font-size: 34px;
    line-height: .85;
    margin-bottom: 14px
}

@media(min-width:480px) {
    .banner.v8.bigger h3 {
        font-size: 38px
    }
}

@media(min-width:768px) {
    .banner.v8.bigger h3 {
        font-size: 36px;
        margin-bottom: 18px
    }
}

@media(min-width:1200px) {
    .banner.v8.bigger h3 {
        font-size: 52px;
        margin-bottom: 24px
    }
}

@media(min-width:1600px) {
    .banner.v8.bigger h3 {
        font-size: 70px;
        margin-bottom: 32px
    }
}

.banner.v8.bigger h4 {
    font-size: 18px;
    margin-bottom: 12px
}

@media(min-width:768px) {
    .banner.v8.bigger h4 {
        font-size: 20px;
        margin-bottom: 13px
    }
}

@media(min-width:1200px) {
    .banner.v8.bigger h4 {
        font-size: 23px;
        margin-bottom: 16px
    }
}

@media(min-width:1600px) {
    .banner.v8.bigger h4 {
        font-size: 25px;
        margin-bottom: 19px
    }
}

.hero-revslider.rev_slider_wrapper {
    margin-bottom: 60px;
    background-color: #efefef
}

@media(min-width:992px) {
    .hero-revslider.rev_slider_wrapper {
        margin-bottom: 70px
    }
}

@media(min-width:1200px) {
    .hero-revslider.rev_slider_wrapper {
        min-height: 800px
    }
}

.tp-caption.herotitle {
    font-family: "Fira Sans", Arial, sans-serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: .05em !important
}

.tp-caption.herosubtitle,
.tp-caption.herotext {
    font-family: "Open Sans", sans-serif;
    color: #fff
}

.tp-caption.herosubtitle {
    font-weight: 600;
    letter-spacing: .07em !important
}

.tp-caption.herotext {
    line-height: 1.35 !important;
    max-width: 560px
}

@media(min-width:992px) {
    .tp-caption.herocallaction.btn {
        min-width: 156px !important
    }
}

@media(max-width:991px) {
    .tp-caption.herocallaction.btn {
        padding: 10px 18px 8px !important
    }
}

@media(max-width:767px) {
    .tp-caption.herocallaction.btn {
        padding: 8px 14px 5px !important
    }
}

@media(max-width:480px) {
    .tp-caption.herocallaction.btn {
        padding: 6px 8px 4px !important
    }
}

.lead-quote {
    max-width: 960px;
    margin: 0 auto 50px;
    text-align: center;
    color: #666;
    background-color: transparent;
    font: 400 20px/1.5 "Fira Sans", Arial, sans-serif;
    padding: 50px 0 0
}

@media(min-width:992px) {
    .lead-quote {
        margin-bottom: 70px
    }
}

.lead-quote:after {
    left: 50%;
    top: 0
}

.lead-quote p {
    margin-bottom: 10px;
    font-style: italic
}

.lead-quote cite {
    font: 500 13px/1 "Open Sans", sans-serif;
    color: #999;
    letter-spacing: .07em;
    text-transform: uppercase
}

.story-section {
    position: relative;
    width: 100%;
    background-color: #efefef;
    margin-bottom: 80px
}

@media(min-width:768px) {
    .story-section {
        display: table;
        margin-bottom: 90px
    }
}

@media(min-width:1200px) {
    .story-section {
        margin-bottom: 110px
    }
}

@media(min-width:1440px) {
    .story-section {
        margin-bottom: 140px
    }
}

.story-section h2 {
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    margin-bottom: 26px
}

.story-section p {
    margin-bottom: 20px
}

@media(min-width:1440px) {
    .story-section p {
        margin-bottom: 24px
    }
}

.story-section p:last-of-type {
    margin-bottom: 32px
}

.story-section .story-content-col {
    font-size: 16px;
    line-height: 1.64;
    padding: 50px 20px
}

@media(min-width:768px) {
    .story-section .story-content-col {
        display: table-cell;
        vertical-align: middle;
        width: 46.45%;
        font-size: 15px;
        padding: 60px 25px
    }
}

@media(min-width:1200px) {
    .story-section .story-content-col {
        padding: 75px 40px;
        font-size: 16px;
        width: 36.45%
    }
}

@media(min-width:1440px) {
    .story-section .story-content-col {
        padding: 95px 50px;
        font-size: 17px
    }
}

.story-section .story-video-col {
    padding: 0;
    background-size: cover;
    text-align: center;
    background-position: center center;
    padding: 100px 0
}

@media(min-width:768px) {
    .story-section .story-video-col {
        padding: 0;
        display: table-cell;
        vertical-align: middle;
        width: 53.55%
    }
}

@media(min-width:1200px) {
    .story-section .story-video-col {
        width: 63.55%
    }
}

.story-section .story-video-col img {
    display: block;
    width: 100%;
    height: auto
}

.video-btn {
    display: inline-block;
    width: 140px;
    height: 140px;
    background-position: 0 -9540px;
    transition: background-color .35s;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5)
}

.video-btn.smaller {
    width: 125px;
    height: 125px;
    background-position: 0 -9415px
}

.video-btn:hover,
.video-btn:focus {
    background-color: rgba(0, 0, 0, 0.8)
}

.member {
    font-size: 15px;
    line-height: 1.6;
    color: #888;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(31, 28, 22, 0.1);
    margin-bottom: 80px
}

@media(min-width:768px) {
    .member {
        margin-bottom: 90px
    }
}

@media(min-width:1200px) {
    .member {
        margin-bottom: 110px
    }
}

@media(min-width:1440px) {
    .member {
        margin-bottom: 145px
    }
}

.member figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0
}

.member .member-meta {
    padding: 27px 24px 4px
}

.member h4 {
    color: #888;
    font-size: 18px;
    line-height: 1;
    letter-spacing: .08em;
    font-weight: 400;
    margin-bottom: 8px
}

.member h3 {
    color: #555;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px
}

.member p {
    margin-bottom: 30px
}

.member .social-icons {
    position: relative;
    padding-top: 13px;
    margin-left: -6px;
    margin-right: -6px
}

.member .social-icons:before {
    content: '';
    display: inline-block;
    width: 110px;
    position: absolute;
    top: 0;
    left: 6px;
    height: 1px;
    background-color: #dbdbdb
}

.testimonials-section {
    text-align: center;
    color: #fff;
    padding: 75px 0 45px;
    margin-bottom: 40px
}

@media(min-width:768px) {
    .testimonials-section {
        padding-top: 80px;
        margin-bottom: 80px
    }
}

@media(min-width:992px) {
    .testimonials-section {
        margin-bottom: 100px
    }
}

.testimonials-section h3,
.testimonials-section h2 {
    color: inherit;
    text-transform: uppercase;
    letter-spacing: .075em
}

.testimonials-section h2 {
    font: 300 36px/1 "Fira Sans", Arial, sans-serif;
    margin-bottom: 60px;
    position: relative
}

@media(min-width:768px) {
    .testimonials-section h2 {
        font-size: 48px;
        margin-bottom: 70px
    }
}

@media(min-width:992px) {
    .testimonials-section h2 {
        font-size: 68px;
        margin-bottom: 80px
    }
}

.testimonials-section h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    margin-left: -25px;
    position: absolute;
    left: 50%;
    bottom: -30px;
    background-color: #4d4d4d
}

@media(min-width:768px) {
    .testimonials-section h2:after {
        bottom: -36px;
        height: 4px
    }
}

@media(min-width:992px) {
    .testimonials-section h2:after {
        bottom: -44px;
        height: 5px
    }
}

.testimonials-section h3 {
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
    margin-bottom: 20px
}

@media(min-width:768px) {
    .testimonials-section h3 {
        font-size: 18px;
        margin-bottom: 25px
    }
}

@media(min-width:992px) {
    .testimonials-section h3 {
        font-size: 20px;
        margin-bottom: 35px
    }
}

.testimonials-gallery-container {
    margin: 0 auto;
    max-width: 980px
}

.testimonial-gallery {
    font: 400 19px/1.5 "Open Sans", sans-serif;
    padding: 0;
    background-color: transparent;
    color: inherit;
    margin-bottom: 30px
}

@media(min-width:768px) {
    .testimonial-gallery {
        margin-bottom: 55px
    }
}

.testimonial-gallery:after {
    display: none
}

.testimonial-gallery p {
    margin-bottom: 20px
}

.testimonial-gallery cite {
    font: italic 400 15px/1.5 "Fira Sans", Arial, sans-serif;
    color: inherit
}

.testimonials-carousel-container {
    max-width: 180px;
    margin: 0 auto;
    padding: 10px 0;
    overflow: hidden
}

.testimonials-gallery-carousel {
    overflow: visible !important
}

.testimonials-gallery-carousel img {
    display: inline-block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2
}

.testimonials-gallery-carousel .swiper-slide {
    width: 41px !important;
    height: 35px;
    text-align: center;
    border: 3px solid transparent;
    margin: 0 8px;
    border-radius: 50%
}

.testimonials-gallery-carousel .swiper-slide img {
    max-width: 35px
}

.testimonials-gallery-carousel .swiper-slide.swiper-slide-active {
    width: 56px !important;
    height: 56px;
    margin-top: -10px;
    border-color: #4d4d4d
}

.testimonials-gallery-carousel .swiper-slide.swiper-slide-active img {
    max-width: 50px
}

.testimonials-gallery-carousel .swiper-slide.swiper-slide-active:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 32px 32px 0 0;
    border-color: #4d4d4d transparent transparent transparent;
    position: absolute;
    left: -3px;
    top: -3px;
    z-index: 1
}

.table-row {
    width: 100%
}

@media(min-width:992px) {
    .table-row {
        display: table
    }
}

@media(min-width:992px) {
    .table-cell {
        display: table-cell;
        width: 50%;
        vertical-align: middle
    }
}

.table-cell.cell-image {
    min-height: 240px;
    background-size: cover;
    background-position: center center
}

.table-cell.cell-content {
    padding: 100px 48px;
    color: #888;
    font-size: 16px;
    line-height: 1.64;
    padding: 50px 20px
}

@media(min-width:768px) {
    .table-cell.cell-content {
        font-size: 15px;
        padding: 60px 25px
    }
}

@media(min-width:1200px) {
    .table-cell.cell-content {
        padding: 75px 40px;
        font-size: 16px
    }
}

@media(min-width:1440px) {
    .table-cell.cell-content {
        padding: 95px 50px;
        font-size: 17px
    }
}

.table-cell.cell-content .cell-content-wrapper {
    max-width: 700px
}

.table-cell.cell-content h2 {
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    margin-bottom: 26px
}

.table-cell.cell-content p {
    margin-bottom: 20px
}

@media(min-width:1440px) {
    .table-cell.cell-content p {
        margin-bottom: 24px
    }
}

.table-cell.cell-content p:last-of-type {
    margin-bottom: 32px
}

.info-boxes-container {
    margin-top: 50px
}

@media(min-width:1200px) {
    .info-boxes-container {
        margin-top: 65px
    }
}

@media(min-width:1440px) {
    .info-boxes-container {
        margin-top: 80px
    }
}

.info-box {
    position: relative;
    padding-left: 72px;
    font: 400 14px/1.36 "Open Sans", sans-serif;
    color: #999;
    letter-spacing: .02em;
    margin-bottom: 30px
}

@media(min-width:768px) {
    .info-box {
        margin-bottom: 50px
    }
}

@media(min-width:768px) {
    .info-box {
        max-width: 320px
    }
}

@media(min-width:1200px) {
    .info-box {
        margin-bottom: 60px
    }
}

.info-box.border-left {
    position: relative
}

@media(min-width:992px) {
    .info-box.border-left:before {
        content: '';
        display: block;
        background-color: #ddd;
        width: 1px;
        height: 100%;
        position: absolute;
        left: -16px;
        top: 0
    }

    .home4 .info-box.border-left:before {
        background-color: #e6e6e6
    }
}

@media(min-width:1200px) {
    .info-box.border-left:before {
        left: -31px
    }
}

.info-box .info-icon {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 45px;
    height: 50px;
    margin-top: -25px
}

.info-box .info-icon.icon-truck {
    background-position: 0 -6220px
}

.info-box .info-icon.icon-truck.gray {
    background-position: 0 -6170px
}

.info-box .info-icon.icon-headphones {
    background-position: 0 -6620px
}

.info-box .info-icon.icon-headphones.gray {
    background-position: 0 -6570px
}

.info-box .info-icon.icon-lock {
    background-position: 0 -6020px
}

.info-box .info-icon.icon-lock.gray {
    background-position: 0 -5970px
}

.info-box .info-icon.icon-return {
    background-position: 0 -6120px
}

.info-box .info-icon.icon-return.gray {
    background-position: 0 -6070px
}

.info-box .info-box-title {
    font: 500 17px/1 "Fira Sans", Arial, sans-serif;
    color: #666;
    margin-bottom: 12px;
    letter-spacing: .07em;
    text-transform: uppercase
}

.info-box p:last-of-type {
    margin-bottom: 0 !important
}

.info-box .r-more {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    line-height: 1.1;
    font-weight: 600;
    margin-top: 12px
}

.progress-bars-container {
    margin-top: 50px
}

.progress-bars-container .progress-container {
    max-width: 570px
}

@media(min-width:1200px) {
    .progress-bars-container {
        margin-top: 70px
    }
}

@media(min-width:1440px) {
    .progress-bars-container {
        margin-top: 90px
    }
}

.socials-section {
    overflow: hidden;
    background-color: #aaa;
    text-align: center;
    color: #fff;
    margin-bottom: 70px
}

@media(min-width:768px) {
    .socials-section {
        margin-bottom: 80px
    }
}

@media(min-width:1200px) {
    .socials-section {
        margin-bottom: 100px
    }
}

.socials-section .carousel-inner>.item {
    padding-top: 80px;
    padding-bottom: 120px
}

@media(min-width:992px) {
    .socials-section .carousel-inner>.item {
        min-height: 570px
    }
}

.socials-section .social-show-icon {
    display: inline-block !important;
    max-width: 100% !important;
    height: auto;
    width: auto !important;
    margin-bottom: 50px
}

.socials-section h2 {
    color: #fff;
    margin-bottom: 30px
}

@media(min-width:768px) {
    .socials-section h2 {
        margin-bottom: 40px
    }
}

@media(min-width:992px) {
    .socials-section h2 {
        margin-bottom: 50px
    }
}

.socials-section .social-bg {
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1
}

.socials-section .carousel-indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    top: auto;
    display: block;
    font-size: 0;
    width: 100%;
    margin: 10px 0 0;
    padding: 0
}

.socials-section .carousel-indicators li {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border: 0;
    transition: all .4s;
    text-indent: 0
}

.socials-section .carousel-indicators li:hover,
.socials-section .carousel-indicators li:focus {
    background-color: transparent;
    border-color: transparent
}

.socials-section .carousel-indicators li.active {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    background-color: transparent;
    border-color: transparent
}

.socials-section .carousel-indicators li.active .feed-icon {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.socials-section .carousel-indicators li.active .feed-icon:before {
    border-bottom-color: #f3dbce
}

.socials-section .socials-twitter-container {
    max-width: 770px;
    margin: 0 auto 40px
}

@media(min-width:768px) {
    .socials-section .socials-twitter-container {
        margin-bottom: 50px
    }
}

@media(min-width:992px) {
    .socials-section .socials-twitter-container {
        margin-bottom: 60px
    }
}

.socials-section .socials-twitter-container p {
    font: 400 16px/1.55 "Open Sans", sans-serif;
    margin-bottom: 25px
}

@media(min-width:768px) {
    .socials-section .socials-twitter-container p {
        font-size: 17px
    }
}

@media(min-width:1200px) {
    .socials-section .socials-twitter-container p {
        font-size: 18px
    }
}

.socials-section .socials-twitter-container span {
    font: italic 400 15px/1.6 "Fira Sans", Arial, sans-serif
}

@media(min-width:768px) {
    .socials-section .socials-twitter-container span {
        font-size: 16px
    }
}

@media(min-width:1200px) {
    .socials-section .socials-twitter-container span {
        font-size: 17px
    }
}

.socials-section .btn {
    font-size: 15px;
    padding: 11px 23px 8px;
    min-width: 135px
}

.socials-section .socials-facebook-container {
    max-width: 540px;
    margin: 0 auto 40px
}

@media(min-width:768px) {
    .socials-section .socials-facebook-container {
        margin-bottom: 48px
    }
}

@media(min-width:992px) {
    .socials-section .socials-facebook-container {
        margin-bottom: 58px
    }
}

.socials-section .socials-facebook-container .row {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 25px
}

@media(min-width:768px) {
    .socials-section .socials-facebook-container .row {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 35px
    }
}

@media(min-width:992px) {
    .socials-section .socials-facebook-container .row {
        margin-left: -15px;
        margin-right: -15px
    }
}

.socials-section .socials-facebook-container .f-section {
    display: block;
    float: left;
    padding: 0 5px;
    width: 14.285%
}

@media(min-width:768px) {
    .socials-section .socials-facebook-container .f-section {
        padding: 0 10px
    }
}

@media(min-width:992px) {
    .socials-section .socials-facebook-container .f-section {
        padding: 0 15px
    }
}

.socials-section .socials-facebook-container .f-section img {
    display: block;
    width: 100%;
    height: auto
}

.socials-section .socials-facebook-container .f-section a {
    display: block
}

.socials-section .socials-facebook-container .f-action {
    font-size: 0
}

.socials-section .socials-facebook-container .f-action .btn.btn-border {
    padding: 10px 23px 7px;
    min-width: 110px
}

.socials-section .socials-facebook-container .f-action .btn.btn-border:hover,
.socials-section .socials-facebook-container .f-action .btn.btn-border:focus {
    border-radius: 28px !important
}

.socials-section .socials-facebook-container .f-action .btn,
.socials-section .socials-facebook-container .f-action span {
    display: inline-block;
    vertical-align: middle
}

.socials-section .socials-facebook-container .f-action span {
    font: 500 18px/1 "Open Sans", sans-serif
}

@media(min-width:768px) {
    .socials-section .socials-facebook-container .f-action span {
        font-size: 25px
    }
}

.socials-section .socials-facebook-container .f-action .btn+span {
    margin-left: 15px
}

@media(min-width:768px) {
    .socials-section .socials-facebook-container .f-action .btn+span {
        margin-left: 25px
    }
}

.socials-section .socials-youtube-container {
    margin-bottom: 75px
}

@media(min-width:768px) {
    .socials-section .socials-youtube-container {
        margin-bottom: 90px
    }
}

@media(min-width:992px) {
    .socials-section .socials-youtube-container {
        margin-bottom: 100px
    }
}

.socials-section .feed-icon {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all .4s;
    cursor: pointer
}

.socials-section .feed-icon.icon-twitter {
    background-position: 0 -4278px
}

.socials-section .feed-icon.icon-facebook {
    background-position: 0 -4316px
}

.socials-section .feed-icon.icon-youtube {
    background-position: 0 -4240px
}

.socials-section .feed-icon:hover,
.socials-section .feed-icon:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.socials-section .feed-icon:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 8px 4px;
    border-color: transparent transparent transparent transparent;
    position: absolute;
    left: 50%;
    margin-left: -3px;
    bottom: 100%
}

.partner {
    text-align: center
}

.partner a {
    display: inline-block
}

.partner img {
    display: inline-block;
    max-width: 100%;
    height: auto
}

.entry {
    margin-bottom: 70px
}

@media(min-width:992px) {
    .entry {
        margin-bottom: 80px
    }
}

@media(min-width:1200px) {
    .entry {
        margin-bottom: 90px
    }
}

@media(min-width:1600px) {
    .entry {
        margin-bottom: 100px
    }
}

.entry>.row {
    margin-left: -15px;
    margin-right: -15px
}

@media(min-width:1440px) {
    .entry>.row {
        margin-left: -17.5px;
        margin-right: -17.5px
    }
}

.entry>.row [class*="col-"] {
    padding-left: 13px;
    padding-right: 13px
}

@media(min-width:1440px) {
    .entry>.row [class*="col-"] {
        padding-left: 17.5px;
        padding-right: 17.5px
    }
}

@media(min-width:992px) {
    .entry>.row .col-md-7 {
        width: 56%
    }
}

@media(min-width:992px) {
    .entry>.row .col-md-5 {
        width: 44%
    }
}

.entry .entry-media>a {
    display: block
}

.entry .entry-media img {
    display: block;
    width: 100%;
    height: auto
}

.entry .entry-date {
    display: block;
    font: 400 18px/0.82 "Open Sans", sans-serif;
    color: #888;
    margin: 15px 0 10px
}

@media(min-width:992px) {
    .entry .entry-date {
        margin-top: 5px
    }
}

@media(min-width:1440px) {
    .entry .entry-date {
        font-size: 22px;
        margin: 22px 0 14px
    }
}

.entry .entry-title {
    font: 700 28px/1.05 "Open Sans", sans-serif;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px
}

@media(min-width:1440px) {
    .entry .entry-title {
        font-size: 35px;
        margin-bottom: 18px
    }
}

.entry .entry-title a {
    color: #555
}

.entry .entry-title a:hover,
.entry .entry-title a:focus {
    color: #f3dbce
}

.entry .entry-excerpt p {
    margin-bottom: 16px
}

.entry .entry-excerpt p:last-child {
    display: none
}

@media(min-width:1600px) {
    .entry .entry-excerpt p:last-child {
        display: block
    }
}

.entry .btn.btn-readmore {
    font-size: 14px;
    padding: 11px 30px 8px
}

@media(min-width:1600px) {
    .entry .btn.btn-readmore {
        margin-top: 6px
    }
}

.entry .entry-meta-container {
    padding-top: 18px;
    position: relative;
    color: #a8a8a8;
    font-weight: 400;
    font-size: 0;
    font-family: "Fira Sans", Arial, sans-serif;
    line-height: 20px
}

.entry .entry-meta-container:before {
    content: '';
    display: block;
    width: 110px;
    height: 1px;
    background-color: #dbdbdb;
    position: absolute;
    bottom: 100%;
    left: 0
}

.entry .entry-meta-container .entry-meta {
    display: inline-block;
    font-size: 0;
    margin-right: 40px;
    margin-bottom: 3px;
    margin-top: 3px;
    white-space: nowrap
}

.entry .entry-meta-container .entry-meta:last-child {
    margin-right: 0
}

.entry .entry-meta-container .entry-meta a,
.entry .entry-meta-container .entry-meta span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px
}

@media(min-width:1440px) {

    .entry .entry-meta-container .entry-meta a,
    .entry .entry-meta-container .entry-meta span {
        font-size: 17px
    }
}

.entry .entry-meta-container .entry-meta a {
    color: #a8a8a8
}

.entry .entry-meta-container .entry-meta a:hover,
.entry .entry-meta-container .entry-meta a:focus {
    color: #f3dbce
}

.entry .entry-meta-container .entry-meta.entry-tags {
    display: block;
    font-size: 16px;
    margin-top: 11px;
    white-space: normal
}

.entry .entry-meta-container .icon-meta {
    vertical-align: middle;
    display: inline-block;
    height: 16px;
    margin-right: 8px
}

.entry .entry-meta-container .icon-meta.icon-meta-comments {
    width: 16px;
    background-position: 0 -846px
}

.entry .entry-meta-container .icon-meta.icon-meta-type {
    width: 12px;
    margin-right: 10px;
    background-position: 0 -750px
}

.entry .entry-meta-container .icon-meta.icon-meta-heart {
    width: 17px;
    margin-right: 7px;
    background-position: 0 -814px
}

.entry .entry-meta-container .icon-meta.icon-meta-view {
    width: 23px;
    background-position: 0 -782px
}

.entry .entry-meta-container .icon-meta.icon-meta-user {
    width: 16px;
    background-position: 0 -766px
}

.entry .entry-meta-container .icon-meta.icon-meta-tags {
    width: 19px;
    margin-right: 5px;
    background-position: 0 -734px
}

.entry.entry-grid {
    margin-bottom: 30px
}

@media(min-width:768px) {
    .entry.entry-grid {
        margin-bottom: 50px
    }
}

@media(min-width:1200px) {
    .entry.entry-grid {
        margin-bottom: 70px
    }
}

.entry.entry-grid .entry-grid-wrapper {
    position: relative;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 1px 1px rgba(31, 28, 22, 0.1)
}

.entry.entry-grid .entry-media {
    margin: -1px -1px 0
}

.entry.entry-grid .entry-media,
.entry.entry-grid .entry-media img {
    border-radius: 8px 8px 0 0
}

.entry.entry-grid .entry-media .carousel-control.left {
    left: 20px
}

.entry.entry-grid .entry-media .carousel-control.right {
    right: 20px
}

.entry.entry-grid .entry-content-wrapper {
    padding: 25px 20px 20px
}

@media(min-width:992px) {
    .entry.entry-grid .entry-content-wrapper {
        padding: 30px 25px 20px
    }
}

.entry.entry-grid .entry-date {
    font-size: 19px;
    letter-spacing: .05em;
    margin: 0 0 10px
}

.entry.entry-grid .entry-title {
    font-size: 25px;
    margin-bottom: 11px;
    letter-spacing: .04em
}

.entry.entry-grid .entry-content {
    margin-bottom: 24px
}

@media(min-width:1600px) {
    .entry.entry-grid .entry-content {
        margin-bottom: 32px
    }
}

.entry.entry-grid .entry-content p:last-child {
    margin-bottom: 0
}

.entry.entry-grid.entry-quote .entry-grid-wrapper {
    border: 0;
    box-shadow: none
}

.entry.entry-grid.entry-quote blockquote {
    background-color: #4d4d4d;
    font-weight: 500;
    color: #fff;
    padding: 37px 42px 51px 60px;
    background-size: cover
}

@media(max-width:767px) {
    .entry.entry-grid.entry-quote blockquote {
        padding: 32px 26px 41px 48px
    }
}

.entry.entry-grid.entry-quote blockquote:after {
    left: 24px;
    top: 40px;
    background-image: url("/Assets/images/quote-icon-white.png")
}

@media(max-width:767px) {
    .entry.entry-grid.entry-quote blockquote:after {
        left: 18px;
        top: 35px
    }
}

.entry.entry-grid.entry-quote blockquote p {
    margin-bottom: 14px
}

.entry.entry-grid.entry-quote blockquote cite {
    font-weight: 500;
    color: #fff
}

.entry.entry-grid.v2 .entry-media {
    margin-top: 0
}

.entry.entry-grid.v2 .entry-media,
.entry.entry-grid.v2 .entry-media img {
    border-radius: 0
}

.entry.entry-grid.v2 .entry-content-wrapper {
    padding-top: 25px;
    padding-bottom: 7px
}

.entry.entry-grid.v2 .entry-meta-container {
    padding: 17px 20px 20px
}

@media(min-width:992px) {
    .entry.entry-grid.v2 .entry-meta-container {
        padding-left: 25px;
        padding-right: 25px
    }
}

.entry.entry-grid.v2 .entry-meta-container:before {
    display: none
}

.entry.entry-grid.entry-overlay .entry-grid-wrapper {
    box-shadow: none;
    border: 0;
    overflow: hidden
}

.entry.entry-grid.entry-overlay .entry-media {
    margin: 0
}

.entry.entry-grid.entry-overlay .entry-media,
.entry.entry-grid.entry-overlay .entry-media img {
    border-radius: 8px
}

.entry.entry-grid.entry-overlay .entry-meta-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #fff;
    transition: all .45s;
    padding: 20px 20px 18px
}

@media(min-width:992px) {
    .entry.entry-grid.entry-overlay .entry-meta-container {
        padding-left: 25px;
        padding-right: 25px
    }
}

.entry.entry-grid.entry-overlay .entry-meta-container:before {
    display: none
}

.entry.entry-grid.entry-overlay:hover .entry-meta-container {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.entry.entry-small {
    margin-bottom: 60px
}

@media(min-width:768px) {
    .entry.entry-small {
        margin-bottom: 75px
    }
}

@media(min-width:992px) {
    .entry.entry-small {
        margin-bottom: 110px
    }
}

.entry.entry-small:after {
    content: '';
    display: table;
    clear: both
}

.entry.entry-small .entry-media {
    margin-bottom: 25px
}

@media(min-width:768px) {
    .entry.entry-small .entry-media {
        float: left;
        width: 50%;
        margin: 0
    }
}

@media(min-width:768px) {
    .entry.entry-small .entry-content-wrapper {
        float: left;
        width: 50%;
        margin: 0;
        padding: 12px 22px 0
    }
}

@media(min-width:1200px) {
    .entry.entry-small .entry-content-wrapper {
        padding: 18px 30px 0
    }
}

.entry.entry-small .entry-date {
    margin-top: 0;
    margin-bottom: 8px
}

.entry.entry-small .entry-title {
    font-size: 18px;
    line-height: 1.11;
    margin-bottom: 10px
}

.entry.entry-small .entry-content {
    line-height: 1.533
}

@media(min-width:768px) and (max-width:1599px) {
    .entry.entry-small .entry-content {
        display: none
    }
}

.entry.entry-small .entry-content p {
    margin-bottom: 20px
}

.entry.entry-small .btn.btn-readmore {
    margin: 0;
    padding: 8.5px 23px 6.5px
}

.swiper-slide .entry.entry-grid {
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 1px 1px rgba(31, 28, 22, 0.1)
}

.swiper-slide .entry.entry-grid .entry-title {
    font-size: 22px;
    font-weight: 600
}

#blog-item-container {
    margin-bottom: 10px
}

#blog-item-container>.entry-grid {
    float: left
}

#blog-item-container:after {
    content: '';
    display: table;
    clear: both
}

.row.blog-row {
    margin-left: -15px;
    margin-right: -15px
}

@media(min-width:1200px) {
    .row.blog-row {
        margin-left: -20px;
        margin-right: -20px
    }
}

.row.blog-row>#blog-item-container>.entry-grid {
    padding: 0 15px
}

@media(min-width:1200px) {
    .row.blog-row>#blog-item-container>.entry-grid {
        padding: 0 20px
    }
}

@media(min-width:768px) {

    .max-col-4 .entry-grid,
    .max-col-3 .entry-grid,
    .max-col-2 .entry-grid {
        width: 50%
    }
}

@media(min-width:992px) {

    .max-col-4 .entry-grid,
    .max-col-3 .entry-grid {
        width: 33.3%
    }
}

@media(min-width:1200px) {
    .max-col-4 .entry-grid {
        width: 24.99%
    }
}

.testimonial blockquote {
    color: #7e8282;
    background-color: #eef0f1;
    font-style: normal;
    margin-bottom: 16px;
    padding: 39px 25px 40px 41px;
    font: 400 15px/1.4 "Open Sans", sans-serif
}

@media(min-width:1440px) {
    .testimonial blockquote {
        padding: 53px 45px 70px 60px;
        font-size: 17px
    }
}

.testimonial blockquote:after {
    top: 21px;
    left: 19px;
    background-image: url("/Assets/images/quote-icon2.png")
}

@media(min-width:1440px) {
    .testimonial blockquote:after {
        top: 36px;
        left: 34px
    }
}

.testimonial .testimonial-owner {
    padding-left: 15px
}

.testimonial .testimonial-owner figure {
    position: relative;
    z-index: 10;
    max-width: 72px;
    float: left;
    margin-top: -43px;
    border-radius: 50%
}

.testimonial .testimonial-owner figure:after {
    content: '';
    position: absolute;
    right: -19px;
    top: 24px;
    z-index: 10;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #eef0f1 transparent transparent transparent
}

.testimonial .testimonial-owner figure img {
    position: relative;
    z-index: 15;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 3px solid #fff
}

.testimonial .testimonial-owner .owner-meta {
    margin-left: 92px;
    font: italic 400 15px/1.45 "Fira Sans", Arial, sans-serif;
    color: #999
}

@media(max-width:991px) {
    .sidebar {
        margin-bottom: 110px
    }
}

@media(max-width:767px) {
    .sidebar {
        margin-bottom: 90px
    }
}

.sidebar .widget {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden
}

@media(min-width:1200px) {
    .sidebar .widget {
        margin-bottom: 70px
    }
}

@media(min-width:1440px) {
    .sidebar .widget {
        margin-bottom: 80px
    }
}

.sidebar .widget .widget-title {
    position: relative;
    color: #555;
    font: 700 16px/1.5 "Open Sans", sans-serif;
    text-transform: uppercase;
    padding: 16.5px 70px 13.5px 17px;
    margin: 0 0 40px
}

.sidebar .widget .widget-title>span {
    display: inline-block;
    background-color: #fff;
    padding-right: 35px
}

@media(min-width:768px) {
    .sidebar .widget .widget-body {
        padding: 0 20px
    }
}

@media(min-width:768px) {
    .sidebar .widget .widget-body .swiper-button-prev {
        left: auto;
        right: 29px
    }
}

@media(min-width:768px) {
    .sidebar .widget .widget-body .swiper-button-next {
        right: 0
    }
}

.sidebar .widget.widget-category .widget-title {
    margin-bottom: 10px;
}

.sidebar .widget.widget-category {
    border: 2px solid #fef2e3;

}

.sidebar .widget.widget-category .cat-title-icon {
    display: block;
    width: 22px;
    height: 14px;
    position: absolute;
    right: 17px;
    top: 50%;
    margin-top: -7px;
    background-position: 0 -585px
}

.sidebar .widget.widget-category .category-list li {
    position: relative;
    padding: 13.5px 0 13.5px 15px;
    font: 400 16px/1.5 "Fira Sans", Arial, sans-serif;
    border-bottom: 1px solid #eee
}

@media(min-width:768px) {
    .sidebar .widget.widget-category .category-list li {
        padding-left: 19px
    }
}

.sidebar .widget.widget-category .category-list li a {
    color: #666
}

.sidebar .widget.widget-category .category-list li:hover,
.sidebar .widget.widget-category .category-list li:focus {
    background-color: #f3dbce
}

.sidebar .widget.widget-category .cat-icon {
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 18px;
    top: 24px;
    margin-top: -11px
}

.sidebar .widget.widget-category .cat-icon.icon-tshirt {
    background-position: 0 -2754px
}

.sidebar .widget.widget-category .cat-icon.icon-tshirt.custom {
    background-position: 0 -2776px
}

.sidebar .widget.widget-category .cat-icon.icon-hang {
    background-position: 0 -2160px
}

.sidebar .widget.widget-category .cat-icon.icon-sci {
    background-position: 0 -2798px
}

.sidebar .widget.widget-category .cat-icon.icon-book {
    background-position: 0 -1918px
}

.sidebar .widget.widget-category .cat-icon.icon-brush {
    background-position: 0 -1940px
}

.sidebar .widget.widget-category .cat-icon.icon-masks {
    background-position: 0 -2182px
}

.sidebar .widget.widget-category .cat-icon.icon-sandals {
    background-position: 0 -2226px
}

.sidebar .widget.widget-category .cat-icon.icon-camera {
    background-position: 0 -1962px
}

.sidebar .widget.widget-category .cat-icon.icon-star {
    background-position: 0 -2974px
}

.sidebar .widget.widget-category .cat-icon.icon-sofa {
    background-position: 0 -2996px
}

.sidebar .widget.widget-category .cat-icon.icon-sofa.custom {
    background-position: 0 -2820px
}

.sidebar .widget.widget-category .cat-icon.icon-tv {
    background-position: 0 -2248px
}

.sidebar .widget.widget-category .cat-icon.icon-tv.custom {
    background-position: 0 -2270px
}

.sidebar .widget.widget-category .cat-icon.icon-gift {
    background-position: 0 -2138px
}

.sidebar .widget.widget-category .cat-icon.icon-gift.custom {
    background-position: 0 -2116px
}

.sidebar .widget.widget-category .cat-icon.icon-openbook {
    background-position: 0 -2886px
}

.sidebar .widget.widget-category .cat-icon.icon-openbook.custom {
    background-position: 0 -2864px
}

.sidebar .widget.widget-category .cat-icon.icon-music {
    background-position: 0 -2842px
}

.sidebar .widget.widget-category .cat-icon.icon-music.custom {
    background-position: 0 -2204px
}

.sidebar .widget.widget-category .cat-icon.icon-biking {
    background-position: 0 -1896px
}

.sidebar .widget.widget-category .cat-icon.icon-biking.custom {
    background-position: 0 -1874px
}

.sidebar .widget.widget-category .cat-icon.icon-gamepad {
    background-position: 0 -2094px
}

.sidebar .widget.widget-category .cat-icon.icon-gamepad.custom {
    background-position: 0 -2028px
}

.sidebar .widget.widget-category .cat-icon.icon-plate {
    background-position: 0 -2336px
}

.sidebar .widget.widget-category .cat-icon.icon-plate.custom {
    background-position: 0 -2908px
}

.sidebar .widget.widget-category .cat-icon.icon-stroller {
    background-position: 0 -2930px
}

.sidebar .widget.widget-category .cat-icon.icon-stroller.custom {
    background-position: 0 -2952px
}

.sidebar .widget.widget-category .cat-icon.icon-candy {
    background-position: 0 -2006px
}

.sidebar .widget.widget-category .cat-icon.icon-candy.custom {
    background-position: 0 -1984px
}

.sidebar .widget .swiper-container {
    overflow: visible
}

.sidebar .widget .popular-entry,
.sidebar .widget .latest-comment {
    padding: 20px 15px;
    margin: 0;
    border-bottom: 1px solid #eee
}

@media(min-width:768px) {

    .sidebar .widget .popular-entry,
    .sidebar .widget .latest-comment {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media(min-width:1440px) {

    .sidebar .widget .popular-entry,
    .sidebar .widget .latest-comment {
        padding-top: 24px;
        padding-bottom: 24px
    }
}

.sidebar .widget .popular-entry:first-child,
.sidebar .widget .latest-comment:first-child {
    padding-top: 0
}

.sidebar .widget .popular-entry:last-child,
.sidebar .widget .latest-comment:last-child {
    padding-bottom: 0;
    border-bottom: 0
}

.sidebar .widget .popular-entry:after,
.sidebar .widget .latest-comment:after {
    content: '';
    display: table;
    clear: both
}

.sidebar .widget .popular-entry figure,
.sidebar .widget .latest-comment figure {
    float: left
}

.sidebar .widget .popular-entry figure a,
.sidebar .widget .latest-comment figure a {
    display: block
}

.sidebar .widget .popular-entry figure img,
.sidebar .widget .latest-comment figure img {
    display: block;
    width: 100%;
    height: auto
}

.sidebar .widget .popular-entry figure {
    width: 120px
}

@media(max-width:479px) {
    .sidebar .widget .popular-entry figure {
        width: 90px
    }
}

@media(min-width:992px) and (max-width:1439px) {
    .sidebar .widget .popular-entry figure {
        width: 90px
    }
}

.sidebar .widget .pentry-meta {
    margin-left: 140px;
    padding-top: 9px
}

@media(max-width:479px) {
    .sidebar .widget .pentry-meta {
        margin-left: 110px;
        padding-top: 5px
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .sidebar .widget .pentry-meta {
        padding-top: 2px
    }
}

@media(min-width:992px) and (max-width:1439px) {
    .sidebar .widget .pentry-meta {
        margin-left: 110px;
        padding-top: 5px
    }
}

.sidebar .widget .pentry-meta span,
.sidebar .widget .pentry-meta h5 {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.3
}

@media(min-width:992px) and (max-width:1439px) {

    .sidebar .widget .pentry-meta span,
    .sidebar .widget .pentry-meta h5 {
        font-size: 14px
    }
}

@media(max-width:479px) {

    .sidebar .widget .pentry-meta span,
    .sidebar .widget .pentry-meta h5 {
        font-size: 14px
    }
}

.sidebar .widget .pentry-meta span {
    display: block;
    font-weight: 400;
    margin-bottom: 5px
}

.sidebar .widget .pentry-meta h5 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #555;
    max-width: 160px
}

.sidebar .widget .pentry-meta h5 a {
    color: #555
}

.sidebar .widget .pentry-meta h5 a:hover,
.sidebar .widget .pentry-meta h5 a:focus {
    color: #f3dbce
}

.sidebar .widget .latest-comment figure {
    width: 90px;
    border-radius: 50%
}

@media(max-width:479px) {
    .sidebar .widget .latest-comment figure {
        width: 70px
    }
}

@media(min-width:992px) and (max-width:1439px) {
    .sidebar .widget .latest-comment figure {
        width: 70px
    }
}

.sidebar .widget .latest-comment figure img {
    border-radius: 50%
}

.sidebar .widget .lcomment-meta {
    margin-left: 115px;
    padding-top: 8px;
    line-height: 1.35
}

@media(max-width:479px) {
    .sidebar .widget .lcomment-meta {
        margin-left: 90px;
        padding-top: 5px
    }
}

@media(min-width:992px) and (max-width:1439px) {
    .sidebar .widget .lcomment-meta {
        margin-left: 90px;
        padding-top: 5px
    }
}

.sidebar .widget .lcomment-meta h5 {
    font: 400 15px/1.35 "Fira Sans", Arial, sans-serif;
    color: #555;
    margin-bottom: 8px
}

@media(max-width:479px) {
    .sidebar .widget .lcomment-meta h5 {
        margin-bottom: 5px
    }
}

@media(min-width:992px) and (max-width:1439px) {
    .sidebar .widget .lcomment-meta h5 {
        margin-bottom: 5px
    }
}

.sidebar .widget .lcomment-meta h5 a {
    color: #555
}

.sidebar .widget .lcomment-meta h5 a:hover,
.sidebar .widget .lcomment-meta h5 a:focus {
    color: #f3dbce
}

.sidebar .widget .lcomment-meta p {
    margin-bottom: 8px;
    max-width: 260px
}

@media(max-width:479px) {
    .sidebar .widget .lcomment-meta p {
        margin-bottom: 5px
    }
}

@media(min-width:992px) and (max-width:1439px) {
    .sidebar .widget .lcomment-meta p {
        margin-bottom: 5px
    }
}

.sidebar .widget .lcomment-meta span {
    font: 400 14px/1.3 "Open Sans", sans-serif
}

.sidebar .widget.widget-tagcloud {
    margin-bottom: 45px
}

@media(min-width:1440px) {
    .sidebar .widget.widget-tagcloud {
        margin-bottom: 60px
    }
}

.sidebar .widget .tagcloud {
    font: 600 12px/1.5 "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px
}

.sidebar .widget .tagcloud a {
    display: block;
    float: left;
    padding: 7px 13px 5px;
    background-color: transparent;
    border: 2px solid #d6d6d6;
    color: #555;
    margin: 0 15px 15px 0;
    border-radius: 6px;
    transition: background .45s
}

@media(max-width:479px) {
    .sidebar .widget .tagcloud a {
        padding: 6px 10px 4px;
        margin: 0 10px 10px 0
    }
}

@media(min-width:992px) and (max-width:1439px) {
    .sidebar .widget .tagcloud a {
        padding: 6px 10px 4px;
        margin: 0 10px 10px 0
    }
}

@media(min-width:1440px) {
    .sidebar .widget .tagcloud a {
        margin-bottom: 20px
    }
}

.sidebar .widget .tagcloud a:hover,
.sidebar .widget .tagcloud a:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    color: #fff
}

.sidebar .widget .tagcloud:after {
    content: '';
    display: table;
    clear: both
}

.sidebar .widget .flickr-widget-list {
    list-style: none
}

.sidebar .widget .flickr-widget-list li {
    display: block;
    float: left;
    margin: 0 1px 1px 0;
    padding: 0;
    width: calc(33.3% - 1px);
    max-width: 127px;
    overflow: hidden
}

.sidebar .widget .flickr-widget-list li a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%
}

.sidebar .widget .flickr-widget-list li a img {
    display: block;
    width: 100%;
    height: auto
}

.sidebar .widget .tweet_list li {
    padding: 7px 10px 7px 10px;
    position: relative;
    margin-bottom: 14px;
    background-color: #f6f6fa;
    transition: all .4s
}

.sidebar .widget .tweet_list li .twitter-icon {
    position: absolute;
    right: 12px;
    bottom: 6px;
    font-size: 20px;
    line-height: 1;
    color: #c7c7c7;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.06)
}

.sidebar .widget .tweet_list li .tweet_time {
    display: block;
    position: relative;
    font-size: 12px;
    font-style: italic;
    color: #6a6a6a;
    margin-top: 9px;
    padding-top: 3px
}

.sidebar .widget .tweet_list li .tweet_time:after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background-color: #eee;
    position: absolute;
    top: 0;
    left: 0
}

.sidebar .widget .tweet_list li:hover {
    background-color: #eaeaea
}

.sidebar .widget .tweet_list li:last-child {
    margin-bottom: 0
}

.entry.single {
    margin-bottom: 70px
}

@media(min-width:992px) {
    .entry.single {
        margin-bottom: 85px
    }
}

@media(min-width:1200px) {
    .entry.single {
        margin-bottom: 100px
    }
}

.entry.single:hover figure {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.entry.single .entry-media {
    margin-bottom: 50px
}

.entry.single .entry-title {
    margin-bottom: 18px
}

.entry.single .entry-content {
    margin-bottom: 16px;
    line-height: 1.7
}

@media(min-width:1200px) {
    .entry.single .entry-content {
        font-size: 16px
    }
}

@media(min-width:1440px) {
    .entry.single .entry-content {
        font-size: 17px
    }
}

.entry.single .entry-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 25px 0
}

.entry.single .entry-content blockquote {
    margin-top: 28px;
    margin-bottom: 32px
}

.entry .entry-footer {
    margin-bottom: 60px
}

@media(min-width:1200px) {
    .entry .entry-footer {
        margin-bottom: 80px
    }
}

@media(min-width:1440px) {
    .entry .entry-footer {
        margin-bottom: 95px
    }
}

@media(min-width:1200px) {
    .entry .entry-footer .entry-meta-container {
        float: left
    }
}

.entry .entry-footer .social-icons {
    margin-top: 20px
}

@media(min-width:1200px) {
    .entry .entry-footer .social-icons {
        float: right;
        margin-top: 30px
    }
}

.entry .entry-author {
    padding: 50px 50px 44px;
    color: #888;
    background-color: #fbfbfb;
    border: 1px solid #eaeaea;
    border-radius: 10px
}

@media(max-width:991px) {
    .entry .entry-author {
        padding: 40px 40px 35px
    }
}

@media(max-width:767px) {
    .entry .entry-author {
        padding: 30px 30px 24px
    }
}

.entry .entry-author figure {
    float: left;
    max-width: 150px
}

@media(max-width:992px) {
    .entry .entry-author figure {
        max-width: 100px
    }
}

@media(max-width:480px) {
    .entry .entry-author figure {
        max-width: 70px;
        margin-right: 20px
    }
}

.entry .entry-author figure img {
    border-radius: 50%
}

.entry .entry-author a {
    color: #555
}

.entry .entry-author a:hover,
.entry .entry-author a:focus {
    color: #f3dbce
}

.entry .entry-author .author-content {
    font-size: 16px;
    line-height: 1.55;
    margin-left: 190px
}

@media(max-width:991px) {
    .entry .entry-author .author-content {
        margin-left: 130px
    }
}

@media(max-width:767px) {
    .entry .entry-author .author-content {
        margin-left: 125px
    }
}

@media(max-width:480px) {
    .entry .entry-author .author-content {
        margin-left: 0
    }
}

.entry .entry-author .author-content h4 {
    font-family: "Fira Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 12px;
    font-style: italic
}

.entry .entry-author .author-content p:last-of-type {
    margin-bottom: 5px
}

.entry .entry-author .author-content .more-link {
    font-size: 15px;
    color: #aaa9a9
}

.entry .entry-author .author-content .more-link:hover,
.entry .entry-author .author-content .more-link:focus {
    color: #f3dbce
}

.entry .entry-author:after {
    content: '';
    display: table;
    clear: both
}

.comments {
    margin-bottom: 110px
}

@media(max-width:992px) {
    .comments {
        margin-bottom: 85px
    }
}

@media(max-width:767px) {
    .comments {
        margin-bottom: 70px
    }
}

.comments .media {
    margin-top: 0
}

.comments .media .media-object {
    max-width: 140px
}

@media(max-width:991px) {
    .comments .media .media-object {
        max-width: 120px
    }
}

@media(max-width:767px) {
    .comments .media .media-object {
        max-width: 90px
    }
}

.comments .media .media-object,
.comments .media .media-object img {
    border-radius: 50%
}

.comments .media .media-left {
    padding: 0
}

@media(max-width:480px) {
    .comments .media .media-left {
        display: none
    }
}

.comments .media .media-body {
    padding-left: 85px
}

@media(max-width:991px) {
    .comments .media .media-body {
        padding-left: 60px
    }
}

@media(max-width:480px) {
    .comments .media .media-body {
        padding-left: 0
    }
}

.comments .media .media-body .media-body-wrapper {
    position: relative;
    z-index: 2;
    background-color: #fafafa;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    padding: 26px 50px 39px
}

@media(max-width:992px) {
    .comments .media .media-body .media-body-wrapper {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width:767px) {
    .comments .media .media-body .media-body-wrapper {
        padding: 25px 30px 29px
    }
}

.comments .media .media-body .media-body-wrapper:before {
    content: '';
    display: block;
    width: 40px;
    height: 45px;
    background-image: url("/Assets/images/blog/comment-arrow.png");
    position: absolute;
    right: 100%;
    top: 80px;
    z-index: 1
}

@media(max-width:767px) {
    .comments .media .media-body .media-body-wrapper:before {
        top: 40px
    }
}

@media(max-width:480px) {
    .comments .media .media-body .media-body-wrapper:before {
        display: none
    }
}

.comments .media ul {
    margin-left: 60px
}

@media(max-width:767px) {
    .comments .media ul {
        margin-left: 40px
    }
}

@media(max-width:480px) {
    .comments .media ul {
        margin-left: 20px
    }
}

.comments .comment {
    padding: 0;
    margin-bottom: 70px;
    color: #888;
    font-size: 16px
}

@media(max-width:991px) {
    .comments .comment {
        margin-bottom: 50px
    }
}

@media(max-width:767px) {
    .comments .comment {
        margin-bottom: 30px
    }
}

.comments .comment h4 {
    font-family: "Fira Sans", Arial, sans-serif;
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
    font-style: italic
}

.comments .comment h4 span {
    float: right;
    color: #d7d7d7;
    font-size: 90%;
    font-weight: 400
}

.comments .comment .comment-date {
    font-family: "Fira Sans", Arial, sans-serif;
    color: #aeaeae
}

.comments .comment p:last-of-type {
    margin-bottom: 9px
}

.reply-btn.btn {
    font-size: 16px;
    font-weight: 500;
    background-color: transparent;
    border-color: transparent;
    text-transform: capitalize;
    border-radius: 20px;
    padding: 6px 18px 4px
}

.reply-btn.btn .icon-reply {
    display: inline-block;
    width: 11px;
    height: 13px;
    vertical-align: middle;
    margin-right: 7px;
    background-position: 0 -221px
}

.media-body-wrapper .reply-btn.btn {
    position: absolute;
    right: 41px;
    top: 20px;
    z-index: 10
}

@media(max-width:767px) {
    .media-body-wrapper .reply-btn.btn {
        right: 26px
    }
}

@media(max-width:480px) {
    .media-body-wrapper .reply-btn.btn {
        top: auto;
        right: auto;
        position: static;
        margin-top: 6px
    }
}

.reply-btn.btn:hover,
.reply-btn.btn:focus {
    border-radius: 20px !important;
    color: #fff;
    border-color: #f3dbce;
    background-color: #f3dbce
}

.reply-btn.btn:hover .icon-reply,
.reply-btn.btn:focus .icon-reply {
    background-position: 0 -234px
}

.comment-respond {
    margin-bottom: 70px
}

.comment-respond .form-group {
    margin-bottom: 15px
}

.comment-respond .btn {
    min-width: 175px
}

.comment-respond textarea.form-control {
    min-height: 269px
}

@media(min-width:992px) {
    .comment-respond {
        margin-bottom: 130px
    }
}

@media(min-width:1200px) {
    .comment-respond {
        margin-bottom: 150px
    }
}

@media(min-width:1440px) {
    .comment-respond {
        margin-bottom: 170px
    }
}

#portfolio-filter {
    margin: 28px -12px;
    font-size: 0;
    font-family: "Fira Sans", Arial, sans-serif
}

@media(min-width:992px) {
    #portfolio-filter {
        margin: 34px -20px
    }
}

#portfolio-filter li {
    position: relative;
    display: inline-block;
    margin: 0 12px;
    transition: all .4s
}

@media(min-width:992px) {
    #portfolio-filter li {
        margin: 0 20px
    }
}

#portfolio-filter li a {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
    color: #a9a9a9;
    padding: 13px 0 11px;
    transition: all .4s;
    border: 2px solid transparent;
    border-radius: 20px
}

@media(min-width:992px) {
    #portfolio-filter li a {
        font-size: 15px;
        padding: 13px 11px 11px
    }
}

#portfolio-filter li a:hover,
#portfolio-filter li a:focus {
    color: #f3dbce
}

#portfolio-filter li:first-child:not(.active) a {
    padding-left: 0
}

@media(min-width:768px) {
    #portfolio-filter li.active:not(:first-child) {
        padding: 0 13px
    }
}

#portfolio-filter li.active a {
    color: #f3dbce;
    border-color: #f3dbce;
    padding-left: 15px;
    padding-right: 15px
}

@media(min-width:768px) {
    #portfolio-filter li.active a {
        padding-left: 25px;
        padding-right: 25px
    }
}

#portfolio-item-container {
    transition: all .45s;
    margin-bottom: 20px
}

#portfolio-item-container:after {
    content: '';
    display: table;
    clear: both
}

.portfolio-item {
    position: relative;
    float: left;
    width: 100%;
    font-family: "Fira Sans", Arial, sans-serif
}

.portfolio-item figure {
    position: relative;
    margin-bottom: 19px
}

@media(min-width:768px) {
    .portfolio-item figure {
        margin-bottom: 29px
    }
}

.portfolio-item figure img {
    display: block;
    width: 100%;
    height: auto
}

.portfolio-item figure:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease
}

.portfolio-item .zoom-btn,
.portfolio-item .link-btn {
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #f3dbce;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    z-index: 100
}

.portfolio-item .zoom-btn:hover,
.portfolio-item .zoom-btn:focus,
.portfolio-item .link-btn:hover,
.portfolio-item .link-btn:focus {
    background-color: #3dc1ff
}

.portfolio-item .zoom-btn {
    background-position: 0 -9047px;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
    left: calc(50% + 7.5px)
}

.portfolio-item .zoom-btn:hover,
.portfolio-item .zoom-btn:focus {
    color: #fff
}

.portfolio-item .link-btn {
    background-position: 0 -8987px;
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
    right: calc(50% + 7.5px)
}

.portfolio-item .portfolio-meta {
    position: relative;
    margin-top: 14px
}

.portfolio-item .portfolio-title {
    color: #666;
    margin: 0 0 8px;
    font: 400 19px/1.2 "Fira Sans", Arial, sans-serif
}

.portfolio-item .portfolio-title a {
    color: #666
}

.portfolio-item .portfolio-title a:hover,
.portfolio-item .portfolio-title a:focus {
    color: #f3dbce
}

.portfolio-item .portfolio-tags {
    font-size: 13px;
    color: #9f9f9f;
    text-transform: uppercase;
    letter-spacing: 1px
}

.portfolio-item .portfolio-tags a {
    color: #9f9f9f
}

.portfolio-item .portfolio-tags a:hover,
.portfolio-item .portfolio-tags a:focus {
    color: #f3dbce
}

.portfolio-item:hover figure:after {
    visibility: visible;
    opacity: .5
}

.portfolio-item:hover .zoom-btn,
.portfolio-item:hover .link-btn {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.portfolio-item.portfolio-overlay {
    font-family: "Open Sans", sans-serif;
    overflow: hidden
}

.portfolio-item.portfolio-overlay figure {
    margin-bottom: 0
}

.portfolio-item.portfolio-overlay .portfolio-meta {
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    transition: all .4s ease-out;
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
    visibility: hidden
}

@media(min-width:480px) {
    .portfolio-item.portfolio-overlay .portfolio-meta {
        padding: 40px
    }
}

@media(min-width:1440px) {
    .portfolio-item.portfolio-overlay .portfolio-meta {
        padding: 40px
    }
}

.portfolio-item.portfolio-overlay .portfolio-meta .btn-pview {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 10.5px 35px 8.5px
}

@media(max-width:480px) {
    .portfolio-item.portfolio-overlay .portfolio-meta .btn-pview {
        display: none
    }
}

.portfolio-item.portfolio-overlay .portfolio-meta .btn-pview:hover,
.portfolio-item.portfolio-overlay .portfolio-meta .btn-pview:focus {
    border-radius: 0
}

.portfolio-item.portfolio-overlay .portfolio-title {
    color: #fff;
    margin: 0 0 20px;
    font: 700 25px/1.08 "Open Sans", sans-serif;
    text-transform: uppercase;
    max-width: 360px
}

@media(min-width:480px) {
    .portfolio-item.portfolio-overlay .portfolio-title {
        font-size: 28px
    }
}

@media(min-width:1440px) {
    .portfolio-item.portfolio-overlay .portfolio-title {
        font-size: 35px
    }
}

.portfolio-item.portfolio-overlay .portfolio-title a {
    color: #fff
}

.portfolio-item.portfolio-overlay .portfolio-title a:hover,
.portfolio-item.portfolio-overlay .portfolio-title a:focus {
    color: #f3dbce
}

.portfolio-item.portfolio-overlay .portfolio-tags {
    font-size: 18px;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-bottom: 9px
}

@media(min-width:1440px) {
    .portfolio-item.portfolio-overlay .portfolio-tags {
        font-size: 22px
    }
}

.portfolio-item.portfolio-overlay .portfolio-tags a {
    color: #fff
}

.portfolio-item.portfolio-overlay .portfolio-tags a:hover,
.portfolio-item.portfolio-overlay .portfolio-tags a:focus {
    color: #f3dbce
}

.portfolio-item.portfolio-overlay:hover .portfolio-meta {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible
}

.row.portfolio-row {
    margin-left: -15px;
    margin-right: -15px
}

.row.portfolio-row>#portfolio-item-container>.portfolio-item {
    padding: 0 15px;
    margin-bottom: 30px
}

@media(min-width:992px) {
    .row.portfolio-row>#portfolio-item-container>.portfolio-item {
        margin-bottom: 62px
    }
}

.row.portfolio-row.smaller {
    margin-left: -14px;
    margin-right: -14px
}

.row.portfolio-row.smaller>#portfolio-item-container>.portfolio-item {
    padding: 0 14px;
    margin-bottom: 28px
}

.row.portfolio-row.smaller>#portfolio-item-container>.portfolio-item.portfolio-overlay .portfolio-meta {
    left: 14px;
    right: 14px
}

.max-col-4,
.max-col-3,
.max-col-2 {
    padding: 0 !important
}

@media(min-width:768px) {

    .max-col-4 .portfolio-item,
    .max-col-3 .portfolio-item,
    .max-col-2 .portfolio-item {
        width: 50%
    }
}

@media(min-width:992px) {

    .max-col-4 .portfolio-item,
    .max-col-3 .portfolio-item {
        width: 33.3%
    }

    .max-col-4 .portfolio-item.wide,
    .max-col-3 .portfolio-item.wide {
        width: 66.6%
    }
}

@media(min-width:1200px) {
    .max-col-4 .portfolio-item {
        width: 24.99%
    }

    .max-col-4 .portfolio-item.wide {
        width: 50%
    }
}

.max-col-4 .portfolio-item:not(.portfolio-overlay) .portfolio-title {
    font-size: 18px
}

.pload-more-btn {
    min-width: 146px;
    font-size: 15px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 13px 20px 11px
}

.pload-more-btn:hover,
.pload-more-btn:focus {
    border-radius: 0
}

.lg-outer .lg-thumb {
    padding: 8px 0
}

.lg-outer .lg-thumb-item {
    border-radius: 0
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover,
.lg-outer .lg-thumb-item:focus {
    border-color: #f3dbce
}

.portfolio-item-custom .grid-sizer {
    width: 100%;
    height: 320px
}

@media(min-width:768px) {
    .portfolio-item-custom .grid-sizer {
        width: 50%;
        height: 480px
    }
}

@media(min-width:1200px) {
    .portfolio-item-custom .grid-sizer {
        width: 33.3%;
        height: 560px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .grid-sizer {
        height: 600px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .grid-sizer {
        height: 780px
    }
}

@media(min-width:480px) {
    .portfolio-item-custom .portfolio-item {
        width: 360px
    }
}

@media(min-width:992px) {
    .portfolio-item-custom .portfolio-item figure img {
        max-width: 100%;
        width: auto
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item1 {
        width: 320px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item1 {
        width: 410px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item2 {
        width: 460px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item2 {
        width: 660px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item3 {
        width: 380px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item3 {
        width: 520px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item4 {
        width: 430px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item4 {
        width: 591px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item5 {
        width: 350px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item5 {
        width: 480px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item6 {
        width: 380px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item6 {
        width: 520px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item7 {
        width: 330px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item7 {
        width: 390px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item8 {
        width: 500px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item8 {
        width: 770px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item9 {
        width: 340px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item9 {
        width: 400px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item10 {
        width: 460px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item10 {
        width: 635px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item11 {
        width: 290px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item11 {
        width: 430px
    }
}

@media(min-width:1440px) {
    .portfolio-item-custom .custom-item12 {
        width: 410px
    }
}

@media(min-width:1600px) {
    .portfolio-item-custom .custom-item12 {
        width: 565px
    }
}

.portfolio-slider {
    height: 100vh;
    text-align: center
}

.portfolio-slider .swiper-button-prev,
.portfolio-slider .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    border: 2px solid #444;
    margin-top: -22.5px;
    z-index: 10;
    cursor: pointer;
    background-repeat: no-repeat;
    border-radius: 50%
}

@media(max-width:767px) {

    .portfolio-slider .swiper-button-prev,
    .portfolio-slider .swiper-button-next {
        display: none
    }
}

.portfolio-slider .swiper-button-prev {
    left: 40px;
    background-position: 0 -6935px
}

.portfolio-slider .swiper-button-prev.background--dark {
    border-color: #fff;
    background-position: 0 -6882px
}

.portfolio-slider .swiper-button-prev:hover,
.portfolio-slider .swiper-button-prev:focus {
    border-color: #f3dbce;
    background-color: #f3dbce;
    background-position: 0 -6882px
}

.portfolio-slider .swiper-button-next {
    right: 40px;
    background-position: 0 -6723px
}

.portfolio-slider .swiper-button-next.background--dark {
    border-color: #fff;
    background-position: 0 -6670px
}

.portfolio-slider .swiper-button-next:hover,
.portfolio-slider .swiper-button-next:focus {
    border-color: #f3dbce;
    background-color: #f3dbce;
    background-position: 0 -6670px
}

.portfolio-slider .swiper-pagination.background--dark .swiper-pagination-bullet {
    border-color: #fff
}

.portfolio-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
    background: transparent;
    border: 2px solid #444;
    opacity: 1
}

.portfolio-slider .swiper-pagination-bullet:hover,
.portfolio-slider .swiper-pagination-bullet:focus,
.portfolio-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #f3dbce;
    border-color: #f3dbce !important
}

.portfolio-slider.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 12px
}

@media(min-width:768px) {
    .portfolio-slider.swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 18px
    }
}

@media(min-width:992px) {
    .portfolio-slider.swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 24px
    }
}

@media(min-width:1600px) {
    .portfolio-slider.swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 32px
    }
}

.portfolio-slider.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7.5px
}

.slide-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center
}

.slide-center-content {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

@media(max-width:767px) {
    .slide-center-content {
        width: 100%;
        max-width: 420px
    }
}

.slide-portfolio-tags {
    font: 600 14px/1 "Open Sans", sans-serif;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 20px
}

@media(min-width:768px) {
    .slide-portfolio-tags {
        margin-bottom: 24px
    }
}

@media(min-width:992px) {
    .slide-portfolio-tags {
        margin-bottom: 30px
    }
}

@media(min-width:1600px) {
    .slide-portfolio-tags {
        margin-bottom: 40px
    }
}

.slide-portfolio-tags a {
    color: #555
}

.slide-center-content.background--dark .slide-portfolio-tags a {
    color: #fff
}

.slide-portfolio-tags a:hover,
.slide-portfolio-tags a:focus {
    color: #f3dbce !important
}

.slide-portfolio-title {
    font: 700 40px/1 "Fira Sans", Arial, sans-serif;
    color: #3e3e3e;
    text-transform: uppercase;
    margin-bottom: 16px;
    max-width: 800px
}

@media(min-width:768px) {
    .slide-portfolio-title {
        margin-bottom: 20px;
        font-size: 46px
    }
}

@media(min-width:992px) {
    .slide-portfolio-title {
        margin-bottom: 24px;
        font-size: 65px
    }
}

@media(min-width:1600px) {
    .slide-portfolio-title {
        margin-bottom: 34px;
        font-size: 80px
    }
}

.slide-center-content.background--dark .slide-portfolio-title {
    color: #fff
}

.slide-scrolldown-btn {
    display: inline-block;
    width: 55px;
    height: 55px;
    background-position: 0 -8932px;
    background-color: #f3dbce;
    border-radius: 50%;
    transition: all .4s;
    cursor: pointer
}

@media(max-width:767px) {
    .slide-scrolldown-btn {
        display: none
    }
}

.slide-scrolldown-btn:hover,
.slide-scrolldown-btn:focus {
    background-color: #009de6
}

#portfolio-details {
    font-size: 17px;
    margin: 54px 0 60px
}

@media(min-width:992px) {
    #portfolio-details {
        margin-bottom: 90px
    }
}

@media(min-width:1200px) {
    #portfolio-details {
        margin-bottom: 110px
    }
}

#portfolio-details h2 {
    font: 400 28px/1.1 "Fira Sans", Arial, sans-serif;
    margin-bottom: 21px
}

#portfolio-details p {
    margin-bottom: 20px
}

.portfolio-details-list {
    font-family: "Open Sans", sans-serif;
    color: #9f9f9f;
    font-size: 15px;
    letter-spacing: .1em
}

.portfolio-details-list li {
    margin-bottom: 31px
}

.portfolio-details-list a {
    color: #9f9f9f
}

.portfolio-details-list a:hover,
.portfolio-details-list a:focus {
    color: #f3dbce
}

.portfolio-details-list label {
    display: block;
    font: 400 15px/1 "Fira Sans", Arial, sans-serif;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 11px
}

.portfolio-details-list .portfolio-likes {
    font: 400 17px/1 "Fira Sans", Arial, sans-serif;
    margin-bottom: 37px
}

.portfolio-details-list .portfolio-likes i,
.portfolio-details-list .portfolio-likes a {
    vertical-align: middle
}

.portfolio-details-list .portfolio-likes i {
    margin-right: 2px
}

.portfolio-details-list .portfolio-like-icon {
    display: inline-block;
    width: 17px;
    height: 16px;
    background-position: 0 -798px
}

.portfolio-details-list .portfolio-tags {
    font: 400 13px/1 "Fira Sans", Arial, sans-serif;
    text-transform: uppercase;
    margin-top: 15px
}

.portfolio-details-list .portfolio-details-share label {
    margin-bottom: 15px
}

.more-photo {
    position: relative;
    margin-bottom: 20px
}

@media(min-width:768px) {
    .more-photo {
        margin-bottom: 30px
    }
}

@media(min-width:1200px) {
    .more-photo {
        margin-bottom: 40px
    }
}

.more-photo:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease
}

.more-photo .zoom-btn {
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -40px;
    left: 50%;
    margin-left: -40px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #f3dbce;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    z-index: 100;
    background-position: 0 -9107px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

.more-photo .zoom-btn:hover,
.more-photo .zoom-btn:focus {
    background-color: #3dc1ff
}

.more-photo img {
    display: block;
    width: 100%;
    height: auto
}

.more-photo:hover:after {
    opacity: .5;
    visibility: visible
}

.more-photo:hover .zoom-btn {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: visible
}

.swiper-slide .portfolio-item .portfolio-title {
    font-size: 18px
}

.portfolio-single-media img {
    display: block;
    width: 100%;
    height: auto
}

.portfolio-single-media img,
.portfolio-single-media img iframe {
    margin-bottom: 20px
}

@media(min-width:992px) {

    .portfolio-single-media img,
    .portfolio-single-media img iframe {
        margin-bottom: 30px
    }
}

.product {
    position: relative;
    margin-bottom: 60px;
    padding: 10px;
    border: 1px solid #F5F2A9 !important;
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Parlama efekti için pseudo-element */
.product::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(247, 232, 75, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
}

/* Hover efekti */
.product:hover {
    transform: translateY(-8px) rotate3d(1, 1, 0, 3deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    border-color: #F7E84B;
}

/* Parlama animasyonu hover'da çalışır */
.product:hover::after {
    animation: shine 0.9s forwards;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Mobilde hover'ı devre dışı bırak */
@media (hover: none) {
    .product:hover {
        transform: none;
        box-shadow: none;
        border-color: #F5F2A9;
    }

    .product:hover::after {
        animation: none;
    }
}


.product img {
    border-radius: 10px;
}

@media(min-width:992px) {
    .product {
        margin-bottom: 80px
    }
}

.product:hover .product-action .btn-product-like,
.product:hover .product-action .btn-product-wishlist,
.product:hover .product-action .btn-product-compare,
.product:focus .product-action .btn-product-like,
.product:focus .product-action .btn-product-wishlist,
.product:focus .product-action .btn-product-compare {
    display: inline-block
}

.product:hover .btn-quickview,
.product:focus .btn-quickview {
    visibility: visible
}

.product.product1:hover,
.product.product1:focus {
    z-index: 120;
    padding: 15px;
    margin-top: -15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 45px;
    background-color: #f0f0f0;
    box-shadow: 0 0 10px rgba(31, 28, 22, 0.4)
}

@media(min-width:1200px) {

    .product.product1:hover,
    .product.product1:focus {
        padding: 20px;
        margin-top: -20px;
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: 60px
    }
}

.product.product1:hover .product-label,
.product.product1:focus .product-label {
    visibility: hidden
}

.product.product1:hover .product-countdown .countdown-section,
.product.product1:focus .product-countdown .countdown-section {
    background-color: #f3dbce;
    border: 1px solid #f3dbce;
    box-shadow: none
}

.product.product1:hover .product-countdown .countdown-amount,
.product.product1:hover .product-countdown .countdown-period,
.product.product1:focus .product-countdown .countdown-amount,
.product.product1:focus .product-countdown .countdown-period {
    color: #fff
}

.product-top {
    position: relative;
    margin-bottom: 20px
}

.product-top figure {
    border: 1px solid #e9e9e9
}

.product-top figure a {
    display: block
}

.product-top figure img {
    display: block;
    width: 100%;
    height: auto
}

.product-meta {
    margin-bottom: 16px
}

.product-meta:after {
    content: '';
    display: table;
    clear: both
}

.ratings-container {
    position: relative;
    width: 90px;
    background-image: url("/Assets/images/ratings-bg.png")
}

.ratings-container,
.ratings-container .ratings {
    display: inline-block;
    height: 14px
}

.ratings-container .ratings {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    background-image: url("/Assets/images/ratings.png");
    text-indent: -9999px
}

.product-meta .ratings-container {
    float: right
}

.product-brand {
    font: 500 14px/1 "Fira Sans", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em
}

.product-brand a {
    color: #959595
}

.product-brand a:hover,
.product-brand a:focus {
    color: #f3dbce
}

.product-meta .product-brand {
    float: left
}

.product-title {
    font: 400 17px/1.175 "Open Sans", sans-serif;
    letter-spacing: .01em;
    margin-bottom: 12px;
    height: 40px
}

.product-title a {
    color: #555
}

.product-title a:hover,
.product-title a:focus {
    color: #f3dbce
}

.product-price-container {
    font: 700 0/1 "Fira Sans", Arial, sans-serif;
    color: #bfbfbf;
    margin-bottom: 16px
}

.product-price-container .product-old-price,
.product-price-container .product-price {
    font-size: 17px
}

.product-price-container .product-old-price {
    text-decoration: line-through
}

.product-price-container .product-old-price+.product-price {
    margin-left: 10px
}

.product-price-container .product-price {
    color: #000
}

.product-colors {
    font-size: 0;
    margin-top: -7px;
    margin-bottom: 19px
}

.product-colors span {
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    width: 19px;
    height: 19px;
    border: 1px solid #dadada;
    box-shadow: inset 0 0 0 1px #fff;
    text-indent: -9999px;
    margin-right: 6px;
    transition: all .4s
}

.product-colors span:hover {
    box-shadow: inset 0 0 0 2px #fff
}

.product-action {
    font-size: 0;
    white-space: nowrap
}

.product-action .btn-add-cart,
.product-action .btn-add-wishlist {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font: 600 0/1 "Open Sans", sans-serif;
    padding: 15.5px 22px 12.5px;
    border-radius: 28px;
    color: #777;
    border: 2px solid #c2c2c2;
    background-color: transparent;
    text-transform: uppercase;
    margin-right: 2px;
    transition: background .4s, border-radius .4s
}

@media(min-width:1440px) {

    .product-action .btn-add-cart,
    .product-action .btn-add-wishlist {
        padding-left: 26px;
        padding-right: 26px
    }
}

@media(max-width:480px) {

    .product-action .btn-add-cart,
    .product-action .btn-add-wishlist {
        padding-left: 18px;
        padding-right: 18px;
        margin-right: 12px
    }
}

.product-action .btn-add-cart>span,
.product-action .btn-add-cart .icon-cart,
.product-action .btn-add-cart .icon-wishlist,
.product-action .btn-add-wishlist>span,
.product-action .btn-add-wishlist .icon-cart,
.product-action .btn-add-wishlist .icon-wishlist {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: .02em
}

.product-action .btn-add-cart .icon-cart,
.product-action .btn-add-wishlist .icon-cart {
    background-position: 0 -947px;
    width: 17px;
    height: 17px;
    margin-top: -4px;
    margin-right: 8px
}

.product-action .btn-add-cart .icon-gifty,
.product-action .btn-add-wishlist .icon-gifty {
    background-position: 0 -674px;
    width: 17px;
    height: 15px;
    margin-top: -4px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle
}

@media(max-width:360px) {

    .product-action .btn-add-cart .icon-cart,
    .product-action .btn-add-wishlist .icon-cart {
        display: none
    }
}

.product-action .btn-add-cart .icon-wishlist,
.product-action .btn-add-wishlist .icon-wishlist {
    width: 14px;
    height: 15px;
    margin-top: -5px;
    margin-right: 8px;
    background-position: 0 -674px
}

@media(max-width:360px) {

    .product-action .btn-add-cart .icon-wishlist,
    .product-action .btn-add-wishlist .icon-wishlist {
        display: none
    }
}

.product-action .btn-add-cart.custom,
.product-action .btn-add-wishlist.custom {
    border-color: #f3dbce;
    color: #f3dbce
}

.product-action .btn-add-cart.custom .icon-cart,
.product-action .btn-add-wishlist.custom .icon-cart {
    background-position: 0 -1066px
}

.product-action .btn-add-cart.custom2,
.product-action .btn-add-wishlist.custom2 {
    border-color: #4d4d4d;
    background-color: #4d4d4d;
    color: #fff
}

.product-action .btn-add-cart.custom2:hover,
.product-action .btn-add-cart.custom2:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    color: #fff
}

.product-action .btn-add-cart.custom2 .icon-cart,
.product-action .btn-add-wishlist.custom2 .icon-cart {
    background-position: 0 -964px
}

.product-action .btn-add-cart.custom2:hover,
.product-action .btn-add-cart.custom2:focus,
.product-action .btn-add-wishlist.custom2:hover,
.product-action .btn-add-wishlist.custom2:focus {
    border-radius: 0
}

.product-action .btn-add-cart:hover,
.product-action .btn-add-cart:focus,
.product-action .btn-add-wishlist:hover,
.product-action .btn-add-wishlist:focus {
    color: #fff;
    border-color: #f3dbce;
    background-color: #f3dbce
}

.product-action .btn-add-cart:hover .icon-cart,
.product-action .btn-add-cart:focus .icon-cart,
.product-action .btn-add-wishlist:hover .icon-cart,
.product-action .btn-add-wishlist:focus .icon-cart {
    background-position: 0 -964px
}

.product-action .btn-add-cart:hover .icon-wishlist,
.product-action .btn-add-cart:focus .icon-wishlist,
.product-action .btn-add-wishlist:hover .icon-wishlist,
.product-action .btn-add-wishlist:focus .icon-wishlist {
    background-position: 0 -719px
}

.product-action.smaller .btn-add-cart,
.product-action.smaller .btn-add-wishlist {
    padding: 16px 12.5px 13px
}

.product-action.smaller .btn-add-cart span,
.product-action.smaller .btn-add-wishlist span {
    display: none
}

.product-action.smaller .btn-add-cart .icon,
.product-action.smaller .btn-add-wishlist .icon {
    display: inline-block !important;
    margin-right: 0 !important
}

.product-action .btn.btn-add-wishlist {
    padding-left: 20.5px;
    padding-right: 20.5px
}

@media(min-width:1440px) {
    .product-action .btn.btn-add-wishlist {
        padding-left: 23.5px;
        padding-right: 23.5px
    }
}

@media(max-width:480px) {
    .product-action .btn.btn-add-wishlist {
        padding-left: 18px;
        padding-right: 18px
    }
}

.product-action .btn-product-wishlist,
.product-action .btn-product-like,
.product-action .btn-product-compare {
    display: none;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    margin-right: 3px;
    border: 2px solid #c2c2c2;
    transition: background-color .4s, border-color .4s;
    border-radius: 50%
}

@media(max-width:767px) {

    .product-action .btn-product-wishlist,
    .product-action .btn-product-like,
    .product-action .btn-product-compare {
        margin-right: 6px
    }

    .product-action .btn-product-like {
        display: inline-block
    }
}

.product-action .btn-product-wishlist:last-child,
.product-action .btn-product-like:last-child,
.product-action .btn-product-compare:last-child {
    margin-right: 0
}

.product-action .btn-product-wishlist:hover,
.product-action .btn-product-wishlist:focus,
.product-action .btn-product-like:hover,
.product-action .btn-product-like:focus,
.product-action .btn-product-compare:hover,
.product-action .btn-product-compare:focus {
    border-color: #ed4e24;
    background-color: #ed4e24
}

.product-action .btn-product-wishlist {
    background-position: 0 -5114px
}

.product-action .btn-product-wishlist:hover,
.product-action .btn-product-wishlist:focus {
    background-position: 0 -5156px
}

.product-action .btn-product-like {
    background-position: 0 -5198px
}

.product-action .btn-product-like:hover,
.product-action .btn-product-like:focus {
    background-position: 0 -5240px
}

.product-action .btn-product-compare {
    background-position: 0 -5282px
}

.product-action .btn-product-compare:hover,
.product-action .btn-product-compare:focus {
    background-position: 0 -5324px
}

.btn-quickview {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
    width: 50px;
    height: 50px;
    border: 3px solid #d2d2d2;
    z-index: 100;
    border-radius: 50%;
    background-position: 0 -5926px;
    transition: background-color .4s, border-color .4s
}

.btn-quickview:not(.zoom-icon):hover,
.btn-quickview:not(.zoom-icon):focus {
    border-color: #ed4e24;
    background-color: #ed4e24;
    background-position: 0 -5882px
}

.product-label {
    display: inline-block;
    position: absolute;
    z-index: 99;
    right: 16px;
    top: 16px;
    font: 600 15px/1 "Open Sans", sans-serif;
    color: #fff;
    border-radius: 6px 6px 6px 0;
    letter-spacing: .03em;
    text-transform: uppercase;
    background-color: #f3dbce;
    text-align: center;
    min-width: 70px;
    padding: 11.5px 10px 7.5px
}

.product-label.discount {
    background-color: #ed4e24
}

.product-label.discount.yellow {
    background-color: #ffb800
}

.product-label.outofstock {
    font-size: 14px;
    line-height: .8;
    text-align: left;
    padding-top: 7px;
    padding-bottom: 5px;
    background-color: red
}

.product-label.istanbul-only {
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
    top: auto;
    bottom: 128px;
    left: 12px;
    width: 100px;
    border-radius: 5px;
    background-color: #4d4d4d;
    padding: 7px 10px 7px
}

.product-countdown:after {
    content: '';
    display: table;
    clear: both
}

.product-top .product-countdown {
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 16px
}

.product-countdown .countdown-row {
    clear: both;
    width: 100%;
    padding: 0;
    text-align: center
}

.product-countdown .countdown-section {
    display: block;
    float: left;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    box-shadow: inset 2px 2px 0 #fcfcfc;
    padding-top: 8px;
    padding-bottom: 9px;
    margin: 0 5px;
    transition: border .4s, background .4s
}

.product-countdown .countdown-show3 .countdown-section {
    width: calc(33.33% - 10px)
}

.product-countdown .countdown-show4 .countdown-section {
    width: calc(25% - 10px)
}

.product-countdown .countdown-amount {
    font: 400 30px/1 "Fira Sans", Arial, sans-serif;
    color: #999
}

.product-countdown .countdown-period {
    display: block;
    width: 100%;
    font: 600 9px/1 "Open Sans", sans-serif;
    margin-top: 1px;
    text-transform: uppercase;
    color: #a7a7a7
}

.product-countdown.countdown-sep {
    margin-left: -10px;
    margin-right: -10px
}

@media(min-width:1600px) {
    .product-countdown.countdown-sep {
        margin-left: -15px;
        margin-right: -15px
    }
}

.product-countdown.countdown-sep .countdown-section {
    margin: 0 10px;
    position: relative
}

@media(min-width:1600px) {
    .product-countdown.countdown-sep .countdown-section {
        margin: 0 15px
    }
}

.product-countdown.countdown-sep .countdown-section:after {
    content: ':';
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    left: 100%;
    margin-left: 8px;
    top: 50%;
    margin-top: -15px;
    color: #b8b8b8;
    font-family: "Open Sans", sans-serif
}

@media(min-width:1600px) {
    .product-countdown.countdown-sep .countdown-section:after {
        margin-left: 11.5px
    }
}

.product-countdown.countdown-sep .countdown-section:last-child:after {
    display: none
}

.product-countdown.countdown-sep .countdown-show3 .countdown-section {
    width: calc(33.33% - 20px)
}

@media(min-width:1600px) {
    .product-countdown.countdown-sep .countdown-show3 .countdown-section {
        width: calc(33.33% - 30px)
    }
}

.product-countdown.countdown-sep .countdown-show4 .countdown-section {
    width: calc(25% - 20px)
}

@media(min-width:1600px) {
    .product-countdown.countdown-sep .countdown-show4 .countdown-section {
        width: calc(25% - 30px)
    }
}

.product.product2 {
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid #ebebeb
}

.product.product2 .product-top {
    margin-bottom: 30px
}

.product.product2 .product-top figure {
    border: 0
}

.product.product2 .product-meta {
    position: relative;
    margin-bottom: 0
}

.product.product2 .product-meta .product-brand,
.product.product2 .product-meta .ratings-container {
    float: none
}

.product.product2 .ratings-container {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff
}

.product.product2 .product-brand {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0;
    margin-bottom: 15px
}

.product.product2 .product-brand a {
    color: #b3b3b3
}

.product.product2 .product-brand a:hover,
.product.product2 .product-brand a:focus {
    color: #f3dbce
}

.product.product2 .product-label {
    border-radius: 6px
}

.product.product2 .product-title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px
}

.product.product2 .product-price-container {
    color: #cbcbcb;
    margin-bottom: 10px;
    font-family: Arial, sans-serif
}

.product.product2 .product-price-container .product-old-price,
.product.product2 .product-price-container .product-price {
    font-size: 15px
}

.product.product2 .product-action {
    width: 170px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -85px;
    bottom: 12px;
    display: none
}

.product.product2 .btn-add-cart,
.product.product2 .btn-add-wishlist,
.product.product2 .btn-add-compare {
    display: inline-block;
    vertical-align: middle;
    border: 3px solid #d2d2d2;
    min-width: 50px;
    text-align: center;
    white-space: normal;
    font: 600 0/1 "Open Sans", sans-serif;
    padding: 0;
    border-radius: 50%;
    line-height: 44px;
    color: #fff;
    margin-right: 10px;
    transition: all 0s;
    text-transform: uppercase
}

.product.product2 .btn-add-cart:last-child,
.product.product2 .btn-add-wishlist:last-child,
.product.product2 .btn-add-compare:last-child {
    margin-right: 0
}

.product.product2 .btn-add-cart>span,
.product.product2 .btn-add-wishlist>span,
.product.product2 .btn-add-compare>span {
    display: none;
    font-size: 14px;
    letter-spacing: 0
}

.product.product2 .btn-add-cart i,
.product.product2 .btn-add-wishlist i,
.product.product2 .btn-add-compare i {
    display: inline-block;
    width: 22px;
    height: 17px;
    vertical-align: middle
}

.product.product2 .btn-add-cart i.icon-cart2,
.product.product2 .btn-add-wishlist i.icon-cart2,
.product.product2 .btn-add-compare i.icon-cart2 {
    background-position: 0 -1117px
}

.product.product2 .btn-add-cart i.icon-compare2,
.product.product2 .btn-add-wishlist i.icon-compare2,
.product.product2 .btn-add-compare i.icon-compare2 {
    background-position: 0 -879px
}

.product.product2 .btn-add-cart i.icon-wishlist2,
.product.product2 .btn-add-wishlist i.icon-wishlist2,
.product.product2 .btn-add-compare i.icon-wishlist2 {
    background-position: 0 -896px
}

.product.product2 .btn-add-cart:hover,
.product.product2 .btn-add-cart:focus,
.product.product2 .btn-add-wishlist:hover,
.product.product2 .btn-add-wishlist:focus,
.product.product2 .btn-add-compare:hover,
.product.product2 .btn-add-compare:focus {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 40;
    border-radius: 28px;
    border-color: #f3dbce;
    background-color: #f3dbce
}

.product.product2 .btn-add-cart:hover>span,
.product.product2 .btn-add-cart:focus>span,
.product.product2 .btn-add-wishlist:hover>span,
.product.product2 .btn-add-wishlist:focus>span,
.product.product2 .btn-add-compare:hover>span,
.product.product2 .btn-add-compare:focus>span {
    display: inline-block
}

.product.product2 .btn-add-cart:hover i.icon-cart2,
.product.product2 .btn-add-cart:focus i.icon-cart2,
.product.product2 .btn-add-wishlist:hover i.icon-cart2,
.product.product2 .btn-add-wishlist:focus i.icon-cart2,
.product.product2 .btn-add-compare:hover i.icon-cart2,
.product.product2 .btn-add-compare:focus i.icon-cart2 {
    background-position: 0 -1100px;
    margin-right: 5px;
    margin-top: -5px
}

.product.product2 .btn-add-cart:hover i.icon-compare2,
.product.product2 .btn-add-cart:focus i.icon-compare2,
.product.product2 .btn-add-wishlist:hover i.icon-compare2,
.product.product2 .btn-add-wishlist:focus i.icon-compare2,
.product.product2 .btn-add-compare:hover i.icon-compare2,
.product.product2 .btn-add-compare:focus i.icon-compare2 {
    background-position: 0 -862px;
    margin-top: -7px;
    margin-right: 4px
}

.product.product2 .btn-add-cart:hover i.icon-wishlist2,
.product.product2 .btn-add-cart:focus i.icon-wishlist2,
.product.product2 .btn-add-wishlist:hover i.icon-wishlist2,
.product.product2 .btn-add-wishlist:focus i.icon-wishlist2,
.product.product2 .btn-add-compare:hover i.icon-wishlist2,
.product.product2 .btn-add-compare:focus i.icon-wishlist2 {
    background-position: 0 -913px;
    margin-top: -5px;
    margin-right: 1px
}

.product.product2 .product-colors {
    margin-top: 0;
    margin-bottom: 18px
}

.product.product2 .product-colors span {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border: 1px solid #666;
    margin-right: 7px
}

.product.product2 .product-colors span:last-child {
    margin-right: 0
}

.product.product2 .product-countdown {
    margin-bottom: 10px
}

.product.product2 .product-countdown .countdown-section {
    background-color: #f3dbce;
    border-color: #f3dbce;
    box-shadow: none;
    border-radius: 3px
}

.product.product2 .product-countdown .countdown-section .countdown-amount,
.product.product2 .product-countdown .countdown-section .countdown-period {
    color: #fff
}

.product.product2 .product-countdown.countdown-sep .countdown-section:after {
    color: #f3dbce
}

.product.product2:hover,
.product.product2:focus {
    padding-bottom: 61px;
    margin-bottom: 9px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05)
}

.product.product2:hover .product-meta,
.product.product2:focus .product-meta {
    margin-top: -20px
}

.product.product2:hover .product-brand,
.product.product2:focus .product-brand {
    opacity: 0
}

.product.product2:hover .ratings-container,
.product.product2:focus .ratings-container {
    display: inline-block
}

.product.product2:hover .product-action,
.product.product2:focus .product-action {
    display: block
}

.product.product3 {
    padding: 0;
    margin-bottom: 30px;
    border: 0
}

@media(min-width:768px) {
    .product.product3 {
        margin-bottom: 50px
    }
}

@media(min-width:992px) {
    .product.product3 {
        margin-bottom: 60px
    }
}

@media(min-width:1200px) {
    .product.product3 {
        margin-bottom: 80px
    }
}

.product.product3 .product-top {
    margin-bottom: 28px
}

.product.product3 .product-top figure {
    border: 0;
    border-bottom: 1px solid #e5e4e4
}

.product.product3 .product-top:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: #f3dbce;
    opacity: 0;
    visibility: hidden;
    transition: all .4s
}

.product.product3 .product-meta {
    position: relative;
    margin-bottom: 0
}

.product.product3 .product-meta .product-brand,
.product.product3 .product-meta .ratings-container {
    float: none
}

.product.product3 .ratings-container {
    margin-bottom: 0
}

.product.product3 .product-brand {
    margin-bottom: 7px
}

.product.product3 .product-brand a {
    color: #b2b2b2
}

.product.product3 .product-brand a:hover,
.product.product3 .product-brand a:focus {
    color: #f3dbce
}

.product.product3 .product-content-wrapper {
    position: relative;
    padding-right: 95px
}

@media(min-width:768px) {
    .product.product3 .product-content-wrapper {
        padding-left: 10px
    }
}

@media(min-width:1600px) {
    .product.product3 .product-content-wrapper {
        padding-right: 120px
    }
}

.product.product3 .product-price-container {
    font-family: "Open Sans", sans-serif;
    position: absolute;
    top: 0;
    right: 0;
    color: #c2c2c2;
    margin-bottom: 0;
    width: 95px;
    text-align: left;
    padding-left: 7px;
    border-left: 4px solid #dedede;
    padding-top: 2px
}

.product.product3 .product-price-container.no-border {
    border-left: none;
    padding-top: 12px
}

@media(min-width:1200px) {
    .product.product3 .product-price-container.no-border {
        padding-top: 13px
    }
}

@media(min-width:1600px) {
    .product.product3 .product-price-container.no-border {
        padding-top: 14px
    }
}

@media(min-width:1600px) {
    .product.product3 .product-price-container {
        width: 110px
    }
}

.product.product3 .product-price-container .product-old-price {
    font-size: 13px;
    line-height: .8
}

.product.product3 .product-price-container .product-old-price+.product-price {
    margin-left: 0
}

@media(min-width:1200px) {
    .product.product3 .product-price-container .product-old-price {
        font-size: 14px
    }
}

@media(min-width:1600px) {
    .product.product3 .product-price-container .product-old-price {
        font-size: 15px
    }
}

.product.product3 .product-price-container .product-price {
    display: block;
    font-weight: 600;
    font-size: 17px;
    line-height: .8;
    margin-top: 3px
}

@media(min-width:1200px) {
    .product.product3 .product-price-container .product-price {
        font-size: 21px;
        margin-top: 5px
    }
}

@media(min-width:1600px) {
    .product.product3 .product-price-container .product-price {
        font-size: 27px
    }
}

.product.product3 .product-title {
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 0;
    max-width: 270px
}

@media(min-width:1600px) {
    .product.product3 .product-title {
        font-size: 19px
    }
}

.product.product3 .product-action-btn {
    display: none;
    height: 46px;
    border: 3px solid #fff;
    position: absolute;
    right: 20px;
    text-align: center;
    color: #fff;
    z-index: 200;
    border-radius: 50%;
    font: 600 0/1.5 "Open Sans", sans-serif;
    text-transform: uppercase;
    padding-top: 10px;
    padding-left: 9px;
    padding-right: 9px
}

@media(min-width:1600px) {
    .product.product3 .product-action-btn {
        height: 56px;
        padding-top: 15px;
        padding-left: 14px;
        padding-right: 14px
    }
}

.product.product3 .product-action-btn span {
    display: none;
    font-size: 14px
}

@media(min-width:1600px) {
    .product.product3 .product-action-btn span {
        font-size: 15px
    }
}

.product.product3 .product-action-btn.btn-cart {
    top: 20px
}

@media(min-width:1600px) {
    .product.product3 .product-action-btn.btn-cart {
        top: 20px
    }
}

.product.product3 .product-action-btn.btn-wishlist {
    top: 76px
}

@media(min-width:1600px) {
    .product.product3 .product-action-btn.btn-wishlist {
        top: 86px
    }
}

.product.product3 .product-action-btn.btn-compare {
    top: 132px
}

@media(min-width:1600px) {
    .product.product3 .product-action-btn.btn-compare {
        top: 152px
    }
}

.product.product3 .product-action-btn.btn-qview {
    top: 188px
}

@media(min-width:1600px) {
    .product.product3 .product-action-btn.btn-qview {
        top: 218px
    }
}

.product.product3 .product-action-btn .icon,
.product.product3 .product-action-btn span {
    vertical-align: middle
}

.product.product3 .product-action-btn .icon {
    display: inline-block;
    width: 22px;
    height: 22px
}

.product.product3 .product-action-btn .icon.icon-cart3 {
    background-position: 0 -2468px
}

.product.product3 .product-action-btn .icon.icon-wishlist3 {
    background-position: 0 -2314px
}

.product.product3 .product-action-btn .icon.icon-compare3 {
    background-position: 0 -1830px
}

.product.product3 .product-action-btn .icon.icon-qview {
    background-position: 0 -2072px
}

.product.product3 .product-action-btn:hover,
.product.product3 .product-action-btn:focus {
    border-radius: 28px;
    min-width: 179px;
    background-color: #fff;
    color: #666
}

@media(min-width:1600px) {

    .product.product3 .product-action-btn:hover,
    .product.product3 .product-action-btn:focus {
        min-width: 199px
    }
}

.product.product3 .product-action-btn:hover span,
.product.product3 .product-action-btn:focus span {
    display: inline-block
}

.product.product3 .product-action-btn:hover .icon,
.product.product3 .product-action-btn:focus .icon {
    margin-top: -3px;
    margin-right: 2px
}

@media(min-width:1600px) {

    .product.product3 .product-action-btn:hover .icon,
    .product.product3 .product-action-btn:focus .icon {
        margin-top: -5px
    }
}

.product.product3 .product-action-btn:hover .icon.icon-cart3,
.product.product3 .product-action-btn:focus .icon.icon-cart3 {
    background-position: 0 -1852px
}

.product.product3 .product-action-btn:hover .icon.icon-wishlist3,
.product.product3 .product-action-btn:focus .icon.icon-wishlist3 {
    background-position: 0 -2292px
}

.product.product3 .product-action-btn:hover .icon.icon-compare3,
.product.product3 .product-action-btn:focus .icon.icon-compare3 {
    background-position: 0 -3018px;
    margin-right: 4px
}

.product.product3 .product-action-btn:hover .icon.icon-qview,
.product.product3 .product-action-btn:focus .icon.icon-qview {
    background-position: 0 -2050px
}

.product.product3 .product-colors {
    padding-top: 3px;
    margin-top: 0;
    padding-bottom: 7px
}

.product.product3 .product-colors span {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border: 1px solid #666;
    margin-right: 7px
}

.product.product3 .product-colors span:last-child {
    margin-right: 0
}

.product.product3 .product-label {
    border-radius: 6px 0 6px 6px;
    right: 0;
    top: 0
}

.product.product3 .product-countdown {
    max-width: 320px;
    margin: auto
}

.product.product3:hover .product-top:before,
.product.product3:focus .product-top:before {
    opacity: .5;
    visibility: visible
}

.product.product3:hover .product-action-btn,
.product.product3:focus .product-action-btn {
    display: block
}

.product.product4 {
    padding: 15px 15px 40px;
    text-align: center;
    border: 1px solid #eee;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(31, 22, 28, 0.05);
    margin-bottom: 0
}

.product.product4 .product-top {
    margin-bottom: 27px
}

.product.product4 .product-top figure {
    border: 1px solid transparent
}

.product.product4 .product-countdown {
    margin-bottom: 0;
    left: 2.5px;
    right: 2.5px;
    bottom: 5px
}

.product.product4 .product-countdown .countdown-section {
    background-color: #f3dbce;
    border-color: #f3dbce;
    box-shadow: none;
    margin: 0 2.5px
}

.product.product4 .product-countdown .countdown-section .countdown-amount,
.product.product4 .product-countdown .countdown-section .countdown-period {
    color: #fff
}

.product.product4 .product-countdown .countdown-show4 .countdown-section {
    width: calc(25% - 5px)
}

.product.product4 .ratings-container {
    margin-bottom: 10px
}

.product.product4 .product-title {
    font-size: 16px;
    line-height: 1.25;
    max-width: 215px;
    margin-left: auto;
    margin-right: auto
}

.product.product4 .product-action .btn-product-like,
.product.product4 .product-action .btn-product-compare {
    margin: 0;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s
}

.product.product4 .product-action .btn-add-cart {
    margin: 0 7px
}

.product.product4 .product-price-container {
    margin-bottom: 24px;
    font-family: "Fira Sans", Arial, sans-serif;
    font-weight: 500;
    color: #bfbfbf
}

.product.product4 .product-price-container .product-price,
.product.product4 .product-price-container .product-old-price {
    font-size: 16px
}

.product.product4 .product-price-container .product-price {
    color: #ffb800
}

.product.product4 .btn-quickview {
    top: 6px;
    right: 6px
}

.product.product4 .product-label {
    border-radius: 6px 6px 6px 0;
    top: 25px;
    right: 25px
}

.product.product4:hover,
.product.product4:focus {
    box-shadow: 0 0 10px rgba(31, 28, 22, 0.2)
}

.product.product4:hover .product-top figure,
.product.product4:focus .product-top figure {
    border-color: #f1f1f1
}

.product.product4:hover .product-action .btn-product-like,
.product.product4:hover .product-action .btn-product-compare,
.product.product4:focus .product-action .btn-product-like,
.product.product4:focus .product-action .btn-product-compare {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s
}

.product.product4:hover .product-action .btn-add-cart.custom,
.product.product4:focus .product-action .btn-add-cart.custom {
    color: #f3dbce;
    border-color: #6ed1ff
}

.product.product4:hover .product-action .btn-add-cart.custom:hover,
.product.product4:hover .product-action .btn-add-cart.custom:focus,
.product.product4:focus .product-action .btn-add-cart.custom:hover,
.product.product4:focus .product-action .btn-add-cart.custom:focus {
    color: #fff;
    background-color: #6ed1ff
}

.product.product4:hover .product-label,
.product.product4:focus .product-label {
    visibility: hidden
}

.product.product5 {
    margin-bottom: 60px
}

@medi(min-width:992px) {
    .product.product5 {
        margin-bottom: 70px
    }
}

.product.product5 .product-top {
    margin-bottom: 20px
}

.product.product5 .product-brand {
    font-size: 13px;
    line-height: 1;
    margin-top: 2px
}

.product.product5 .product-brand a {
    color: #b5b5b5
}

.product.product5 .product-brand a:hover,
.product.product5 .product-brand a:focus {
    color: #f3dbce
}

.product.product5 .product-title {
    font-size: 16px;
    line-height: 1.25;
    max-width: 225px;
    margin-bottom: 8px
}

.product.product5 .product-colors {
    margin-top: 0;
    margin-bottom: 0
}

.product.product5 .product-colors span {
    border-radius: 50%;
    width: 17px;
    height: 17px;
    border: 1px solid #666;
    margin-right: 4px
}

.product.product5 .product-colors span:last-child {
    margin-right: 0
}

.product.product5 .product-price-container {
    margin-bottom: 14px;
    font-family: "Fira Sans", Arial, sans-serif;
    font-weight: 500;
    color: #bfbfbf
}

.product.product5 .product-price-container .product-price,
.product.product5 .product-price-container .product-old-price {
    font-size: 16px
}

.product.product5 .product-countdown {
    margin-bottom: 0;
    left: 10px;
    right: 10px;
    bottom: 10px
}

.product.product5 .product-countdown .countdown-section {
    margin: 0 2.5px;
    box-shadow: inset 1px 0 2px rgba(255, 255, 255, 0.7), 0 0 2px rgba(31, 28, 28, 0.15)
}

.product.product5 .product-countdown .countdown-show4 .countdown-section {
    width: calc(25% - 5px)
}

.product.product5 .product-action {
    margin-top: 20px
}

.product.product5 .product-action .btn-add-cart {
    color: #fff;
    background-color: #ffb800;
    border-color: #ffb800
}

.product.product5 .product-action .btn-add-cart .icon-cart {
    background-position: 0 -964px
}

.product.product5 .product-action .btn-add-cart:hover,
.product.product5 .product-action .btn-add-cart:focus {
    color: #fff;
    border-radius: 0;
    background-color: #ffb800;
    border-color: #ffb800
}

.product.product5 .product-action .btn-add-wishlist {
    color: #fff;
    border-color: #c2c2c2;
    background-color: #c2c2c2
}

.product.product5 .product-action .btn-add-wishlist .icon-wishlist {
    background-position: 0 -719px
}

.product.product5 .product-action .btn-add-wishlist:focus,
.product.product5 .product-action .btn-add-wishlist:hover {
    color: #fff;
    border-radius: 0;
    border-color: #c2c2c2;
    background-color: #c2c2c2
}

.product.product5:hover,
.product.product5:focus {
    z-index: 120;
    padding: 15px 15px 20px;
    margin-top: -15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 40px;
    background-color: #f0f0f0;
    box-shadow: 0 0 10px rgba(31, 28, 22, 0.4)
}

@media(min-width:992px) {

    .product.product5:hover,
    .product.product5:focus {
        margin-bottom: 50px
    }
}

.product.product5:hover .product-label,
.product.product5:focus .product-label {
    visibility: hidden
}

.product.product5:hover .product-countdown .countdown-section,
.product.product5:focus .product-countdown .countdown-section {
    background-color: #f3dbce;
    border: 1px solid #f3dbce;
    box-shadow: none
}

.product.product5:hover .product-countdown .countdown-amount,
.product.product5:hover .product-countdown .countdown-period,
.product.product5:focus .product-countdown .countdown-amount,
.product.product5:focus .product-countdown .countdown-period {
    color: #fff
}

.product.product6 {
    padding: 25px 25px 34px;
    text-align: center;
    margin-bottom: 58px;
    border: 1px solid #f2f2f2;
    background-color: #fff
}

.product.product6 .product-top {
    margin-bottom: 30px
}

.product.product6 .product-top figure {
    border: 0
}

.product.product6 .product-label {
    border-radius: 6px 0 6px 6px;
    right: 25px;
    top: 25px
}

.product.product6 .product-title {
    font-size: 15px;
    line-height: 1.33;
    max-width: 280px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto
}

.product.product6 .product-title a {
    color: #777
}

.product.product6 .product-title a:hover,
.product.product6 .product-title a:focus {
    color: #f3dbce
}

.product.product6 .product-price-container {
    color: #c2c2c2;
    margin-bottom: 13px;
    font-family: "Open Sans", sans-serif
}

.product.product6 .product-price-container .product-old-price,
.product.product6 .product-price-container .product-price {
    font-size: 17px;
    font-weight: 500
}

.product.product6 .product-price-container .product-price {
    color: #666
}

.product.product6 .product-action {
    width: 170px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -85px;
    bottom: 30px;
    display: none
}

.product.product6 .btn-add-cart,
.product.product6 .btn-add-wishlist,
.product.product6 .btn-add-compare {
    display: inline-block;
    vertical-align: middle;
    border: 3px solid #4d4d4d;
    background-color: #4d4d4d;
    min-width: 50px;
    text-align: center;
    white-space: normal;
    font: 600 0/1 "Open Sans", sans-serif;
    padding: 0;
    border-radius: 50%;
    line-height: 44px;
    color: #fff;
    margin-right: 10px;
    transition: all .4s;
    text-transform: uppercase
}

.product.product6 .btn-add-cart:last-child,
.product.product6 .btn-add-wishlist:last-child,
.product.product6 .btn-add-compare:last-child {
    margin-right: 0
}

.product.product6 .btn-add-cart i,
.product.product6 .btn-add-wishlist i,
.product.product6 .btn-add-compare i {
    display: inline-block;
    width: 22px;
    height: 17px;
    vertical-align: middle
}

.product.product6 .btn-add-cart i.icon-cart2,
.product.product6 .btn-add-wishlist i.icon-cart2,
.product.product6 .btn-add-compare i.icon-cart2 {
    background-position: 0 -1100px
}

.product.product6 .btn-add-cart i.icon-compare2,
.product.product6 .btn-add-wishlist i.icon-compare2,
.product.product6 .btn-add-compare i.icon-compare2 {
    background-position: 0 -862px
}

.product.product6 .btn-add-cart i.icon-wishlist2,
.product.product6 .btn-add-wishlist i.icon-wishlist2,
.product.product6 .btn-add-compare i.icon-wishlist2 {
    background-position: 0 -913px
}

.product.product6 .btn-add-cart:hover,
.product.product6 .btn-add-cart:focus,
.product.product6 .btn-add-wishlist:hover,
.product.product6 .btn-add-wishlist:focus,
.product.product6 .btn-add-compare:hover,
.product.product6 .btn-add-compare:focus {
    border-color: #6ed1ff;
    background-color: #6ed1ff
}

.product.product6 .product-colors {
    margin-top: 0;
    margin-bottom: 18px
}

.product.product6 .product-colors span {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border: 1px solid #666;
    margin-right: 7px
}

.product.product6 .product-colors span:last-child {
    margin-right: 0
}

.product.product6 .btn-quickview {
    right: auto;
    left: 0;
    top: 0
}

.product.product6 .btn-quickview:hover,
.product.product6 .btn-quickview:focus {
    background-color: #4d4d4d;
    border-color: #4d4d4d
}

.product.product6:hover,
.product.product6:focus {
    z-index: 500;
    padding-bottom: 92px;
    margin-bottom: 0;
    box-shadow: 0 0 10px rgba(31, 28, 22, 0.2)
}

.product.product6:hover .product-action,
.product.product6:focus .product-action {
    display: block
}

.product-inside-slider .swiper-button-prev,
.product-inside-slider .swiper-button-next {
    width: 30px;
    height: 29px;
    position: absolute;
    top: 50%;
    margin-top: -14.5px;
    opacity: 0;
    visibility: visible;
    border: 2px solid #b2b2b2;
    background-color: transparent
}

.product:hover .product-inside-slider .swiper-button-prev,
.product:focus .product-inside-slider .swiper-button-prev,
.product:hover .product-inside-slider .swiper-button-next,
.product:focus .product-inside-slider .swiper-button-next {
    opacity: 1;
    visibility: visible
}

.product-inside-slider .swiper-button-prev:hover,
.product-inside-slider .swiper-button-prev:focus,
.product-inside-slider .swiper-button-next:hover,
.product-inside-slider .swiper-button-next:focus {
    background-color: #4d4d4d;
    border-color: #4d4d4d
}

.product-inside-slider .swiper-button-prev {
    left: 0;
    background-position: 0 -3112px
}

.product-inside-slider .swiper-button-prev:hover,
.product-inside-slider .swiper-button-prev:focus {
    background-position: 0 -3088px
}

.product-inside-slider .swiper-button-next {
    right: 0;
    background-position: 0 -3064px
}

.product-inside-slider .swiper-button-next:hover,
.product-inside-slider .swiper-button-next:focus {
    background-position: 0 -3040px
}

.product.product7 {
    padding: 0;
    margin-bottom: 60px;
    background-color: #fff;
    border: 1px solid #eeeded;
    box-shadow: 0 1px 1px rgba(31, 28, 22, 0.07);
    border-radius: 6px
}

@medi(min-width:992px) {
    .product.product7 {
        margin-bottom: 70px
    }
}

.product.product7 .product-top {
    margin: -1px -1px 0
}

.product.product7 .product-top figure {
    border: 0
}

.product.product7 .product-top figure img {
    border-radius: 6px 6px 0 0
}

.product.product7 .product-content-wrapper {
    padding: 15px 20px 20px
}

@media(min-width:1600px) {
    .product.product7 .product-content-wrapper {
        padding: 20px 30px 30px
    }
}

.product.product7 .product-content-wrapper p {
    font-size: 15px;
    line-height: 1.45;
    color: #888;
    margin-bottom: 24px
}

.product.product7 .product-label {
    right: 15px;
    border-radius: 6px 6px 6px 0;
    top: 15px;
    padding: 9.5px 10px 5.5px;
    color: #f3dbce;
    border: 2px solid #f3dbce;
    background-color: transparent
}

.product.product7 .product-label.discount {
    background-color: transparent;
    border-color: #ed4e24;
    color: #ed4e24
}

.product.product7 .product-label.discount.yellow {
    color: #ffc000;
    border-color: #ffc000;
    background-color: transparent
}

.product.product7 .product-label.outofstock {
    padding: 5px 6.5px 3px;
    color: #555;
    border-color: #555;
    background-color: transparent
}

.product.product7 .product-brand {
    font-size: 14px;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 14px
}

.product.product7 .product-brand a {
    color: #acacac
}

.product.product7 .product-brand a:hover,
.product.product7 .product-brand a:focus {
    color: #f3dbce
}

.product.product7 .product-title {
    margin-bottom: 11px;
    max-width: 280px
}

.product.product7 .product-colors {
    margin-top: 0;
    margin-bottom: 15px
}

.product.product7 .product-colors span {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border: 1px solid #666;
    margin-right: 7px
}

.product.product7 .product-colors span:last-child {
    margin-right: 0
}

.product.product7 .product-price-container {
    margin-bottom: 12px;
    font-family: "Fira Sans", Arial, sans-serif;
    font-weight: 500;
    color: #d1d1d1
}

.product.product7 .product-price-container .product-old-price {
    font-size: 15px;
    font-weight: 400
}

.product.product7 .product-price-container .product-price {
    font-size: 17px;
    font-weight: 500
}

.product.product7 .product-countdown {
    margin-bottom: 0
}

.product.product7 .product-countdown .countdown-section {
    background-color: #4d4d4d;
    border-color: #4d4d4d;
    box-shadow: none
}

.product.product7 .product-countdown .countdown-section .countdown-amount,
.product.product7 .product-countdown .countdown-section .countdown-period {
    color: #fff
}

.product.product7 .product-countdown.countdown-sep .countdown-section:after {
    color: #4d4d4d
}

.product.product7 .product-action-wrapper {
    position: relative
}

.product.product7 .product-action-wrapper .single-rating {
    float: right;
    margin-top: 5px
}

.product.product7 .single-rating {
    font: 400 0/1.5 "Fira Sans", Arial, sans-serif;
    color: #777
}

.product.product7 .single-rating .icon,
.product.product7 .single-rating span {
    vertical-align: middle
}

.product.product7 .single-rating>span {
    font-size: 15px
}

.product.product7 .icon-star {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: 0 -830px;
    margin-right: 8px
}

.product.product7 .product-action {
    margin-top: 20px
}

.product.product7 .product-action .btn-add-cart {
    color: #777;
    background-color: transparent;
    border-color: #777;
    text-align: center;
    padding: 10.5px 12px 8.5px;
    margin-right: 10px
}

@media(min-width:992px) {
    .product.product7 .product-action .btn-add-cart {
        min-width: 126px
    }
}

.product.product7 .product-action .btn-add-cart>span {
    font-size: 12px
}

.product.product7 .product-action .btn-add-cart:hover,
.product.product7 .product-action .btn-add-cart:focus {
    color: #f3dbce;
    background-color: transparent;
    border-color: #f3dbce
}

.product.product7 .product-action .btn-product-like,
.product.product7 .product-action .btn-product-compare {
    width: 35px;
    height: 35px;
    margin-right: 5px;
    border: 2px solid #d2d2d2
}

.product.product7 .product-action .btn-product-like:last-child,
.product.product7 .product-action .btn-product-compare:last-child {
    margin-right: 0
}

.product.product7 .product-action .btn-product-like:hover,
.product.product7 .product-action .btn-product-like:focus,
.product.product7 .product-action .btn-product-compare:hover,
.product.product7 .product-action .btn-product-compare:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.product.product7 .product-action .btn-product-like {
    background-position: 0 -3545px
}

.product.product7 .product-action .btn-product-like:hover,
.product.product7 .product-action .btn-product-like:focus {
    background-position: 0 -3514px
}

.product.product7 .product-action .btn-product-compare {
    background-position: 0 -3483px
}

.product.product7 .product-action .btn-product-compare:hover,
.product.product7 .product-action .btn-product-compare:focus {
    background-position: 0 -3452px
}

.product.product7:hover,
.product.product7:focus {
    box-shadow: 0 1px 5px rgba(31, 28, 22, 0.1)
}

.product.product7:hover .single-rating,
.product.product7:focus .single-rating {
    visibility: hidden
}

.product.product-sm {
    padding: 0 20px 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee
}

.swiper-slide .product.product-sm:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.product.product-sm figure {
    position: relative;
    float: left;
    max-width: 90px;
    border: 1px solid #eae9e9;
    margin-right: 20px
}


@media(min-width:1200px) {
    .product.product-sm figure {
        max-width: 100px;
        margin-right: 20px
    }
}

@media(min-width:1440px) {
    .product.product-sm figure {
        max-width: 120px;
        margin-right: 23px
    }
}

.product.product-sm figure a {
    display: block
}

.product.product-sm figure img {
    display: block;
    max-width: 100%;
    height: auto
}

.product.product-sm .product-meta {
    max-width: 340px;
    padding-left: 110px;
    margin-bottom: 0
}

@media(min-width:1200px) {
    .product.product-sm .product-meta {
        padding-left: 120px
    }
}

@media(min-width:1440px) {
    .product.product-sm .product-meta {
        padding-left: 143px
    }
}

.product.product-sm .product-label {
    right: 5px;
    top: 5px;
    font-size: 12px;
    z-index: 99;
    padding: 6px 7px 4px;
    min-width: 46px
}

.product.product-sm .product-label.outofstock {
    font-size: 10px;
    padding: 4px 4px 2px 5px
}

.product.product-sm .product-label.outofstock>span {
    display: block
}

.product.product-sm .product-title {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 9px;
    text-transform: uppercase;
    max-width: 188px
}

.product.product-sm .product-price-container {
    font-family: Arial, sans-serif
}

.product.product-sm .product-price-container .product-price,
.product.product-sm .product-price-container .product-old-price {
    font-size: 15px
}

.product.product-sm .product-price-container .product-price+.product-old-price {
    display: block;
    margin-top: 5px;
    margin-left: 0
}

.product.product-sm .product-price-container .product-old-price {
    display: block;
    color: #cbcbcb
}

.product.product-sm .product-price-container .product-old-price+.product-price {
    display: block;
    margin-top: 5px;
    margin-left: 0
}

.product.product-list {
    padding: 20px 0 40px;
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid #e9e9e9
}

@media(min-width:992px) {
    .product.product-list {
        padding: 20px 20px 40px
    }
}

@media(min-width:1600px) {
    .product.product-list {
        padding: 40px 40px 60px
    }
}

.product.product-list:first-child {
    border-top: 1px solid #e9e9e9
}

.product.product-list:after {
    content: '';
    display: table;
    clear: both
}

.product.product-list .product-top {
    margin-bottom: 30px
}

@media(min-width:768px) {
    .product.product-list .product-top {
        float: left;
        width: 27%;
        margin-bottom: 0
    }
}

@media(min-width:1200px) {
    .product.product-list .product-top {
        width: 18%
    }
}

@media(min-width:992px) {
    .col-md-9 .product.product-list .product-top {
        width: 26%
    }
}

@media(min-width:1200px) {
    .col-md-9 .product.product-list .product-top {
        width: 22%
    }
}

@media(min-width:1200px) and (max-width:1599px) {
    .col-md-9 .product.product-list .product-top {
        width: 25%
    }
}

.product.product-list .product-top figure {
    border: 0
}

.product.product-list .product-countdown {
    bottom: 12px
}

.product.product-list .product-countdown .countdown-show4 .countdown-section {
    width: calc(25% - 5px)
}

.product.product-list .product-countdown .countdown-section {
    margin: 0 2.5px
}

@media(min-width:768px) and (max-width:1439px) {
    .product.product-list .product-countdown .countdown-amount {
        font-size: 25px
    }
}

@media(min-width:768px) and (max-width:1439px) {
    .product.product-list .product-countdown .countdown-period {
        font-size: 8px
    }
}

.product.product-list .product-content {
    letter-spacing: .05em
}

@media(min-width:768px) {
    .product.product-list .product-content {
        float: left;
        width: 50%;
        padding: 15px 50px 0 20px
    }
}

@media(min-width:992px) {
    .product.product-list .product-content {
        width: 52%
    }
}

@media(min-width:1200px) {
    .product.product-list .product-content {
        width: 67%;
        padding: 25px 80px 0 40px
    }
}

@media(min-width:1600px) {
    .product.product-list .product-content {
        padding: 30px 110px 0 45px
    }
}

@media(min-width:768px) {
    .col-md-9 .product.product-list .product-content {
        padding: 5px 20px 0 20px
    }
}

@media(min-width:992px) {
    .col-md-9 .product.product-list .product-content {
        width: 48%
    }
}

@media(min-width:1200px) {
    .col-md-9 .product.product-list .product-content {
        width: 61%;
        padding: 8px 39px 0 39px
    }
}

@media(min-width:1200px) and (max-width:1599px) {
    .col-md-9 .product.product-list .product-content {
        width: 52%
    }
}

@media(max-width:1599px) {
    .col-md-9 .product.product-list .product-content p {
        margin-bottom: 0
    }
}

@media(max-width:1199px) {
    .col-md-9 .product.product-list .product-content p {
        font-size: 14px
    }
}

@media(max-width:1599px) {
    .col-md-9 .product.product-list .product-content p:last-child {
        display: none
    }
}

@media(max-width:991px) {
    .product.product-list .product-content p {
        font-size: 14px
    }
}

@media(max-width:1199px) {
    .product.product-list .product-content p {
        margin-bottom: 0
    }
}

@media(max-width:767px) {
    .product.product-list .product-content p {
        display: none
    }
}

.product.product-list .product-content p:last-child {
    margin-bottom: 0
}

@media(max-width:1199px) {
    .product.product-list .product-content p:last-child {
        display: none
    }
}

@media(min-width:768px) {
    .product.product-list .product-meta-container {
        float: left;
        width: 23%;
        text-align: right;
        border-left: 1px solid #e9e9e9;
        padding: 8px 0;
        margin-top: 13px
    }
}

@media(min-width:992px) {
    .product.product-list .product-meta-container {
        width: 21%;
        margin-top: 19px
    }
}

@media(min-width:1200px) {
    .product.product-list .product-meta-container {
        width: 15%;
        padding: 13px 0
    }
}

@media(min-width:992px) {
    .col-md-9 .product.product-list .product-meta-container {
        width: 26%
    }
}

@media(min-width:1200px) {
    .col-md-9 .product.product-list .product-meta-container {
        width: 17%
    }
}

@media(min-width:1200px) and (max-width:1599px) {
    .col-md-9 .product.product-list .product-meta-container {
        width: 23%
    }
}

.product.product-list .ratings-container {
    margin-bottom: 12px
}

.product.product-list .product-brand {
    margin-bottom: 10px
}

@media(min-width:1600px) {
    .product.product-list .product-brand {
        font-size: 16px
    }
}

.product.product-list .btn-quickview {
    right: auto;
    left: 16px
}

@media(min-width:1200px) {
    .product.product-list .product-title {
        font-size: 18px
    }
}

@media(min-width:1600px) {
    .product.product-list .product-title {
        font-size: 24px
    }
}

.product.product-list .product-price-container {
    color: #cbcbcb;
    margin-bottom: 12px
}

@media(min-width:1600px) {

    .product.product-list .product-price-container .product-old-price,
    .product.product-list .product-price-container .product-price {
        font-size: 19px
    }
}

.product.product-list .product-colors {
    margin-top: 0;
    margin-bottom: 20px
}

@media(min-width:1200px) {
    .product.product-list .product-colors {
        margin-bottom: 30px
    }
}

.product.product-list .product-action {
    width: auto;
    margin-right: 0
}

.product.product-list .product-action .btn-add-cart {
    margin-right: 0
}

@media(min-width:1600px) {
    .product.product-list .product-action .btn-add-cart {
        min-width: 170px
    }
}

.product.product-list .product-action .btn-product-compare,
.product.product-list .product-action .btn-product-like,
.product.product-list .product-action .btn-product-wishlist {
    display: inline-block
}

.product.product-list .add-btn-wrapper {
    display: block;
    margin-bottom: 18px
}

@media(min-width:380px) and (max-width:767px) {
    .product.product-list .add-btn-wrapper {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 20px
    }
}

@media(max-width:379px) {
    .product.product-list .add-btn-wrapper {
        margin-bottom: 13px
    }
}

.product.product-list.boxed {
    background-color: #fbfbfb;
    border: 1px solid #e9e9e9;
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 20px
}

@media(min-width:1200px) {
    .product.product-list.boxed {
        padding: 30px
    }
}

@media(min-width:1600px) {
    .product.product-list.boxed {
        padding: 40px
    }
}

.product.product-list.boxed .product-top figure {
    border: 1px solid #e9e9e9
}

.product.product-list.boxed .add-btn-wrapper {
    display: block;
    margin-bottom: 18px
}

@media(min-width:420px) and (max-width:767px) {
    .product.product-list.boxed .add-btn-wrapper {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 20px
    }
}

@media(max-width:419px) {
    .product.product-list.boxed .add-btn-wrapper {
        margin-bottom: 13px
    }
}

.row.product-container-row {
    margin-left: -15px;
    margin-right: -15px
}

.row.product-container-row .product-column {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 60px
}

.products-tab .row.product-container-row .product-column {
    margin-bottom: 30px
}

@media(min-width:1600px) {
    .products-tab-container .row.product-container-row .product-column {
        margin-bottom: 80px
    }
}

@media(min-width:1200px) {
    .products-tab-container.smaller .row.product-container-row .product-column {
        margin-bottom: 70px
    }
}

@media(min-width:768px) {
    .row.product-container-row .product-column {
        float: left
    }
}

.row.product-container-row .product-column .product {
    margin-bottom: 0
}

.row.product-container-row .product-column .product:hover,
.row.product-container-row .product-column .product:focus {
    margin-bottom: 0
}

.products-container {
    margin-bottom: 20px;
    padding: 0 !important
}

.product-column {
    width: 100%
}

@media(min-width:768px) {

    .max-col-5 .product-column,
    .max-col-4 .product-column,
    .max-col-3 .product-column,
    .max-col-2 .product-column {
        width: 50%
    }
}

@media(min-width:992px) {

    .max-col-4 .product-column,
    .max-col-3 .product-column {
        width: 33.3%
    }

    .max-col-4 .product-column.wide,
    .max-col-3 .product-column.wide {
        width: 66.6%
    }
}

@media(min-width:992px) {

    .col-md-9 .max-col-4 .product-column,
    .col-md-9 .max-col-3 .product-column {
        width: 50%
    }
}

@media(min-width:1200px) {

    .col-md-9 .max-col-4 .product-column,
    .col-md-9 .max-col-3 .product-column {
        width: 33.3%
    }

    .col-md-9 .max-col-4 .product-column.wide,
    .col-md-9 .max-col-3 .product-column.wide {
        width: 66.6%
    }
}

@media(min-width:992px) {
    .max-col-5 .product-column {
        width: 33.3%
    }

    .max-col-5 .product-column.wide {
        width: 66.6%
    }
}

@media(min-width:1200px) {
    .max-col-4 .product-column {
        width: 25%
    }

    .max-col-4 .product-column.wide {
        width: 50%
    }
}

@media(min-width:1200px) {
    .col-md-9 .max-col-4 .product-column {
        width: 33.3%
    }

    .col-md-9 .max-col-4 .product-column.wide {
        width: 66.6%
    }
}

@media(min-width:1600px) {
    .col-md-9 .max-col-4 .product-column {
        width: 24.99%
    }

    .col-md-9 .max-col-4 .product-column.wide {
        width: 50%
    }
}

@media(min-width:1200px) {
    .max-col-5 .product-column {
        width: 25%
    }

    .max-col-5 .product-column.wide {
        width: 50%
    }
}

@media(min-width:1600px) {
    .max-col-5 .product-column {
        width: 20%
    }

    .max-col-5 .product-column.wide {
        width: 40%
    }
}

.banners-slider.swiper-container {
    margin-bottom: 65px
}

.banner.top-banner {
    margin-bottom: 0
}

@media(max-width:767px) {
    .banner.top-banner {
        height: 240px
    }
}

@media(max-width:767px) {
    .banner.top-banner img {
        height: 100%;
        width: auto
    }
}

.banner.top-banner .banner-content {
    max-width: 700px;
    padding-top: 0
}

.banner.top-banner .banner-content.left {
    left: 30px;
    right: auto
}

@media(min-width:768px) {
    .banner.top-banner .banner-content.left {
        left: 60px
    }
}

@media(min-width:992px) {
    .banner.top-banner .banner-content.left {
        left: 100px
    }
}

@media(min-width:1200px) {
    .banner.top-banner .banner-content.left {
        left: 120px
    }
}

@media(min-width:1600px) {
    .banner.top-banner .banner-content.left {
        left: 180px
    }
}

.banner.top-banner .banner-content.right {
    left: auto;
    right: 30px
}

@media(min-width:768px) {
    .banner.top-banner .banner-content.right {
        right: 60px
    }
}

@media(min-width:992px) {
    .banner.top-banner .banner-content.right {
        right: 100px
    }
}

@media(min-width:1200px) {
    .banner.top-banner .banner-content.right {
        right: 120px
    }
}

@media(min-width:1600px) {
    .banner.top-banner .banner-content.right {
        right: 180px
    }
}

.banner.top-banner .banner-content.left,
.banner.top-banner .banner-content.right {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media(min-width:768px) {
    .banner.top-banner .btn {
        min-width: 156px
    }
}

.banner.top-banner h4 {
    font-size: 16px;
    margin-bottom: 12px
}

@media(min-width:768px) {
    .banner.top-banner h4 {
        font-size: 17px;
        margin-bottom: 16px
    }
}

@media(min-width:992px) {
    .banner.top-banner h4 {
        margin-bottom: 20px
    }
}

@media(min-width:1600px) {
    .banner.top-banner h4 {
        font-size: 18px;
        margin-bottom: 30px
    }
}

@media(max-width:479px) {
    .banner.top-banner h4 {
        display: none
    }
}

.banner.top-banner h3 {
    color: #3e3e3e;
    font-size: 26px;
    margin-bottom: 8px
}

@media(min-width:480px) {
    .banner.top-banner h3 {
        font-size: 32px;
        margin-bottom: 10px
    }
}

@media(min-width:768px) {
    .banner.top-banner h3 {
        font-size: 46px;
        margin-bottom: 12px
    }
}

@media(min-width:992px) {
    .banner.top-banner h3 {
        font-size: 44px;
        margin-bottom: 16px
    }
}

@media(min-width:1200px) {
    .banner.top-banner h3 {
        font-size: 64px
    }
}

@media(min-width:1600px) {
    .banner.top-banner h3 {
        font-size: 80px;
        margin-bottom: 20px
    }
}

.banner.top-banner p {
    font-size: 15px;
    line-height: 1.35;
    color: #444;
    margin-bottom: 16px
}

@media(min-width:992px) {
    .banner.top-banner p {
        font-size: 16px;
        margin-bottom: 23px
    }
}

@media(min-width:1600px) {
    .banner.top-banner p {
        font-size: 17px;
        margin-bottom: 33px
    }
}

@media(max-width:991px) {
    .banner.top-banner p {
        display: none
    }
}

.top-filter-container {
    margin-bottom: 50px
}

.top-filter-container .btn.btn-border {
    font-size: 14px;
    padding: 12.5px 20px 8.5px;
    min-width: 130px
}

.top-filter-container .filter-left {
    position: relative;
    float: left
}

.top-filter-container .filter-left .btn+.page-sort-filter {
    margin-left: 80px
}

@media(max-width:1439px) {
    .top-filter-container .filter-left .btn+.page-sort-filter {
        margin-left: 60px
    }
}

@media(max-width:767px) {
    .top-filter-container .filter-left .btn+.page-sort-filter {
        margin-left: 35px
    }
}

@media(max-width:1199px) {
    .top-filter-container .filter-left {
        float: none;
        margin-bottom: 15px
    }
}

.top-filter-container .right-right {
    float: right
}

@media(max-width:1199px) {
    .top-filter-container .right-right {
        float: none
    }
}

.top-filter-container .page-view-filter {
    display: block
}

@media(max-width:1200px) {
    .top-filter-container .page-view-filter {
        float: left
    }
}

@media(max-width:600px) {
    .top-filter-container .page-view-filter {
        float: none
    }
}

.top-filter-container .layout-btns-container {
    display: inline-block;
    font-size: 0;
    vertical-align: middle
}

@media(max-width:600px) {
    .top-filter-container .layout-btns-container {
        position: absolute;
        right: 0;
        top: 0
    }
}

.top-filter-container .layout-btns-container .layout-btn {
    display: inline-block;
    width: 45px;
    height: 45px;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    padding: 0;
    transition: all .4s
}

.top-filter-container .layout-btns-container .layout-btn+.layout-btn {
    margin-left: 15px
}

.top-filter-container .layout-btns-container .layout-btn.btn-grid {
    background-position: 0 -5753px
}

.top-filter-container .layout-btns-container .layout-btn.btn-grid.active {
    background-position: 0 -5839px
}

.top-filter-container .layout-btns-container .layout-btn.btn-list {
    background-position: 0 -5495px
}

.top-filter-container .layout-btns-container .layout-btn.btn-list.active {
    background-position: 0 -5796px
}

.top-filter-container .layout-btns-container .layout-btn:hover,
.top-filter-container .layout-btns-container .layout-btn:focus {
    border-color: #4d4d4d;
    border-radius: 4px !important
}

.top-filter-container .page-sort-filter {
    display: inline-block;
    vertical-align: middle;
    margin-right: 107px
}

@media(max-width:1439px) {
    .top-filter-container .page-sort-filter {
        margin-right: 60px
    }
}

@media(max-width:767px) {
    .top-filter-container .page-sort-filter {
        margin-right: 47px
    }
}

@media(max-width:600px) {
    .top-filter-container .page-sort-filter {
        display: block;
        margin-top: 15px;
        margin-left: 0 !important;
        max-width: 320px;
        margin-right: 0
    }
}

.top-filter-container .page-sort-filter select.form-control {
    font-size: 16px;
    height: auto;
    padding: 12px 40px 9px 20px;
    background-position: calc(100% - 19px) center;
    margin: 0
}

@media(min-width:768px) {
    .top-filter-container .page-sort-filter select.form-control {
        min-width: 140px
    }
}

@media(min-width:992px) {
    .top-filter-container .page-sort-filter select.form-control {
        min-width: 220px
    }
}

@media(min-width:1600px) {
    .top-filter-container .page-sort-filter select.form-control {
        min-width: 280px
    }
}

@media(max-width:600px) {
    .top-filter-container .page-view-filter {
        display: block;
        max-width: 320px;
        margin-top: 15px
    }
}

.top-filter-container .pagination-container {
    margin-bottom: 0
}

.top-filter-container .pagination-container .pagination {
    float: right
}

@media(max-width:600px) {
    .top-filter-container .pagination-container .pagination {
        float: none
    }
}

@media(max-width:1699px) {
    .col-md-9 .top-filter-container .filter-left {
        float: none;
        margin-bottom: 15px
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .col-md-9 .top-filter-container .filter-left .btn+.page-sort-filter {
        margin-left: 40px
    }
}

@media(max-width:1699px) {
    .col-md-9 .top-filter-container .right-right {
        float: none
    }
}

@media(max-width:1699px) {
    .col-md-9 .top-filter-container .layout-btns-container {
        float: right
    }
}

@media(max-width:600px) {
    .col-md-9 .top-filter-container .layout-btns-container {
        display: block;
        float: none
    }
}

@media(max-width:1699px) {
    .col-md-9 .top-filter-container .page-view-filter {
        float: left
    }
}

@media(max-width:600px) {
    .col-md-9 .top-filter-container .page-view-filter {
        float: none
    }
}

.sidebar .widget.filter-box-widget {
    margin-bottom: 50px
}

@media(min-width:1200px) {
    .sidebar .widget.filter-box-widget {
        margin-bottom: 60px
    }
}

.filter-color-container,
.filter-size-container {
    font-size: 0
}

.filter-color-container .row,
.filter-size-container .row {
    margin-left: -6px;
    margin-right: -6px
}

@media(min-width:1600px) {

    .filter-color-container .row,
    .filter-size-container .row {
        margin-left: -8px;
        margin-right: -8px
    }
}

.filter-color-box,
.filter-size-box {
    display: inline-block;
    width: 39px;
    height: 39px;
    margin: 0 6px 12px;
    transition: all .5s;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    box-shadow: inset 0 0 0 4px #fbfaf4
}

@media(min-width:1600px) {

    .filter-color-box,
    .filter-size-box {
        width: 50px;
        height: 50px;
        margin: 0 8px 16px
    }
}

.filter-color-box:hover,
.filter-color-box:focus,
.filter-color-box.active,
.filter-size-box:hover,
.filter-size-box:focus,
.filter-size-box.active {
    border-color: #f3dbce
}

.filter-size-box {
    color: #777;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font: 400 16px/30px "Open Sans", sans-serif;
    padding-top: 5px
}

@media(min-width:1600px) {
    .filter-size-box {
        font-size: 18px;
        padding-top: 11px
    }
}

.filter-size-box.active,
.filter-size-box:hover,
.filter-size-box:focus {
    box-shadow: none;
    color: #f3dbce
}

.sidebar .filter-group-widget .panel-body {
    padding: 35px 0 30px
}

.filter-brand-list {
    margin-top: -10px
}

.filter-brand-list a {
    color: #323232;
    display: block;
    font-size: 13px;
    line-height: 22px;
    color: #7e7e7e;
    padding: 2px 0
}

.filter-brand-list a:hover,
.filter-brand-list a:focus {
    color: #f3dbce
}

.filter-brand-list a i {
    margin-right: 8px
}

.filter-brand-list a span {
    float: right
}

#filter-range-details.row {
    margin-left: -15px;
    margin-right: -15px
}

@media(min-width:992px) and (max-width:1399px) {
    #filter-range-details.row {
        margin-left: -10px;
        margin-right: -10px
    }
}

@media(max-width:320px) {
    #filter-range-details.row {
        margin-left: -10px;
        margin-right: -10px
    }
}

#filter-range-details.row [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px
}

@media(min-width:992px) and (max-width:1399px) {
    #filter-range-details.row [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px
    }
}

@media(max-width:320px) {
    #filter-range-details.row [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px
    }
}

.filter-price-container {
    position: relative
}

.filter-price-container .price-label {
    position: absolute;
    left: 20px;
    top: 0;
    padding-top: 1px;
    font: 400 16px/45px "Open Sans", sans-serif;
    color: #888;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: all .4s ease
}

@media(min-width:992px) and (max-width:1399px) {
    .filter-price-container .price-label {
        font-size: 14px;
        left: 10px
    }
}

@media(max-width:320px) {
    .filter-price-container .price-label {
        font-size: 14px;
        left: 10px
    }
}

.filter-price-container .price-label:hover {
    opacity: 0;
    visibility: hidden
}

.filter-price-container .price-label #low-price-val,
.filter-price-container .price-label #high-price-val {
    color: #f3dbce;
    font-weight: 500
}

.filter-price-container .form-control {
    margin-bottom: 38px;
    font-size: 15px;
    height: 45px;
    padding: 12.5px 20px 9.5px;
    border-radius: 4px
}

@media(min-width:992px) and (max-width:1399px) {
    .filter-price-container .form-control {
        font-size: 14px;
        padding: 13px 10px 10px
    }
}

@media(max-width:320px) {
    .filter-price-container .form-control {
        font-size: 14px;
        padding: 13px 10px 10px
    }
}

.filter-price-container .form-control:focus+.price-label,
.filter-price-container .form-control:hover+.price-label {
    opacity: 0;
    visibility: hidden
}

#price-slider {
    margin: 0 0 40px
}

.filter-price-action .btn {
    font-size: 16px;
    min-width: 111px;
    border-radius: 28px;
    border-width: 2px;
    color: #777;
    border-color: #c2c2c2;
    background-color: transparent;
    padding: 11.5px 15px 8.5px
}

@media(min-width:992px) and (max-width:1199px) {
    .filter-price-action .btn {
        min-width: 70px;
        font-size: 15px
    }
}

@media(min-width:1200px) and (max-width:1365px) {
    .filter-price-action .btn {
        min-width: 82px
    }
}

.filter-price-action .btn+.btn {
    margin-left: 20px
}

@media(min-width:992px) and (max-width:1365px) {
    .filter-price-action .btn+.btn {
        margin-left: 8px
    }
}

.filter-price-action .btn:hover,
.filter-price-action .btn:focus {
    border-radius: 0;
    background-color: transparent;
    color: #777
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    box-sizing: border-box
}

.noUi-target {
    position: relative;
    direction: ltr
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-origin {
    position: absolute;
    right: 0;
    top: -1px;
    left: 0;
    bottom: 0;
    height: 5px
}

.noUi-handle {
    position: relative;
    z-index: 1
}

.noUi-stacking .noUi-handle {
    z-index: 10
}

.noUi-state-tap .noUi-origin {
    transition: left .3s, top .3s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-base {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.noUi-horizontal {
    height: 5px
}

.noUi-horizontal .noUi-handle {
    width: 12px;
    height: 12px;
    left: -6px;
    top: -6px
}

.noUi-background {
    background: #e0e0e0
}

.noUi-connect {
    background: #ed4e24;
    transition: all .4s
}

.noUi-origin {
    border-radius: 2px
}

.noUi-target {
    border-radius: 0;
    border: 1px solid #e0e0e0
}

.noUi-dragable {
    cursor: w-resize
}

.noUi-vertical .noUi-dragable {
    cursor: n-resize
}

.noUi-handle {
    border-radius: 0;
    background: #ed4e24;
    cursor: default;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.35)
}

.noUi-handle:after {
    position: absolute;
    top: 100%;
    left: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #ed4e24 transparent transparent transparent
}

.noUi-handle>div {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 4px;
    font-size: 12px;
    color: #5a5a5a
}

.products-list-container {
    margin-bottom: 60px
}

@media(min-width:992px) {
    .products-list-container {
        margin-bottom: 70px
    }
}

.products-list-container.boxed {
    margin-bottom: 20px
}

.product-single {
    margin-bottom: 50px
}

@media(min-width:768px) {
    .product-single .col-sm-7 {
        width: 55.3%
    }
}

@media(min-width:768px) {
    .product-single .col-sm-5 {
        width: 44.7%
    }
}

.product-gallery-container img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #e9e9e9
}

@media(max-width:767px) {
    .product-gallery-container {
        margin-bottom: 40px
    }
}

.product-gallery-container .social-icons .social-icon {
    margin: 0 3px 6px
}

@media(min-width:992px) {
    .product-gallery-container .social-icons .social-icon {
        margin: 0 5px 10px
    }
}

.product-zoom-wrapper {
    margin-bottom: 14px;
    position: relative
}

@media(min-width:1200px) {
    .product-zoom-wrapper {
        margin-bottom: 22px
    }
}

.product-zoom-wrapper .btn-quickview.zoom-icon {
    position: absolute;
    visibility: visible;
    top: auto;
    right: auto;
    bottom: 19px;
    left: 19px
}

@media(max-width:480px) {
    .product-zoom-wrapper .btn-quickview.zoom-icon {
        display: none
    }
}

.product-zoom-wrapper .product-label {
    right: 19px;
    top: 19px
}

.zoomWindowContainer>div {
    z-index: 700 !important
}

.product-gallery-carousel.swiper-container {
    margin-bottom: 20px
}

@media(min-width:992px) {
    .product-gallery-carousel.swiper-container {
        margin-bottom: 30px
    }
}

.product-gallery-carousel a {
    display: block
}

.product-gallery-carousel.vertical-center-nav .swiper-button-prev {
    left: 20px
}

.product-gallery-carousel.vertical-center-nav .swiper-button-next {
    right: 20px
}

@media(max-width:767px) {

    .product-gallery-carousel.vertical-center-nav .swiper-button-prev,
    .product-gallery-carousel.vertical-center-nav .swiper-button-next {
        display: none
    }
}

.product-details .product-brand {
    font-size: 15px;
    margin-bottom: 14px
}

@media(min-width:1600px) {
    .product-details .product-brand {
        font-size: 16px
    }
}

.product-details .product-title {
    color: #555;
    font-size: 24px;
    line-height: 1
}

@media(min-width:1600px) {
    .product-details .product-title {
        font-size: 28px
    }
}

.product-details label {
    display: inline-block;
    font: 500 15px/1 "Open Sans", sans-serif;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 0
}

@media(min-width:1600px) {
    .product-details label {
        font-size: 16px
    }
}

.product-details .filter-size-container,
.product-details .filter-color-container {
    margin-bottom: 22px
}

.product-details .filter-size-container label,
.product-details .filter-color-container label {
    display: block;
    margin-bottom: 15px
}

@media(min-width:1600px) {

    .product-details .filter-size-container label,
    .product-details .filter-color-container label {
        margin-bottom: 19px
    }
}

.product-details .filter-size-container .row,
.product-details .filter-color-container .row {
    margin-left: -6px;
    margin-right: -6px
}

@media(min-width:1600px) {

    .product-details .filter-size-container .row,
    .product-details .filter-color-container .row {
        margin-left: -8px;
        margin-right: -8px
    }
}

.product-details .filter-size-container .filter-size-box,
.product-details .filter-size-container .filter-color-box,
.product-details .filter-color-container .filter-size-box,
.product-details .filter-color-container .filter-color-box {
    margin: 0 6px 6px;
    font-size: 16px;
    line-height: 35px;
    width: 42px;
    height: 42px
}

@media(min-width:1600px) {

    .product-details .filter-size-container .filter-size-box,
    .product-details .filter-size-container .filter-color-box,
    .product-details .filter-color-container .filter-size-box,
    .product-details .filter-color-container .filter-color-box {
        margin: 0 8px 8px;
        font-size: 18px;
        padding-top: 4px;
        line-height: 42px;
        width: 50px;
        height: 50px
    }
}

.product-details .product-price-container label {
    margin-right: 9px
}

.product-details .product-price-container .product-price,
.product-details .product-price-container .product-old-price {
    font-size: 19px;
    font-weight: 500;
    font-family: "Fira Sans", Arial, sans-serif
}

@media(min-width:1600px) {

    .product-details .product-price-container .product-price,
    .product-details .product-price-container .product-old-price {
        font-size: 22px
    }
}

.product-ratings-wrapper {
    margin-bottom: 10px
}

.product-ratings-wrapper .sep {
    margin: 0 9px
}

.product-ratings-desc {
    display: inline-block;
    vertical-align: middle;
    color: #bbb;
    font: 400 15px/1.3 "Open Sans", sans-serif;
    margin-left: 8px
}

@media(min-width:1600px) {
    .product-ratings-desc {
        font-size: 17px;
        margin-left: 10px
    }
}

.product-ratings-desc a {
    color: #bbb
}

.product-ratings-desc a:hover,
.product-ratings-desc a:focus {
    color: #f3dbce
}

.product-meta-list {
    margin-bottom: 20px
}

.product-meta-list li {
    color: #999;
    font: 400 15px/1.625 "Open Sans", sans-serif
}

@media(min-width:1600px) {
    .product-meta-list li {
        font-size: 16px
    }
}

.product-details-list {
    margin-bottom: 32px
}

.product-details-list li {
    font-size: 15px;
    line-height: 1.25;
    padding-left: 12px;
    position: relative;
    letter-spacing: .06em;
    margin-bottom: 9px
}

@media(min-width:1600px) {
    .product-details-list li {
        font-size: 16px
    }
}

.product-details-list li:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #888;
    position: absolute;
    top: 7px;
    left: 0
}

.product-details-box {
    padding: 20px;
    border: 1px solid #f3dbce
}

@media(min-width:1600px) {
    .product-details-box {
        padding: 30px
    }
}

.product-details-box .product-countdown {
    max-width: 445px
}

@media(min-width:1600px) {
    .product-details-box .product-countdown .countdown-section {
        padding-top: 13px;
        padding-bottom: 13px
    }
}

.product-details-box .product-countdown .countdown-amount {
    letter-spacing: .05em
}

@media(min-width:1600px) {
    .product-details-box .product-countdown .countdown-amount {
        font-size: 35px
    }
}

.product-details-box .product-countdown .countdown-period {
    letter-spacing: .05em
}

@media(min-width:1600px) {
    .product-details-box .product-countdown .countdown-period {
        font-size: 11px
    }
}

.product-details-box .product-action-wrapper {
    margin-bottom: 20px
}

@media(min-width:1600px) {
    .product-details-box .product-action-wrapper {
        margin-bottom: 25px
    }
}

.product-details-box .product-action {
    display: inline-block;
    vertical-align: middle
}

.product-details-box .product-action .btn-product-wishlist,
.product-details-box .product-action .btn-product-like,
.product-details-box .product-action .btn-product-compare {
    display: inline-block
}

.product-quantity {
    display: block;
    vertical-align: middle;
    width: 130px;
    margin-bottom: 20px
}

@media(min-width:1600px) {
    .product-quantity {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 27px
    }
}

.product-quantity .form-control {
    height: auto;
    font-size: 17px;
    text-align: center;
    font-family: "Fira Sans", Arial, sans-serif;
    margin-bottom: 0;
    padding: 11.5px 10px 8.5px
}

.widget .product-deals-slider .product {
    margin-bottom: 0
}

.product-single.product-single-table {
    width: 100%;
    margin-bottom: 0
}

@media(min-width:768px) {
    .product-single.product-single-table {
        display: table;
        table-layout: fixed
    }
}

@media(min-width:768px) {
    .product-single-cell {
        display: table-cell
    }
}

.product-single-cell.cell-gallery-container {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px
}

@media(min-width:480px) {
    .product-single-cell.cell-gallery-container {
        padding-left: 100px
    }
}

@media(min-width:768px) {
    .product-single-cell.cell-gallery-container {
        margin-bottom: 0
    }
}

@media(min-width:992px) {
    .product-single-cell.cell-gallery-container {
        padding-right: 10px;
        padding-left: 100px
    }
}

@media(min-width:1200px) {
    .product-single-cell.cell-gallery-container {
        padding-right: 20px;
        padding-left: 110px
    }
}

@media(min-width:1600px) {
    .product-single-cell.cell-gallery-container {
        padding-right: 30px;
        padding-left: 120px
    }
}

.product-single-cell.cell-gallery-container a {
    display: block
}

.product-single-cell.cell-gallery-container img {
    display: block;
    width: 100%;
    height: auto
}

@media(max-width:991px) {
    .product-single-cell.cell-details-container {
        display: block;
        width: 100%
    }

    .product-single-cell.cell-details-container:before {
        content: '';
        display: block;
        clear: both
    }
}

@media(min-width:768px) {
    .product-single-cell.cell-details-container {
        padding-left: 30px
    }
}

@media(min-width:992px) {
    .product-single-cell.cell-details-container {
        width: 50%;
        padding-left: 50px
    }
}

@media(min-width:1440px) {
    .product-single-cell.cell-details-container {
        padding-left: 80px
    }
}

@media(min-width:1600px) {
    .product-single-cell.cell-details-container {
        padding-left: 120px
    }
}

.vertical-carousel-wrapper {
    position: absolute;
    left: 0;
    width: 110px;
    padding-right: 30px;
    width: 70px;
    padding-right: 20px
}

@media(min-width:480px) {
    .vertical-carousel-wrapper {
        width: 100px;
        padding-right: 20px
    }
}

@media(min-width:768px) {
    .vertical-carousel-wrapper {
        width: 90px;
        padding-right: 30px
    }
}

@media(min-width:992px) {
    .vertical-carousel-wrapper {
        width: 100px;
        padding-right: 40px
    }
}

@media(min-width:1200px) {
    .vertical-carousel-wrapper {
        width: 110px
    }
}

@media(min-width:1600px) {
    .vertical-carousel-wrapper {
        width: 120px
    }
}

.vertical-carousel-wrapper .vgallery-item a {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px
}

@media(min-width:480px) {
    .vertical-carousel-wrapper .vgallery-item a {
        padding-top: 10px;
        padding-bottom: 10px
    }
}

@media(min-width:1600px) {
    .vertical-carousel-wrapper .vgallery-item a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.vertical-carousel-wrapper .slick-current img {
    border: 2px solid #444
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir="rtl"] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.product-details.smaller .product-brand {
    font-size: 15px;
    margin-bottom: 14px
}

.product-details.smaller .product-brand a {
    color: #c0c0c0
}

.product-details.smaller .product-brand a:hover,
.product-details.smaller .product-brand a:focus {
    color: #f3dbce
}

@media(min-width:1600px) {
    .product-details.smaller .product-brand {
        font-size: 16px
    }
}

.product-details.smaller .product-title {
    font-weight: 500;
    line-height: 1.15
}

@media(min-width:1600px) {
    .product-details.smaller .product-title {
        font-size: 26px
    }
}

.product-details.smaller .product-price-container {
    margin-top: 25px;
    margin-bottom: 25px
}

.product-details.smaller label {
    text-transform: capitalize;
    color: #999;
    letter-spacing: 0;
    font-weight: 400
}

.product-details.smaller .product-meta-list {
    margin-bottom: 27px
}

.product-details.smaller .product-meta-list li {
    margin-bottom: 5px
}

.product-details.smaller .filter-color-container .row {
    margin: 0 -5px
}

.product-details.smaller .filter-color-container .filter-color-box.box-image {
    width: 65px;
    height: 65px;
    border: 1px solid #e0e0e0;
    margin: 0 5px 10px;
    border-radius: 0;
    box-shadow: none
}

.product-details.smaller .filter-color-container .filter-color-box.box-image:hover,
.product-details.smaller .filter-color-container .filter-color-box.box-image:focus {
    border-color: #f3dbce
}

.product-details.smaller .filter-color-container .filter-color-box.box-image img {
    display: block;
    max-width: 100%;
    height: auto
}

.product-details.smaller .product-quantity {
    width: 100px;
    display: inline-block;
    margin: 0 20px 0 0
}

.product-details.smaller .product-quantity .form-control {
    font-size: 20px;
    color: #777;
    padding-top: 9px;
    padding-bottom: 7px
}

.product-details.smaller .product-action {
    display: inline-block;
    vertical-align: middle
}

.product-details.smaller .product-action .btn-product-wishlist,
.product-details.smaller .product-action .btn-product-like,
.product-details.smaller .product-action .btn-product-compare {
    display: inline-block
}

.product-video-section {
    width: 100%;
    height: 380px
}

@media(min-width:768px) {
    .product-video-section {
        height: 480px
    }
}

@media(min-width:992px) {
    .product-video-section {
        height: 540px
    }
}

@media(min-width:1200px) {
    .product-video-section {
        height: 640px
    }
}

@media(min-width:1600px) {
    .product-video-section {
        height: 800px
    }
}

.product-video-section .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -70px;
    margin-top: -70px
}

.product-video-section .video-btn.smaller {
    margin-left: -62.5px;
    margin-top: -62.5px
}

.product-description-section {
    font-size: 16px;
    line-height: 1.65
}

@media(min-width:768px) {
    .product-description-section {
        font-size: 17px
    }
}

.product-description-section p {
    margin-bottom: 20px
}

.product-description-section p:last-child {
    margin-bottom: 0
}

.product-description-section ul {
    list-style: disc;
    padding-left: 16px
}

.product-description-section ul li {
    margin-bottom: 7px
}

.product-details-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #686868;
    font-weight: 500
}

.product-details-section .table-responsive,
.product-details-section .table-bordered {
    border-color: #e5e5e5
}

.product-details-section .table.details-table tbody>tr {
    border-color: #e5e5e5
}

.product-details-section .table.details-table tbody>tr>td {
    text-align: left;
    color: #777;
    font: 400 16px/1.5 "Fira Sans", Arial, sans-serif;
    padding: 8px 40px
}

.product-details-section .table.details-table tbody>tr>td:first-child {
    padding-left: 18px;
    padding-right: 18px;
    border-color: #e5e5e5;
    background-color: #f8f8f8
}

@media(min-width:1200px) {
    .product-details-section .table.details-table tbody>tr>td:first-child {
        width: 280px
    }
}

@media(min-width:992px) and (max-width:1599px) {

    .col-lg-9 .product-details-section .table.details-table tbody>tr>td:first-child,
    .col-md-9 .product-details-section .table.details-table tbody>tr>td:first-child {
        width: auto
    }
}

.product-comments-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #585858;
    margin-bottom: 25px;
    letter-spacing: .05em
}

@media(min-width:768px) {
    .product-comments-section h3 {
        margin-bottom: 35px
    }
}

.product-comments-section textarea.form-control {
    min-height: 250px
}

.product-comments-section .comments-section-title {
    padding-right: 100px;
    position: relative
}

.product-comments-section .comments-section-title .ratings-container {
    position: absolute;
    right: 0;
    top: 3px
}

.product-comments-section .comments {
    margin-bottom: 60px
}

@media(min-width:992px) {
    .product-comments-section .comments {
        margin-bottom: 0
    }
}

.product-comments-section .comments ul {
    list-style: none !important;
    padding-left: 0
}

.product-comments-section .comments .comment {
    margin-bottom: 30px
}

@media(min-width:1600px) {
    .product-comments-section .comments .comment {
        margin-bottom: 40px
    }
}

.product-comments-section .comments .comment p:last-of-type {
    margin-bottom: 10px
}

.product-comments-section .comments .media .media-left {
    padding-top: 13px
}

@media(min-width:768px) {
    .product-comments-section .comments .media .media-left {
        padding-top: 23px
    }
}

.product-comments-section .comments .media .media-object {
    max-width: 60px
}

@media(min-width:768px) {
    .product-comments-section .comments .media .media-object {
        max-width: 80px
    }
}

@media(min-width:992px) {
    .product-comments-section .comments .media .media-object {
        max-width: 90px
    }
}

@media(min-width:1200px) {
    .product-comments-section .comments .media .media-object {
        max-width: 110px
    }
}

@media(min-width:992px) and (max-width:1599px) {

    .col-lg-9 .product-comments-section .comments .media .media-object,
    .col-md-9 .product-comments-section .comments .media .media-object {
        max-width: 80px
    }
}

@media(min-width:480px) {
    .product-comments-section .comments .media .media-body {
        padding-left: 45px
    }
}

@media(min-width:768px) {
    .product-comments-section .comments .media .media-body {
        padding-left: 55px
    }
}

@media(min-width:992px) and (max-width:1599px) {

    .col-lg-9 .product-comments-section .comments .media .media-body,
    .col-md-9 .product-comments-section .comments .media .media-body {
        padding-left: 40px
    }
}

.product-comments-section .comments .media .media-body .ratings-container {
    margin-bottom: 7px
}

@media(min-width:480px) {
    .product-comments-section .comments .media .media-body .media-body-wrapper {
        padding: 17px 20px 20px
    }
}

@media(min-width:992px) {
    .product-comments-section .comments .media .media-body .media-body-wrapper {
        padding: 23px 35px 25px
    }
}

@media(min-width:1600px) {
    .product-comments-section .comments .media .media-body .media-body-wrapper {
        padding: 28px 45px 30px
    }
}

.product-comments-section .comments .media .media-body .media-body-wrapper:before {
    top: 40px;
    width: 27px;
    height: 31px;
    background-image: url("/Assets/images/review-arrow.png")
}

@media(min-width:768px) {
    .product-comments-section .comments .media .media-body .media-body-wrapper:before {
        top: 65px
    }
}

@media(min-width:992px) {
    .product-comments-section .comments .media .media-body .media-body-wrapper:before {
        top: 80px
    }
}

.product_rev_carousel .rev_slider {
    background-color: #fff
}

.product-nav-arrows.tparrows {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 0;
    background-color: #fff
}

.product-nav-arrows.tparrows:hover,
.product-nav-arrows.tparrows:focus {
    background-color: #fff
}

.product-nav-arrows.tparrows .tp-hover-arrow {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 3px solid #444;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    transition: all .4s
}

.product-nav-arrows.tparrows.tp-leftarrow .tp-hover-arrow {
    background-position: 0 -9301px
}

.product-nav-arrows.tparrows.tp-rightarrow .tp-hover-arrow {
    background-position: 0 -9187px
}

.product-nav-arrows.tparrows:hover .tp-hover-arrow,
.product-nav-arrows.tparrows:focus .tp-hover-arrow {
    opacity: 1;
    visibility: visible
}

.product-single-details .product-brand {
    font-size: 15px;
    margin-bottom: 10px
}

@media(min-width:992px) {
    .product-single-details .product-brand {
        font-size: 16px;
        margin-bottom: 15px
    }
}

.product-single-details .product-brand a {
    color: #c0c0c0
}

.product-single-details .product-brand a:hover,
.product-single-details .product-brand a:focus {
    color: #f3dbce
}

.product-single-details .product-title {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px
}

@media(min-width:768px) {
    .product-single-details .product-title {
        font-size: 20px
    }
}

@media(min-width:992px) {
    .product-single-details .product-title {
        font-size: 24px
    }
}

@media(min-width:1200px) {
    .product-single-details .product-title {
        font-size: 26px
    }
}

.product-single-details .product-price-container {
    margin-bottom: 30px
}

.product-single-details .product-price-container .product-old-price,
.product-single-details .product-price-container .product-price {
    font-size: 18px
}

@media(min-width:768px) {

    .product-single-details .product-price-container .product-old-price,
    .product-single-details .product-price-container .product-price {
        font-size: 20px
    }
}

@media(min-width:1200px) {

    .product-single-details .product-price-container .product-old-price,
    .product-single-details .product-price-container .product-price {
        font-size: 22px
    }
}

.product-details-row {
    width: 100%;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    text-align: center;
    padding: 12px 0
}

@media(min-width:992px) {
    .product-details-row {
        display: table;
        padding: 0
    }
}

.product-details-row .details-cell {
    max-width: 530px;
    margin: 0 auto;
    vertical-align: middle;
    padding: 10px 20px
}

@media(min-width:992px) {
    .product-details-row .details-cell {
        display: table-cell;
        max-width: none;
        border-right: 1px solid #efefef;
        padding: 26px 20px
    }
}

@media(min-width:1440px) {
    .product-details-row .details-cell {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media(min-width:1600px) {
    .product-details-row .details-cell {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(min-width:992px) {
    .product-details-row .details-cell.center {
        width: 38.5%
    }
}

@media(min-width:992px) {
    .product-details-row .details-cell:first-child {
        width: 26%;
        text-align: left;
        padding-left: 0
    }
}

@media(min-width:992px) {
    .product-details-row .details-cell:last-child {
        text-align: right;
        border-right: 0;
        padding-right: 0
    }
}

.product-details-row .product-ratings-wrapper {
    margin-bottom: 3px
}

.product-details-row .product-meta-list {
    margin-bottom: 0
}

.product-details-row .product-meta-list li {
    margin-bottom: 0
}

.product-details-row .row {
    margin-left: -15px;
    margin-right: -15px
}

.product-details-row .row [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px
}

.product-details-row select.form-control {
    height: 46px;
    font-size: 16px;
    padding: 12.5px 20px 9.5px;
    margin-bottom: 0;
    background-position: calc(100% - 20px) center
}

.product-details-row .product-action {
    display: inline-block;
    vertical-align: middle
}

.product-details-row .product-action .btn-product-wishlist,
.product-details-row .product-action .btn-product-like,
.product-details-row .product-action .btn-product-compare {
    display: inline-block
}

.product-details-row .product-quantity {
    display: block;
    width: 100%;
    margin: 0 0 15px
}

@media(min-width:520px) {
    .product-details-row .product-quantity {
        display: inline-block;
        width: 100px;
        margin: 0 15px 0 0
    }
}

@media(min-width:992px) {
    .product-details-row .product-quantity {
        margin-bottom: 15px
    }
}

@media(min-width:1200px) {
    .product-details-row .product-quantity {
        width: 70px;
        margin-right: 25px;
        margin-bottom: 0
    }
}

@media(min-width:1366px) {
    .product-details-row .product-quantity {
        width: 80px;
        margin-right: 35px
    }
}

@media(min-width:1900px) {
    .product-details-row .product-quantity {
        width: 100px
    }
}

.product-review-section .form-group {
    margin-bottom: 20px
}

.product-review-section .rating-form-group.form-group {
    margin-top: -5px
}

.product-review-section textarea.form-control {
    min-height: 250px
}

.product-review-section .rating-label {
    color: #737373;
    font: 400 17px/1 "Open Sans", sans-serif;
    vertical-align: middle;
    margin-right: 8px;
    letter-spacing: .1em
}

.product-review-section .rating-label+.ratings-container {
    vertical-align: middle
}

.product-review-section h2 .ratings-container {
    margin-left: 8px
}

.product-feature {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 50px
}

@media(min-width:992px) {
    .product-feature {
        margin-bottom: 60px
    }
}

@media(min-width:1200px) {
    .product-feature {
        margin-bottom: 70px
    }
}

.product-feature .product-feature-icon {
    float: left;
    display: block;
    width: 90px;
    height: 90px;
    background-image: url("/Assets/images/product-feature-icons-small.png");
    background-repeat: no-repeat;
    background-color: #e6e6e6;
    border-radius: 50%
}

@media(max-width:340px) {
    .product-feature .product-feature-icon {
        float: none;
        margin-bottom: 25px
    }
}

.product-feature .product-feature-icon.icon-1 {
    background-position: 0 0
}

.product-feature .product-feature-icon.icon-2 {
    background-position: -90px 0
}

.product-feature .product-feature-icon.icon-3 {
    background-position: 0 -90px
}

.product-feature .product-feature-icon.icon-4 {
    background-position: -90px -90px
}

@media(min-width:1200px) {
    .product-feature .product-feature-icon {
        width: 125px;
        height: 125px;
        background-image: url("/Assets/images/product-feature-icons.png")
    }

    .product-feature .product-feature-icon.icon-1 {
        background-position: 0 0
    }

    .product-feature .product-feature-icon.icon-2 {
        background-position: -125px 0
    }

    .product-feature .product-feature-icon.icon-3 {
        background-position: 0 -125px
    }

    .product-feature .product-feature-icon.icon-4 {
        background-position: -125px -125px
    }
}

.product-feature .product-feature-content {
    padding-left: 125px
}

@media(min-width:1200px) {
    .product-feature .product-feature-content {
        padding-left: 170px
    }
}

@media(max-width:340px) {
    .product-feature .product-feature-content {
        padding-left: 0
    }
}

.product-feature h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #666;
    letter-spacing: .07em
}

.product-feature p:last-child {
    margin-bottom: 0
}

.product-feature:after {
    content: '';
    display: table;
    clear: both
}

.product-review {
    width: 100%;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 35px 0 40px
}

@media(min-width:480px) {
    .product-review {
        display: table
    }
}

@media(min-width:768px) {
    .product-review {
        padding: 45px 0 50px
    }
}

@media(min-width:992px) {
    .product-review {
        padding: 50px 0 55px
    }
}

.product-review+.product-review {
    margin-top: -1px
}

.product-review .review-media,
.product-review .review-content {
    vertical-align: middle
}

@media(min-width:480px) {

    .product-review .review-media,
    .product-review .review-content {
        display: table-cell
    }
}

.product-review .review-media {
    margin-bottom: 20px
}

@media(min-width:480px) {
    .product-review .review-media {
        margin-bottom: 0
    }
}

@media(min-width:768px) {
    .product-review .review-media {
        width: 320px
    }
}

.product-review .review-media img {
    display: inline-block;
    max-width: 90px;
    height: auto;
    margin-right: 20px;
    vertical-align: middle
}

@media(min-width:480px) {
    .product-review .review-media img {
        margin-right: 30px;
        max-width: 100px
    }
}

@media(min-width:768px) {
    .product-review .review-media img {
        max-width: 110px
    }
}

@media(min-width:992px) {
    .product-review .review-media img {
        margin-right: 35px
    }
}

.product-review .review-media .media-info {
    display: inline-block;
    vertical-align: middle
}

.product-review .review-media h4 {
    font: italic 400 16px/1 "Fira Sans", Arial, sans-serif;
    color: #666;
    margin-top: 10px;
    margin-bottom: 10px
}

@media(min-width:768px) {
    .product-review .review-media h4 {
        font-size: 18px;
        margin-top: 0
    }
}

@media(min-width:992px) {
    .product-review .review-media h4 {
        font-size: 19px
    }
}

.product-review .review-media .ratings-container {
    margin-bottom: 0
}

.product-review .review-content {
    vertical-align: middle
}

@media(min-width:992px) {
    .product-review .review-content {
        padding-left: 60px
    }
}

@media(min-width:1200px) {
    .product-review .review-content {
        padding-left: 80px
    }
}

@media(min-width:1600px) {
    .product-review .review-content {
        padding-left: 100px
    }
}

.product-review .review-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 13px
}

@media(min-width:768px) {
    .product-review .review-content h3 {
        font-size: 19px
    }
}

@media(min-width:992px) {
    .product-review .review-content h3 {
        font-size: 20px
    }
}

.product-review .review-content p {
    line-height: 1.5;
    margin-bottom: 7px;
    max-width: 820px
}

.product-review .review-content .review-date {
    color: #ababab;
    font: italic 400 16px/1 "Fira Sans", Arial, sans-serif
}

.table-responsive {
    margin-bottom: 40px
}

.table-responsive .table {
    margin-bottom: 0
}

.table-bordered {
    border: 1px solid #e7e7e7
}

.table thead>tr {
    border-top: 0;
    border-bottom: 1px solid #f4f4f4
}

.table thead>tr>th {
    text-align: center;
    color: #666;
    text-transform: uppercase;
    font: 500 15px/1.4 "Fira Sans", Arial, sans-serif;
    letter-spacing: .08em;
    text-align: center;
    padding: 20px 5px;
    border: 0
}

.table tbody>tr {
    border-top: 0;
    border-bottom: 1px solid #f4f4f4
}

.table tbody>tr:last-child {
    border-bottom: 0
}

.table tbody>tr>td {
    padding: 35px 10px;
    vertical-align: top;
    border: 0;
    text-align: center;
    border-right: 1px solid #f4f4f4
}

.table tbody>tr>td:last-child {
    border-right: 0
}

.table tbody>tr>td.product-col {
    padding: 10px;
    padding-top: 30px
}

.table tbody>tr>td.quantity-col {
    padding: 25px 25px
}

.table.cart-table thead>tr {
    border: 3px solid #e7e7e7
}

.table.cart-table tbody>tr:nth-child(2n) {
    background-color: #fdfdfd
}

.delete-col {
    min-width: 50px
}

@media(min-width:1600px) {
    .delete-col {
        min-width: 80px
    }
}

.product-col {
    width: 50%;
    max-width: 630px
}

.product-col .product {
    text-align: left;
    margin-bottom: 0
}

@media(min-width:768px) {
    .product-col .product .product-top {
        float: left;
        max-width: calc(43.8%);
        margin-bottom: 0
    }
}

@media(min-width:768px) {
    .product-col .product .product-content-wrapper {
        padding-left: calc(43.8% + 20px)
    }
}

@media(min-width:1600px) {
    .product-col .product .product-content-wrapper {
        padding-left: calc(43.8% + 30px)
    }
}

.product-col .product ul {
    font: 400 15px/1.33 "Open Sans", sans-serif;
    color: #b7b7b7
}

.product-col .product .product-title {
    padding-top: 6px;
    margin-bottom: 12px
}

@media(min-width:1600px) {
    .product-col .product .product-title {
        font-size: 18px
    }
}

.code-col {
    font: 400 16px/1.5 "Open Sans", sans-serif;
    color: #999;
    min-width: 130px
}

@media(min-width:1600px) {
    .code-col {
        min-width: 170px
    }
}

.price-col {
    min-width: 150px
}

@media(min-width:1600px) {
    .price-col {
        min-width: 170px
    }
}

.price-col .product-price-container .product-price {
    font-size: 16px;
    color: #777
}

.price-col .product-price-container .product-old-price {
    font-weight: 400;
    font-size: 14px;
    color: #cbcbcb
}

.price-col .product-price-container .product-old-price+.product-price {
    margin-left: 6px
}

.quantity-col {
    min-width: 120px
}

@media(min-width:1600px) {
    .quantity-col {
        min-width: 150px
    }
}

.quantity-col .form-control {
    height: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    font-family: "Fira Sans", Arial, sans-serif;
    color: #9a9a9a;
    border-radius: 5px;
    margin-bottom: 0;
    padding: 9px 4px 7px
}

.unit-price-col,
.subtotal-col {
    font: 700 16px/1.5 "Fira Sans", Arial, sans-serif;
    color: #4d4d4d
}

@media(min-width:1600px) {

    .unit-price-col,
    .subtotal-col {
        min-width: 170px
    }
}

.delete-btn {
    display: inline-block;
    width: 11px;
    height: 11px;
    background-position: 0 -23px
}

.delete-btn.lighter {
    background-position: 0 -34px
}

.delete-btn.lighter:hover,
.delete-btn.lighter:focus {
    background-position: 0 -23px
}

.delete-btn.white {
    background-position: 0 -12px
}

.vertical-tab-container {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #e7e7e7;
    border-collapse: collapse
}

@media(min-width:768px) {
    .vertical-tab-container {
        display: table;
        table-layout: fixed
    }
}

@media(min-width:768px) {

    .vertical-tab-container .nav.nav-tabs,
    .vertical-tab-container .tab-content {
        display: table-cell
    }
}

.vertical-tab-container .nav.nav-tabs {
    margin-bottom: 0;
    background-color: #fdfdfd;
    border-right: 1px solid #f4f4f4
}

@media(min-width:768px) {
    .vertical-tab-container .nav.nav-tabs {
        width: 250px
    }
}

@media(min-width:1600px) {
    .vertical-tab-container .nav.nav-tabs {
        width: 300px
    }
}

.vertical-tab-container .nav.nav-tabs>li {
    float: none;
    display: block
}

.vertical-tab-container .nav.nav-tabs>li>a {
    border-radius: 0;
    border-left: none;
    border-right: 0;
    border-color: #f4f4f4;
    font-weight: 400;
    color: #a4a4a4;
    font-size: 13px;
    letter-spacing: .05em;
    padding: 14px 20px 12px
}

@media(min-width:1200px) {
    .vertical-tab-container .nav.nav-tabs>li>a {
        font-size: 14px;
        padding: 14px 16px 12px
    }
}

@media(min-width:1600px) {
    .vertical-tab-container .nav.nav-tabs>li>a {
        font-size: 15px;
        padding: 16px 24px 14px;
        letter-spacing: .07em
    }
}

.vertical-tab-container .nav.nav-tabs>li>a:hover,
.vertical-tab-container .nav.nav-tabs>li>a:focus {
    background-color: #fff;
    color: #666;
    border-color: #f4f4f4
}

.vertical-tab-container .nav.nav-tabs>li:first-child>a {
    border-top: 0
}

.vertical-tab-container .nav.nav-tabs>li+li {
    margin-left: 0
}

.vertical-tab-container .nav.nav-tabs>li.active>a {
    background-color: #fff;
    color: #666;
    font-weight: 500
}

.vertical-tab-container .tab-content {
    padding: 20px 20px;
    font: 400 15px/1.5 "Open Sans", sans-serif;
    color: #777
}

@media(min-width:768px) {
    .vertical-tab-container .tab-content {
        padding: 16px 28px
    }
}

@media(min-width:1600px) {
    .vertical-tab-container .tab-content {
        padding: 20px 40px
    }
}

@media(min-width:1200px) {
    .vertical-tab-container .tab-content {
        font-size: 16px
    }
}

@media(min-width:1600px) {
    .vertical-tab-container .tab-content {
        font-size: 17px
    }
}

.vertical-tab-container .tab-content p {
    margin-bottom: 15px
}

.vertical-tab-container .tab-content .form-group:after {
    content: '';
    display: table;
    clear: both
}

.vertical-tab-container .tab-content .form-group:last-child {
    margin-bottom: 0
}

.vertical-tab-container .tab-content label {
    position: relative;
    display: block;
    min-width: 140px;
    top: 10px;
    color: #999;
    vertical-align: middle;
    font-weight: 400;
    margin-bottom: 15px
}

@media(min-width:480px) {
    .vertical-tab-container .tab-content label {
        float: left;
        margin-bottom: 0
    }
}

@media(min-width:1600px) {
    .vertical-tab-container .tab-content label {
        min-width: 160px
    }
}

.vertical-tab-container .tab-content .form-control {
    font-size: 16px;
    color: #888;
    height: 45px;
    padding: 11.5px 18px 9.5px;
    background-position: calc(100% - 18px) center
}

@media(min-width:480px) {
    .vertical-tab-container .tab-content .form-control {
        float: left;
        width: calc(100% - 140px)
    }
}

@media(min-width:1600px) {
    .vertical-tab-container .tab-content .form-control {
        width: calc(100% - 160px)
    }
}

.vertical-tab-container .tab-content .form-control.with-btn {
    margin-bottom: 15px
}

@media(min-width:1600px) {
    .vertical-tab-container .tab-content .form-control.with-btn {
        margin-bottom: 0;
        width: calc(100% - 330px)
    }
}

@media(min-width:540px) and (max-width:1199px) {
    .vertical-tab-container .tab-content .form-control.with-btn {
        margin-bottom: 0;
        width: calc(100% - 310px)
    }
}

.vertical-tab-container .tab-content .btn {
    font-size: 14px;
    width: 145px
}

@media(min-width:480px) {
    .vertical-tab-container .tab-content .btn {
        float: left
    }
}

@media(min-width:540px) and (max-width:1199px) {
    .vertical-tab-container .tab-content .btn {
        margin-left: 25px
    }
}

@media(min-width:1600px) {
    .vertical-tab-container .tab-content .btn {
        margin-left: 25px
    }
}

.table.total-table {
    color: #777;
    text-transform: uppercase
}

.table.total-table tr td {
    padding: 20px 28px;
    font: 400 15px/20px "Fira Sans", Arial, sans-serif;
    vertical-align: middle
}

.table.total-table tr td:first-child {
    min-width: 56%
}

.table.total-table tr td:last-child {
    font-weight: 500;
    font-size: 16px;
    text-align: center
}

.table.total-table tr:last-child td {
    color: #666;
    font-weight: 500
}

.table.total-table tr:last-child td:last-child {
    color: #f3dbce
}

@media(min-width:992px) {
    .table.total-table {
        margin-top: 0
    }
}

.compare-table.table tbody>tr.product-row>td {
    padding: 25px 30px
}

.compare-table.table tbody>tr.product-row>td.table-title {
    padding: 20px 30px
}

.compare-table.table tbody>tr.action-row>td {
    padding: 30px 10px
}

.compare-table.table tbody>tr.info-row {
    font: 400 16px/1.5 "Open Sans", sans-serif;
    color: #999
}

.compare-table.table tbody>tr>td {
    padding: 19px 30px
}

.compare-table.table tbody>tr>td:nth-child(2n+1) {
    background-color: #fdfdfd
}

.compare-table.table tbody>tr>td.table-title {
    background-color: #fff;
    text-align: left;
    padding: 19px 30px;
    width: 22.5%
}

.compare-table.table .product {
    max-width: 250px;
    margin: 0 auto
}

.compare-table.table .product .product-title {
    margin-bottom: 7px
}

.compare-table.table .product-brand {
    line-height: 1.5
}

.compare-table.table .product-action {
    margin-bottom: 24px
}

.compare-table.table .product-action .btn-add-cart {
    margin-right: 0
}

.compare-table.table p:last-child {
    margin-bottom: 10px
}

.cc-input-ccp0,
.cc-input-mc {
    padding-left: 0 !important;
    padding-right: 0 !important
}

@media(max-width:767px) {
    .compare-table.table p {
        white-space: normal
    }

    .cc-input-m {
        padding-left: 5px;
        padding-right: 5px
    }

    .cc-input-cp0 {
        padding-left: 0;
        padding-right: 0
    }

    .cc-input-mc {
        padding-left: 10px !important;
        padding-right: 10px !important
    }
}

.table-title {
    color: #666;
    text-transform: uppercase;
    font: 500 15px/1.4 "Fira Sans", Arial, sans-serif;
    letter-spacing: .08em
}

.checkout-section {
    font: 400 17px/1.35 "Open Sans", sans-serif;
    color: #777
}

.checkout-section h3:not(.product-title) {
    font-size: 20px;
    margin-bottom: 22px
}

.checkout-section .panel .panel-body {
    padding: 12px 0 0
}

@media(min-width:1200px) {
    .checkout-section .panel .panel-body {
        padding-bottom: 15px
    }
}

@media(min-width:1600px) {
    .checkout-section .panel .panel-body {
        padding-bottom: 40px
    }
}

.checkout-section .panel .panel-body.last {
    padding-top: 0
}

.checkout-section .panel .panel-heading a:not(.collapsed) {
    margin-top: 10px
}

.checkout-section .panel.panel-default .panel-heading a.collapsed {
    color: #999;
    border-color: #f3f3f3
}

.checkout-section .panel:first-of-type .panel-heading a:not(.collapsed) {
    margin-top: 0
}

.checkout-table.cart-table thead>tr>th {
    border-width: 0;
    background-color: #e7e7e7;
    color: #fff;
    padding: 14px 5px
}

.checkout-table.cart-table tbody>tr>td {
    background-color: #fff
}

.checkout-table.cart-table tbody>tr.total-row td {
    padding: 20px 28px;
    font: 400 15px/20px "Fira Sans", Arial, sans-serif;
    vertical-align: middle;
    text-transform: uppercase;
    background-color: #fff
}

.checkout-table.cart-table tbody>tr.total-row td:first-child {
    min-width: 56%;
    text-align: right
}

.checkout-table.cart-table tbody>tr.total-row td:first-child span {
    display: inline-block;
    text-align: left;
    min-width: 170px
}

@media(min-width:768px) {
    .checkout-table.cart-table tbody>tr.total-row td:first-child span {
        min-width: 290px
    }
}

.checkout-table.cart-table tbody>tr.total-row td:last-child {
    font-weight: 500;
    font-size: 16px;
    text-align: center
}

.checkout-table.cart-table tbody>tr.total-row:last-child td {
    color: #666;
    font-weight: 500
}

.checkout-table.cart-table tbody>tr.total-row:last-child td:last-child {
    color: #f3dbce
}

#map {
    height: 420px;
    background-color: #c3c3c3;
    margin-bottom: 60px
}

@media(min-width:768px) {
    #map {
        height: 500px;
        margin-bottom: 70px
    }
}

#map address {
    color: #888;
    font-size: 14px;
    margin: 0;
    padding: 12px 10px 8px;
    line-height: 1.5
}

.contact-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -25px
}

.contact-icon.contact-pin {
    background-position: 0 -6520px
}

.contact-icon.contact-email {
    background-position: 0 -6320px
}

.contact-icon.contact-phone {
    background-position: 0 -6420px
}

.contact-icon.contact-pin-white {
    background-position: 0 -6470px
}

.contact-icon.contact-email-white {
    background-position: 0 -6270px
}

.contact-icon.contact-phone-white {
    background-position: 0 -6370px
}

.contact-infos-wrapper {
    max-width: 1160px;
    margin: 0 auto
}

@media(min-width:768px) {
    .contact-info-container {
        text-align: center
    }
}

.contact-info-container .contact-info {
    margin-bottom: 40px
}

.contact-info-container .contact-info:before {
    content: '';
    display: none;
    width: 1px;
    height: 100px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #ededed
}

@media(min-width:992px) {
    .contact-info-container .contact-info:before {
        display: block;
        left: -21px
    }
}

@media(min-width:1440px) {
    .contact-info-container .contact-info:before {
        left: -32px
    }
}

@media(min-width:992px) {
    .contact-info-container:first-child .contact-info:before {
        display: none
    }
}

.contact-info {
    display: inline-block;
    padding-left: 65px;
    position: relative;
    font: 400 14px/1.35 "Open Sans", sans-serif;
    color: #999
}

@media(min-width:1440px) {
    .contact-info {
        padding-left: 76px
    }
}

.contact-info .contact-info-meta {
    text-align: left
}

.contact-info a {
    color: #999
}

.contact-info a:hover,
.contact-info a:focus {
    color: #f3dbce
}

.contact-info h3 {
    font: 500 17px/1 "Fira Sans", Arial, sans-serif;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 14px
}

.contact-info ul {
    margin-bottom: 8px
}

.contact-info address {
    margin-bottom: 8px;
    line-height: inherit
}

.contact-info .more-link {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px
}

.map-container {
    position: relative
}

.map-container #map {
    height: 400px
}

@media(min-width:768px) {
    .map-container #map {
        height: 800px;
        margin-bottom: 0
    }
}

@media(min-width:992px) {
    .map-container #map {
        height: 860px
    }
}

@media(min-width:1200px) {
    .map-container #map {
        height: 920px
    }
}

@media(min-width:1600px) {
    .map-container #map {
        height: 1000px
    }
}

.map-container .form-container {
    padding: 0 20px;
    margin-bottom: 70px
}

@media(min-width:768px) {
    .map-container .form-container {
        width: 520px;
        padding: 30px 25px;
        margin-bottom: 0;
        position: absolute;
        bottom: 80px;
        left: 65px;
        background-color: rgba(255, 255, 255, 0.95)
    }
}

@media(min-width:992px) {
    .map-container .form-container {
        width: 580px;
        padding: 35px 30px;
        bottom: 100px;
        left: 85px
    }
}

@media(min-width:1200px) {
    .map-container .form-container {
        width: 680px;
        padding: 45px 37px;
        bottom: 125px;
        left: 85px
    }
}

@media(min-width:1600px) {
    .map-container .form-container {
        width: 745px;
        padding: 50px 40px;
        bottom: 155px;
        left: 125px
    }
}

.contact-infos-container {
    background-color: #7ccbfb;
    padding: 44px 0 0
}

@media(min-width:768px) {
    .contact-infos-container {
        padding: 31px 0 26px
    }
}

.contact-infos-container .contact-info-container .contact-info:before {
    background-color: rgba(255, 255, 255, 0.4)
}

.contact-infos-container .contact-info {
    color: #fff
}

@media(min-width:768px) {
    .contact-infos-container .contact-info {
        margin-bottom: 0
    }
}

.contact-infos-container .contact-info h3 {
    color: #fff
}

.contact-infos-container .contact-info a {
    color: #fff
}

.contact-infos-container .contact-info a:hover,
.contact-infos-container .contact-info a:focus {
    color: #c6e8fd
}

.error-page {
    width: 100%;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 90px;
    background-color: #ffde7b;
    color: #707070
}

@media(min-width:768px) {
    .error-page {
        padding-top: 135px;
        padding-bottom: 100px
    }
}

@media(min-width:992px) {
    .error-page {
        padding-top: 220px;
        padding-bottom: 160px
    }
}

@media(min-width:1600px) {
    .error-page {
        padding-top: 280px;
        padding-bottom: 230px
    }
}

.error-page .error-page-text {
    position: relative
}

@media(max-width:991px) {
    .error-page .error-page-text {
        text-align: center
    }
}

@media(min-width:992px) {
    .error-page .error-page-text {
        margin-left: 140px
    }
}

@media(min-width:1200px) {
    .error-page .error-page-text {
        margin-left: 180px
    }
}

@media(min-width:1600px) {
    .error-page .error-page-text {
        margin-left: 236px
    }
}

.error-page .error-page-text>img {
    display: block;
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-58%);
    -ms-transform: translateY(-58%);
    transform: translateY(-58%);
    margin-right: -6px
}

@media(min-width:992px) and (max-width:1199px) {
    .error-page .error-page-text>img {
        max-width: 88%;
        -webkit-transform: translateY(-61%);
        -ms-transform: translateY(-61%);
        transform: translateY(-61%);
        margin-right: -8px
    }
}

@media(min-width:1200px) and (max-width:1599px) {
    .error-page .error-page-text>img {
        max-width: 80%;
        -webkit-transform: translateY(-60%);
        -ms-transform: translateY(-60%);
        transform: translateY(-60%);
        margin-right: -5px
    }
}

.error-page h1,
.error-page h2 {
    font-family: "Fira Sans", Arial, sans-serif;
    color: #3e3e3e
}

.error-page h1 {
    font-size: 120px;
    margin-bottom: 30px;
    line-height: .6;
    font-weight: 600;
    margin-left: -0.04em
}

@media(min-width:768px) {
    .error-page h1 {
        font-size: 340px;
        margin-bottom: 45px
    }
}

@media(min-width:992px) {
    .error-page h1 {
        font-size: 230px;
        margin-bottom: 35px;
        margin-left: -0.03em
    }
}

@media(min-width:1200px) {
    .error-page h1 {
        font-size: 250px;
        margin-bottom: 45px;
        margin-left: -0.035em
    }
}

@media(min-width:1280px) {
    .error-page h1 {
        font-size: 290px
    }
}

@media(min-width:1600px) {
    .error-page h1 {
        font-size: 450px
    }
}

.error-page h2 {
    font-size: 24px;
    line-height: .5;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    white-space: nowrap
}

@media(min-width:768px) {
    .error-page h2 {
        font-size: 36px;
        margin-bottom: 25px
    }
}

@media(min-width:992px) {
    .error-page h2 {
        font-size: 40px;
        margin-bottom: 20px
    }
}

@media(min-width:1200px) {
    .error-page h2 {
        font-size: 52px;
        line-height: .8;
        margin-bottom: 20px
    }
}

@media(min-width:1600px) {
    .error-page h2 {
        font-size: 88px;
        margin-bottom: 16px
    }
}

.error-page p {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.25;
    max-width: 480px;
    margin-bottom: 17px;
    letter-spacing: .05em
}

@media(max-width:991px) {
    .error-page p {
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:768px) {
    .error-page p {
        margin-bottom: 25px
    }
}

@media(min-width:992px) {
    .error-page p {
        letter-spacing: .03em
    }
}

@media(min-width:1200px) {
    .error-page p {
        font-size: 16px;
        letter-spacing: .03em
    }
}

@media(min-width:1600px) {
    .error-page p {
        font-size: 19px
    }
}

.error-page .action-container {
    font-size: 0
}

@media(min-width:480px) {
    .error-page .action-container .btn {
        min-width: 156px
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .error-page .action-container .btn {
        font-size: 14px;
        padding: 10.5px 12px 9.5px;
        min-width: 125px
    }
}

@media(max-width:767px) {
    .error-page .action-container .btn {
        font-size: 14px;
        padding: 10.5px 12px 9.5px;
        min-width: 120px
    }
}

@media(max-width:479px) {
    .error-page .action-container .btn {
        font-size: 13px;
        padding: 10.5px 10px 9.5px;
        min-width: 100px
    }
}

.error-page .action-container .btn+.btn {
    margin-left: 10px
}

@media(min-width:480px) {
    .error-page .action-container .btn+.btn {
        margin-left: 20px
    }
}

@media(min-width:1200px) {
    .error-page .action-container .btn+.btn {
        margin-left: 30px
    }
}

.new-customer-section,
.registered-customer-section {
    font: 400 17px/1.35 "Open Sans", sans-serif;
    color: #777
}

.new-customer-section p,
.registered-customer-section p {
    margin-bottom: 19px
}

@media(min-width:768px) {
    .new-customer-section {
        min-height: 185px
    }
}

.new-customer-section .btn {
    min-width: 230px
}

.registered-customer-section .btn {
    min-width: 140px
}

.form-action .forget-link {
    float: right;
    font-size: 16px;
    color: #999;
    margin-top: 14px
}

.form-action .forget-link:hover,
.form-action .forget-link:focus {
    color: #f3dbce
}

.sidebar.faqs-sidebar .widget {
    margin-bottom: 50px
}

.sidebar.faqs-sidebar .widget:last-child {
    margin-bottom: 0
}

.sidebar.faqs-sidebar .widget .widget-title {
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 20px
}

.sidebar.faqs-sidebar .widget .widget-title:after {
    bottom: 0;
    max-width: 40px;
    background-color: #eee;
    max-width: 50px
}

.sidebar.faqs-sidebar .widget .faqs-cat-list {
    counter-reset: count-faqs
}

.sidebar.faqs-sidebar .widget .faqs-cat-list li {
    counter-increment: count-faqs;
    padding: 5px 0;
    border-bottom: 1px solid #eee
}

.sidebar.faqs-sidebar .widget .faqs-cat-list li:before {
    font-weight: 600;
    content: counter(count-faqs);
    font-size: 18px;
    color: #d7d7d7;
    margin-right: 6px;
    vertical-align: middle
}

.sidebar.faqs-sidebar .widget .faqs-cat-list li a {
    color: #333;
    vertical-align: middle
}

.sidebar.faqs-sidebar .widget .faqs-cat-list li a:hover,
.sidebar.faqs-sidebar .widget .faqs-cat-list li a:focus {
    color: #f3dbce
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -ms-grid-row-align: start;
    align-items: flex-start;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-nav-wrapper {
    text-align: center;
    font-size: 0;
    margin-bottom: 40px
}

@media(min-width:480px) {
    .carousel-header .swiper-nav-wrapper {
        float: right;
        margin-bottom: 0
    }
}

.carousel-header.bordered .swiper-nav-wrapper {
    margin-bottom: 0
}

.swiper-nav-wrapper .swiper-button-prev+.swiper-button-next {
    margin-left: 9px
}

.swiper-nav-wrapper.alignright {
    text-align: left;
    margin-bottom: 25px
}

@media(min-width:768px) {
    .swiper-nav-wrapper.alignright {
        float: right;
        margin-bottom: 35px
    }
}

.swiper-button-prev,
.swiper-button-next {
    display: inline-block;
    position: static;
    top: auto;
    width: 40px;
    height: 40px;
    border: 2px solid #434343;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background-repeat: no-repeat;
    transition: background-color .4s, border .4s;
    border-radius: 50%
}

.swiper-button-prev.light,
.swiper-button-next.light {
    border-color: #fff
}

.swiper-button-prev.dark,
.swiper-button-next.dark {
    border-color: #444
}

.swiper-button-prev:hover,
.swiper-button-prev:focus,
.swiper-button-next:hover,
.swiper-button-next:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.vertical-center-nav .swiper-button-prev,
.vertical-center-nav .swiper-button-next {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    z-index: 500
}

.vertical-center-nav .swiper-button-prev {
    left: 40px
}

.vertical-center-nav .swiper-button-next {
    right: 40px
}

.vertical-center-nav.aligned-nav .swiper-button-prev {
    left: 0
}

.vertical-center-nav.aligned-nav .swiper-button-next {
    right: 0
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: .45;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: auto;
    right: auto;
    background-position: 0 -4024px
}

.swiper-button-prev.light,
.swiper-container-rtl .swiper-button-next.light {
    background-position: 0 -4060px
}

.swiper-button-prev.dark,
.swiper-container-rtl .swiper-button-next.dark {
    background-position: 0 -4096px
}

.swiper-button-prev:hover,
.swiper-button-prev:focus,
.swiper-container-rtl .swiper-button-next:hover,
.swiper-container-rtl .swiper-button-next:focus {
    background-position: 0 -4060px
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-position: 0 -4203px;
    right: auto;
    left: auto
}

.swiper-button-next.light,
.swiper-container-rtl .swiper-button-prev.light {
    background-position: 0 -4168px
}

.swiper-button-next.dark,
.swiper-container-rtl .swiper-button-prev.dark {
    background-position: 0 -4095px
}

.swiper-button-next:hover,
.swiper-button-next:focus,
.swiper-container-rtl .swiper-button-prev:hover,
.swiper-container-rtl .swiper-button-prev:focus {
    background-position: 0 -4168px
}

.widget .swiper-button-prev,
.widget .swiper-button-next,
.category-tab-slider .swiper-button-prev,
.category-tab-slider .swiper-button-next {
    position: absolute;
    width: 25px;
    height: 24px;
    top: -82px;
    margin-top: 0;
    z-index: 100;
    border: 2px solid #b2b2b2;
    border-radius: 50%;
    transition: background-color .4s, border .4s
}

.widget .swiper-button-prev:hover,
.widget .swiper-button-prev:focus,
.widget .swiper-button-next:hover,
.widget .swiper-button-next:focus,
.category-tab-slider .swiper-button-prev:hover,
.category-tab-slider .swiper-button-prev:focus,
.category-tab-slider .swiper-button-next:hover,
.category-tab-slider .swiper-button-next:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.widget .swiper-button-prev,
.category-tab-slider .swiper-button-prev {
    left: auto;
    right: 49px;
    background-position: 0 -1708px
}

.widget .swiper-button-prev:hover,
.widget .swiper-button-prev:focus,
.category-tab-slider .swiper-button-prev:hover,
.category-tab-slider .swiper-button-prev:focus {
    background-position: 0 -1728px
}

.widget .swiper-button-next,
.category-tab-slider .swiper-button-next {
    right: 20px;
    background-position: 0 -1768px
}

.widget .swiper-button-next:hover,
.widget .swiper-button-next:focus,
.category-tab-slider .swiper-button-next:hover,
.category-tab-slider .swiper-button-next:focus {
    background-position: 0 -1788px
}

.category-tab-slider .swiper-button-prev,
.category-tab-slider .swiper-button-next {
    top: -61px
}

.category-tab-slider .swiper-button-prev {
    right: 30px
}

.category-tab-slider .swiper-button-next {
    right: 0
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2;
    transition: all .4s
}

button.swiper-pagination-bullet {
    border: 0;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px
}

.swiper-pagination-progress {
    background: rgba(0, 0, 0, 0.25);
    position: absolute
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-vertical>.swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.5)
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent)
}

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
    -ms-perspective: 1200px
}

.swiper-container-cube,
.swiper-container-flip {
    overflow: visible
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-slide {
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.footer-newsletter {
    padding: 30px 0 34px;
    text-align: center;
    color: #f6f6f6;
    background-color: #7ccbfb;
    font: 400 16px/1.2 "Open Sans", sans-serif;
    letter-spacing: 0
}

@media(min-width:768px) {
    .footer-newsletter {
        font-size: 18px;
        line-height: 1.5;
        padding: 41px 0 34px
    }
}

@media(min-width:992px) {
    .footer-newsletter {
        font-size: 19px
    }
}

.footer-newsletter h4 {
    font: 500 25px/1 "Fira Sans", Arial, sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: .06em
}

@media(min-width:768px) {
    .footer-newsletter h4 {
        font-size: 35px;
        margin-bottom: 10px
    }
}

@media(min-width:992px) {
    .footer-newsletter h4 {
        font-size: 45px
    }
}

.footer-newsletter p {
    margin-bottom: 22px
}

@media(min-width:768px) {
    .footer-newsletter p {
        margin-bottom: 26px
    }
}

.footer-newsletter form {
    max-width: 440px;
    margin: 0 auto;
    position: relative
}

@media(min-width:768px) {
    .footer-newsletter form {
        max-width: 540px
    }
}

@media(min-width:992px) {
    .footer-newsletter form {
        max-width: 620px
    }
}

.footer-newsletter .form-control {
    border: 0;
    height: 43px;
    font: 400 16px/1.8 "Open Sans", sans-serif;
    padding: 8px 130px 7px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #555;
    border-radius: 30px;
    margin-bottom: 0
}

@media(min-width:768px) {
    .footer-newsletter .form-control {
        font-size: 18px;
        height: 50px;
        padding: 9px 165px 9px 25px
    }
}

@media(min-width:992px) {
    .footer-newsletter .form-control {
        font-size: 20px;
        height: 56px;
        padding: 10px 190px 10px 30px
    }
}

.footer-newsletter .form-control::-webkit-input-placeholder {
    color: #555
}

.footer-newsletter .form-control::-moz-placeholder {
    color: #555
}

.footer-newsletter .form-control:-ms-input-placeholder {
    color: #555
}

.footer-newsletter .form-control::placeholder {
    color: #555
}

.footer-newsletter .form-control:hover,
.footer-newsletter .form-control:focus {
    background-color: #fff
}

.footer-newsletter .btn {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    min-width: 110px;
    text-align: center;
    border-radius: 30px;
    padding: 12px 10px 9px
}

@media(min-width:768px) {
    .footer-newsletter .btn {
        min-width: 140px;
        font-size: 16px;
        padding: 14px 10px 12px
    }
}

@media(min-width:992px) {
    .footer-newsletter .btn {
        min-width: 160px;
        font-size: 18px;
        padding: 16px 10px 13px
    }
}

.footer-newsletter .btn:hover,
.footer-newsletter .btn:focus {
    border-radius: 0
}

.footer-newsletter .btn.btn-link-icon {
    border: 0;
    padding: 0 10px;
    min-width: 83px;
    background-color: transparent;
    line-height: 0
}

@media(min-width:768px) {
    .footer-newsletter .btn.btn-link-icon {
        padding-top: 3.5px;
        padding-bottom: 3.5px
    }
}

@media(min-width:992px) {
    .footer-newsletter .btn.btn-link-icon {
        padding-top: 6.5px;
        padding-bottom: 6.5px
    }
}

.footer-newsletter .btn.btn-link-icon .icon-btn-arrow {
    display: inline-block;
    width: 43px;
    height: 43px;
    background-position: 0 -5581px
}

.footer-newsletter .btn.btn-link-icon:hover,
.footer-newsletter .btn.btn-link-icon:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    border-radius: 28px !important
}

.footer-newsletter .btn.btn-link-icon:hover .icon-btn-arrow,
.footer-newsletter .btn.btn-link-icon:focus .icon-btn-arrow {
    background-position: 0 -5366px
}

.footer {
    background-color: #f1f1f1;
    color: #999;
    letter-spacing: .5px;
    font: 400 14px/1.35 "Open Sans", sans-serif;
    overflow: hidden;
    padding: 20px;
}

.footer a {
    color: #999
}

.footer a:hover,
.footer a:focus {
    color: #f3dbce
}

.footer .widget {
    margin-bottom: 48px
}

.footer .widget .widget-title {
    font: 500 16px/1.2 "Fira Sans", Arial, sans-serif;
    letter-spacing: .6px;
    margin: -2px 0 25px;
    text-transform: uppercase;
    color: #888
}

.footer .widget.about-widget {
    max-width: 215px
}

.footer .widget.about-widget img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 0 25px
}

.footer .widget.about-widget p {
    margin-bottom: 13px
}

.footer .widget.about-widget p:last-child {
    margin-bottom: 0
}

.footer .widget .links {
    margin: -5px 0 0
}

.footer .widget .links li {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 31px
}

.footer .widget .contact-list {
    margin: 0
}

.footer .widget .contact-list li {
    position: relative;
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 15px;
    padding-left: 46px;
    overflow: hidden
}

.footer .widget .contact-list li div:first-of-type {
    padding: 1px 0 2px
}

.footer .widget .contact-list li div:last-of-type {
    padding: 2px 0 1px
}

.footer .widget .contact-list li .info-icon {
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #d4d4d4;
    border-radius: 5px;
    transition: background-color .4s
}

.footer .widget .contact-list li .info-icon.bordered {
    border: 1px solid #d4d4d4
}

.footer .widget .contact-list li .info-icon.phone {
    background-position: 0 -3640px
}

.footer .widget .contact-list li .info-icon.phone.bordered {
    background-position: 0 -3332px
}

.footer .widget .contact-list li .info-icon.mobile {
    background-position: 0 -3896px
}

.footer .widget .contact-list li .info-icon.mobile.bordered {
    background-position: 0 -3422px
}

.footer .widget .contact-list li .info-icon.email {
    background-position: 0 -3608px
}

.footer .widget .contact-list li .info-icon.email.bordered {
    background-position: 0 -3392px
}

.footer .widget .contact-list li .info-icon.skype {
    background-position: 0 -3800px
}

.footer .widget .contact-list li .info-icon.skype.bordered {
    background-position: 0 -3362px
}

.footer .widget .contact-list li .info-icon.home {
    background-position: 0 -3704px
}

.footer .widget .contact-list li .info-icon.clock {
    background-position: 0 -3960px
}

.footer .widget .contact-list li .info-icon.instagram {
    background-position: 0 -3992px
}

.footer .widget .contact-list li:hover .info-icon {
    background-color: #f3dbce
}

.footer .widget .products-list .product {
    margin: 0;
    padding: 20px;
    border: 1px solid #eee
}

@media(min-width:1200px) {
    .footer .widget .products-list .product {
        padding: 24px 20px 25px
    }
}

.footer .widget .products-list .product+.product {
    margin-top: -1px
}

.footer .widget .products-list .product:after {
    content: '';
    display: table;
    clear: both
}

.footer .widget .products-list figure {
    position: relative;
    float: left;
    max-width: 90px;
    border: 1px solid #eae9e9;
    margin-right: 20px
}

@media(min-width:1200px) {
    .footer .widget .products-list figure {
        max-width: 100px;
        margin-right: 20px
    }
}

@media(min-width:1440px) {
    .footer .widget .products-list figure {
        max-width: 120px;
        margin-right: 23px
    }
}

.footer .widget .products-list figure a {
    display: block
}

.footer .widget .products-list figure img {
    display: block;
    max-width: 100%;
    height: auto
}

.footer .widget .products-list .product-meta {
    max-width: 325px;
    padding-left: 110px;
    margin-bottom: 0
}

@media(min-width:1200px) {
    .footer .widget .products-list .product-meta {
        padding-left: 120px
    }
}

@media(min-width:1440px) {
    .footer .widget .products-list .product-meta {
        padding-left: 143px
    }
}

.footer .widget .products-list .product-label {
    right: 5px;
    top: 5px;
    font-size: 12px;
    z-index: 99;
    padding: 6px 7px 4px;
    min-width: 46px
}

.footer .widget .products-list .product-label.outofstock {
    font-size: 10px;
    padding: 4px 4px 2px 5px
}

.footer .widget .products-list .product-label.outofstock>span {
    display: block
}

.footer .widget .products-list .product-title {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.1;
    margin-bottom: 9px
}

@media(min-width:992px) {
    .footer .widget .products-list .product-title {
        font-size: 16px
    }
}

.footer .widget .products-list .product-title a {
    color: #555
}

.footer .widget .products-list .product-title a:hover,
.footer .widget .products-list .product-title a:focus {
    color: #f3dbce
}

.footer .widget .products-list .product-price-container {
    font-family: "Fira Sans", Arial, sans-serif;
    margin-bottom: 0
}

.footer .widget .products-list .product-price-container .product-price,
.footer .widget .products-list .product-price-container .product-old-price {
    font-size: 15px
}

.footer .widget .products-list .product-price-container .product-old-price {
    display: block;
    color: #cbcbcb;
    margin-top: 4px
}

.footer .widget .products-list.v2 .product {
    padding: 0 0 24px;
    border-top: 0;
    border-left: none;
    border-right: 0;
    margin-bottom: 25px
}

.footer .widget .products-list.v2 .product:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.footer .widget .products-list.v2 .product-title {
    margin-bottom: 12px;
    line-height: 1.25
}

.footer .widget .products-list.v2 figure {
    border: 0
}

@media(min-width:1200px) {
    .footer .widget .products-list.v2 figure {
        max-width: 100px;
        margin-right: 26px
    }
}

@media(min-width:1200px) {
    .footer .widget .products-list.v2 .product-meta {
        padding-left: 126px
    }
}

.footer .widget .products-list.v2 .product-price-container {
    font-family: "Open Sans", sans-serif
}

.footer .widget .products-list.v2 .product-price-container .product-old-price {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700
}

.footer .widget .products-list.v2 .product-price-container .product-price {
    font-size: 23px;
    line-height: 1;
    color: #f3dbce;
    font-weight: 600;
    margin-left: 0
}

.footer .widget .products-list.v2 .product-price-container.border-left {
    position: relative;
    padding-left: 11px
}

.footer .widget .products-list.v2 .product-price-container.border-left:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 4px;
    height: 33px;
    margin-top: -16.5px;
    background-color: #dedede
}

.footer .widget .tagcloud a {
    display: block;
    float: left;
    padding: 4px 9px;
    background-color: #131313;
    color: #9a9a9a;
    margin: 0 6px 6px 0;
    transition: background .45s
}

.footer .widget .tagcloud a:hover,
.footer .widget .tagcloud a:focus {
    background-color: #f3dbce;
    color: #fff
}

.footer .widget .tagcloud:after {
    content: '';
    display: table;
    clear: both
}

.footer .widget.instagram-widget {
    position: relative;
    margin: 0
}

.footer .widget.instagram-widget .btn.btn-follow {
    display: block;
    padding: 3px 14px;
    min-width: 170px;
    font-size: 12px;
    margin-left: -85px;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 99;
    border-radius: 5px 5px 0 0;
    color: #fff;
    transition: all .4s;
    background-color: #f3dbce;
    border-color: #f3dbce;
    opacity: .8
}

.footer .widget.instagram-widget .btn.btn-follow:hover,
.footer .widget.instagram-widget .btn.btn-follow:focus {
    opacity: 1;
    color: #fff;
    background-color: #f3dbce;
    border-color: #f3dbce
}

.footer .widget.instagram-widget #instafeed img {
    display: block;
    width: 100%;
    height: auto
}

.footer .widget.instagram-widget #instafeed a {
    display: block;
    position: relative
}

.footer .widget.instagram-widget #instafeed a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all .75s ease;
    -webkit-transition: all .75s ease;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0.4)
}

.footer .widget.instagram-widget #instafeed a:focus:after,
.footer .widget.instagram-widget #instafeed a:hover:after {
    opacity: 1;
    visibility: visible
}

.footer .widget.newsletter-widget {
    margin-bottom: 37px
}

.footer .widget.newsletter-widget p {
    margin-bottom: 14px
}

.footer .widget.newsletter-widget form {
    position: relative
}

.footer .widget.newsletter-widget .form-control {
    height: 37px;
    font-size: 15px;
    background-color: #fff;
    color: #888;
    border-radius: 28px;
    padding: 8px 116px 6px 20px;
    margin-bottom: 0
}

.footer .widget.newsletter-widget .form-control::-webkit-input-placeholder {
    color: #888
}

.footer .widget.newsletter-widget .form-control::-moz-placeholder {
    color: #888
}

.footer .widget.newsletter-widget .form-control:-ms-input-placeholder {
    color: #888
}

.footer .widget.newsletter-widget .form-control::placeholder {
    color: #888
}

.footer .widget.newsletter-widget .btn {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 13px;
    padding: 9.5px 23px 7.5px
}

.footer .widget.newsletter-widget .btn.btn-border {
    padding: 8.5px 23px 6.5px
}

.footer .widget.newsletter-widget .btn.btn-border:hover,
.footer .widget.newsletter-widget .btn.btn-border:focus {
    border-radius: 20px !important
}

.footer .widget .info-box {
    margin-bottom: 0;
    padding-top: 1px;
    padding-bottom: 1px
}

@media(min-width:992px) {
    .footer .widget .info-box {
        max-width: 320px
    }
}

.footer .widget .info-box .info-box-title {
    margin-bottom: 14px
}

.footer .widget .info-box .r-more {
    margin-top: 14px
}

.footer .widget .call-list {
    margin-bottom: 7px
}

.footer .widget .call-list li {
    font-size: 22px;
    line-height: 1.22
}

.footer .widget.facebook-widget .btn.flike-btn {
    font-size: 14px;
    line-height: 1;
    margin-left: 50px;
    color: #fff;
    padding: 6px 10px 2px;
    min-width: 68px;
    margin-top: -4px
}

.footer .widget.facebook-widget .btn.flike-btn.btn-border {
    padding: 5px 9px 1px
}

@media(min-width:992px) and (max-width:1199px) {
    .footer .widget.facebook-widget .btn.flike-btn {
        margin-left: 20px;
        min-width: 52px
    }
}

.footer .widget.facebook-widget p {
    margin-bottom: 16px
}

.footer .widget.facebook-widget .facebook-widget-wrapper {
    margin-left: -7.5px;
    margin-right: -7.5px;
    max-width: 280px
}

@media(min-width:992px) and (max-width:1439px) {
    .footer .widget.facebook-widget .facebook-widget-wrapper {
        margin-left: -5px;
        margin-right: -5px
    }
}

.footer .widget.facebook-widget .facebook-widget-wrapper:after {
    content: '';
    clear: both
}

.footer .widget.facebook-widget .facebook-widget-wrapper .facebook-item {
    display: block;
    float: left;
    width: 25%;
    padding: 0 7.5px;
    margin-bottom: 15px
}

@media(min-width:992px) and (max-width:1439px) {
    .footer .widget.facebook-widget .facebook-widget-wrapper .facebook-item {
        padding: 0 5px;
        margin-bottom: 10px
    }
}

.footer .widget.facebook-widget .facebook-widget-wrapper .facebook-item img {
    display: block;
    height: auto;
    width: 100%
}

.footer .widget .swiper-button-prev,
.footer .widget .swiper-button-next {
    top: -42px
}

.footer .widget .swiper-button-next {
    right: 20px
}

.footer .widget .swiper-button-prev {
    right: 49px
}

.footer .widget.contact-widget #small-map {
    width: 100%;
    height: 120px;
    margin-bottom: 15px
}

.footer .widget.contact-widget #small-map2 {
    width: 100%;
    height: 100px;
    margin-bottom: 16px
}

.footer .widget.contact-widget .input-desc {
    font-size: 16px
}

.footer .widget.contact-widget .form-group {
    margin-bottom: 10px
}

.footer .widget.contact-widget .form-group:last-of-type {
    margin-bottom: 25px
}

.footer .widget.contact-widget .form-control {
    height: 46px;
    font-size: 16px;
    padding: 12.5px 20px 9.5px
}

.footer .widget.contact-widget textarea.form-control {
    min-height: 87px
}

.footer .widget.contact-widget .btn {
    font-size: 14px;
    padding: 11px 19px 8px
}

.footer .widget .popular-entry {
    padding: 0 0 24px;
    margin: 0 0 25px;
    border-bottom: 1px solid #eee
}

.footer .widget .popular-entry:first-child {
    padding-top: 0
}

.footer .widget .popular-entry:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.footer .widget .popular-entry:after {
    content: '';
    display: table;
    clear: both
}

.footer .widget .popular-entry figure {
    float: left;
    width: 100px
}

@media(max-width:479px) {
    .footer .widget .popular-entry figure {
        width: 90px
    }
}

.footer .widget .popular-entry figure a {
    display: block
}

.footer .widget .popular-entry figure img {
    display: block;
    width: 100%;
    height: auto
}

.footer .widget .pentry-meta {
    margin-left: 122px
}

@media(max-width:479px) {
    .footer .widget .pentry-meta {
        margin-left: 110px
    }
}

.footer .widget .pentry-meta span,
.footer .widget .pentry-meta h5 {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.3
}

.footer .widget .pentry-meta span {
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
    color: #888;
    padding-top: 8px
}

.footer .widget .pentry-meta h5 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #555;
    max-width: 190px
}

.footer .widget .pentry-meta h5 a {
    color: #555
}

.footer .widget .pentry-meta h5 a:hover,
.footer .widget .pentry-meta h5 a:focus {
    color: #f3dbce
}

.footer .widget .tweets-list li {
    margin-bottom: 44px;
    font-size: 15px;
    color: #999;
    line-height: 1.45
}

@media(min-width:768px) and (max-width:1599px) {
    .footer .widget .tweets-list li {
        font-size: 14px
    }
}

.footer .widget .tweets-list li:last-child {
    margin-bottom: 0
}

@media(min-width:1600px) {
    .footer .widget .tweets-list li {
        font-size: 15px;
        margin-bottom: 58px
    }
}

.footer .widget .tweets-list li p {
    max-width: 350px;
    margin-bottom: 13px
}

.footer .widget .tweets-list li a {
    color: #f3dbce
}

.footer .widget .tweets-list li a:hover,
.footer .widget .tweets-list li a:focus {
    color: #008bcc
}

.footer .widget .tweets-list .tweet-date {
    font-size: 13px;
    line-height: 1.1;
    color: #a3a3a3
}

.footer .widget .tweets-list .tweet-top {
    margin-bottom: 19px
}

@media(min-width:1600px) {
    .footer .widget .tweets-list .tweet-top {
        margin-bottom: 21px
    }
}

.footer .widget .tweets-list .tweet-top figure {
    float: left
}

.footer .widget .tweets-list .tweet-top figure img {
    display: block;
    max-width: 100%;
    height: auto
}

.footer .widget .tweets-list .tweet-top .tweet-user {
    margin-left: 68px;
    padding-top: 6px
}

.footer .widget .tweets-list .tweet-top .tweet-user h5 {
    text-transform: uppercase;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.2;
    color: #666;
    font-weight: 600
}

.footer .widget .tweets-list .tweet-top .tweet-user h5 a {
    color: #666
}

.footer .widget .tweets-list .tweet-top .tweet-user h5 a:hover,
.footer .widget .tweets-list .tweet-top .tweet-user h5 a:focus {
    color: #f3dbce
}

.footer .widget .tweets-list .tweet-top .tweet-user p {
    font: 400 15px/1.2 "Fira Sans", Arial, sans-serif;
    margin-bottom: 0
}

.footer .widget .tweets-list .tweet-top .tweet-user p a {
    color: #888
}

.footer .widget .tweets-list .tweet-top .tweet-user p a:hover,
.footer .widget .tweets-list .tweet-top .tweet-user p a:focus {
    color: #f3dbce
}

.footer .widget .tweets-list .tweet-top:after {
    content: '';
    display: table;
    clear: both
}

.footer-top {
    padding: 70px 0 10px;
    background-color: #fcfcfc
}

@media(min-width:992px) {
    .footer-top {
        padding-top: 80px;
        padding-bottom: 8px
    }
}

.footer-top .widget {
    margin-bottom: 70px
}

.footer-top .widget .widget-title {
    font: 700 16px/1 "Open Sans", sans-serif;
    color: #555;
    margin: 0 0 25px
}

@media(min-width:992px) {}

.footer-bottom {
    background-color: #fff;
    padding: 30px 0;
    color: #a8a8a8
}

@media(min-width:992px) {
    .footer-bottom {
        padding: 29px 0 28px
    }
}

.footer-bottom .footer-left {
    margin-bottom: 25px
}

@media(min-width:992px) {
    .footer-bottom .footer-left {
        float: left;
        margin-right: 20px;
        margin-bottom: 0
    }
}

@media(min-width:992px) {
    .footer-bottom .footer-right {
        text-align: right
    }
}

.footer-bottom a {
    color: #a8a8a8
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: #f3dbce
}

.footer-bottom .social-icons {
    margin-bottom: 22px
}

@media(min-width:768px) {
    .footer-bottom .social-icons {
        margin-bottom: 10px
    }
}

.footer-bottom .social-icons .social-icon {
    background-color: #cfcfcf
}

.footer-bottom .footer-menu {
    font-size: 0;
    margin: 0
}

@media(max-width:767px) {
    .footer-bottom .footer-menu {
        margin-bottom: 33px
    }
}

.footer-bottom .footer-menu li {
    font-size: 15px;
    display: block;
    border-bottom: 1px solid #d1d1d1
}

@media(max-width:767px) {
    .footer-bottom .footer-menu li {
        line-height: 1.5;
        padding: 10px 0 8px;
        border-color: #f3f3f3
    }

    .footer-bottom .footer-menu li:first-child {
        border-top: 1px solid #f3f3f3
    }
}

@media(min-width:768px) {
    .footer-bottom .footer-menu li {
        display: inline-block;
        border-bottom: 0
    }
}

.footer-bottom .footer-menu li+li:before {
    color: #d1d1d1
}

@media(min-width:768px) {
    .footer-bottom .footer-menu li+li:before {
        content: '|';
        margin: 0 10px
    }
}

@media(min-width:1200px) {
    .footer-bottom .footer-menu li+li:before {
        margin: 0 14px
    }
}

@media(min-width:1440px) {
    .footer-bottom .footer-menu li+li:before {
        margin: 0 21px
    }
}

.footer-bottom .footer-menu li.active a {
    color: #f3dbce
}

.footer-bottom .footer-menu a {
    display: inline-block
}

.footer-bottom .payment-info h5 {
    font: 700 14px/1.25 "Fira Sans", Arial, sans-serif;
    color: #a8a8a8;
    margin: -2px 0 4px;
    text-transform: uppercase;
    letter-spacing: .6px
}

@media(max-width:767px) {
    .footer-bottom .payment-info h5 {
        margin-bottom: 10px
    }
}

.footer-bottom .payment-info p {
    margin-bottom: 10px
}

@media(max-width:767px) {
    .footer-bottom .payment-info p {
        margin-bottom: 16px
    }
}

.footer-bottom .payment-info img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    opacity: .3;
    transition: opacity .4s
}

.footer-bottom .payment-info img:hover,
.footer-bottom .payment-info img:focus {
    opacity: .7
}

.scroll-top {
    display: inline-block;
    cursor: pointer;
    z-index: 999;
    width: 55px;
    height: 55px;
    border: 2px solid #656565;
    transition: all .35s, background-position .01s;
    border-radius: 50%;
    margin-top: 25px;
    background-position: 0 -6776px
}

@media(min-width:768px) {
    .scroll-top {
        position: fixed;
        bottom: 180px;
        right: 40px;
        opacity: 0;
        visibility: hidden;
        margin: 0;
        -webkit-transform: translateY(90px);
        -ms-transform: translateY(90px);
        transform: translateY(90px)
    }

    .scroll-top.fixed {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.scroll-top:hover,
.scroll-top:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    background-position: 0 -6829px
}

#small-map address,
#small-map2 address {
    color: #555
}

.footer-logo {
    display: inline-block;
    max-width: 100%;
    height: auto
}

.footer.footer2 {
    background-color: #ecebeb;
    color: #999
}

.footer.footer2 .widget .widget-title {
    color: #888
}

.footer.footer2 .widget.newsletter-widget .form-control {
    border-color: #fff
}

.footer.footer2 .footer-top {
    line-height: 0;
    padding: 29px 0 0;
    background-color: #f2f2f2
}

.footer.footer2 .footer-top .widget {
    margin-bottom: 23px
}

.footer.footer2 .footer-inner {
    padding: 70px 0 10px
}

@media(min-width:992px) {
    .footer.footer2 .footer-inner {
        padding: 88px 0 12px
    }
}

.footer.footer2 .social-icons .social-icon {
    background-color: #d4d4d4
}

.footer.footer2 .footer-logo {
    margin-bottom: 16px
}

.footer.footer2 .footer-bottom {
    background-color: transparent;
    padding: 38px 0 42px
}

.footer.footer2 .footer-bottom.text-center .payment-info {
    max-width: 400px;
    margin: 0 auto
}

.footer.footer3 {
    background-color: #6e7172;
    color: #e4e4e2
}

.footer.footer3 a {
    color: #e4e4e4
}

.footer.footer3 a:hover,
.footer.footer3 a:focus {
    color: #f3dbce
}

.footer.footer3 .widget .widget-title {
    color: #f5f5f5
}

.footer.footer3 .widget .contact-list li .info-icon {
    background-color: #7d7f80
}

.footer.footer3 .footer-roof {
    padding: 27px 0 0;
    background-color: #f6f6f6
}

.footer.footer3 .footer-roof .widget {
    margin-bottom: 24px
}

@media(min-width:1600px) {
    .footer.footer3 .footer-roof .widget .info-box.border-left:before {
        left: -61px
    }
}

@media(min-width:1920px) {
    .footer.footer3 .footer-roof .widget .info-box.border-left:before {
        left: -78px
    }
}

.footer.footer3 .footer-top {
    background-color: #fff
}

@media(min-width:992px) {
    .footer.footer3 .footer-top {
        padding: 80px 0 25px
    }
}

.footer.footer3 .footer-top .widget {
    position: relative;
    overflow: hidden;
    padding-top: 8px
}

.footer.footer3 .footer-top .widget .widget-title {
    color: #585858;
    margin-bottom: 36px
}

.footer.footer3 .footer-top .widget .swiper-container,
.footer.footer3 .footer-top .widget .swiper-wrapper {
    overflow: visible !important
}

.footer.footer3 .footer-top .widget .swiper-button-prev,
.footer.footer3 .footer-top .widget .swiper-button-next {
    top: -59px
}

.footer.footer3 .footer-bottom {
    background-color: #6b6e6f;
    color: #afb1b1
}

@media(min-width:992px) {
    .footer.footer3 .footer-bottom {
        padding: 27px 0
    }
}

@media(max-width:767px) {
    .footer.footer3 .footer-bottom .footer-menu li {
        border-bottom-color: #7d7f80
    }
}

@media(max-width:767px) {
    .footer.footer3 .footer-bottom .footer-menu li:first-child {
        border-top-color: #7d7f80
    }
}

.footer.footer3 .footer-bottom .footer-menu li+li:before {
    color: #afb1b1
}

.footer.footer3 .footer-bottom a {
    color: #afb1b1
}

.footer.footer3 .footer-bottom a:hover,
.footer.footer3 .footer-bottom a:focus {
    color: #f3dbce
}

.footer.footer3 .footer-bottom .payment-info h5 {
    color: #dadadb
}

.footer.footer3 .footer-bottom .payment-info img {
    opacity: 1
}

.footer.footer4 {
    background-color: #363c3f;
    color: #d6d6d6
}

.footer.footer4 a {
    color: #d6d6d6
}

.footer.footer4 a:hover,
.footer.footer4 a:focus {
    color: #f3dbce
}

.footer.footer4 .custombg-widget-wrapper {
    position: relative;
    padding: 0 0 1px;
    color: #fff;
    margin-bottom: 50px
}

@media(min-width:992px) {
    .footer.footer4 .custombg-widget-wrapper {
        padding: 0 20px;
        padding-bottom: 0;
        margin-bottom: 0
    }
}

.footer.footer4 .custombg-widget-wrapper:before {
    content: '';
    position: absolute;
    left: -60px;
    width: 3000px;
    top: -73px;
    right: -60px;
    bottom: 0;
    background-color: #81ccfc;
    z-index: 0
}

@media(min-width:992px) {
    .footer.footer4 .custombg-widget-wrapper:before {
        width: auto;
        top: -73px;
        height: 2000px;
        left: 0;
        right: 0;
        bottom: auto
    }
}

.footer.footer4 .custombg-widget-wrapper a {
    color: #fff
}

.footer.footer4 .custombg-widget-wrapper a:hover,
.footer.footer4 .custombg-widget-wrapper a:focus {
    color: #7ccbfb
}

@media(min-width:992px) {
    .footer.footer4 .custombg-widget-wrapper {
        padding-top: 7px
    }
}

@media(min-width:1600px) {
    .footer.footer4 .custombg-widget-wrapper {
        padding-right: 60px;
        padding-left: 40px
    }
}

.footer.footer4 .custombg-widget-wrapper .widget {
    position: relative;
    z-index: 1;
    margin-bottom: 50px
}

@media(min-width:992px) {
    .footer.footer4 .custombg-widget-wrapper .widget:first-child {
        margin-bottom: 80px
    }
}

@media(min-width:1600px) {
    .footer.footer4 .custombg-widget-wrapper .widget:first-child {
        margin-bottom: 95px
    }
}

.footer.footer4 .custombg-widget-wrapper .widget .widget-title {
    color: #fff;
    padding-top: 0;
    margin-bottom: 24px
}

.footer.footer4 .custombg-widget-wrapper .widget .footer-logo {
    margin-bottom: 32px
}

.footer.footer4 .custombg-widget-wrapper .widget .img-responsive {
    margin-bottom: 40px
}

@media(min-width:1600px) {
    .footer.footer4 .custombg-widget-wrapper .widget .img-responsive {
        margin-bottom: 60px
    }
}

.footer.footer4 .custombg-widget-wrapper .widget .contact-list li {
    font-size: 14px;
    overflow: visible;
    line-height: 16px;
    padding-left: 52px;
    margin-bottom: 15px
}

@media(min-width:1600px) {
    .footer.footer4 .custombg-widget-wrapper .widget .contact-list li {
        font-size: 15px;
        margin-bottom: 20px
    }
}

.footer.footer4 .custombg-widget-wrapper .widget .contact-list li .info-icon {
    width: 36px;
    height: 36px;
    border: 2px solid #7ccbfb;
    background-color: #7ccbfb;
    margin-right: 15px
}

.footer.footer4 .widget {
    margin-bottom: 50px;
    overflow: hidden
}

@media(min-width:768px) {
    .footer.footer4 .widget {
        margin-bottom: 60px
    }
}

@media(min-width:992px) {
    .footer.footer4 .widget {
        margin-bottom: 70px
    }
}

.footer.footer4 .widget .widget-title {
    color: #dedede;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 34px;
    padding-top: 10px
}

.footer.footer4 .widget .widget-title.bordered {
    position: relative;
    margin-bottom: 15px
}

.footer.footer4 .widget .widget-title.bordered span {
    position: relative;
    z-index: 1;
    padding-right: 10px;
    background-color: #363c3f
}

.footer.footer4 .widget .widget-title.bordered:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 6px;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 0
}

.footer.footer4 .widget .swiper-container,
.footer.footer4 .widget .swiper-wrapper {
    overflow: visible !important
}

.footer.footer4 .widget .swiper-button-prev,
.footer.footer4 .widget .swiper-button-next {
    top: -59px;
    border-color: #cdcdcd
}

.footer.footer4 .widget .swiper-button-prev:hover,
.footer.footer4 .widget .swiper-button-prev:focus,
.footer.footer4 .widget .swiper-button-next:hover,
.footer.footer4 .widget .swiper-button-next:focus {
    background-color: #f3dbce;
    border-color: #f3dbce
}

.footer.footer4 .widget .swiper-button-prev {
    right: 30px
}

@media(min-width:1600px) {
    .footer.footer4 .widget .swiper-button-prev {
        right: 65px
    }
}

.footer.footer4 .widget .swiper-button-next {
    right: 0
}

@media(min-width:1600px) {
    .footer.footer4 .widget .swiper-button-next {
        right: 37px
    }
}

.footer.footer4 .widget .contact-list li .info-icon {
    background-color: #7d7f80
}

.footer.footer4 .widget .products-list .product {
    border-color: rgba(255, 255, 255, 0.03);
    padding-bottom: 20px;
    margin-bottom: 20px
}

.footer.footer4 .widget .products-list .product:last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

.footer.footer4 .widget .products-list .product-title a {
    color: #d6d6d6
}

.footer.footer4 .widget .products-list .product-title a:hover,
.footer.footer4 .widget .products-list .product-title a:focus {
    color: #f3dbce
}

.footer.footer4 .widget .products-list .product-price-container {
    font-family: "Fira Sans", Arial, sans-serif;
    color: #afafaf
}

.footer.footer4 .widget .products-list .product-price-container .product-old-price {
    font-size: 14px;
    font-weight: 400
}

.footer.footer4 .widget .products-list .product-price-container .product-price {
    font-size: 16px;
    font-weight: 500;
    color: #73c6fc
}

.footer.footer4 .widget .tweets-list li {
    color: inherit
}

.footer.footer4 .widget .tweets-list li a {
    color: #9dd6fb
}

.footer.footer4 .widget .tweets-list li a:hover,
.footer.footer4 .widget .tweets-list li a:focus {
    color: #f3dbce
}

@media(min-width:1600px) {
    .footer.footer4 .widget .tweets-list li:not(:last-child) {
        margin-bottom: 56px
    }
}

.footer.footer4 .widget .tweets-list li .tweet-top .tweet-user h5 a {
    color: #dbdbdb
}

.footer.footer4 .widget .tweets-list li .tweet-top .tweet-user h5 a:hover,
.footer.footer4 .widget .tweets-list li .tweet-top .tweet-user h5 a:focus {
    color: #f3dbce
}

.footer.footer4 .widget .tweets-list li .tweet-top .tweet-user p a {
    color: #afafaf
}

.footer.footer4 .widget .tweets-list li .tweet-top .tweet-user p a:hover,
.footer.footer4 .widget .tweets-list li .tweet-top .tweet-user p a:focus {
    color: #f3dbce
}

.footer.footer4 .widget .tweets-list li .tweet-date {
    color: #afafaf
}

.footer.footer4 .widget.contact-widget .input-desc {
    color: #bfbfbf
}

.footer.footer4 .widget.contact-widget .form-group {
    margin-bottom: 10px
}

.footer.footer4 .widget.contact-widget .form-group:last-of-type {
    margin-bottom: 25px
}

.footer.footer4 .widget.contact-widget .form-group.label-overlay {
    background-color: transparent
}

.footer.footer4 .widget.contact-widget .form-group.label-overlay label {
    background-color: #363c3f
}

.footer.footer4 .widget.contact-widget .form-control {
    color: #bfbfbf;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1)
}

.footer.footer4 .widget.contact-widget .btn {
    font-size: 14px;
    padding: 11px 19px 8px
}

.footer.footer4 .widget .links {
    margin-top: 0
}

.footer.footer4 .widget .links li {
    font-size: 14px;
    text-transform: capitalize
}

.footer.footer4 .widget.newsletter-widget p {
    padding-top: 7px;
    margin-bottom: 24px
}

.footer.footer4 .widget.newsletter-widget .text-custom {
    color: #9dd6fb !important
}

.footer.footer4 .widget.newsletter-widget .form-control {
    background-color: transparent;
    color: #d6d6d6;
    border-color: #fff
}

.footer.footer4 .widget.newsletter-widget .form-control::-webkit-input-placeholder {
    color: #d6d6d6
}

.footer.footer4 .widget.newsletter-widget .form-control::-moz-placeholder {
    color: #d6d6d6
}

.footer.footer4 .widget.newsletter-widget .form-control:-ms-input-placeholder {
    color: #d6d6d6
}

.footer.footer4 .widget.newsletter-widget .form-control::placeholder {
    color: #d6d6d6
}

.footer.footer4 .footer-inner {
    padding: 68px 0 0;
    overflow: hidden
}

.footer.footer4 .footer-bottom {
    background-color: #eaeaea;
    color: #a8a8a8
}

@media(min-width:992px) {
    .footer.footer4 .footer-bottom {
        padding: 25px 0 13px
    }
}

.footer.footer4 .footer-bottom img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    opacity: 1;
    margin-bottom: 20px
}

@media(min-width:992px) {
    .footer.footer4 .footer-bottom img {
        margin-bottom: 13px
    }
}

.footer.footer4 .footer-bottom img:hover,
.footer.footer4 .footer-bottom img:focus {
    opacity: 1
}

.footer.footer4 .footer-bottom .footer-left {
    margin-bottom: 13px
}

@media(min-width:992px) {
    .footer.footer4 .footer-bottom .footer-left {
        margin-bottom: 0
    }
}

@media(max-width:767px) {
    .footer.footer4 .footer-bottom .footer-menu li {
        border-bottom-color: #d0d0d0
    }
}

@media(max-width:767px) {
    .footer.footer4 .footer-bottom .footer-menu li:first-child {
        border-top-color: #d0d0d0
    }
}

.footer.footer4 .footer-bottom .footer-menu li+li:before {
    color: #d0d0d0
}

.footer.footer4 .footer-bottom a {
    color: #a8a8a8
}

.footer.footer4 .footer-bottom a:hover,
.footer.footer4 .footer-bottom a:focus {
    color: #f3dbce
}

.footer.footer4 .footer-bottom .payment-info {
    margin-top: 8px
}

@media(min-width:992px) {
    .footer.footer4 .footer-bottom .payment-info {
        margin-top: 23px
    }
}

@media(min-width:1600px) {
    .footer.footer4 .footer-bottom .payment-info {
        margin-top: 18px
    }
}

@media(min-width:1600px) {
    .footer.footer4 .footer-bottom .payment-info {
        font-size: 15px
    }
}

.footer.footer4 .footer-bottom .payment-info p {
    margin-bottom: 18px
}

@media(min-width:992px) {
    .footer.footer4 .footer-bottom .payment-info p {
        margin-bottom: 0
    }
}

.footer.footer4 .footer-bottom .payment-info h5 {
    color: #a8a8a8
}

@media(min-width:1600px) {
    .footer.footer4 .footer-bottom .payment-info h5 {
        font-size: 16px
    }
}

.footer.footer4 .scroll-top {
    margin-top: 0
}

@media(min-width:768px) {
    .footer.footer4 .scroll-top {
        bottom: 80px;
        right: 20px;
        margin-top: 0
    }
}

.footer.footer5 {
    background-color: #fff;
    color: #999
}

.footer.footer5 .footer-newsletter {
    color: #888;
    background-color: #f2f2f2;
    background-image: url("/Assets/images/noice-bg.jpg");
    background-repeat: repeat;
    border-bottom: 1px solid #eaeaea
}

.footer.footer5 .footer-newsletter h4 {
    color: #484848
}

.footer.footer5 .footer-newsletter .form-control {
    background-color: #fff;
    color: #555
}

.footer.footer5 .footer-newsletter .form-control::-webkit-input-placeholder {
    color: #555
}

.footer.footer5 .footer-newsletter .form-control::-moz-placeholder {
    color: #555
}

.footer.footer5 .footer-newsletter .form-control:-ms-input-placeholder {
    color: #555
}

.footer.footer5 .footer-newsletter .form-control::placeholder {
    color: #555
}

.footer.footer5 .widget .widget-title {
    color: #888
}

.footer.footer5 .widget .call-list li {
    color: #7d7c7c
}

.footer.footer5 .footer-top {
    line-height: 0;
    padding: 29px 0 0;
    background-color: #f2f2f2
}

.footer.footer5 .footer-top .widget {
    margin-bottom: 23px
}

@media(min-width:992px) {}

.footer.footer5 .social-icons .social-icon {
    background-color: #d4d4d4
}

.footer.footer5 .footer-logo {
    margin-bottom: 16px
}

.footer.footer5 .footer-bottom {
    background-color: transparent;
    padding: 38px 0 42px
}

.footer.footer5 .footer-bottom.text-center .payment-info {
    max-width: 400px;
    margin: 0 auto
}

.footer.footer6 {
    background-color: #3b3c3d;
    color: #c5c5c5
}

.footer.footer6 a {
    color: #c5c5c5
}

.footer.footer6 a:hover,
.footer.footer6 a:focus {
    color: #f3dbce
}

.footer.footer6 .footer-newsletter {
    color: #888;
    background-color: #f2f2f2
}

@media(min-width:768px) {
    .footer.footer6 .footer-newsletter {
        padding-top: 43px;
        padding-bottom: 36px
    }
}

.footer.footer6 .footer-newsletter h4 {
    color: #484848;
    font-weight: 400
}

@media(min-width:768px) {
    .footer.footer6 .footer-newsletter h4 {
        margin-bottom: 13px
    }
}

@media(min-width:992px) {
    .footer.footer6 .footer-newsletter h4 {
        font-size: 38px
    }
}

.footer.footer6 .footer-newsletter .form-control {
    background-color: #fff;
    color: #555
}

.footer.footer6 .footer-newsletter .form-control::-webkit-input-placeholder {
    color: #555
}

.footer.footer6 .footer-newsletter .form-control::-moz-placeholder {
    color: #555
}

.footer.footer6 .footer-newsletter .form-control:-ms-input-placeholder {
    color: #555
}

.footer.footer6 .footer-newsletter .form-control::placeholder {
    color: #555
}

.footer.footer6 .footer-newsletter .btn.btn-custom {
    background-color: #5ccbff;
    border-color: #5ccbff
}

.footer.footer6 .footer-newsletter .btn.btn-custom:hover,
.footer.footer6 .footer-newsletter .btn.btn-custom:focus {
    background-color: #f3dbce;
    border-color: #f3dbce;
    border-radius: 28px !important
}

.footer.footer6 .footer-newsletter .btn.btn-custom:hover .icon-btn-arrow,
.footer.footer6 .footer-newsletter .btn.btn-custom:focus .icon-btn-arrow {
    background-position: 0 -5366px
}

.footer.footer6 .widget .widget-title {
    color: #d9d9d9
}

.footer.footer6 .widget .contact-list li {
    margin-bottom: 23px
}

.footer.footer6 .widget .contact-list li .info-icon {
    background-color: #4f5051
}

.footer.footer6 .footer-inner {
    padding: 70px 0 10px
}

@media(min-width:992px) {
    .footer.footer6 .footer-inner {
        padding: 88px 0 12px
    }
}

.footer.footer6 .social-icons .social-icon {
    background-color: #4f5051
}

.footer.footer6 .footer-logo {
    margin-bottom: 16px
}

.footer.footer6 .footer-bottom {
    background-color: transparent;
    padding: 38px 0 42px;
    color: #959494
}

.footer.footer6 .footer-bottom a {
    color: #959494
}

.footer.footer6 .footer-bottom a:hover,
.footer.footer6 .footer-bottom a:focus {
    color: #f3dbce
}

.footer.footer6 .footer-bottom.text-center .payment-info {
    max-width: 400px;
    margin: 0 auto
}

.footer.footer6 .footer-bottom .payment-info img {
    opacity: .85
}

.footer.footer6 .footer-bottom .payment-info img:hover,
.footer.footer6 .footer-bottom .payment-info img:Focus {
    opacity: 1
}

.footer.footer7 {
    background-color: #fcfcfc;
    color: #888
}

.footer.footer7 a {
    color: #888
}

.footer.footer7 a:hover,
.footer.footer7 a:focus {
    color: #f3dbce
}

.footer.footer7 .widget .widget-title {
    color: #777
}

.footer.footer7 .widget .links {
    margin-top: -7px
}

.footer.footer7 .widget .links li {
    font-size: 14px;
    line-height: 32px;
    text-transform: capitalize
}

.footer.footer7 .widget .contact-list li {
    font-size: 14px
}

.footer.footer7 .widget .contact-list li .info-icon {
    background-color: transparent;
    border: 1px solid #c6c6c6
}

.footer.footer7 .widget.facebook-widget .btn-dark.btn-border {
    color: #555;
    border-color: #555
}

.footer.footer7 .widget.facebook-widget .btn-dark.btn-border:hover,
.footer.footer7 .widget.facebook-widget .btn-dark.btn-border:focus {
    background-color: transparent;
    border-color: #f3dbce;
    color: #f3dbce;
    border-radius: 28px !important
}

.footer.footer7 .footer-inner {
    padding: 65px 0 10px
}

@media(min-width:992px) {
    .footer.footer7 .footer-inner {
        padding: 88px 0 27px
    }
}

.footer.footer7 .footer-logo {
    margin-bottom: 16px
}

.footer.footer7 .footer-bottom {
    background-color: transparent;
    padding: 38px 0 42px;
    color: #a8a8a8
}

.footer.footer7 .footer-bottom a {
    color: #a8a8a8
}

.footer.footer7 .footer-bottom a:hover,
.footer.footer7 .footer-bottom a:focus {
    color: #f3dbce
}

.footer.footer7 .footer-bottom.text-center .payment-info {
    max-width: 400px;
    margin: 0 auto
}

.footer.footer7 .footer-bottom .payment-info img {
    opacity: .25
}

.footer.footer7 .footer-bottom .payment-info img:hover,
.footer.footer7 .footer-bottom .payment-info img:Focus {
    opacity: .75
}

.coming-soon {
    background-image: url("/Assets/images/coming-soonbg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: #484f52;
    font: 400 16px/1.25 "Open Sans", sans-serif
}

@media(min-width:1200px) {
    .coming-soon {
        font-size: 17px
    }
}

@media(min-width:1600px) {
    .coming-soon {
        font-size: 19px
    }
}

.coming-soon .soon-content {
    padding-top: 50%
}

@media(min-width:768px) {
    .coming-soon .soon-content {
        padding-top: 72%;
        padding-left: 0
    }
}

@media(min-width:992px) {
    .coming-soon .soon-content {
        padding-top: 50%;
        padding-left: 45px
    }
}

@media(min-width:1440px) {
    .coming-soon .soon-content {
        padding-left: 80px
    }
}

@media(min-width:1600px) {
    .coming-soon .soon-content {
        padding-left: 100px
    }
}

.coming-soon h1 {
    color: #fff;
    font: 700 42px/0.9 "Fira Sans", Arial, sans-serif;
    text-shadow: 0 4px 1px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 20px
}

@media(min-width:768px) {
    .coming-soon h1 {
        font-size: 42px;
        margin-bottom: 16px
    }
}

@media(min-width:1200px) {
    .coming-soon h1 {
        font-size: 72px;
        margin-bottom: 18px
    }
}

@media(min-width:1440px) {
    .coming-soon h1 {
        font-size: 88px
    }
}

@media(min-width:1600px) {
    .coming-soon h1 {
        font-size: 110px;
        margin-bottom: 21px
    }
}

.coming-soon p {
    max-width: 420px;
    margin-bottom: 28px;
    letter-spacing: .05em
}

@media(min-width:768px) {
    .coming-soon p {
        margin-bottom: 24px
    }
}

@media(min-width:1200px) {
    .coming-soon p {
        font-size: 17px;
        margin-bottom: 28px
    }
}

@media(min-width:1600px) {
    .coming-soon p {
        max-width: 480px;
        margin-bottom: 38px
    }
}

.coming-soon .coming-countdown {
    max-width: 420px
}

@media(min-width:1200px) {
    .coming-soon .coming-countdown {
        max-width: 480px
    }
}

@media(min-width:1600px) {
    .coming-soon .coming-countdown {
        max-width: 580px
    }
}

.coming-soon .countdown-rtl {
    direction: rtl
}

.coming-soon .countdown-row {
    clear: both;
    width: 100%;
    padding: 0
}

.coming-soon .countdown-show1 .countdown-section {
    width: 98%
}

.coming-soon .countdown-show2 .countdown-section {
    width: 48%
}

.coming-soon .countdown-show3 .countdown-section {
    width: 32.5%
}

.coming-soon .countdown-show4 .countdown-section {
    width: 24.5%
}

.coming-soon .countdown-show5 .countdown-section {
    width: 19.5%
}

.coming-soon .countdown-show6 .countdown-section {
    width: 16.25%
}

.coming-soon .countdown-show7 .countdown-section {
    width: 14%
}

.coming-soon .countdown-section {
    display: block;
    float: left;
    font-family: "Fira Sans", Arial, sans-serif;
    color: #044657
}

.coming-soon .countdown-amount {
    font-size: 36px;
    line-height: 1
}

@media(min-width:768px) {
    .coming-soon .countdown-amount {
        font-size: 48px
    }
}

@media(min-width:1200px) {
    .coming-soon .countdown-amount {
        font-size: 60px
    }
}

@media(min-width:1440px) {
    .coming-soon .countdown-amount {
        font-size: 72px
    }
}

@media(min-width:1600px) {
    .coming-soon .countdown-amount {
        font-size: 80px
    }
}

.coming-soon .countdown-period {
    display: block;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 6px
}

@media(min-width:992px) {
    .coming-soon .countdown-period {
        font-size: 15px
    }
}

@media(min-width:1200px) {
    .coming-soon .countdown-period {
        padding-left: 4px
    }
}

@media(min-width:1440px) {
    .coming-soon .countdown-period {
        font-size: 16px;
        margin-top: 10px
    }
}

@media(min-width:1600px) {
    .coming-soon .countdown-period {
        font-size: 17px;
        padding-left: 12px
    }
}

.coming-soon .countdown-descr {
    display: block;
    width: 100%
}

.category-list ul {
    display: none
}

.btn-product-like-active {
    opacity: 1 !important;
    visibility: visible !important;
    border-color: #ed4e24 !important;
    background-color: #ed4e24 !important;
    display: inline-block !important;
    background-position: 0 -5240px !important
}

.mini-basket-close {
    position: relative;
    float: right;
    cursor: pointer
}

.fw-b {
    font-weight: bold
}

.ta-c {
    text-align: center
}

.ta-r {
    text-align: right
}

.pd-0 {
    padding: 0
}

.product-vertical-gallery-carousel .vcwslick-arrowup,
.product-vertical-gallery-carousel .vcwslick-arrowdown {
    width: 100%;
    text-align: center
}

.ui-autocomplete.ui-front.ui-menu {
    background: #fff;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    margin-top: 4px;
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto
}

.ui-autocomplete.ui-front.ui-menu .ui-menu-item {
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
    cursor: pointer
}

.product-shippingdateresult td {
    padding: 15px 10px !important
}

.product-shippingdateresult td.fw-b {
    text-align: left
}

.product-sshippingdate {
    display: none;
    background: #fff;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    position: relative;
    font-size: 14px
}

.product-sshippingdate .product-sshippingdatedelete {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -6px;
    height: 12px
}

.product-sshippingdatedelete .delete-btn {
    display: block
}

.asp-title {
    position: relative
}

.asp-newaddress {
    position: absolute;
    right: 20px;
    bottom: 20px
}

@media(max-width:767px) {
    .asp-newaddress {
        position: initial
    }
}

.ui-autocomplete::-webkit-scrollbar {
    width: 6px
}

.ui-autocomplete::-webkit-scrollbar-track {
    background: transparent
}

.ui-autocomplete::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: rgba(0, 0, 0, .5);
    border: 1px solid #FFF
}

.product-shippingdatesinput[disabled] {
    background-color: initial
}

.container {
    width: 100%
}

.progressbar li span {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #4d4d4d
}

.progressbar li.active span {
    color: #888
}

.progressbar li {
    list-style: none;
    display: inline-block;
    width: 30.33%;
    position: relative;
    text-align: center;
    cursor: pointer
}

.progressbar li:before {
    width: 34px;
    height: 33px;
    line-height: 30px;
    border: 2px solid #4d4d4d;
    border-radius: 50%;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    background-color: #fff;
    position: relative;
    z-index: 2
}

.progressbar li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #4d4d4d;
    top: 15px;
    left: -50%;
    z-index: 1
}

.progressbar li:first-child:after {
    content: none
}

.progressbar li.active {
    color: #888
}

.progressbar li.active:before {
    border-color: #888
}

.progressbar li.active+li:after {
    background-color: #888
}

.progressbar li:first-child:before {
    content: "\f06b"
}

.progressbar li:nth-child(2):before {
    color: #4d4d4d;
    content: "\f195"
}

.progressbar li.active:nth-child(2):before {
    color: #888
}

.progressbar li:nth-child(3):before {
    color: #4d4d4d;
    content: "\f09d"
}

.progressbar li.active:nth-child(3):before {
    color: #888
}

.polaroid-note {
    background-color: #eee;
    width: 100%;
    padding: 20px 0 15px 0;
    border-radius: 5px
}

.video-note {
    background-color: #eee;
    width: 100%;
    padding: 20px 0 15px 0;
    border-radius: 5px
}

.xtra-product {
    background-color: #eee;
    width: 100%;
    padding: 10px 0 10px 0;
    border-radius: 5px
}

.polaroid-note-text {
    margin-bottom: 0 !important
}

.polaroid-note-text li {
    white-space: initial;
    color: #888;
    font: 400 13px/1.625 "Open Sans", sans-serif;
    letter-spacing: -0.5px
}

@media(max-width:480px) {
    .slim-editor-utils-group {
        padding: 0 !important
    }

    .photoNotePreviewContainer {
        overflow: inherit !important;
        display: block !important
    }
}

.photoNotePreviewContainer {
    width: 100%;
    overflow-x: visible;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    text-align: center
}

.photoNotePreviewContainer div {
    max-width: 230px;
    padding: 15px;
    box-shadow: 2px 2px 4px #777;
    -webkit-box-shadow: 2px 2px 4px #777;
    -moz-box-shadow: 2px 2px 4px #777;
    margin: 4px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px
}

.selectedFrame {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    border: 2px solid #4d4d4d
}

@media(min-width:768px) {

    .modal-dialog,
    .photoNoteFrames {
        width: 600px !important
    }
}

.nav-tabs>li {
    float: none;
    display: inline-block;
    zoom: 1
}

.nav-tabs {
    text-align: center
}

* {
    touch-action: manipulation
}

.product-column {
    -webkit-user-select: none;
    -webkit-touch-callout: none
}

#fade {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: .8;
    opacity: .80;
    filter: alpha(opacity=80)
}

#light {
    display: none;
    position: absolute;
    margin: 0 auto;
    z-index: 1002;
    overflow: visible
}

#boxclose {
    float: right;
    cursor: pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 3px;
    background: #222;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0;
    padding: 11px 3px;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 1002;
    opacity: .9
}

.boxclose:before {
    content: "×"
}

#fade:hover~#boxclose {
    display: none
}

.fr-window,
.fr-window [class^="fr-"],
.fr-overlay,
.fr-overlay [class^="fr-"],
.fr-spinner,
.fr-spinner [class^="fr-"] {
    box-sizing: border-box
}

.fr-window {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font: 13px/20px "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, sans-serif;
    transform: translateZ(0px)
}

.fr-overlay {
    z-index: 99998
}

.fr-window {
    z-index: 99999
}

.fr-spinner {
    z-index: 100000
}

.fr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.fr-overlay-background {
    float: left;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .9;
    filter: alpha(opacity=90)
}

.fr-overlay-ui-fullclick .fr-overlay-background {
    background: #292929;
    opacity: 1;
    filter: alpha(opacity=100)
}

.fr-window.fr-mobile-touch,
.fr-overlay.fr-mobile-touch {
    position: absolute;
    overflow: visible
}

.fr-measured {
    margin: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important
}

.fr-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fr-pages {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fr-page {
    position: absolute;
    width: 100%;
    height: 100%
}

.fr-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    text-align: center
}

.fr-hovering-clickable .fr-container {
    cursor: pointer
}

.fr-ui-inside .fr-container {
    padding: 20px 20px
}

.fr-ui-inside.fr-no-sides .fr-container {
    padding: 20px
}

.fr-ui-outside .fr-container {
    padding: 20px 82px
}

.fr-ui-outside.fr-no-sides .fr-container {
    padding: 20px 48px
}

@media all and (max-width:700px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:700px) {
    .fr-ui-inside .fr-container {
        padding: 12px 12px
    }

    .fr-ui-inside.fr-no-sides .fr-container {
        padding: 12px
    }

    .fr-ui-outside .fr-container {
        padding: 12px 72px
    }

    .fr-ui-outside.fr-no-sides .fr-container {
        padding: 12px 48px
    }
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:500px) {
    .fr-ui-inside .fr-container {
        padding: 0
    }

    .fr-ui-inside.fr-no-sides .fr-container {
        padding: 0
    }

    .fr-ui-outside .fr-container {
        padding: 0 72px
    }

    .fr-ui-outside.fr-no-sides .fr-container {
        padding: 0 48px
    }
}

.fr-ui-fullclick .fr-container {
    padding: 0
}

.fr-ui-fullclick.fr-no-sides .fr-container {
    padding: 0
}

.fr-ui-fullclick.fr-type-video .fr-container {
    padding: 0 62px
}

.fr-ui-fullclick.fr-no-sides.fr-type-video .fr-container {
    padding: 48px 0
}

.fr-overflow-y .fr-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.fr-content,
.fr-content-background {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: visible
}

.fr-content-element {
    float: left;
    width: 100%;
    height: 100%
}

.fr-content-background {
    background: #101010
}

.fr-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #efefef;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

.fr-info-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    line-height: 1%;
    filter: none;
    opacity: 1
}

.fr-ui-inside .fr-info-background {
    filter: alpha(opacity=80);
    opacity: .8;
    zoom: 1
}

.fr-ui-outside .fr-info-background {
    background: #0d0d0d
}

.fr-content .fr-info {
    top: auto;
    bottom: 0
}

.fr-info-padder {
    display: block;
    overflow: hidden;
    padding: 12px;
    position: relative;
    width: auto
}

.fr-caption {
    width: auto;
    display: inline
}

.fr-position {
    color: #b3b3b3;
    float: right;
    line-height: 21px;
    opacity: .99;
    position: relative;
    text-align: right;
    margin-left: 15px;
    white-space: nowrap
}

.fr-position-outside,
.fr-position-inside {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 12px;
    width: auto;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 20px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    display: none;
    overflow: hidden;
    white-space: nowrap;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

.fr-position-inside {
    border: 0
}

.fr-position-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    filter: alpha(opacity=80);
    opacity: .8;
    zoom: 1
}

.fr-position-text {
    color: #b3b3b3
}

.fr-position-outside .fr-position-text,
.fr-position-inside .fr-position-text {
    float: left;
    position: relative;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    opacity: 1
}

.fr-ui-outside .fr-position-outside {
    display: block
}

.fr-ui-outside .fr-info .fr-position {
    display: none
}

.fr-ui-inside.fr-no-caption .fr-position-inside {
    display: block
}

.fr-info a,
.fr-info a:hover {
    color: #ccc;
    border: 0;
    background: 0;
    text-decoration: underline
}

.fr-info a:hover {
    color: #eee
}

.fr-ui-outside.fr-no-caption .fr-info {
    display: none
}

.fr-ui-inside.fr-no-caption .fr-caption {
    display: none
}

.fr-stroke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px
}

.fr-stroke-vertical {
    width: 1px;
    height: 100%
}

.fr-stroke-horizontal {
    padding: 0 1px
}

.fr-stroke-right {
    left: auto;
    right: 0
}

.fr-stroke-bottom {
    top: auto;
    bottom: 0
}

.fr-stroke-color {
    float: left;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08)
}

.fr-info .fr-stroke-color {
    background: rgba(80, 80, 80, 0.3)
}

.fr-ui-outside.fr-has-caption .fr-content .fr-stroke-bottom {
    display: none
}

.fr-ui-fullclick .fr-stroke {
    display: none
}

.fr-ui-fullclick .fr-content-background {
    box-shadow: none
}

.fr-info .fr-stroke-top {
    display: none
}

.fr-side {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 72px;
    margin: 0 9px;
    margin-top: -36px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    zoom: 1
}

.fr-side-previous {
    left: 0
}

.fr-side-next {
    right: 0;
    left: auto
}

.fr-side-disabled {
    cursor: default
}

.fr-side-hidden {
    display: none !important
}

.fr-side-button {
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0
}

.fr-side-button-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #101010
}

.fr-side-button-icon {
    float: left;
    position: relative;
    height: 100%;
    width: 100%;
    zoom: 1;
    background-position: 50% 50%;
    background-repeat: no-repeat
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:414px) {
    .fr-side {
        width: 54px;
        height: 60px;
        margin: 0;
        margin-top: -30px
    }

    .fr-side-button {
        width: 48px;
        height: 60px;
        margin: 0 3px
    }
}

.fr-close {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 0;
    right: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.fr-close-background,
.fr-close-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 26px;
    width: 26px;
    background-position: 50% 50%;
    background-repeat: no-repeat
}

.fr-close-background {
    background-color: #000
}

.fr-thumbnails {
    position: absolute;
    overflow: hidden
}

.fr-thumbnails-disabled .fr-thumbnails {
    display: none !important
}

.fr-thumbnails-horizontal .fr-thumbnails {
    width: 100%;
    height: 12%;
    min-height: 74px;
    max-height: 160px;
    bottom: 0
}

.fr-thumbnails-vertical .fr-thumbnails {
    height: 100%;
    width: 10%;
    min-width: 74px;
    max-width: 160px;
    left: 0
}

.fr-thumbnails,
.fr-thumbnails * {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fr-thumbnails-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%
}

.fr-thumbnails-vertical .fr-thumbnails-wrapper {
    top: 50%;
    left: 0
}

.fr-thumbnails-slider {
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
    zoom: 1
}

.fr-thumbnails-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%
}

.fr-thumbnails-thumbs {
    float: left;
    height: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0
}

.fr-thumbnails-slide {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%
}

.fr-thumbnail-frame {
    position: absolute;
    zoom: 1;
    overflow: hidden
}

.fr-thumbnail {
    position: absolute;
    width: 30px;
    height: 100%;
    left: 50%;
    top: 50%;
    zoom: 1;
    cursor: pointer;
    margin: 0 10px
}

.fr-ltIE9 .fr-thumbnail * {
    overflow: hidden;
    z-index: 1;
    zoom: 1
}

.fr-thumbnail-wrapper {
    position: relative;
    background: #161616;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    display: inline;
    z-index: 0
}

.fr-thumbnail-overlay {
    cursor: pointer
}

.fr-thumbnail-active .fr-thumbnail-overlay {
    cursor: default
}

.fr-thumbnail-overlay,
.fr-thumbnail-overlay-background,
.fr-thumbnail-overlay-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    overflow: hidden;
    border-style: solid;
    border-color: transparent
}

.fr-ltIE9 .fr-thumbnail-overlay-border {
    border-width: 0 !important
}

.fr-thumbnail .fr-thumbnail-image {
    position: absolute;
    filter: alpha(opacity=85);
    opacity: .85;
    max-width: none
}

.fr-thumbnail:hover .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
    filter: alpha(opacity=99);
    opacity: .99
}

.fr-thumbnail-active .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
    filter: alpha(opacity=35);
    opacity: .35
}

.fr-thumbnail-active {
    cursor: default
}

.fr-thumbnail-loading,
.fr-thumbnail-loading-background,
.fr-thumbnail-loading-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fr-thumbnail-loading-background {
    background-color: #161616;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: .8;
    position: relative;
    float: left
}

.fr-thumbnail-loading-icon {
    display: none
}

.fr-thumbnail-error .fr-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #202020
}

.fr-thumbnails-side {
    float: left;
    height: 100%;
    width: 28px;
    margin: 0 5px;
    position: relative;
    overflow: hidden
}

.fr-thumbnails-side-previous {
    margin-left: 12px
}

.fr-thumbnails-side-next {
    margin-right: 12px
}

.fr-thumbnails-vertical .fr-thumbnails-side {
    height: 28px;
    width: 100%;
    margin: 10px 0
}

.fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 20px
}

.fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 20px
}

.fr-thumbnails-side-button {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -14px;
    width: 28px;
    height: 28px;
    cursor: pointer
}

.fr-thumbnails-side-button-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    filter: alpha(opacity=80);
    opacity: .8;
    -moz-transition: background-color .2s ease-in;
    -webkit-transition: background-color .2s ease-in;
    transition: background-color .2s ease-in;
    background-color: #333;
    cursor: pointer;
    border-radius: 4px
}

.fr-thumbnails-side-button:hover .fr-thumbnails-side-button-background {
    background-color: #3b3b3b
}

.fr-thumbnails-side-button-disabled * {
    cursor: default
}

.fr-thumbnails-side-button-disabled:hover .fr-thumbnails-side-button-background {
    background-color: #333
}

.fr-thumbnails-side-button-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fr-thumbnails-vertical .fr-thumbnails-side,
.fr-thumbnails-vertical .fr-thumbnails-thumbs,
.fr-thumbnails-vertical .fr-thumbnail-frame {
    clear: both
}

.fr-window-ui-fullclick .fr-thumbnails {
    background: #090909
}

.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-horizontal .fr-info .fr-stroke-bottom {
    display: block !important
}

.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-vertical .fr-info .fr-stroke-left {
    display: block !important
}

.fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 12px 5px
}

.fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 5px 12px
}

.fr-thumbnails-measured .fr-thumbnails-thumbs {
    padding: 0 !important
}

@media all and (min-height:700px) {
    .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
        padding: 16px 8px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side {
        margin: 0 8px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
        margin-left: 16px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side-next {
        margin-right: 16px
    }
}

@media all and (min-height:980px) {
    .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
        padding: 20px 10px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side {
        margin: 0 10px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
        margin-left: 20px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side-next {
        margin-right: 20px
    }
}

@media all and (min-width:1200px) {
    .fr-thumbnails-vertical .fr-thumbnails-thumbs {
        padding: 8px 16px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side {
        margin: 0 8px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side-previous {
        margin-top: 16px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side-next {
        margin-bottom: 16px
    }
}

@media all and (min-width:1800px) {
    .fr-thumbnails-vertical .fr-thumbnails-thumbs {
        padding: 10px 20px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side {
        margin: 10px 0
    }

    .fr-thumbnails-vertical .fr-thumbnails-side-previous {
        margin-top: 20px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side-next {
        margin-bottom: 20px
    }
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:500px) {
    .fr-thumbnails-horizontal .fr-thumbnails {
        display: none !important
    }
}

@media all and (max-width:700px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:414px) {
    .fr-thumbnails-vertical .fr-thumbnails {
        display: none !important
    }
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:414px) {
    .fr-page {
        min-width: 100%
    }

    .fr-page {
        min-height: 100%
    }
}

.fr-window-ui-fullclick .fr-side-next-outside,
.fr-window-ui-fullclick .fr-side-previous-outside,
.fr-window-ui-fullclick .fr-close-outside,
.fr-window-ui-fullclick .fr-content .fr-side-next,
.fr-window-ui-fullclick .fr-content .fr-side-previous,
.fr-window-ui-fullclick .fr-content .fr-close,
.fr-window-ui-fullclick .fr-content .fr-info,
.fr-window-ui-outside .fr-side-next-fullclick,
.fr-window-ui-outside .fr-side-previous-fullclick,
.fr-window-ui-outside .fr-close-fullclick,
.fr-window-ui-outside .fr-content .fr-side-next,
.fr-window-ui-outside .fr-content .fr-side-previous,
.fr-window-ui-outside .fr-content .fr-close,
.fr-window-ui-outside .fr-content .fr-info,
.fr-window-ui-inside .fr-page>.fr-info,
.fr-window-ui-inside .fr-side-next-fullclick,
.fr-window-ui-inside .fr-side-previous-fullclick,
.fr-window-ui-inside .fr-close-fullclick,
.fr-window-ui-inside .fr-side-next-outside,
.fr-window-ui-inside .fr-side-previous-outside,
.fr-window-ui-inside .fr-close-outside {
    display: none !important
}

.fr-toggle-ui {
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.fr-visible-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-visible-inside-ui .fr-ui-inside .fr-toggle-ui {
    opacity: 1
}

.fr-hidden-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.fr-ltIE9.fr-hidden-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-ltIE9.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
    display: none
}

.fr-spinner {
    position: fixed;
    width: 52px;
    height: 52px;
    background: #101010;
    background: rgba(16, 16, 16, 0.85);
    border-radius: 5px
}

.fr-spinner div {
    position: absolute;
    top: 0;
    left: 0;
    height: 64%;
    width: 64%;
    margin-left: 18%;
    margin-top: 18%;
    opacity: 1;
    -webkit-animation: fresco-12 1.2s infinite ease-in-out;
    animation: fresco-12 1.2s infinite ease-in-out
}

.fr-spinner div:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 8px;
    margin-left: -1px;
    background: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0)
}

.fr-spinner div.fr-spin-1 {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.fr-spinner div.fr-spin-2 {
    -ms-transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.fr-spinner div.fr-spin-3 {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

.fr-spinner div.fr-spin-4 {
    -ms-transform: rotate(120deg);
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s
}

.fr-spinner div.fr-spin-5 {
    -ms-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s
}

.fr-spinner div.fr-spin-6 {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s
}

.fr-spinner div.fr-spin-6 {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s
}

.fr-spinner div.fr-spin-7 {
    -ms-transform: rotate(210deg);
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s
}

.fr-spinner div.fr-spin-8 {
    -ms-transform: rotate(240deg);
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s
}

.fr-spinner div.fr-spin-9 {
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s
}

.fr-spinner div.fr-spin-10 {
    -ms-transform: rotate(300deg);
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s
}

.fr-spinner div.fr-spin-11 {
    -ms-transform: rotate(330deg);
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s
}

.fr-spinner div.fr-spin-12 {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

@-webkit-keyframes fresco-12 {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fresco-12 {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fr-thumbnail-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    width: 40px;
    height: 40px
}

.fr-thumbnail-spinner-spin {
    position: relative;
    float: left;
    margin: 8px 0 0 8px;
    text-indent: -9999em;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid #fff;
    -webkit-animation: fr-thumbnail-spin 1.1s infinite linear;
    animation: fr-thumbnail-spin 1.1s infinite linear
}

.fr-thumbnail-spinner-spin,
.fr-thumbnail-spinner-spin:after {
    border-radius: 50%;
    width: 24px;
    height: 24px
}

@-webkit-keyframes fr-thumbnail-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes fr-thumbnail-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.fr-error {
    float: left;
    position: relative;
    background-color: #ca3434;
    width: 160px;
    height: 160px
}

.fr-error-icon {
    position: absolute;
    width: 42px;
    height: 42px;
    top: 50%;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px
}

.fr-window-skin-fresco .fr-side-button-icon,
.fr-window-skin-fresco .fr-close-icon,
.fr-window-skin-fresco .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
    background-image: url("/Assets/css/fresco/skins/fresco/sprite.svg")
}

.fr-window-skin-fresco.fr-no-svg .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-close-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
    background-image: url("/Assets/css/fresco/skins/fresco/sprite.png")
}

.fr-window-skin-fresco .fr-error-icon {
    background-position: -160px -126px
}

.fr-window-skin-fresco .fr-content-background {
    background: #101010;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4)
}

.fr-window-skin-fresco.fr-window-ui-fullclick .fr-content-background {
    box-shadow: none
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3)
}

.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1)
}

.fr-window-skin-fresco .fr-side-button-background {
    background-color: transparent
}

.fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
    background-position: -13px -14px
}

.fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
    background-position: -93px -14px
}

.fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
    background-position: -13px -114px
}

.fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
    background-position: -93px -114px
}

.fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-previous .fr-side-button-icon {
    background-position: -13px -114px
}

.fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-next .fr-side-button-icon {
    background-position: -93px -114px
}

.fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled:hover .fr-side-button-icon {
    background-position: -13px -214px
}

.fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled:hover .fr-side-button-icon {
    background-position: -93px -214px
}

.fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
    background-position: -13px -114px
}

.fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
    background-position: -93px -114px
}

.fr-window-skin-fresco.fr-svg .fr-side-button-icon {
    opacity: .5
}

.fr-window-skin-fresco.fr-svg .fr-side:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-next .fr-side-next .fr-side-button-icon {
    opacity: 1
}

.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-side .fr-side-button-icon {
    opacity: .8
}

.fr-window-skin-fresco.fr-svg .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-previous .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-next .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-side-disabled:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-side-disabled .fr-side-button-icon {
    opacity: .2
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-type-image .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-window-ui-fullclick.fr-showing-type-image .fr-side-disabled .fr-side-button-icon {
    background-image: none
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:414px) {
    .fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
        background-position: 0 -300px
    }

    .fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
        background-position: -48px -300px
    }

    .fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
        background-position: 0 -360px
    }

    .fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
        background-position: -48px -360px
    }

    .fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-previous .fr-side-button-icon {
        background-position: 0 -360px
    }

    .fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-next .fr-side-button-icon {
        background-position: -48px -360px
    }

    .fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
        background-position: 0 -360px
    }

    .fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
        background-position: -48px -360px
    }

    .fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous.fr-side-disabled .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled:hover .fr-side-button-icon {
        background-position: 0 -420px
    }

    .fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next.fr-side-disabled .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled:hover .fr-side-button-icon {
        background-position: -48px -420px
    }
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background {
    background-color: #363636
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close:hover .fr-close-background {
    background-color: #434343
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-close-background {
    background-color: #131313;
    filter: alpha(opacity=80);
    opacity: .8
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-close:hover .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-close:hover .fr-close-background {
    background-color: #191919
}

.fr-window-skin-fresco .fr-close .fr-close-icon {
    background-position: -168px -8px
}

.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
    background-position: -210px -8px
}

.fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon {
    background-position: -210px -8px;
    opacity: .8
}

.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
    opacity: 1
}

.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-close .fr-close-icon,
.fr-window-skin-fresco.fr-mobile-touch .fr-close:hover .fr-close-icon {
    opacity: 1
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
    border-color: transparent;
    border-style: solid;
    border-width: 0
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3)
}

.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1)
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3)
}

.fr-window-skin-fresco .fr-thumbnail-overlay-border {
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.08)
}

.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-overlay-border,
.fr-window-skin-fresco .fr-thumbnail-active:hover .fr-thumbnail-overlay-border {
    border: 0
}

.fr-window-skin-fresco .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon {
    background-position: -167px -49px
}

.fr-window-skin-fresco .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-icon {
    background-position: -209px -49px
}

.fr-window-skin-fresco .fr-thumbnails-side-next .fr-thumbnails-side-button-icon {
    background-position: -167px -91px
}

.fr-window-skin-fresco .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-icon {
    background-position: -209px -91px
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon {
    background-position: -293px -49px
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-icon {
    background-position: -335px -49px
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-icon {
    background-position: -293px -91px
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-icon {
    background-position: -335px -91px
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side .fr-thumbnails-side-button-icon {
    -moz-transition: opacity .2s ease-in;
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
    opacity: .8
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled {
    background-position: -167px -49px
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled {
    background-position: -209px -91px
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-icon {
    opacity: 1
}

.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled {
    background-position: -293px -49px
}

.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled {
    background-position: -335px -91px
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side .fr-thumbnails-side-button-disabled,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-disabled {
    opacity: .5
}

.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
    background-position: -251px -49px
}

.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
    background-position: -251px -91px
}

.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-background,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-background {
    filter: alpha(opacity=50)
}

.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
    background-position: -377px -49px
}

.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
    background-position: -377px -91px
}

.fr-window,
.fr-window [class^="fr-"],
.fr-overlay,
.fr-overlay [class^="fr-"],
.fr-spinner,
.fr-spinner [class^="fr-"] {
    box-sizing: border-box
}

.fr-window {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font: 13px/20px "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, sans-serif;
    transform: translateZ(0px)
}

.fr-overlay {
    z-index: 99998
}

.fr-window {
    z-index: 99999
}

.fr-spinner {
    z-index: 100000
}

.fr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.fr-overlay-background {
    float: left;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .9;
    filter: alpha(opacity=90)
}

.fr-overlay-ui-fullclick .fr-overlay-background {
    background: #292929;
    opacity: 1;
    filter: alpha(opacity=100)
}

.fr-window.fr-mobile-touch,
.fr-overlay.fr-mobile-touch {
    position: absolute;
    overflow: visible
}

.fr-measured {
    margin: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important
}

.fr-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fr-pages {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fr-page {
    position: absolute;
    width: 100%;
    height: 100%
}

.fr-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    text-align: center
}

.fr-hovering-clickable .fr-container {
    cursor: pointer
}

.fr-ui-inside .fr-container {
    padding: 20px 20px
}

.fr-ui-inside.fr-no-sides .fr-container {
    padding: 20px
}

.fr-ui-outside .fr-container {
    padding: 20px 82px
}

.fr-ui-outside.fr-no-sides .fr-container {
    padding: 20px 48px
}

@media all and (max-width:700px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:700px) {
    .fr-ui-inside .fr-container {
        padding: 12px 12px
    }

    .fr-ui-inside.fr-no-sides .fr-container {
        padding: 12px
    }

    .fr-ui-outside .fr-container {
        padding: 12px 72px
    }

    .fr-ui-outside.fr-no-sides .fr-container {
        padding: 12px 48px
    }
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:500px) {
    .fr-ui-inside .fr-container {
        padding: 0
    }

    .fr-ui-inside.fr-no-sides .fr-container {
        padding: 0
    }

    .fr-ui-outside .fr-container {
        padding: 0 72px
    }

    .fr-ui-outside.fr-no-sides .fr-container {
        padding: 0 48px
    }
}

.fr-ui-fullclick .fr-container {
    padding: 0
}

.fr-ui-fullclick.fr-no-sides .fr-container {
    padding: 0
}

.fr-ui-fullclick.fr-type-video .fr-container {
    padding: 0 62px
}

.fr-ui-fullclick.fr-no-sides.fr-type-video .fr-container {
    padding: 48px 0
}

.fr-overflow-y .fr-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.fr-content,
.fr-content-background {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: visible;
    background-position: center;
    background-repeat: no-repeat;
    background: url("/images/bg-marble-v.jpg")
}

.fr-content-element {
    float: left;
    width: 100%;
    height: 100%
}

.fr-content-background {
    background: #101010
}

.fr-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #efefef;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

.fr-info-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    line-height: 1%;
    filter: none;
    opacity: 1
}

.fr-ui-inside .fr-info-background {
    filter: alpha(opacity=80);
    opacity: .8;
    zoom: 1
}

.fr-ui-outside .fr-info-background {
    background: #0d0d0d
}

.fr-content .fr-info {
    top: auto;
    bottom: 0
}

.fr-info-padder {
    display: block;
    overflow: hidden;
    padding: 12px;
    position: relative;
    width: auto
}

.fr-caption {
    width: auto;
    display: inline
}

.fr-position {
    color: #b3b3b3;
    float: right;
    line-height: 21px;
    opacity: .99;
    position: relative;
    text-align: right;
    margin-left: 15px;
    white-space: nowrap
}

.fr-position-outside,
.fr-position-inside {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 12px;
    width: auto;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 20px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    display: none;
    overflow: hidden;
    white-space: nowrap;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

.fr-position-inside {
    border: 0
}

.fr-position-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    filter: alpha(opacity=80);
    opacity: .8;
    zoom: 1
}

.fr-position-text {
    color: #b3b3b3
}

.fr-position-outside .fr-position-text,
.fr-position-inside .fr-position-text {
    float: left;
    position: relative;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    opacity: 1
}

.fr-ui-outside .fr-position-outside {
    display: block
}

.fr-ui-outside .fr-info .fr-position {
    display: none
}

.fr-ui-inside.fr-no-caption .fr-position-inside {
    display: block
}

.fr-info a,
.fr-info a:hover {
    color: #ccc;
    border: 0;
    background: 0;
    text-decoration: underline
}

.fr-info a:hover {
    color: #eee
}

.fr-ui-outside.fr-no-caption .fr-info {
    display: none
}

.fr-ui-inside.fr-no-caption .fr-caption {
    display: none
}

.fr-stroke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px
}

.fr-stroke-vertical {
    width: 1px;
    height: 100%
}

.fr-stroke-horizontal {
    padding: 0 1px
}

.fr-stroke-right {
    left: auto;
    right: 0
}

.fr-stroke-bottom {
    top: auto;
    bottom: 0
}

.fr-stroke-color {
    float: left;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08)
}

.fr-info .fr-stroke-color {
    background: rgba(80, 80, 80, 0.3)
}

.fr-ui-outside.fr-has-caption .fr-content .fr-stroke-bottom {
    display: none
}

.fr-ui-fullclick .fr-stroke {
    display: none
}

.fr-ui-fullclick .fr-content-background {
    box-shadow: none
}

.fr-info .fr-stroke-top {
    display: none
}

.fr-side {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 72px;
    margin: 0 9px;
    margin-top: -36px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    zoom: 1
}

.fr-side-previous {
    left: 0
}

.fr-side-next {
    right: 0;
    left: auto
}

.fr-side-disabled {
    cursor: default
}

.fr-side-hidden {
    display: none !important
}

.fr-side-button {
    float: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0
}

.fr-side-button-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #101010
}

.fr-side-button-icon {
    float: left;
    position: relative;
    height: 100%;
    width: 100%;
    zoom: 1;
    background-position: 50% 50%;
    background-repeat: no-repeat
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:414px) {
    .fr-side {
        width: 54px;
        height: 60px;
        margin: 0;
        margin-top: -30px
    }

    .fr-side-button {
        width: 48px;
        height: 60px;
        margin: 0 3px
    }
}

.fr-close {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 0;
    right: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.fr-close-background,
.fr-close-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 26px;
    width: 26px;
    background-position: 50% 50%;
    background-repeat: no-repeat
}

.fr-close-background {
    background-color: #000
}

.fr-thumbnails {
    position: absolute;
    overflow: hidden
}

.fr-thumbnails-disabled .fr-thumbnails {
    display: none !important
}

.fr-thumbnails-horizontal .fr-thumbnails {
    width: 100%;
    height: 12%;
    min-height: 74px;
    max-height: 160px;
    bottom: 0
}

.fr-thumbnails-vertical .fr-thumbnails {
    height: 100%;
    width: 10%;
    min-width: 74px;
    max-width: 160px;
    left: 0
}

.fr-thumbnails,
.fr-thumbnails * {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fr-thumbnails-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%
}

.fr-thumbnails-vertical .fr-thumbnails-wrapper {
    top: 50%;
    left: 0
}

.fr-thumbnails-slider {
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
    zoom: 1
}

.fr-thumbnails-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%
}

.fr-thumbnails-thumbs {
    float: left;
    height: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0
}

.fr-thumbnails-slide {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%
}

.fr-thumbnail-frame {
    position: absolute;
    zoom: 1;
    overflow: hidden
}

.fr-thumbnail {
    position: absolute;
    width: 30px;
    height: 100%;
    left: 50%;
    top: 50%;
    zoom: 1;
    cursor: pointer;
    margin: 0 10px
}

.fr-ltIE9 .fr-thumbnail * {
    overflow: hidden;
    z-index: 1;
    zoom: 1
}

.fr-thumbnail-wrapper {
    position: relative;
    background: #161616;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    display: inline;
    z-index: 0
}

.fr-thumbnail-overlay {
    cursor: pointer
}

.fr-thumbnail-active .fr-thumbnail-overlay {
    cursor: default
}

.fr-thumbnail-overlay,
.fr-thumbnail-overlay-background,
.fr-thumbnail-overlay-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    overflow: hidden;
    border-style: solid;
    border-color: transparent
}

.fr-ltIE9 .fr-thumbnail-overlay-border {
    border-width: 0 !important
}

.fr-thumbnail .fr-thumbnail-image {
    position: absolute;
    filter: alpha(opacity=85);
    opacity: .85;
    max-width: none
}

.fr-thumbnail:hover .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
    filter: alpha(opacity=99);
    opacity: .99
}

.fr-thumbnail-active .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
    filter: alpha(opacity=35);
    opacity: .35
}

.fr-thumbnail-active {
    cursor: default
}

.fr-thumbnail-loading,
.fr-thumbnail-loading-background,
.fr-thumbnail-loading-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fr-thumbnail-loading-background {
    background-color: #161616;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: .8;
    position: relative;
    float: left
}

.fr-thumbnail-loading-icon {
    display: none
}

.fr-thumbnail-error .fr-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #202020
}

.fr-thumbnails-side {
    float: left;
    height: 100%;
    width: 28px;
    margin: 0 5px;
    position: relative;
    overflow: hidden
}

.fr-thumbnails-side-previous {
    margin-left: 12px
}

.fr-thumbnails-side-next {
    margin-right: 12px
}

.fr-thumbnails-vertical .fr-thumbnails-side {
    height: 28px;
    width: 100%;
    margin: 10px 0
}

.fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 20px
}

.fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 20px
}

.fr-thumbnails-side-button {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -14px;
    width: 28px;
    height: 28px;
    cursor: pointer
}

.fr-thumbnails-side-button-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    filter: alpha(opacity=80);
    opacity: .8;
    -moz-transition: background-color .2s ease-in;
    -webkit-transition: background-color .2s ease-in;
    transition: background-color .2s ease-in;
    background-color: #333;
    cursor: pointer;
    border-radius: 4px
}

.fr-thumbnails-side-button:hover .fr-thumbnails-side-button-background {
    background-color: #3b3b3b
}

.fr-thumbnails-side-button-disabled * {
    cursor: default
}

.fr-thumbnails-side-button-disabled:hover .fr-thumbnails-side-button-background {
    background-color: #333
}

.fr-thumbnails-side-button-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fr-thumbnails-vertical .fr-thumbnails-side,
.fr-thumbnails-vertical .fr-thumbnails-thumbs,
.fr-thumbnails-vertical .fr-thumbnail-frame {
    clear: both
}

.fr-window-ui-fullclick .fr-thumbnails {
    background: #090909
}

.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-horizontal .fr-info .fr-stroke-bottom {
    display: block !important
}

.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-vertical .fr-info .fr-stroke-left {
    display: block !important
}

.fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 12px 5px
}

.fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 5px 12px
}

.fr-thumbnails-measured .fr-thumbnails-thumbs {
    padding: 0 !important
}

@media all and (min-height:700px) {
    .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
        padding: 16px 8px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side {
        margin: 0 8px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
        margin-left: 16px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side-next {
        margin-right: 16px
    }
}

@media all and (min-height:980px) {
    .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
        padding: 20px 10px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side {
        margin: 0 10px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
        margin-left: 20px
    }

    .fr-thumbnails-horizontal .fr-thumbnails-side-next {
        margin-right: 20px
    }
}

@media all and (min-width:1200px) {
    .fr-thumbnails-vertical .fr-thumbnails-thumbs {
        padding: 8px 16px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side {
        margin: 0 8px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side-previous {
        margin-top: 16px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side-next {
        margin-bottom: 16px
    }
}

@media all and (min-width:1800px) {
    .fr-thumbnails-vertical .fr-thumbnails-thumbs {
        padding: 10px 20px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side {
        margin: 10px 0
    }

    .fr-thumbnails-vertical .fr-thumbnails-side-previous {
        margin-top: 20px
    }

    .fr-thumbnails-vertical .fr-thumbnails-side-next {
        margin-bottom: 20px
    }
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:500px) {
    .fr-thumbnails-horizontal .fr-thumbnails {
        display: none !important
    }
}

@media all and (max-width:700px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:414px) {
    .fr-thumbnails-vertical .fr-thumbnails {
        display: none !important
    }
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:414px) {
    .fr-page {
        min-width: 100%
    }

    .fr-page {
        min-height: 100%
    }
}

.fr-window-ui-fullclick .fr-side-next-outside,
.fr-window-ui-fullclick .fr-side-previous-outside,
.fr-window-ui-fullclick .fr-close-outside,
.fr-window-ui-fullclick .fr-content .fr-side-next,
.fr-window-ui-fullclick .fr-content .fr-side-previous,
.fr-window-ui-fullclick .fr-content .fr-close,
.fr-window-ui-fullclick .fr-content .fr-info,
.fr-window-ui-outside .fr-side-next-fullclick,
.fr-window-ui-outside .fr-side-previous-fullclick,
.fr-window-ui-outside .fr-close-fullclick,
.fr-window-ui-outside .fr-content .fr-side-next,
.fr-window-ui-outside .fr-content .fr-side-previous,
.fr-window-ui-outside .fr-content .fr-close,
.fr-window-ui-outside .fr-content .fr-info,
.fr-window-ui-inside .fr-page>.fr-info,
.fr-window-ui-inside .fr-side-next-fullclick,
.fr-window-ui-inside .fr-side-previous-fullclick,
.fr-window-ui-inside .fr-close-fullclick,
.fr-window-ui-inside .fr-side-next-outside,
.fr-window-ui-inside .fr-side-previous-outside,
.fr-window-ui-inside .fr-close-outside {
    display: none !important
}

.fr-toggle-ui {
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.fr-visible-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-visible-inside-ui .fr-ui-inside .fr-toggle-ui {
    opacity: 1
}

.fr-hidden-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.fr-ltIE9.fr-hidden-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-ltIE9.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
    display: none
}

.fr-spinner {
    position: fixed;
    width: 52px;
    height: 52px;
    background: #101010;
    background: rgba(16, 16, 16, 0.85);
    border-radius: 5px
}

.fr-spinner div {
    position: absolute;
    top: 0;
    left: 0;
    height: 64%;
    width: 64%;
    margin-left: 18%;
    margin-top: 18%;
    opacity: 1;
    -webkit-animation: fresco-12 1.2s infinite ease-in-out;
    animation: fresco-12 1.2s infinite ease-in-out
}

.fr-spinner div:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 8px;
    margin-left: -1px;
    background: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0)
}

.fr-spinner div.fr-spin-1 {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.fr-spinner div.fr-spin-2 {
    -ms-transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.fr-spinner div.fr-spin-3 {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

.fr-spinner div.fr-spin-4 {
    -ms-transform: rotate(120deg);
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s
}

.fr-spinner div.fr-spin-5 {
    -ms-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s
}

.fr-spinner div.fr-spin-6 {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s
}

.fr-spinner div.fr-spin-6 {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s
}

.fr-spinner div.fr-spin-7 {
    -ms-transform: rotate(210deg);
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s
}

.fr-spinner div.fr-spin-8 {
    -ms-transform: rotate(240deg);
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s
}

.fr-spinner div.fr-spin-9 {
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s
}

.fr-spinner div.fr-spin-10 {
    -ms-transform: rotate(300deg);
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s
}

.fr-spinner div.fr-spin-11 {
    -ms-transform: rotate(330deg);
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s
}

.fr-spinner div.fr-spin-12 {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

@-webkit-keyframes fresco-12 {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fresco-12 {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fr-thumbnail-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    width: 40px;
    height: 40px
}

.fr-thumbnail-spinner-spin {
    position: relative;
    float: left;
    margin: 8px 0 0 8px;
    text-indent: -9999em;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid #fff;
    -webkit-animation: fr-thumbnail-spin 1.1s infinite linear;
    animation: fr-thumbnail-spin 1.1s infinite linear
}

.fr-thumbnail-spinner-spin,
.fr-thumbnail-spinner-spin:after {
    border-radius: 50%;
    width: 24px;
    height: 24px
}

@-webkit-keyframes fr-thumbnail-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes fr-thumbnail-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.fr-error {
    float: left;
    position: relative;
    background-color: #ca3434;
    width: 160px;
    height: 160px
}

.fr-error-icon {
    position: absolute;
    width: 42px;
    height: 42px;
    top: 50%;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px
}

.fr-window-skin-fresco .fr-side-button-icon,
.fr-window-skin-fresco .fr-close-icon,
.fr-window-skin-fresco .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
    background-image: url("/Assets/css/fresco/skins/fresco/sprite.svg")
}

.fr-window-skin-fresco.fr-no-svg .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-close-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
    background-image: url("/Assets/css/fresco/skins/fresco/sprite.png")
}

.fr-window-skin-fresco .fr-error-icon {
    background-position: -160px -126px
}

.fr-window-skin-fresco .fr-content-background {
    background: #101010;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4)
}

.fr-window-skin-fresco.fr-window-ui-fullclick .fr-content-background {
    box-shadow: none
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3)
}

.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1)
}

.fr-window-skin-fresco .fr-side-button-background {
    background-color: transparent
}

.fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
    background-position: -13px -14px
}

.fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
    background-position: -93px -14px
}

.fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
    background-position: -13px -114px
}

.fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
    background-position: -93px -114px
}

.fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-previous .fr-side-button-icon {
    background-position: -13px -114px
}

.fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-next .fr-side-button-icon {
    background-position: -93px -114px
}

.fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled:hover .fr-side-button-icon {
    background-position: -13px -214px
}

.fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled:hover .fr-side-button-icon {
    background-position: -93px -214px
}

.fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
    background-position: -13px -114px
}

.fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
    background-position: -93px -114px
}

.fr-window-skin-fresco.fr-svg .fr-side-button-icon {
    opacity: .5
}

.fr-window-skin-fresco.fr-svg .fr-side:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-next .fr-side-next .fr-side-button-icon {
    opacity: 1
}

.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-side .fr-side-button-icon {
    opacity: .8
}

.fr-window-skin-fresco.fr-svg .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-previous .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-next .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-side-disabled:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-side-disabled .fr-side-button-icon {
    opacity: .2
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-type-image .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-window-ui-fullclick.fr-showing-type-image .fr-side-disabled .fr-side-button-icon {
    background-image: none
}

@media all and (max-width:500px) and (orientation:portrait),
all and (orientation:landscape) and (max-height:414px) {
    .fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
        background-position: 0 -300px
    }

    .fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
        background-position: -48px -300px
    }

    .fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
        background-position: 0 -360px
    }

    .fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
        background-position: -48px -360px
    }

    .fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-previous .fr-side-button-icon {
        background-position: 0 -360px
    }

    .fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-next .fr-side-button-icon {
        background-position: -48px -360px
    }

    .fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
        background-position: 0 -360px
    }

    .fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
        background-position: -48px -360px
    }

    .fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous.fr-side-disabled .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled:hover .fr-side-button-icon {
        background-position: 0 -420px
    }

    .fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next.fr-side-disabled .fr-side-button-icon,
    .fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled:hover .fr-side-button-icon {
        background-position: -48px -420px
    }
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background {
    background-color: #363636
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close:hover .fr-close-background {
    background-color: #434343
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-close-background {
    background-color: #131313;
    filter: alpha(opacity=80);
    opacity: .8
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-close:hover .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-close:hover .fr-close-background {
    background-color: #191919
}

.fr-window-skin-fresco .fr-close .fr-close-icon {
    background-position: -168px -8px
}

.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
    background-position: -210px -8px
}

.fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon {
    background-position: -210px -8px;
    opacity: .8
}

.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
    opacity: 1
}

.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-close .fr-close-icon,
.fr-window-skin-fresco.fr-mobile-touch .fr-close:hover .fr-close-icon {
    opacity: 1
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
    border-color: transparent;
    border-style: solid;
    border-width: 0
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3)
}

.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1)
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3)
}

.fr-window-skin-fresco .fr-thumbnail-overlay-border {
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.08)
}

.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-overlay-border,
.fr-window-skin-fresco .fr-thumbnail-active:hover .fr-thumbnail-overlay-border {
    border: 0
}

.fr-window-skin-fresco .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon {
    background-position: -167px -49px
}

.fr-window-skin-fresco .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-icon {
    background-position: -209px -49px
}

.fr-window-skin-fresco .fr-thumbnails-side-next .fr-thumbnails-side-button-icon {
    background-position: -167px -91px
}

.fr-window-skin-fresco .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-icon {
    background-position: -209px -91px
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon {
    background-position: -293px -49px
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-icon {
    background-position: -335px -49px
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-icon {
    background-position: -293px -91px
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-icon {
    background-position: -335px -91px
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side .fr-thumbnails-side-button-icon {
    -moz-transition: opacity .2s ease-in;
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
    opacity: .8
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled {
    background-position: -167px -49px
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled {
    background-position: -209px -91px
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-icon {
    opacity: 1
}

.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled {
    background-position: -293px -49px
}

.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled {
    background-position: -335px -91px
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side .fr-thumbnails-side-button-disabled,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-disabled {
    opacity: .5
}

.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
    background-position: -251px -49px
}

.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
    background-position: -251px -91px
}

.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-background,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-background {
    filter: alpha(opacity=50)
}

.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
    background-position: -377px -49px
}

.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
    background-position: -377px -91px
}

.swal2-container,
body.swal2-iosfix {
    position: fixed;
    left: 0;
    right: 0
}

body.swal2-in {
    overflow-y: hidden
}

.swal2-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    bottom: 0;
    padding: 10px;
    background-color: transparent;
    z-index: 1060
}

.swal2-container:not(.swal2-in) {
    pointer-events: none
}

.swal2-container.swal2-fade {
    -webkit-transition: background-color .1s;
    transition: background-color .1s
}

.swal2-container.swal2-in {
    background-color: rgba(0, 0, 0, .4)
}

.swal2-modal {
    background-color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    position: relative
}

.swal2-modal:focus {
    outline: 0
}

.swal2-modal.swal2-loading {
    overflow-y: hidden
}

.swal2-modal .swal2-title {
    color: #595959;
    font-size: 21px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 60px;
    display: block
}

.swal2-modal .swal2-spacer {
    height: 10px;
    color: transparent;
    border: 0
}

.swal2-modal .swal2-styled {
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 0 5px;
    padding: 10px 32px
}

.swal2-modal .swal2-styled:not(.swal2-loading)[disabled] {
    opacity: .4;
    cursor: no-drop
}

.swal2-modal .swal2-styled.swal2-loading {
    box-sizing: border-box;
    border: 4px solid transparent;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: -2px 30px;
    vertical-align: top;
    background-color: transparent !important;
    color: transparent;
    cursor: default;
    border-radius: 100%;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.swal2-modal :not(.swal2-styled).swal2-loading::after {
    display: inline-block;
    content: '';
    margin-left: 5px;
    vertical-align: -1px;
    height: 6px;
    width: 6px;
    border: 3px solid #999;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    animation: rotate-loading 1.5s linear 0s infinite normal
}

.swal2-modal .swal2-checkbox input,
.swal2-modal .swal2-checkbox span,
.swal2-modal .swal2-radio input,
.swal2-modal .swal2-radio span {
    vertical-align: middle
}

.swal2-modal .swal2-image {
    margin: 20px auto;
    max-width: 100%
}

.swal2-modal .swal2-close {
    font-size: 36px;
    line-height: 36px;
    font-family: serif;
    position: absolute;
    top: 5px;
    right: 13px;
    cursor: pointer;
    color: #ccc;
    -webkit-transition: color .1s ease;
    transition: color .1s ease
}

.swal2-modal .swal2-close:hover {
    color: #d55
}

.swal2-modal>.swal2-checkbox,
.swal2-modal>.swal2-file,
.swal2-modal>.swal2-input,
.swal2-modal>.swal2-radio,
.swal2-modal>.swal2-select,
.swal2-modal>.swal2-textarea {
    display: none
}

.swal2-modal .swal2-content {
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    color: #545454
}

.swal2-modal .swal2-checkbox,
.swal2-modal .swal2-file,
.swal2-modal .swal2-input,
.swal2-modal .swal2-radio,
.swal2-modal .swal2-select,
.swal2-modal .swal2-textarea {
    margin: 20px auto
}

.swal2-modal .swal2-file,
.swal2-modal .swal2-input,
.swal2-modal .swal2-textarea {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    font-size: 18px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06);
    -webkit-transition: border-color box-shadow .3s;
    transition: border-color box-shadow .3s
}

.swal2-modal .swal2-file.swal2-inputerror,
.swal2-modal .swal2-input.swal2-inputerror,
.swal2-modal .swal2-textarea.swal2-inputerror {
    border-color: #f06e57
}

.swal2-modal .swal2-file:focus,
.swal2-modal .swal2-input:focus,
.swal2-modal .swal2-textarea:focus {
    outline: 0;
    box-shadow: 0 0 3px #c4e6f5;
    border: 1px solid #b4dbed
}

.swal2-modal .swal2-file:focus::-webkit-input-placeholder,
.swal2-modal .swal2-input:focus::-webkit-input-placeholder,
.swal2-modal .swal2-textarea:focus::-webkit-input-placeholder {
    -webkit-transition: opacity .3s .03s ease;
    transition: opacity .3s .03s ease;
    opacity: .8
}

.swal2-modal .swal2-file:focus::-moz-placeholder,
.swal2-modal .swal2-input:focus::-moz-placeholder,
.swal2-modal .swal2-textarea:focus::-moz-placeholder {
    -webkit-transition: opacity .3s .03s ease;
    transition: opacity .3s .03s ease;
    opacity: .8
}

.swal2-modal .swal2-file:focus:-ms-input-placeholder,
.swal2-modal .swal2-input:focus:-ms-input-placeholder,
.swal2-modal .swal2-textarea:focus:-ms-input-placeholder {
    -webkit-transition: opacity .3s .03s ease;
    transition: opacity .3s .03s ease;
    opacity: .8
}

.swal2-modal .swal2-file:focus::placeholder,
.swal2-modal .swal2-input:focus::placeholder,
.swal2-modal .swal2-textarea:focus::placeholder {
    -webkit-transition: opacity .3s .03s ease;
    transition: opacity .3s .03s ease;
    opacity: .8
}

.swal2-modal .swal2-file::-webkit-input-placeholder,
.swal2-modal .swal2-input::-webkit-input-placeholder,
.swal2-modal .swal2-textarea::-webkit-input-placeholder {
    color: #e6e6e6
}

.swal2-modal .swal2-file::-moz-placeholder,
.swal2-modal .swal2-input::-moz-placeholder,
.swal2-modal .swal2-textarea::-moz-placeholder {
    color: #e6e6e6
}

.swal2-modal .swal2-file:-ms-input-placeholder,
.swal2-modal .swal2-input:-ms-input-placeholder,
.swal2-modal .swal2-textarea:-ms-input-placeholder {
    color: #e6e6e6
}

.swal2-modal .swal2-file::placeholder,
.swal2-modal .swal2-input::placeholder,
.swal2-modal .swal2-textarea::placeholder {
    color: #e6e6e6
}

.swal2-modal .swal2-range input {
    float: left;
    width: 80%
}

.swal2-modal .swal2-range output {
    float: right;
    width: 20%;
    font-size: 20px;
    font-weight: 600;
    text-align: center
}

.swal2-modal .swal2-range input,
.swal2-modal .swal2-range output {
    height: 43px;
    line-height: 43px;
    vertical-align: middle;
    margin: 20px auto;
    padding: 0
}

.swal2-modal .swal2-input {
    height: 43px;
    padding: 0 12px
}

.swal2-modal .swal2-input[type=number] {
    max-width: 150px
}

.swal2-modal .swal2-file {
    font-size: 20px
}

.swal2-modal .swal2-textarea {
    height: 108px;
    padding: 12px
}

.swal2-modal .swal2-select {
    color: #545454;
    font-size: inherit;
    padding: 5px 10px;
    min-width: 40%;
    max-width: 100%
}

.swal2-modal .swal2-radio {
    border: 0
}

.swal2-modal .swal2-radio label:not(:first-child) {
    margin-left: 20px
}

.swal2-modal .swal2-radio input {
    margin: 0 3px 0 0
}

.swal2-modal .swal2-checkbox {
    color: #545454
}

.swal2-modal .swal2-validationerror {
    background-color: #f0f0f0;
    margin: 0 -20px;
    overflow: hidden;
    padding: 10px;
    color: gray;
    font-size: 16px;
    font-weight: 300;
    display: none
}

.swal2-modal .swal2-validationerror::before {
    content: '!';
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ea7d7d;
    color: #fff;
    line-height: 24px;
    text-align: center;
    margin-right: 10px
}

.swal2-icon.swal2-info,
.swal2-icon.swal2-question,
.swal2-icon.swal2-warning {
    font-size: 60px;
    line-height: 80px;
    text-align: center
}

@supports(-ms-accelerator:true) {
    .swal2-range input {
        width: 100% !important
    }

    .swal2-range output {
        display: none
    }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
    .swal2-range input {
        width: 100% !important
    }

    .swal2-range output {
        display: none
    }
}

.swal2-icon {
    width: 80px;
    height: 80px;
    border: 4px solid transparent;
    border-radius: 50%;
    margin: 20px auto 30px;
    padding: 0;
    position: relative;
    box-sizing: content-box;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.swal2-icon.swal2-error {
    border-color: #f27474
}

.swal2-icon.swal2-error .x-mark {
    position: relative;
    display: block
}

.swal2-icon.swal2-error .line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #f27474;
    display: block;
    top: 37px;
    border-radius: 2px
}

.swal2-icon.swal2-error .line.left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px
}

.swal2-icon.swal2-error .line.right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px
}

.swal2-icon.swal2-warning {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #f8bb86;
    border-color: #facea8
}

.swal2-icon.swal2-info {
    font-family: 'Open Sans', sans-serif;
    color: #3fc3ee;
    border-color: #9de0f6
}

.swal2-icon.swal2-question {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #87adbd;
    border-color: #c9dae1
}

.swal2-icon.swal2-success {
    border-color: #a5dc86
}

.swal2-icon.swal2-success::after,
.swal2-icon.swal2-success::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 120px;
    background: #fff
}

.swal2-icon.swal2-success::before {
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px
}

.swal2-icon.swal2-success::after {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 60px;
    transform-origin: 0 60px
}

.swal2-icon.swal2-success .placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(165, 220, 134, .2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2
}

.swal2-icon.swal2-success .fix {
    width: 7px;
    height: 90px;
    background-color: #fff;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.swal2-icon.swal2-success .line {
    height: 5px;
    background-color: #a5dc86;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2
}

.swal2-icon.swal2-success .line.tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.swal2-icon.swal2-success .line.long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.swal2-progresssteps {
    font-weight: 600;
    margin: 0 0 20px;
    padding: 0
}

.swal2-progresssteps li {
    display: inline-block;
    position: relative
}

.swal2-progresssteps .swal2-progresscircle {
    background: #3085d6;
    border-radius: 2em;
    color: #fff;
    height: 2em;
    line-height: 2em;
    text-align: center;
    width: 2em;
    z-index: 20
}

.swal2-progresssteps .swal2-progresscircle:first-child {
    margin-left: 0
}

.swal2-progresssteps .swal2-progresscircle:last-child {
    margin-right: 0
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
    background: #3085d6
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline {
    background: #add8e6
}

.swal2-progresssteps .swal2-progressline {
    background: #3085d6;
    height: .4em;
    margin: 0 -1px;
    z-index: 10
}

[class^=swal2] {
    -webkit-tap-highlight-color: transparent
}

@-webkit-keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes hideSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes hideSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

.swal2-show {
    -webkit-animation: showSweetAlert .3s;
    animation: showSweetAlert .3s
}

.swal2-show.swal2-noanimation {
    -webkit-animation: none;
    animation: none
}

.swal2-hide {
    -webkit-animation: hideSweetAlert .15s forwards;
    animation: hideSweetAlert .15s forwards
}

.swal2-hide.swal2-noanimation {
    -webkit-animation: none;
    animation: none
}

@-webkit-keyframes animate-success-tip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 19px
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px
    }
}

@keyframes animate-success-tip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 19px
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px
    }
}

@-webkit-keyframes animate-success-long {

    0%,
    65% {
        width: 0;
        right: 46px;
        top: 54px
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px
    }
}

@keyframes animate-success-long {

    0%,
    65% {
        width: 0;
        right: 46px;
        top: 54px
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px
    }
}

@-webkit-keyframes rotatePlaceholder {

    0%,
    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    100%,
    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }
}

@keyframes rotatePlaceholder {

    0%,
    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    100%,
    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }
}

.animate-success-tip {
    -webkit-animation: animate-success-tip .75s;
    animation: animate-success-tip .75s
}

.animate-success-long {
    -webkit-animation: animate-success-long .75s;
    animation: animate-success-long .75s
}

.swal2-success.animate::after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in
}

@-webkit-keyframes animate-error-icon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }
}

@keyframes animate-error-icon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }
}

.animate-error-icon {
    -webkit-animation: animate-error-icon .5s;
    animation: animate-error-icon .5s
}

@-webkit-keyframes animate-x-mark {

    0%,
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
        margin-top: 26px;
        opacity: 0
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1
    }
}

@keyframes animate-x-mark {

    0%,
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
        margin-top: 26px;
        opacity: 0
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1
    }
}

.animate-x-mark {
    -webkit-animation: animate-x-mark .5s;
    animation: animate-x-mark .5s
}

@-webkit-keyframes pulse-warning {
    0% {
        border-color: #f8d486
    }

    100% {
        border-color: #f8bb86
    }
}

@keyframes pulse-warning {
    0% {
        border-color: #f8d486
    }

    100% {
        border-color: #f8bb86
    }
}

.pulse-warning {
    -webkit-animation: pulse-warning .75s infinite alternate;
    animation: pulse-warning .75s infinite alternate
}

@-webkit-keyframes rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.slim-file-hopper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.slim-image-editor {
    position: relative;
    height: 100%;
    text-align: left;
    z-index: 1
}

.slim-image-editor .slim-container {
    position: relative;
    height: calc(100% - 8em);
    width: 100%;
    z-index: 2;
    direction: ltr
}

.slim-image-editor .slim-editor-btn-group,
.slim-image-editor .slim-editor-utils-group {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.slim-image-editor .slim-stage {
    position: absolute;
    line-height: 0
}

.slim-image-editor .slim-wrapper {
    position: absolute;
    z-index: 2
}

.slim-image-editor .slim-crop-preview {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    line-height: 0
}

.slim-image-editor .slim-stage {
    z-index: 4
}

.slim-image-editor .slim-crop-preview {
    z-index: 3;
    border-radius: 4px
}

.slim-image-editor .slim-crop-preview:after,
.slim-image-editor .slim-crop-preview canvas,
.slim-image-editor .slim-crop-preview img {
    position: absolute;
    display: block;
    border-radius: inherit;
    left: 0;
    top: 0
}

.slim-image-editor .slim-crop-preview .slim-crop {
    z-index: 3
}

.slim-image-editor .slim-crop-preview:after {
    z-index: 2;
    right: 0;
    bottom: 0;
    content: ""
}

.slim-image-editor .slim-crop-preview .slim-crop-blur {
    -moz-filter: contrast(.7);
    filter: contrast(.7);
    z-index: 1
}

.slim-image-editor .slim-editor-utils-group {
    text-align: center
}

.slim-image-editor .slim-editor-utils-group button {
    width: 2.5em;
    height: 2.5em;
    padding: 0;
    font-size: 1em;
    cursor: pointer;
    outline: 0;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, .1), inset 0 1px 0 0 hsla(0, 0%, 100%, .15);
    background-color: transparent;
    background-size: 50% 50%;
    background-position: 50%;
    background-repeat: no-repeat
}

.slim-image-editor .slim-editor-utils-group button:active {
    background-color: rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .15)
}

.slim-image-editor .slim-editor-btn-group {
    text-align: center
}

.slim-image-editor .slim-editor-btn-group button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 1em;
    margin: 0 .75em;
    padding: .75em 1.5em .875em;
    cursor: pointer;
    overflow: hidden;
    transition: color .25s, box-shadow .25s, background-color .25s;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, .1), inset 0 1px 0 0 hsla(0, 0%, 100%, .15);
    background-color: transparent;
    outline: 0
}

.slim-image-editor .slim-editor-btn-group button:active {
    padding: .875em 1.5em .75em;
    background-color: rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .15)
}

.slim-rotation-disabled .slim-container {
    height: calc(100% - 4em)
}

.slim-rotation-disabled .slim-editor-utils-group {
    display: none
}

.slim-editor-btn,
.slim-editor-utils-btn {
    color: hsla(0, 0%, 100%, .75);
    border: 2px solid rgba(0, 0, 0, .25)
}

.slim-editor-btn:focus,
.slim-editor-btn:hover,
.slim-editor-utils-btn:focus,
.slim-editor-utils-btn:hover {
    color: hsla(0, 0%, 100%, .9)
}

.slim-editor-utils-btn {
    border-radius: .6875em
}

.slim-editor-btn {
    border-radius: .5em
}

.slim-image-editor-preview:after {
    background-color: rgba(244, 250, 255, .4);
    box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, .07), 0 1px 5px rgba(0, 0, 0, .3)
}

.slim-btn-rotate {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='252' height='287' viewBox='0 0 252 287' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M134.762.626v36.15c65.016 4.594 116.34 58.75 116.34 124.936 0 69.198-56.09 125.288-125.29 125.288C56.616 287 .525 230.91.525 161.71c0-30.036 10.592-57.59 28.215-79.17l31.934 31.934C51.03 127.75 45.27 144.04 45.27 161.71c0 44.485 36.06 80.544 80.544 80.544 44.484 0 80.544-36.058 80.544-80.543 0-41.454-31.327-75.56-71.594-80.017v35.272l-62.646-57.89L134.762.625zm-8.95 196.883c-19.77 0-35.796-16.028-35.796-35.798 0-19.77 16.027-35.796 35.797-35.796 19.77 0 35.797 16.026 35.797 35.796s-16.027 35.797-35.797 35.797z' fill='rgba(255,255,255,.8)' fill-rule='evenodd'/%3E%3C/svg%3E")
}

.slim-editor-btn-group,
.slim-editor-utils-group {
    padding: 1em 0 0
}

@media(min-width:40em) {
    .slim-btn-group {
        padding-top: 2em
    }
}

.slim-crop-area {
    position: absolute;
    box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, .75), 0 0 0 1px hsla(0, 0%, 100%, .75)
}

.slim-crop-area .grid {
    overflow: hidden
}

.slim-crop-area .grid:after,
.slim-crop-area .grid:before {
    position: absolute;
    z-index: 2;
    content: "";
    opacity: 0;
    transition: opacity .5s
}

.slim-crop-area .grid:before {
    top: 33.333%;
    bottom: 33.333%;
    left: 1px;
    right: 1px;
    box-shadow: inset 0 -1px 0 0 hsla(0, 0%, 100%, .35), inset 0 1px 0 0 hsla(0, 0%, 100%, .35)
}

.slim-crop-area .grid:after {
    top: 1px;
    bottom: 1px;
    left: 33.333%;
    right: 33.333%;
    box-shadow: inset -1px 0 0 0 hsla(0, 0%, 100%, .35), inset 1px 0 0 0 hsla(0, 0%, 100%, .35)
}

.slim-crop-area button {
    position: absolute;
    background: #fafafa;
    box-shadow: inset 0 1px 0 0 #fff, 0 1px 1px rgba(0, 0, 0, .15);
    border: 0;
    padding: 0;
    margin: 0;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    border-radius: 8px;
    z-index: 3
}

.slim-crop-area [class*=n] {
    top: 0
}

.slim-crop-area [class*=s] {
    top: 100%
}

.slim-crop-area [class*=w] {
    left: 0
}

.slim-crop-area [class*=e] {
    left: 100%
}

.slim-crop-area .e,
.slim-crop-area .w {
    top: 50%;
    cursor: ew-resize;
    height: 30px;
    margin-top: -15px
}

.slim-crop-area .n,
.slim-crop-area .s {
    left: 50%;
    cursor: ns-resize;
    width: 30px;
    margin-left: -15px
}

.slim-crop-area .ne,
.slim-crop-area .sw {
    cursor: nesw-resize
}

.slim-crop-area .nw,
.slim-crop-area .se {
    cursor: nwse-resize
}

.slim-crop-area .c {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: 0;
    border-radius: 0;
    border: 0;
    z-index: 2;
    box-shadow: none;
    opacity: 0;
    cursor: move
}

.slim-crop-area button:not(.c):after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: -12px;
    bottom: -12px
}

.slim-crop-area .slim-crop-mask {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1
}

.slim-crop-area .slim-crop-mask img {
    position: absolute;
    transform-origin: 0 0;
    transform: translateZ(0);
    margin: 0 !important;
    width: auto;
    height: auto;
    max-width: none;
    min-width: 0
}

.slim-crop-area[data-dragging=true] .grid:after,
.slim-crop-area[data-dragging=true] .grid:before {
    opacity: 1
}

.slim-popover {
    -ms-touch-action: none;
    touch-action: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 1em;
    font-size: 16px;
    background: rgba(25, 27, 29, .99);
    z-index: 2147483647;
    overflow: hidden
}

.slim-popover[data-state=off] {
    left: -100%
}

.slim-popover:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: radial-gradient(ellipse at center, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, 0) 80%)
}

@media(min-width:40em) {
    .slim-popover {
        padding: 2em
    }
}

.slim,
.slim-crop-area,
.slim-image-editor,
.slim-popover {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box
}

.slim-crop-area button,
.slim-image-editor button,
.slim-popover button,
.slim button {
    -webkit-highlight: none;
    -webkit-tap-highlight-color: transparent
}

.slim *,
.slim-crop-area *,
.slim-image-editor *,
.slim-popover * {
    box-sizing: inherit
}

.slim-crop-area img,
.slim-image-editor img,
.slim-popover img,
.slim img {
    background-color: #eee;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABG2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS41LjAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+Gkqr6gAAAYBpQ0NQc1JHQiBJRUM2MTk2Ni0yLjEAACiRdZHPK0RRFMc/M4gYERaKxUvDamhQExtlJqEmTWOUwWbmzS81P17vzaTJVtlOUWLj14K/gK2yVopISdlZExv0nGfUSObc7rmf+73nnO49F+yhtJoxat2Qyeb14KRXmQ8vKPWP2OjCQRtKRDW08UDAT1V7u5Fosat+q1b1uH+tKRY3VLA1CI+pmp4XnhL2r+Q1izeFO9RUJCZ8LOzS5YLC15YeLfOTxckyf1ish4I+sLcKK8lfHP3FakrPCMvLcWbSBfXnPtZLHPHs3KysPTK7MQgyiReFaSbw4WGQUfEe+hliQHZUyXd/58+Qk1xVvEYRnWWSpMjjErUg1eOyJkSPy0hTtPr/t69GYnioXN3hhboH03zphfoN+CyZ5vu+aX4eQM09nGUr+bk9GHkVvVTRnLvQsgYn5xUtugWn69B5p0X0yLdUI9OeSMDzETSHof0SGhfLPfs55/AWQqvyVRewvQN9Et+y9AUyt2fOEwKMEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAC9JREFUOI1jZGBgkGIgDjwjRhETkYYRDUYNHDVwMBjISIJaonLU4PfyqIGjBpIBAPvwAUFW9TOIAAAAAElFTkSuQmCC")
}

.slim img {
    width: 100%;
    height: auto
}

span.slim {
    display: block
}

.slim {
    position: relative;
    font-size: inherit;
    background-color: #eee;
    transition: background-color .25s;
    padding-bottom: .025px
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.slim[data-state*=file-over] .slim-btn {
    pointer-events: none
}

.slim[data-state*=empty]:hover {
    background-color: #ddd
}

.slim[data-state*=empty] .slim-label {
    visibility: visible;
    opacity: 1
}

.slim[data-state*=busy] .slim-label {
    opacity: 0
}

.slim[data-state*=loading] .slim-label {
    display: none
}

.slim[data-state*=loading] .slim-label-loading {
    opacity: 1;
    display: block
}

.slim[data-state*=preview] .slim-label {
    visibility: hidden
}

.slim[data-state*=error] {
    background-color: #e8a69f !important;
    color: #702010
}

.slim>img,
.slim>input[type=file] {
    display: block !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    border: 0 !important
}

.slim>img+input[type=file],
.slim>input[type=file]+img {
    margin-bottom: 0 !important
}

.slim>input[type=hidden] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    opacity: 0
}

.slim .slim-label-loading {
    display: none
}

.slim .slim-label {
    visibility: hidden;
    transition: opacity .25s
}

.slim .slim-error,
.slim .slim-label,
.slim .slim-label-loading {
    max-width: 100%
}

.slim .slim-file-hopper {
    z-index: 3;
    background: rgba(0, 0, 0, .0001)
}

.slim .slim-area,
.slim .slim-drip,
.slim .slim-ratio,
.slim .slim-result,
.slim .slim-status {
    border-radius: inherit
}

.slim .slim-area {
    width: 100%;
    color: inherit;
    overflow: hidden
}

.slim .slim-area :only-of-type {
    margin: 0
}

.slim .slim-area .slim-loader {
    pointer-events: none;
    position: absolute;
    right: .875em;
    top: .875em;
    width: 23px;
    height: 23px;
    z-index: 1
}

.slim .slim-area .slim-loader svg {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0
}

.slim .slim-area .slim-upload-status {
    position: absolute;
    right: 1em;
    top: 1em;
    z-index: 1;
    opacity: 0;
    transition: opacity .25s;
    white-space: nowrap;
    line-height: 1.65;
    font-weight: 400
}

.slim .slim-area .slim-upload-status-icon {
    display: inline-block;
    opacity: .9
}

.slim .slim-area .slim-drip,
.slim .slim-area .slim-result,
.slim .slim-area .slim-status {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.slim .slim-area .slim-drip,
.slim .slim-area .slim-result {
    position: absolute
}

.slim .slim-area .slim-status {
    padding: 3em 1.5em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -ms-flex-direction: column;
    flex-direction: column;
    pointer-events: none
}

.slim .slim-area .slim-drip {
    z-index: 1;
    overflow: hidden
}

.slim .slim-area .slim-drip>span {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    margin-left: -25%;
    margin-top: -25%;
    width: 50%;
    padding-bottom: 50%
}

.slim .slim-area .slim-drip>span>span {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
    border-radius: 50%;
    opacity: .5;
    left: 0;
    top: 0
}

.slim .slim-area .slim-result {
    overflow: hidden;
    -webkit-perspective: 1px
}

.slim .slim-area .slim-result img {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.slim .slim-area .slim-result img:not([src]),
.slim .slim-area .slim-result img[src=""] {
    visibility: hidden
}

.slim .slim-btn-group {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none
}

.slim .slim-btn-group button {
    pointer-events: all;
    cursor: pointer
}

.slim[data-ratio*=":"] {
    min-height: 0
}

.slim[data-ratio*=":"] .slim-status {
    position: absolute;
    padding: 0 1.5em
}

.slim[data-ratio="16:10"]>img,
.slim[data-ratio="16:10"]>input[type=file] {
    margin-bottom: 62.5%
}

.slim[data-ratio="10:16"]>img,
.slim[data-ratio="10:16"]>input[type=file] {
    margin-bottom: 160%
}

.slim[data-ratio="16:9"]>img,
.slim[data-ratio="16:9"]>input[type=file] {
    margin-bottom: 56.25%
}

.slim[data-ratio="9:16"]>img,
.slim[data-ratio="9:16"]>input[type=file] {
    margin-bottom: 177.77778%
}

.slim[data-ratio="5:3"]>img,
.slim[data-ratio="5:3"]>input[type=file] {
    margin-bottom: 60%
}

.slim[data-ratio="3:5"]>img,
.slim[data-ratio="3:5"]>input[type=file] {
    margin-bottom: 166.66667%
}

.slim[data-ratio="5:4"]>img,
.slim[data-ratio="5:4"]>input[type=file] {
    margin-bottom: 80%
}

.slim[data-ratio="4:5"]>img,
.slim[data-ratio="4:5"]>input[type=file] {
    margin-bottom: 125%
}

.slim[data-ratio="4:3"]>img,
.slim[data-ratio="4:3"]>input[type=file] {
    margin-bottom: 75%
}

.slim[data-ratio="3:4"]>img,
.slim[data-ratio="3:4"]>input[type=file] {
    margin-bottom: 133.33333%
}

.slim[data-ratio="3:2"]>img,
.slim[data-ratio="3:2"]>input[type=file] {
    margin-bottom: 66.66667%
}

.slim[data-ratio="2:3"]>img,
.slim[data-ratio="2:3"]>input[type=file] {
    margin-bottom: 150%
}

.slim[data-ratio="1:1"]>img,
.slim[data-ratio="1:1"]>input[type=file] {
    margin-bottom: 100%
}

.slim-btn-group {
    padding: 1.5em 0;
    text-align: center
}

.slim-btn {
    position: relative;
    padding: 0;
    margin: 0 7.2px;
    font-size: 0;
    outline: 0;
    width: 36px;
    height: 36px;
    border: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, .7);
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: 50%;
    border-radius: 50%
}

.slim-btn:before {
    border-radius: inherit;
    position: absolute;
    box-sizing: border-box;
    left: -3px;
    right: -3px;
    bottom: -3px;
    top: -3px;
    border: 3px solid #fff;
    content: "";
    transform: scale(.95);
    opacity: 0;
    transition: all .25s;
    z-index: -1;
    pointer-events: none
}

.slim-btn:focus:before,
.slim-btn:hover:before {
    opacity: 1;
    transform: scale(1)
}

.slim-btn * {
    pointer-events: none
}

.slim-btn-remove {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 269 269' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='1.414'%3E%3Cpath d='M63.12 250.254s3.998 18.222 24.582 18.222h93.072c20.583 0 24.582-18.222 24.582-18.222l18.374-178.66H44.746l18.373 178.66zM170.034 98.442a8.95 8.95 0 0 1 17.9 0l-8.95 134.238a8.95 8.95 0 0 1-17.9 0l8.95-134.238zm-44.746 0a8.949 8.949 0 1 1 17.898 0V232.68a8.95 8.95 0 1 1-17.9 0V98.442zm-35.798-8.95a8.95 8.95 0 0 1 8.95 8.95l8.95 134.237c0 4.942-4.008 8.948-8.95 8.948a8.95 8.95 0 0 1-8.95-8.95L80.54 98.441a8.95 8.95 0 0 1 8.95-8.95zm128.868-53.68h-39.376V17.898c0-13.578-4.39-17.9-17.898-17.9H107.39C95 0 89.492 6 89.492 17.9v17.91H50.116c-7.914 0-14.32 6.007-14.32 13.43 0 7.424 6.406 13.43 14.32 13.43H218.36c7.914 0 14.32-6.006 14.32-13.43 0-7.423-6.406-13.43-14.32-13.43zm-57.274 0H107.39l.002-17.914h53.695V35.81z' fill='%23fff'/%3E%3C/svg%3E")
}

.slim-btn-download {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 269 269' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='1.414'%3E%3Cpath d='M232.943 223.73H35.533c-12.21 0-22.11 10.017-22.11 22.373 0 12.356 9.9 22.373 22.11 22.373h197.41c12.21 0 22.11-10.017 22.11-22.373 0-12.356-9.9-22.373-22.11-22.373zM117.88 199.136c4.035 4.04 9.216 6.147 14.492 6.508.626.053 1.227.188 1.866.188.633 0 1.228-.135 1.847-.186 5.284-.357 10.473-2.464 14.512-6.51l70.763-70.967c8.86-8.876 8.86-23.268 0-32.143-8.86-8.876-23.225-8.876-32.086 0l-32.662 32.756V22.373C156.612 10.017 146.596 0 134.238 0c-12.356 0-22.372 10.017-22.372 22.373v106.41L79.204 96.027c-8.86-8.876-23.226-8.876-32.086 0-8.86 8.875-8.86 23.267 0 32.142l70.763 70.966z' fill='%23fff'/%3E%3C/svg%3E")
}

.slim-btn-upload {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='243' height='269' viewBox='0 0 243 269' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3EDownload%3C/title%3E%3Cpath d='M219.943 223.73H22.533c-12.21 0-22.11 10.017-22.11 22.373 0 12.356 9.9 22.373 22.11 22.373h197.41c12.21 0 22.11-10.017 22.11-22.373 0-12.356-9.9-22.373-22.11-22.373zM104.88 6.696c4.035-4.04 9.216-6.147 14.492-6.508C119.998.135 120.6 0 121.238 0c.633 0 1.228.135 1.847.186 5.284.357 10.473 2.464 14.512 6.51l70.763 70.967c8.86 8.875 8.86 23.267 0 32.142-8.86 8.876-23.225 8.876-32.086 0L143.612 77.05v106.41c0 12.355-10.016 22.372-22.374 22.372-12.356 0-22.372-10.017-22.372-22.373V77.05l-32.662 32.755c-8.86 8.876-23.226 8.876-32.086 0-8.86-8.875-8.86-23.267 0-32.142L104.88 6.696z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E")
}

.slim-btn-edit {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 269 269' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='1.414'%3E%3Cpath d='M161.36 56.337c-7.042-7.05-18.46-7.05-25.5 0l-6.373 6.38-89.243 89.338.023.023-2.812 2.82s-8.968 9.032-29.216 74.4c-.143.456-.284.91-.427 1.373-.36 1.172-.726 2.362-1.094 3.568a785.126 785.126 0 0 0-.988 3.25c-.28.922-.556 1.835-.84 2.778-.64 2.14-1.29 4.318-1.954 6.567-1.455 4.937-5.01 16.07-.99 20.1 3.87 3.882 15.12.467 20.043-.993a1275.615 1275.615 0 0 0 9.41-2.83c1.032-.314 2.058-.626 3.063-.935 1.27-.39 2.52-.775 3.75-1.157l1.09-.34c62.193-19.365 73.358-28.453 74.286-29.284l.01-.01.067-.06 2.88-2.886.192.193 89.244-89.336 6.373-6.382c7.04-7.048 7.04-18.476 0-25.525l-50.998-51.05zM103.4 219.782c-.08.053-.185.122-.297.193l-.21.133c-.076.047-.158.098-.245.15l-.243.148c-2.97 1.777-11.682 6.362-32.828 14.017-2.47.894-5.162 1.842-7.98 2.82l-30.06-30.092c.98-2.84 1.928-5.55 2.825-8.04 7.638-21.235 12.22-29.974 13.986-32.94l.12-.2c.063-.1.12-.196.175-.283l.126-.2c.07-.11.14-.217.192-.296l2.2-2.205 54.485 54.542-2.248 2.255zM263.35 56.337l-50.996-51.05c-7.04-7.048-18.456-7.048-25.498 0L174.108 18.05c-7.04 7.048-7.04 18.476 0 25.524l50.996 51.05c7.04 7.048 18.457 7.048 25.498 0l12.75-12.762c7.04-7.05 7.04-18.477 0-25.525z' fill='%23fff'/%3E%3C/svg%3E")
}

.slim-loader-background {
    stroke: rgba(0, 0, 0, .15)
}

.slim-loader-foreground {
    stroke: rgba(0, 0, 0, .65)
}

.slim[data-state*=preview] .slim-loader-background {
    stroke: hsla(0, 0%, 100%, .25)
}

.slim[data-state*=preview] .slim-loader-foreground {
    stroke: #fff
}

.slim-upload-status {
    padding: 0 .5em;
    border-radius: .3125em;
    font-size: .75em;
    box-shadow: 0 .125em .25em rgba(0, 0, 0, .25)
}

.slim-upload-status[data-state=success] {
    background-color: #d1ed8f;
    color: #323e15
}

.slim-upload-status[data-state=success] .slim-upload-status-icon {
    width: .5em;
    height: .75em;
    transform: rotate(45deg);
    border: .1875em solid currentColor;
    border-left: none;
    border-top: 0;
    margin-right: .325em;
    margin-left: .25em;
    margin-bottom: .0625em
}

.slim-upload-status[data-state=error] {
    background: #efd472;
    color: #574016
}

.slim-upload-status[data-state=error] .slim-upload-status-icon {
    margin-left: -.125em;
    margin-right: .5em;
    width: .5625em;
    height: 1em;
    position: relative;
    transform: rotate(45deg)
}

.slim-upload-status[data-state=error] .slim-upload-status-icon:after,
.slim-upload-status[data-state=error] .slim-upload-status-icon:before {
    content: "";
    position: absolute;
    box-sizing: content-box;
    width: 0;
    height: 0;
    border: .09em solid currentColor;
    background-color: currentColor;
    transform: translate(-50%, -50%) translate(.5em, .5em)
}

.slim-upload-status[data-state=error] .slim-upload-status-icon:before {
    width: .66666666667em
}

.slim-upload-status[data-state=error] .slim-upload-status-icon:after {
    height: .66666666667em
}

/* Instagram-style Stories */
.stories-container {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.stories-wrapper {
    display: flex;
    gap: 12px;
    min-width: max-content;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    min-width: 64px;
    text-decoration: none;
    color: inherit;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e1e8ed;
    overflow: hidden;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    transition: transform 0.2s ease;
    position: relative;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.story-item:hover .story-avatar {
    transform: scale(1.05);
}

.story-title {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-top: 4px;
    max-width: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stories-container {
        padding: 12px;
        margin-bottom: 16px;
    }

    .stories-wrapper {
        gap: 8px;
    }

    .story-item {
        min-width: 56px;
    }

    .story-avatar {
        width: 52px;
        height: 52px;
    }

    .story-title {
        font-size: 11px;
        max-width: 56px;
    }
}
/* Instagram Stories Modal */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-modal.show {
    display: block;
    opacity: 1;
}

.story-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.story-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #000;
}

.story-modal-header {
    position: relative;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-progress-bar {
    position: absolute;
    top: 8px;
    left: 16px;
    right: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    overflow: hidden;
}

.story-progress {
    height: 100%;
    background: #fff;
    border-radius: 1px;
    width: 0%;
    transition: width 5s linear;
}

.story-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.story-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.story-modal-body {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.story-slide {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-content {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.story-modal-footer {
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.story-info {
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/* Swipe animations */
.story-slide-enter {
    transform: translateX(100%);
    opacity: 0;
}

.story-slide-enter-active {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.story-slide-exit {
    transform: translateX(0);
    opacity: 1;
}

.story-slide-exit-active {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .story-modal-content {
        max-width: 100%;
    }

    .story-modal-header {
        padding: 12px;
    }

    .story-modal-footer {
        padding: 12px;
    }
}