/*------------------------------------------------------------------
[Table of contents]
1. base
2. elements
3. form
4. layout
5. menu
6. pages
7. post
8. effect
9. utilities
10. widgets layout
11. widgets
12. responsive
-------------------------------------------------------------------*/
/*!
 * Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.2.1
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Hover.css Copyright Ian Lunn 2017. Generated with Sass.
 */
/* 2D TRANSITIONS */
/* Grow */
/* line 19, ../sass/vendor/_hover.scss */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 7, ../sass/vendor/effects/2d-transitions/_grow.scss */
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* Shrink */
/* line 26, ../sass/vendor/_hover.scss */
.hvr-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 7, ../sass/vendor/effects/2d-transitions/_shrink.scss */
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

/* line 33, ../sass/vendor/_hover.scss */
.hvr-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 15, ../sass/vendor/effects/2d-transitions/_pulse.scss */
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes hvr-pulse-grow {
    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

/* line 40, ../sass/vendor/_hover.scss */
.hvr-pulse-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 11, ../sass/vendor/effects/2d-transitions/_pulse-grow.scss */
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
    -webkit-animation-name: hvr-pulse-grow;
    animation-name: hvr-pulse-grow;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
    to {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes hvr-pulse-shrink {
    to {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

/* line 47, ../sass/vendor/_hover.scss */
.hvr-pulse-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 11, ../sass/vendor/effects/2d-transitions/_pulse-shrink.scss */
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
    -webkit-animation-name: hvr-pulse-shrink;
    animation-name: hvr-pulse-shrink;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Push */
@-webkit-keyframes hvr-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes hvr-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* line 54, ../sass/vendor/_hover.scss */
.hvr-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 15, ../sass/vendor/effects/2d-transitions/_push.scss */
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
    -webkit-animation-name: hvr-push;
    animation-name: hvr-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Pop */
@-webkit-keyframes hvr-pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes hvr-pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/* line 61, ../sass/vendor/_hover.scss */
.hvr-pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 11, ../sass/vendor/effects/2d-transitions/_pop.scss */
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
    -webkit-animation-name: hvr-pop;
    animation-name: hvr-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Bounce In */
/* line 68, ../sass/vendor/_hover.scss */
.hvr-bounce-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/* line 6, ../sass/vendor/effects/2d-transitions/_bounce-in.scss */
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */
/* line 75, ../sass/vendor/_hover.scss */
.hvr-bounce-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/* line 6, ../sass/vendor/effects/2d-transitions/_bounce-out.scss */
.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */
/* line 82, ../sass/vendor/_hover.scss */
.hvr-rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 7, ../sass/vendor/effects/2d-transitions/_rotate.scss */
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
}

/* Grow Rotate */
/* line 89, ../sass/vendor/_hover.scss */
.hvr-grow-rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 7, ../sass/vendor/effects/2d-transitions/_grow-rotate.scss */
.hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
    -webkit-transform: scale(1.1) rotate(4deg);
    transform: scale(1.1) rotate(4deg);
}

/* Float */
/* line 96, ../sass/vendor/_hover.scss */
.hvr-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 8, ../sass/vendor/effects/2d-transitions/_float.scss */
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

/* Sink */
/* line 103, ../sass/vendor/_hover.scss */
.hvr-sink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 8, ../sass/vendor/effects/2d-transitions/_sink.scss */
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

/* Bob */
@-webkit-keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

/* line 110, ../sass/vendor/_hover.scss */
.hvr-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 23, ../sass/vendor/effects/2d-transitions/_bob.scss */
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

/* Hang */
@-webkit-keyframes hvr-hang {
    0% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    50% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@keyframes hvr-hang {
    0% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    50% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@-webkit-keyframes hvr-hang-sink {
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@keyframes hvr-hang-sink {
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

/* line 117, ../sass/vendor/_hover.scss */
.hvr-hang {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 23, ../sass/vendor/effects/2d-transitions/_hang.scss */
.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
    -webkit-animation-name: hvr-hang-sink, hvr-hang;
    animation-name: hvr-hang-sink, hvr-hang;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

/* Skew */
/* line 124, ../sass/vendor/_hover.scss */
.hvr-skew {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 7, ../sass/vendor/effects/2d-transitions/_skew.scss */
.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
    -webkit-transform: skew(-10deg);
    transform: skew(-10deg);
}

/* Skew Forward */
/* line 131, ../sass/vendor/_hover.scss */
.hvr-skew-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

/* line 8, ../sass/vendor/effects/2d-transitions/_skew-forward.scss */
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
    -webkit-transform: skew(-10deg);
    transform: skew(-10deg);
}

/* Skew Backward */
/* line 138, ../sass/vendor/_hover.scss */
.hvr-skew-backward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

/* line 8, ../sass/vendor/effects/2d-transitions/_skew-backward.scss */
.hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* line 145, ../sass/vendor/_hover.scss */
.hvr-wobble-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 31, ../sass/vendor/effects/2d-transitions/_wobble-vertical.scss */
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
    -webkit-animation-name: hvr-wobble-vertical;
    animation-name: hvr-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes hvr-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 152, ../sass/vendor/_hover.scss */
.hvr-wobble-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 31, ../sass/vendor/effects/2d-transitions/_wobble-horizontal.scss */
.hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
    -webkit-animation-name: hvr-wobble-horizontal;
    animation-name: hvr-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@-webkit-keyframes hvr-wobble-to-bottom-right {
    16.65% {
        -webkit-transform: translate(8px, 8px);
        transform: translate(8px, 8px);
    }
    33.3% {
        -webkit-transform: translate(-6px, -6px);
        transform: translate(-6px, -6px);
    }
    49.95% {
        -webkit-transform: translate(4px, 4px);
        transform: translate(4px, 4px);
    }
    66.6% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }
    83.25% {
        -webkit-transform: translate(1px, 1px);
        transform: translate(1px, 1px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes hvr-wobble-to-bottom-right {
    16.65% {
        -webkit-transform: translate(8px, 8px);
        transform: translate(8px, 8px);
    }
    33.3% {
        -webkit-transform: translate(-6px, -6px);
        transform: translate(-6px, -6px);
    }
    49.95% {
        -webkit-transform: translate(4px, 4px);
        transform: translate(4px, 4px);
    }
    66.6% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }
    83.25% {
        -webkit-transform: translate(1px, 1px);
        transform: translate(1px, 1px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

/* line 159, ../sass/vendor/_hover.scss */
.hvr-wobble-to-bottom-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 31, ../sass/vendor/effects/2d-transitions/_wobble-to-bottom-right.scss */
.hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
    -webkit-animation-name: hvr-wobble-to-bottom-right;
    animation-name: hvr-wobble-to-bottom-right;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble To Top Right */
@-webkit-keyframes hvr-wobble-to-top-right {
    16.65% {
        -webkit-transform: translate(8px, -8px);
        transform: translate(8px, -8px);
    }
    33.3% {
        -webkit-transform: translate(-6px, 6px);
        transform: translate(-6px, 6px);
    }
    49.95% {
        -webkit-transform: translate(4px, -4px);
        transform: translate(4px, -4px);
    }
    66.6% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }
    83.25% {
        -webkit-transform: translate(1px, -1px);
        transform: translate(1px, -1px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes hvr-wobble-to-top-right {
    16.65% {
        -webkit-transform: translate(8px, -8px);
        transform: translate(8px, -8px);
    }
    33.3% {
        -webkit-transform: translate(-6px, 6px);
        transform: translate(-6px, 6px);
    }
    49.95% {
        -webkit-transform: translate(4px, -4px);
        transform: translate(4px, -4px);
    }
    66.6% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }
    83.25% {
        -webkit-transform: translate(1px, -1px);
        transform: translate(1px, -1px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

/* line 166, ../sass/vendor/_hover.scss */
.hvr-wobble-to-top-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 31, ../sass/vendor/effects/2d-transitions/_wobble-to-top-right.scss */
.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {
    -webkit-animation-name: hvr-wobble-to-top-right;
    animation-name: hvr-wobble-to-top-right;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }
    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }
    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }
    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }
    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }
    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

@keyframes hvr-wobble-top {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }
    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }
    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }
    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }
    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }
    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

/* line 173, ../sass/vendor/_hover.scss */
.hvr-wobble-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

/* line 32, ../sass/vendor/effects/2d-transitions/_wobble-top.scss */
.hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
    -webkit-animation-name: hvr-wobble-top;
    animation-name: hvr-wobble-top;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble Bottom */
@-webkit-keyframes hvr-wobble-bottom {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }
    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }
    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }
    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }
    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }
    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

@keyframes hvr-wobble-bottom {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }
    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }
    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }
    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }
    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }
    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

/* line 180, ../sass/vendor/_hover.scss */
.hvr-wobble-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

/* line 32, ../sass/vendor/effects/2d-transitions/_wobble-bottom.scss */
.hvr-wobble-bottom:hover, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:active {
    -webkit-animation-name: hvr-wobble-bottom;
    animation-name: hvr-wobble-bottom;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble Skew */
@-webkit-keyframes hvr-wobble-skew {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }
    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }
    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }
    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }
    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }
    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

@keyframes hvr-wobble-skew {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }
    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }
    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }
    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }
    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }
    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

/* line 187, ../sass/vendor/_hover.scss */
.hvr-wobble-skew {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 31, ../sass/vendor/effects/2d-transitions/_wobble-skew.scss */
.hvr-wobble-skew:hover, .hvr-wobble-skew:focus, .hvr-wobble-skew:active {
    -webkit-animation-name: hvr-wobble-skew;
    animation-name: hvr-wobble-skew;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Buzz */
@-webkit-keyframes hvr-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@keyframes hvr-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

/* line 194, ../sass/vendor/_hover.scss */
.hvr-buzz {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 15, ../sass/vendor/effects/2d-transitions/_buzz.scss */
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
    -webkit-animation-name: hvr-buzz;
    animation-name: hvr-buzz;
    -webkit-animation-duration: 0.15s;
    animation-duration: 0.15s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

/* line 201, ../sass/vendor/_hover.scss */
.hvr-buzz-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}

/* line 47, ../sass/vendor/effects/2d-transitions/_buzz-out.scss */
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
    -webkit-animation-name: hvr-buzz-out;
    animation-name: hvr-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Forward */
/* line 208, ../sass/vendor/_hover.scss */
.hvr-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 7, ../sass/vendor/effects/2d-transitions/_forward.scss */
.hvr-forward:hover, .hvr-forward:focus, .hvr-forward:active {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

/* Backward */
/* line 215, ../sass/vendor/_hover.scss */
.hvr-backward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 7, ../sass/vendor/effects/2d-transitions/_backward.scss */
.hvr-backward:hover, .hvr-backward:focus, .hvr-backward:active {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}

/* BACKGROUND TRANSITIONS */
/* Fade */
/* line 223, ../sass/vendor/_hover.scss */
.hvr-fade {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    overflow: hidden;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

/* line 8, ../sass/vendor/effects/background-transitions/_fade.scss */
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
    background-color: #2098D1;
    color: white;
}

/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
    50% {
        background-color: rgba(32, 152, 209, 0.75);
    }
}

@keyframes hvr-back-pulse {
    50% {
        background-color: rgba(32, 152, 209, 0.75);
    }
}

/* line 230, ../sass/vendor/_hover.scss */
.hvr-back-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    overflow: hidden;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

/* line 14, ../sass/vendor/effects/background-transitions/_back-pulse.scss */
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
    -webkit-animation-name: hvr-back-pulse;
    animation-name: hvr-back-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-color: #2098D1;
    background-color: #2098d1;
    color: white;
}

/* Sweep To Right */
/* line 237, ../sass/vendor/_hover.scss */
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 8, ../sass/vendor/effects/background-transitions/_sweep-to-right.scss */
.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_sweep-to-right.scss */
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_sweep-to-right.scss */
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Sweep To Left */
/* line 244, ../sass/vendor/_hover.scss */
.hvr-sweep-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 8, ../sass/vendor/effects/background-transitions/_sweep-to-left.scss */
.hvr-sweep-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_sweep-to-left.scss */
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_sweep-to-left.scss */
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Sweep To Bottom */
/* line 251, ../sass/vendor/_hover.scss */
.hvr-sweep-to-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 8, ../sass/vendor/effects/background-transitions/_sweep-to-bottom.scss */
.hvr-sweep-to-bottom:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_sweep-to-bottom.scss */
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_sweep-to-bottom.scss */
.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/* Sweep To Top */
/* line 258, ../sass/vendor/_hover.scss */
.hvr-sweep-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 8, ../sass/vendor/effects/background-transitions/_sweep-to-top.scss */
.hvr-sweep-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_sweep-to-top.scss */
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_sweep-to-top.scss */
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/* Bounce To Right */
/* line 265, ../sass/vendor/_hover.scss */
.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/* line 8, ../sass/vendor/effects/background-transitions/_bounce-to-right.scss */
.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_bounce-to-right.scss */
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_bounce-to-right.scss */
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
/* line 272, ../sass/vendor/_hover.scss */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/* line 8, ../sass/vendor/effects/background-transitions/_bounce-to-left.scss */
.hvr-bounce-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_bounce-to-left.scss */
.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_bounce-to-left.scss */
.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */
/* line 279, ../sass/vendor/_hover.scss */
.hvr-bounce-to-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/* line 8, ../sass/vendor/effects/background-transitions/_bounce-to-bottom.scss */
.hvr-bounce-to-bottom:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_bounce-to-bottom.scss */
.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_bounce-to-bottom.scss */
.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */
/* line 286, ../sass/vendor/_hover.scss */
.hvr-bounce-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/* line 8, ../sass/vendor/effects/background-transitions/_bounce-to-top.scss */
.hvr-bounce-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_bounce-to-top.scss */
.hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_bounce-to-top.scss */
.hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */
/* line 293, ../sass/vendor/_hover.scss */
.hvr-radial-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 10, ../sass/vendor/effects/background-transitions/_radial-out.scss */
.hvr-radial-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 26, ../sass/vendor/effects/background-transitions/_radial-out.scss */
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
    color: white;
}

/* line 31, ../sass/vendor/effects/background-transitions/_radial-out.scss */
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
    -webkit-transform: scale(2);
    transform: scale(2);
}

/* Radial In */
/* line 300, ../sass/vendor/_hover.scss */
.hvr-radial-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
    background: #2098D1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 10, ../sass/vendor/effects/background-transitions/_radial-in.scss */
.hvr-radial-in:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e1e1e1;
    border-radius: 100%;
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 26, ../sass/vendor/effects/background-transitions/_radial-in.scss */
.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
    color: white;
}

/* line 31, ../sass/vendor/effects/background-transitions/_radial-in.scss */
.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* Rectangle In */
/* line 307, ../sass/vendor/_hover.scss */
.hvr-rectangle-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #2098D1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 9, ../sass/vendor/effects/background-transitions/_rectangle-in.scss */
.hvr-rectangle-in:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e1e1e1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_rectangle-in.scss */
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_rectangle-in.scss */
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* Rectangle Out */
/* line 314, ../sass/vendor/_hover.scss */
.hvr-rectangle-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 9, ../sass/vendor/effects/background-transitions/_rectangle-out.scss */
.hvr-rectangle-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/background-transitions/_rectangle-out.scss */
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
    color: white;
}

/* line 29, ../sass/vendor/effects/background-transitions/_rectangle-out.scss */
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Shutter In Horizontal */
/* line 321, ../sass/vendor/_hover.scss */
.hvr-shutter-in-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #2098D1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 9, ../sass/vendor/effects/background-transitions/_shutter-in-horizontal.scss */
.hvr-shutter-in-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e1e1e1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 25, ../sass/vendor/effects/background-transitions/_shutter-in-horizontal.scss */
.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
    color: white;
}

/* line 30, ../sass/vendor/effects/background-transitions/_shutter-in-horizontal.scss */
.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

/* Shutter Out Horizontal */
/* line 328, ../sass/vendor/_hover.scss */
.hvr-shutter-out-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 9, ../sass/vendor/effects/background-transitions/_shutter-out-horizontal.scss */
.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2098D1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 25, ../sass/vendor/effects/background-transitions/_shutter-out-horizontal.scss */
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
    color: white;
}

/* line 30, ../sass/vendor/effects/background-transitions/_shutter-out-horizontal.scss */
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Shutter In Vertical */
/* line 335, ../sass/vendor/_hover.scss */
.hvr-shutter-in-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #2098D1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 9, ../sass/vendor/effects/background-transitions/_shutter-in-vertical.scss */
.hvr-shutter-in-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e1e1e1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 25, ../sass/vendor/effects/background-transitions/_shutter-in-vertical.scss */
.hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
    color: white;
}

/* line 30, ../sass/vendor/effects/background-transitions/_shutter-in-vertical.scss */
.hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

/* Shutter Out Vertical */
/* line 342, ../sass/vendor/_hover.scss */
.hvr-shutter-out-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 9, ../sass/vendor/effects/background-transitions/_shutter-out-vertical.scss */
.hvr-shutter-out-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2098D1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 25, ../sass/vendor/effects/background-transitions/_shutter-out-vertical.scss */
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
    color: white;
}

/* line 30, ../sass/vendor/effects/background-transitions/_shutter-out-vertical.scss */
.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/* BORDER TRANSITIONS */
/* Border Fade */
/* line 351, ../sass/vendor/_hover.scss */
.hvr-border-fade {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
    box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px transparent;
    /* Hack to improve aliasing on mobile/tablet devices */
}

/* line 12, ../sass/vendor/effects/border-transitions/_border-fade.scss */
.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
    box-shadow: inset 0 0 0 4px #2098D1, 0 0 1px transparent;
    /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */
/* line 358, ../sass/vendor/_hover.scss */
.hvr-hollow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background;
    transition-property: background;
    box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px transparent;
    /* Hack to improve aliasing on mobile/tablet devices */
}

/* line 12, ../sass/vendor/effects/border-transitions/_hollow.scss */
.hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
    background: none;
}

/* Trim */
/* line 365, ../sass/vendor/_hover.scss */
.hvr-trim {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 9, ../sass/vendor/effects/border-transitions/_trim.scss */
.hvr-trim:before {
    content: '';
    position: absolute;
    border: white solid 4px;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

/* line 22, ../sass/vendor/effects/border-transitions/_trim.scss */
.hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
    opacity: 1;
}

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

@keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

/* line 372, ../sass/vendor/_hover.scss */
.hvr-ripple-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 19, ../sass/vendor/effects/border-transitions/_ripple-out.scss */
.hvr-ripple-out:before {
    content: '';
    position: absolute;
    border: #e1e1e1 solid 6px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* line 30, ../sass/vendor/effects/border-transitions/_ripple-out.scss */
.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
    -webkit-animation-name: hvr-ripple-out;
    animation-name: hvr-ripple-out;
}

/* Ripple In */
@-webkit-keyframes hvr-ripple-in {
    100% {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1;
    }
}

@keyframes hvr-ripple-in {
    100% {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1;
    }
}

/* line 379, ../sass/vendor/_hover.scss */
.hvr-ripple-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 19, ../sass/vendor/effects/border-transitions/_ripple-in.scss */
.hvr-ripple-in:before {
    content: '';
    position: absolute;
    border: #e1e1e1 solid 4px;
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* line 31, ../sass/vendor/effects/border-transitions/_ripple-in.scss */
.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
    -webkit-animation-name: hvr-ripple-in;
    animation-name: hvr-ripple-in;
}

/* Outline Out */
/* line 386, ../sass/vendor/_hover.scss */
.hvr-outline-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 9, ../sass/vendor/effects/border-transitions/_outline-out.scss */
.hvr-outline-out:before {
    content: '';
    position: absolute;
    border: #e1e1e1 solid 4px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: top, right, bottom, left;
    transition-property: top, right, bottom, left;
}

/* line 21, ../sass/vendor/effects/border-transitions/_outline-out.scss */
.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
}

/* Outline In */
/* line 393, ../sass/vendor/_hover.scss */
.hvr-outline-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 9, ../sass/vendor/effects/border-transitions/_outline-in.scss */
.hvr-outline-in:before {
    pointer-events: none;
    content: '';
    position: absolute;
    border: #e1e1e1 solid 4px;
    top: -16px;
    right: -16px;
    bottom: -16px;
    left: -16px;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: top, right, bottom, left;
    transition-property: top, right, bottom, left;
}

/* line 23, ../sass/vendor/effects/border-transitions/_outline-in.scss */
.hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    opacity: 1;
}

/* Round Corners */
/* line 400, ../sass/vendor/_hover.scss */
.hvr-round-corners {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: border-radius;
    transition-property: border-radius;
}

/* line 7, ../sass/vendor/effects/border-transitions/_round-corners.scss */
.hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
    border-radius: 1em;
}

/* Underline From Left */
/* line 407, ../sass/vendor/_hover.scss */
.hvr-underline-from-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_underline-from-left.scss */
.hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 27, ../sass/vendor/effects/border-transitions/_underline-from-left.scss */
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
    right: 0;
}

/* Underline From Center */
/* line 414, ../sass/vendor/_hover.scss */
.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_underline-from-center.scss */
.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 27, ../sass/vendor/effects/border-transitions/_underline-from-center.scss */
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
}

/* Underline From Right */
/* line 421, ../sass/vendor/_hover.scss */
.hvr-underline-from-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_underline-from-right.scss */
.hvr-underline-from-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 100%;
    right: 0;
    bottom: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 27, ../sass/vendor/effects/border-transitions/_underline-from-right.scss */
.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
    left: 0;
}

/* Overline From Left */
/* line 428, ../sass/vendor/_hover.scss */
.hvr-overline-from-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_overline-from-left.scss */
.hvr-overline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    top: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 27, ../sass/vendor/effects/border-transitions/_overline-from-left.scss */
.hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
    right: 0;
}

/* Overline From Center */
/* line 435, ../sass/vendor/_hover.scss */
.hvr-overline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_overline-from-center.scss */
.hvr-overline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    top: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 27, ../sass/vendor/effects/border-transitions/_overline-from-center.scss */
.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
    left: 0;
    right: 0;
}

/* Overline From Right */
/* line 442, ../sass/vendor/_hover.scss */
.hvr-overline-from-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_overline-from-right.scss */
.hvr-overline-from-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 100%;
    right: 0;
    top: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 27, ../sass/vendor/effects/border-transitions/_overline-from-right.scss */
.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
    left: 0;
}

/* Reveal */
/* line 449, ../sass/vendor/_hover.scss */
.hvr-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_reveal.scss */
.hvr-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-color: #2098D1;
    border-style: solid;
    border-width: 0;
    -webkit-transition-property: border-width;
    transition-property: border-width;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 29, ../sass/vendor/effects/border-transitions/_reveal.scss */
.hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    border-width: 4px;
}

/* Underline Reveal */
/* line 456, ../sass/vendor/_hover.scss */
.hvr-underline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_underline-reveal.scss */
.hvr-underline-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 28, ../sass/vendor/effects/border-transitions/_underline-reveal.scss */
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Overline Reveal */
/* line 463, ../sass/vendor/_hover.scss */
.hvr-overline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

/* line 9, ../sass/vendor/effects/border-transitions/_overline-reveal.scss */
.hvr-overline-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 28, ../sass/vendor/effects/border-transitions/_overline-reveal.scss */
.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* SHADOW/GLOW TRANSITIONS */
/* Glow */
/* line 472, ../sass/vendor/_hover.scss */
.hvr-glow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

/* line 7, ../sass/vendor/effects/shadow-and-glow-transitions/_glow.scss */
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Shadow */
/* line 479, ../sass/vendor/_hover.scss */
.hvr-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

/* line 7, ../sass/vendor/effects/shadow-and-glow-transitions/_shadow.scss */
.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Grow Shadow */
/* line 486, ../sass/vendor/_hover.scss */
.hvr-grow-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

/* line 7, ../sass/vendor/effects/shadow-and-glow-transitions/_grow-shadow.scss */
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* Box Shadow Outset */
/* line 493, ../sass/vendor/_hover.scss */
.hvr-box-shadow-outset {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

/* line 7, ../sass/vendor/effects/shadow-and-glow-transitions/_box-shadow-outset.scss */
.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */
/* line 500, ../sass/vendor/_hover.scss */
.hvr-box-shadow-inset {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px transparent;
    /* Hack to improve aliasing on mobile/tablet devices */
}

/* line 10, ../sass/vendor/effects/shadow-and-glow-transitions/_box-shadow-inset.scss */
.hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px transparent;
    /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */
/* line 507, ../sass/vendor/_hover.scss */
.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 8, ../sass/vendor/effects/shadow-and-glow-transitions/_float-shadow.scss */
.hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}

/* line 24, ../sass/vendor/effects/shadow-and-glow-transitions/_float-shadow.scss */
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    /* move the element up by 5px */
}

/* line 29, ../sass/vendor/effects/shadow-and-glow-transitions/_float-shadow.scss */
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Shadow Radial */
/* line 514, ../sass/vendor/_hover.scss */
.hvr-shadow-radial {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/shadow-and-glow-transitions/_shadow-radial.scss */
.hvr-shadow-radial:before, .hvr-shadow-radial:after {
    pointer-events: none;
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-repeat: no-repeat;
    height: 5px;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

/* line 21, ../sass/vendor/effects/shadow-and-glow-transitions/_shadow-radial.scss */
.hvr-shadow-radial:before {
    bottom: 100%;
    background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
    background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

/* line 27, ../sass/vendor/effects/shadow-and-glow-transitions/_shadow-radial.scss */
.hvr-shadow-radial:after {
    top: 100%;
    background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
    background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

/* line 33, ../sass/vendor/effects/shadow-and-glow-transitions/_shadow-radial.scss */
.hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
    opacity: 1;
}

/* SPEECH BUBBLES */
/* Bubble Top */
/* line 522, ../sass/vendor/_hover.scss */
.hvr-bubble-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/speech-bubbles/_bubble-top.scss */
.hvr-bubble-top:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    left: calc(50% - 10px);
    top: 0;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #e1e1e1 transparent;
}

/* line 20, ../sass/vendor/effects/speech-bubbles/_bubble-top.scss */
.hvr-bubble-top:hover:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:active:before {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* Bubble Right */
/* line 529, ../sass/vendor/_hover.scss */
.hvr-bubble-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/speech-bubbles/_bubble-right.scss */
.hvr-bubble-right:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    top: calc(50% - 10px);
    right: 0;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #e1e1e1;
}

/* line 20, ../sass/vendor/effects/speech-bubbles/_bubble-right.scss */
.hvr-bubble-right:hover:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:active:before {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

/* Bubble Bottom */
/* line 536, ../sass/vendor/_hover.scss */
.hvr-bubble-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/speech-bubbles/_bubble-bottom.scss */
.hvr-bubble-bottom:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    left: calc(50% - 10px);
    bottom: 0;
    border-width: 10px 10px 0 10px;
    border-color: #e1e1e1 transparent transparent transparent;
}

/* line 20, ../sass/vendor/effects/speech-bubbles/_bubble-bottom.scss */
.hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

/* Bubble Left */
/* line 543, ../sass/vendor/_hover.scss */
.hvr-bubble-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/speech-bubbles/_bubble-left.scss */
.hvr-bubble-left:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    top: calc(50% - 10px);
    left: 0;
    border-width: 10px 10px 10px 0;
    border-color: transparent #e1e1e1 transparent transparent;
}

/* line 20, ../sass/vendor/effects/speech-bubbles/_bubble-left.scss */
.hvr-bubble-left:hover:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:active:before {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

/* Bubble Float Top */
/* line 550, ../sass/vendor/_hover.scss */
.hvr-bubble-float-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 8, ../sass/vendor/effects/speech-bubbles/_bubble-float-top.scss */
.hvr-bubble-float-top:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: calc(50% - 10px);
    top: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #e1e1e1 transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 21, ../sass/vendor/effects/speech-bubbles/_bubble-float-top.scss */
.hvr-bubble-float-top:hover, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:active {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

/* line 26, ../sass/vendor/effects/speech-bubbles/_bubble-float-top.scss */
.hvr-bubble-float-top:hover:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:active:before {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* Bubble Float Right */
/* line 557, ../sass/vendor/_hover.scss */
.hvr-bubble-float-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 8, ../sass/vendor/effects/speech-bubbles/_bubble-float-right.scss */
.hvr-bubble-float-right:before {
    position: absolute;
    z-index: -1;
    top: calc(50% - 10px);
    right: 0;
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #e1e1e1;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 21, ../sass/vendor/effects/speech-bubbles/_bubble-float-right.scss */
.hvr-bubble-float-right:hover, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:active {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

/* line 26, ../sass/vendor/effects/speech-bubbles/_bubble-float-right.scss */
.hvr-bubble-float-right:hover:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:active:before {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

/* Bubble Float Bottom */
/* line 564, ../sass/vendor/_hover.scss */
.hvr-bubble-float-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 8, ../sass/vendor/effects/speech-bubbles/_bubble-float-bottom.scss */
.hvr-bubble-float-bottom:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: calc(50% - 10px);
    bottom: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #e1e1e1 transparent transparent transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 21, ../sass/vendor/effects/speech-bubbles/_bubble-float-bottom.scss */
.hvr-bubble-float-bottom:hover, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:active {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* line 26, ../sass/vendor/effects/speech-bubbles/_bubble-float-bottom.scss */
.hvr-bubble-float-bottom:hover:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:active:before {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

/* Bubble Float Left */
/* line 571, ../sass/vendor/_hover.scss */
.hvr-bubble-float-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 8, ../sass/vendor/effects/speech-bubbles/_bubble-float-left.scss */
.hvr-bubble-float-left:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: calc(50% - 10px);
    left: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #e1e1e1 transparent transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

/* line 21, ../sass/vendor/effects/speech-bubbles/_bubble-float-left.scss */
.hvr-bubble-float-left:hover, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:active {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

/* line 26, ../sass/vendor/effects/speech-bubbles/_bubble-float-left.scss */
.hvr-bubble-float-left:hover:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:active:before {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

/* ICONS */
/* Icon Back */
/* line 579, ../sass/vendor/_hover.scss */
.hvr-icon-back {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-left: 2.2em;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

/* line 8, ../sass/vendor/effects/icons/_icon-back.scss */
.hvr-icon-back:before {
    content: "\f137";
    position: absolute;
    left: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/icons/_icon-back.scss */
.hvr-icon-back:hover:before, .hvr-icon-back:focus:before, .hvr-icon-back:active:before {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
}

/* Icon Forward */
/* line 586, ../sass/vendor/_hover.scss */
.hvr-icon-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

/* line 8, ../sass/vendor/effects/icons/_icon-forward.scss */
.hvr-icon-forward:before {
    content: "\f138";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/icons/_icon-forward.scss */
.hvr-icon-forward:hover:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:active:before {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

/* Icon Down */
@-webkit-keyframes hvr-icon-down {
    0%,
    50%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25%,
    75% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@keyframes hvr-icon-down {
    0%,
    50%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25%,
    75% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

/* Icon Down */
/* line 593, ../sass/vendor/_hover.scss */
.hvr-icon-down {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 20, ../sass/vendor/effects/icons/_icon-down.scss */
.hvr-icon-down:before {
    content: "\f01a";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 33, ../sass/vendor/effects/icons/_icon-down.scss */
.hvr-icon-down:hover:before, .hvr-icon-down:focus:before, .hvr-icon-down:active:before {
    -webkit-animation-name: hvr-icon-down;
    animation-name: hvr-icon-down;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/* Icon Up */
@-webkit-keyframes hvr-icon-up {
    0%,
    50%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25%,
    75% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes hvr-icon-up {
    0%,
    50%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25%,
    75% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

/* Icon Up */
/* line 600, ../sass/vendor/_hover.scss */
.hvr-icon-up {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 20, ../sass/vendor/effects/icons/_icon-up.scss */
.hvr-icon-up:before {
    content: "\f01b";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 33, ../sass/vendor/effects/icons/_icon-up.scss */
.hvr-icon-up:hover:before, .hvr-icon-up:focus:before, .hvr-icon-up:active:before {
    -webkit-animation-name: hvr-icon-up;
    animation-name: hvr-icon-up;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/* Icon Spin */
/* line 607, ../sass/vendor/_hover.scss */
.hvr-icon-spin {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 7, ../sass/vendor/effects/icons/_icon-spin.scss */
.hvr-icon-spin:before {
    content: "\f021";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

/* line 22, ../sass/vendor/effects/icons/_icon-spin.scss */
.hvr-icon-spin:hover:before, .hvr-icon-spin:focus:before, .hvr-icon-spin:active:before {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

/* Icon Drop */
@-webkit-keyframes hvr-icon-drop {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    51%,
    100% {
        opacity: 1;
    }
}

@keyframes hvr-icon-drop {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    51%,
    100% {
        opacity: 1;
    }
}

/* Icon Drop */
/* line 614, ../sass/vendor/_hover.scss */
.hvr-icon-drop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 25, ../sass/vendor/effects/icons/_icon-drop.scss */
.hvr-icon-drop:before {
    content: "\f041";
    position: absolute;
    right: 1em;
    opacity: 1;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 39, ../sass/vendor/effects/icons/_icon-drop.scss */
.hvr-icon-drop:hover:before, .hvr-icon-drop:focus:before, .hvr-icon-drop:active:before {
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-animation-name: hvr-icon-drop;
    animation-name: hvr-icon-drop;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Icon Fade */
/* line 621, ../sass/vendor/_hover.scss */
.hvr-icon-fade {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 7, ../sass/vendor/effects/icons/_icon-fade.scss */
.hvr-icon-fade:before {
    content: "\f00c";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color;
    transition-property: color;
}

/* line 22, ../sass/vendor/effects/icons/_icon-fade.scss */
.hvr-icon-fade:hover:before, .hvr-icon-fade:focus:before, .hvr-icon-fade:active:before {
    color: #0F9E5E;
}

/* Icon Float Away */
@-webkit-keyframes hvr-icon-float-away {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-1em);
        transform: translateY(-1em);
    }
}

@keyframes hvr-icon-float-away {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-1em);
        transform: translateY(-1em);
    }
}

/* Icon Float Away */
/* line 628, ../sass/vendor/_hover.scss */
.hvr-icon-float-away {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 19, ../sass/vendor/effects/icons/_icon-float-away.scss */
.hvr-icon-float-away:before, .hvr-icon-float-away:after {
    content: "\f055";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
}

/* line 28, ../sass/vendor/effects/icons/_icon-float-away.scss */
.hvr-icon-float-away:after {
    opacity: 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/* line 38, ../sass/vendor/effects/icons/_icon-float-away.scss */
.hvr-icon-float-away:hover:after, .hvr-icon-float-away:focus:after, .hvr-icon-float-away:active:after {
    -webkit-animation-name: hvr-icon-float-away;
    animation-name: hvr-icon-float-away;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/* Icon Sink Away */
@-webkit-keyframes hvr-icon-sink-away {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(1em);
        transform: translateY(1em);
    }
}

@keyframes hvr-icon-sink-away {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(1em);
        transform: translateY(1em);
    }
}

/* Icon Sink Away */
/* line 635, ../sass/vendor/_hover.scss */
.hvr-icon-sink-away {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 19, ../sass/vendor/effects/icons/_icon-sink-away.scss */
.hvr-icon-sink-away:before, .hvr-icon-sink-away:after {
    content: "\f056";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 29, ../sass/vendor/effects/icons/_icon-sink-away.scss */
.hvr-icon-sink-away:after {
    opacity: 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/* line 39, ../sass/vendor/effects/icons/_icon-sink-away.scss */
.hvr-icon-sink-away:hover:after, .hvr-icon-sink-away:focus:after, .hvr-icon-sink-away:active:after {
    -webkit-animation-name: hvr-icon-sink-away;
    animation-name: hvr-icon-sink-away;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/* Icon Grow */
/* line 642, ../sass/vendor/_hover.scss */
.hvr-icon-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 8, ../sass/vendor/effects/icons/_icon-grow.scss */
.hvr-icon-grow:before {
    content: "\f118";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/icons/_icon-grow.scss */
.hvr-icon-grow:hover:before, .hvr-icon-grow:focus:before, .hvr-icon-grow:active:before {
    -webkit-transform: scale(1.3) translateZ(0);
    transform: scale(1.3) translateZ(0);
}

/* Icon Shrink */
/* line 649, ../sass/vendor/_hover.scss */
.hvr-icon-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 8, ../sass/vendor/effects/icons/_icon-shrink.scss */
.hvr-icon-shrink:before {
    content: "\f119";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/icons/_icon-shrink.scss */
.hvr-icon-shrink:hover:before, .hvr-icon-shrink:focus:before, .hvr-icon-shrink:active:before {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

/* Icon Pulse */
@-webkit-keyframes hvr-icon-pulse {
    25% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    75% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes hvr-icon-pulse {
    25% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    75% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

/* line 656, ../sass/vendor/_hover.scss */
.hvr-icon-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 17, ../sass/vendor/effects/icons/_icon-pulse.scss */
.hvr-icon-pulse:before {
    content: "\f015";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 31, ../sass/vendor/effects/icons/_icon-pulse.scss */
.hvr-icon-pulse:hover:before, .hvr-icon-pulse:focus:before, .hvr-icon-pulse:active:before {
    -webkit-animation-name: hvr-icon-pulse;
    animation-name: hvr-icon-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Icon Pulse Grow */
@-webkit-keyframes hvr-icon-pulse-grow {
    to {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

@keyframes hvr-icon-pulse-grow {
    to {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

/* line 663, ../sass/vendor/_hover.scss */
.hvr-icon-pulse-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 13, ../sass/vendor/effects/icons/_icon-pulse-grow.scss */
.hvr-icon-pulse-grow:before {
    content: "\f015";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 27, ../sass/vendor/effects/icons/_icon-pulse-grow.scss */
.hvr-icon-pulse-grow:hover:before, .hvr-icon-pulse-grow:focus:before, .hvr-icon-pulse-grow:active:before {
    -webkit-animation-name: hvr-icon-pulse-grow;
    animation-name: hvr-icon-pulse-grow;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Icon Pulse Shrink */
@-webkit-keyframes hvr-icon-pulse-shrink {
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes hvr-icon-pulse-shrink {
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

/* line 670, ../sass/vendor/_hover.scss */
.hvr-icon-pulse-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
}

/* line 13, ../sass/vendor/effects/icons/_icon-pulse-shrink.scss */
.hvr-icon-pulse-shrink:before {
    content: "\f015";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 27, ../sass/vendor/effects/icons/_icon-pulse-shrink.scss */
.hvr-icon-pulse-shrink:hover:before, .hvr-icon-pulse-shrink:focus:before, .hvr-icon-pulse-shrink:active:before {
    -webkit-animation-name: hvr-icon-pulse-shrink;
    animation-name: hvr-icon-pulse-shrink;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Icon Push */
@-webkit-keyframes hvr-icon-push {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes hvr-icon-push {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

/* line 677, ../sass/vendor/_hover.scss */
.hvr-icon-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 14, ../sass/vendor/effects/icons/_icon-push.scss */
.hvr-icon-push:before {
    content: "\f006";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 30, ../sass/vendor/effects/icons/_icon-push.scss */
.hvr-icon-push:hover:before, .hvr-icon-push:focus:before, .hvr-icon-push:active:before {
    -webkit-animation-name: hvr-icon-push;
    animation-name: hvr-icon-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Icon Pop */
@-webkit-keyframes hvr-icon-pop {
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes hvr-icon-pop {
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

/* line 684, ../sass/vendor/_hover.scss */
.hvr-icon-pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 14, ../sass/vendor/effects/icons/_icon-pop.scss */
.hvr-icon-pop:before {
    content: "\f005";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 30, ../sass/vendor/effects/icons/_icon-pop.scss */
.hvr-icon-pop:hover:before, .hvr-icon-pop:focus:before, .hvr-icon-pop:active:before {
    -webkit-animation-name: hvr-icon-pop;
    animation-name: hvr-icon-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Icon Bounce */
/* line 691, ../sass/vendor/_hover.scss */
.hvr-icon-bounce {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 9, ../sass/vendor/effects/icons/_icon-bounce.scss */
.hvr-icon-bounce:before {
    content: "\f087";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 25, ../sass/vendor/effects/icons/_icon-bounce.scss */
.hvr-icon-bounce:hover:before, .hvr-icon-bounce:focus:before, .hvr-icon-bounce:active:before {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Icon Rotate */
/* line 698, ../sass/vendor/_hover.scss */
.hvr-icon-rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 10, ../sass/vendor/effects/icons/_icon-rotate.scss */
.hvr-icon-rotate:before {
    content: "\f0c6";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 26, ../sass/vendor/effects/icons/_icon-rotate.scss */
.hvr-icon-rotate:hover:before, .hvr-icon-rotate:focus:before, .hvr-icon-rotate:active:before {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}

/* Icon Grow Rotate */
/* line 705, ../sass/vendor/_hover.scss */
.hvr-icon-grow-rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 10, ../sass/vendor/effects/icons/_icon-grow-rotate.scss */
.hvr-icon-grow-rotate:before {
    content: "\f095";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 26, ../sass/vendor/effects/icons/_icon-grow-rotate.scss */
.hvr-icon-grow-rotate:hover:before, .hvr-icon-grow-rotate:focus:before, .hvr-icon-grow-rotate:active:before {
    -webkit-transform: scale(1.5) rotate(12deg);
    transform: scale(1.5) rotate(12deg);
}

/* Icon Float */
/* line 712, ../sass/vendor/_hover.scss */
.hvr-icon-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 8, ../sass/vendor/effects/icons/_icon-float.scss */
.hvr-icon-float:before {
    content: "\f01b";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/icons/_icon-float.scss */
.hvr-icon-float:hover:before, .hvr-icon-float:focus:before, .hvr-icon-float:active:before {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

/* Icon Sink */
/* line 719, ../sass/vendor/_hover.scss */
.hvr-icon-sink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 8, ../sass/vendor/effects/icons/_icon-sink.scss */
.hvr-icon-sink:before {
    content: "\f01a";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 24, ../sass/vendor/effects/icons/_icon-sink.scss */
.hvr-icon-sink:hover:before, .hvr-icon-sink:focus:before, .hvr-icon-sink:active:before {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
}

/* Icon Bob */
@-webkit-keyframes hvr-icon-bob {
    0% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    50% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes hvr-icon-bob {
    0% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    50% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@-webkit-keyframes hvr-icon-bob-float {
    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes hvr-icon-bob-float {
    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

/* line 726, ../sass/vendor/_hover.scss */
.hvr-icon-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 26, ../sass/vendor/effects/icons/_icon-bob.scss */
.hvr-icon-bob:before {
    content: "\f077";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 39, ../sass/vendor/effects/icons/_icon-bob.scss */
.hvr-icon-bob:hover:before, .hvr-icon-bob:focus:before, .hvr-icon-bob:active:before {
    -webkit-animation-name: hvr-icon-bob-float, hvr-icon-bob;
    animation-name: hvr-icon-bob-float, hvr-icon-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

/* Icon Hang */
@-webkit-keyframes hvr-icon-hang {
    0% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    50% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    100% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@keyframes hvr-icon-hang {
    0% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    50% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    100% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@-webkit-keyframes hvr-icon-hang-sink {
    100% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@keyframes hvr-icon-hang-sink {
    100% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

/* line 733, ../sass/vendor/_hover.scss */
.hvr-icon-hang {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 26, ../sass/vendor/effects/icons/_icon-hang.scss */
.hvr-icon-hang:before {
    content: "\f078";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 39, ../sass/vendor/effects/icons/_icon-hang.scss */
.hvr-icon-hang:hover:before, .hvr-icon-hang:focus:before, .hvr-icon-hang:active:before {
    -webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
    animation-name: hvr-icon-hang-sink, hvr-icon-hang;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

/* Icon Wobble Horizontal */
@-webkit-keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 740, ../sass/vendor/_hover.scss */
.hvr-icon-wobble-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 34, ../sass/vendor/effects/icons/_icon-wobble-horizontal.scss */
.hvr-icon-wobble-horizontal:before {
    content: "\f061";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 47, ../sass/vendor/effects/icons/_icon-wobble-horizontal.scss */
.hvr-icon-wobble-horizontal:hover:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:active:before {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Icon Wobble Vertical */
@-webkit-keyframes hvr-icon-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    33.3% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes hvr-icon-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    33.3% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* line 747, ../sass/vendor/_hover.scss */
.hvr-icon-wobble-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 34, ../sass/vendor/effects/icons/_icon-wobble-vertical.scss */
.hvr-icon-wobble-vertical:before {
    content: "\f062";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 47, ../sass/vendor/effects/icons/_icon-wobble-vertical.scss */
.hvr-icon-wobble-vertical:hover:before, .hvr-icon-wobble-vertical:focus:before, .hvr-icon-wobble-vertical:active:before {
    -webkit-animation-name: hvr-icon-wobble-vertical;
    animation-name: hvr-icon-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Icon Buzz */
@-webkit-keyframes hvr-icon-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@keyframes hvr-icon-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

/* line 754, ../sass/vendor/_hover.scss */
.hvr-icon-buzz {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 18, ../sass/vendor/effects/icons/_icon-buzz.scss */
.hvr-icon-buzz:before {
    content: "\f017";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 31, ../sass/vendor/effects/icons/_icon-buzz.scss */
.hvr-icon-buzz:hover:before, .hvr-icon-buzz:focus:before, .hvr-icon-buzz:active:before {
    -webkit-animation-name: hvr-icon-buzz;
    animation-name: hvr-icon-buzz;
    -webkit-animation-duration: 0.15s;
    animation-duration: 0.15s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Icon Buzz Out */
@-webkit-keyframes hvr-icon-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes hvr-icon-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

/* line 761, ../sass/vendor/_hover.scss */
.hvr-icon-buzz-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 2.2em;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 50, ../sass/vendor/effects/icons/_icon-buzz-out.scss */
.hvr-icon-buzz-out:before {
    content: "\f023";
    position: absolute;
    right: 1em;
    padding: 0 1px;
    font-family: FontAwesome;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 63, ../sass/vendor/effects/icons/_icon-buzz-out.scss */
.hvr-icon-buzz-out:hover:before, .hvr-icon-buzz-out:focus:before, .hvr-icon-buzz-out:active:before {
    -webkit-animation-name: hvr-icon-buzz-out;
    animation-name: hvr-icon-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* CURLS */
/* Curl Top Left */
/* line 769, ../sass/vendor/_hover.scss */
.hvr-curl-top-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/curls/_curl-top-left.scss */
.hvr-curl-top-left:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(135deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#000000');
    /*For IE7-8-9*/
    z-index: 1000;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

/* line 30, ../sass/vendor/effects/curls/_curl-top-left.scss */
.hvr-curl-top-left:hover:before, .hvr-curl-top-left:focus:before, .hvr-curl-top-left:active:before {
    width: 25px;
    height: 25px;
}

/* Curl Top Right */
/* line 776, ../sass/vendor/_hover.scss */
.hvr-curl-top-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/curls/_curl-top-right.scss */
.hvr-curl-top-right:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    right: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

/* line 27, ../sass/vendor/effects/curls/_curl-top-right.scss */
.hvr-curl-top-right:hover:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:active:before {
    width: 25px;
    height: 25px;
}

/* Curl Bottom Right */
/* line 783, ../sass/vendor/_hover.scss */
.hvr-curl-bottom-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/curls/_curl-bottom-right.scss */
.hvr-curl-bottom-right:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    bottom: 0;
    right: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

/* line 27, ../sass/vendor/effects/curls/_curl-bottom-right.scss */
.hvr-curl-bottom-right:hover:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:active:before {
    width: 25px;
    height: 25px;
}

/* Curl Bottom Left */
/* line 790, ../sass/vendor/_hover.scss */
.hvr-curl-bottom-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

/* line 6, ../sass/vendor/effects/curls/_curl-bottom-left.scss */
.hvr-curl-bottom-left:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    bottom: 0;
    left: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(45deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

/* line 27, ../sass/vendor/effects/curls/_curl-bottom-left.scss */
.hvr-curl-bottom-left:hover:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:active:before {
    width: 25px;
    height: 25px;
}

/**
* Web Application Prefix Apply For Making Owner Styles
*/
/**
 *   Blocks Layout Selectors
 */
/********* LAYOUT **************/
/* carousel-controls-v1 */
/* carousel-controls-v2 */
/* carousel-controls-v3 */
/****/
/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-1 {
    margin-top: 1px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-1 {
    margin-left: 1px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-1 {
    margin-bottom: 1px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-1 {
    margin-right: 1px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-2 {
    margin-top: 2px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-2 {
    margin-left: 2px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-2 {
    margin-bottom: 2px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-2 {
    margin-right: 2px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-3 {
    margin-top: 3px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-3 {
    margin-left: 3px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-3 {
    margin-bottom: 3px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-3 {
    margin-right: 3px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-4 {
    margin-top: 4px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-4 {
    margin-left: 4px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-4 {
    margin-bottom: 4px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-4 {
    margin-right: 4px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-5 {
    margin-top: 5px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-5 {
    margin-left: 5px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-5 {
    margin-bottom: 5px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-5 {
    margin-right: 5px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-6 {
    margin-top: 6px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-6 {
    margin-left: 6px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-6 {
    margin-bottom: 6px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-6 {
    margin-right: 6px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-7 {
    margin-top: 7px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-7 {
    margin-left: 7px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-7 {
    margin-bottom: 7px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-7 {
    margin-right: 7px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-8 {
    margin-top: 8px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-8 {
    margin-left: 8px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-8 {
    margin-bottom: 8px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-8 {
    margin-right: 8px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-9 {
    margin-top: 9px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-9 {
    margin-left: 9px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-9 {
    margin-bottom: 9px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-9 {
    margin-right: 9px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-10 {
    margin-top: 10px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-10 {
    margin-left: 10px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-10 {
    margin-bottom: 10px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-10 {
    margin-right: 10px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-11 {
    margin-top: 11px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-11 {
    margin-left: 11px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-11 {
    margin-bottom: 11px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-11 {
    margin-right: 11px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-12 {
    margin-top: 12px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-12 {
    margin-left: 12px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-12 {
    margin-bottom: 12px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-12 {
    margin-right: 12px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-13 {
    margin-top: 13px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-13 {
    margin-left: 13px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-13 {
    margin-bottom: 13px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-13 {
    margin-right: 13px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-14 {
    margin-top: 14px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-14 {
    margin-left: 14px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-14 {
    margin-bottom: 14px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-14 {
    margin-right: 14px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-15 {
    margin-top: 15px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-15 {
    margin-left: 15px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-15 {
    margin-bottom: 15px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-15 {
    margin-right: 15px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-16 {
    margin-top: 16px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-16 {
    margin-left: 16px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-16 {
    margin-bottom: 16px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-16 {
    margin-right: 16px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-17 {
    margin-top: 17px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-17 {
    margin-left: 17px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-17 {
    margin-bottom: 17px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-17 {
    margin-right: 17px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-18 {
    margin-top: 18px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-18 {
    margin-left: 18px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-18 {
    margin-bottom: 18px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-18 {
    margin-right: 18px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-19 {
    margin-top: 19px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-19 {
    margin-left: 19px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-19 {
    margin-bottom: 19px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-19 {
    margin-right: 19px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-20 {
    margin-top: 20px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-20 {
    margin-left: 20px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-20 {
    margin-bottom: 20px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-20 {
    margin-right: 20px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-21 {
    margin-top: 21px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-21 {
    margin-left: 21px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-21 {
    margin-bottom: 21px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-21 {
    margin-right: 21px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-22 {
    margin-top: 22px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-22 {
    margin-left: 22px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-22 {
    margin-bottom: 22px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-22 {
    margin-right: 22px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-23 {
    margin-top: 23px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-23 {
    margin-left: 23px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-23 {
    margin-bottom: 23px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-23 {
    margin-right: 23px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-24 {
    margin-top: 24px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-24 {
    margin-left: 24px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-24 {
    margin-bottom: 24px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-24 {
    margin-right: 24px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-25 {
    margin-top: 25px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-25 {
    margin-left: 25px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-25 {
    margin-bottom: 25px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-25 {
    margin-right: 25px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-26 {
    margin-top: 26px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-26 {
    margin-left: 26px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-26 {
    margin-bottom: 26px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-26 {
    margin-right: 26px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-27 {
    margin-top: 27px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-27 {
    margin-left: 27px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-27 {
    margin-bottom: 27px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-27 {
    margin-right: 27px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-28 {
    margin-top: 28px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-28 {
    margin-left: 28px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-28 {
    margin-bottom: 28px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-28 {
    margin-right: 28px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-29 {
    margin-top: 29px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-29 {
    margin-left: 29px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-29 {
    margin-bottom: 29px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-29 {
    margin-right: 29px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-30 {
    margin-top: 30px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-30 {
    margin-left: 30px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-30 {
    margin-bottom: 30px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-30 {
    margin-right: 30px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-31 {
    margin-top: 31px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-31 {
    margin-left: 31px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-31 {
    margin-bottom: 31px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-31 {
    margin-right: 31px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-32 {
    margin-top: 32px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-32 {
    margin-left: 32px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-32 {
    margin-bottom: 32px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-32 {
    margin-right: 32px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-33 {
    margin-top: 33px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-33 {
    margin-left: 33px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-33 {
    margin-bottom: 33px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-33 {
    margin-right: 33px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-34 {
    margin-top: 34px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-34 {
    margin-left: 34px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-34 {
    margin-bottom: 34px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-34 {
    margin-right: 34px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-35 {
    margin-top: 35px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-35 {
    margin-left: 35px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-35 {
    margin-bottom: 35px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-35 {
    margin-right: 35px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-36 {
    margin-top: 36px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-36 {
    margin-left: 36px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-36 {
    margin-bottom: 36px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-36 {
    margin-right: 36px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-37 {
    margin-top: 37px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-37 {
    margin-left: 37px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-37 {
    margin-bottom: 37px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-37 {
    margin-right: 37px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-38 {
    margin-top: 38px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-38 {
    margin-left: 38px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-38 {
    margin-bottom: 38px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-38 {
    margin-right: 38px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-39 {
    margin-top: 39px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-39 {
    margin-left: 39px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-39 {
    margin-bottom: 39px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-39 {
    margin-right: 39px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-40 {
    margin-top: 40px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-40 {
    margin-left: 40px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-40 {
    margin-bottom: 40px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-40 {
    margin-right: 40px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-41 {
    margin-top: 41px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-41 {
    margin-left: 41px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-41 {
    margin-bottom: 41px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-41 {
    margin-right: 41px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-42 {
    margin-top: 42px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-42 {
    margin-left: 42px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-42 {
    margin-bottom: 42px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-42 {
    margin-right: 42px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-43 {
    margin-top: 43px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-43 {
    margin-left: 43px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-43 {
    margin-bottom: 43px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-43 {
    margin-right: 43px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-44 {
    margin-top: 44px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-44 {
    margin-left: 44px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-44 {
    margin-bottom: 44px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-44 {
    margin-right: 44px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-45 {
    margin-top: 45px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-45 {
    margin-left: 45px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-45 {
    margin-bottom: 45px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-45 {
    margin-right: 45px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-46 {
    margin-top: 46px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-46 {
    margin-left: 46px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-46 {
    margin-bottom: 46px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-46 {
    margin-right: 46px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-47 {
    margin-top: 47px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-47 {
    margin-left: 47px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-47 {
    margin-bottom: 47px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-47 {
    margin-right: 47px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-48 {
    margin-top: 48px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-48 {
    margin-left: 48px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-48 {
    margin-bottom: 48px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-48 {
    margin-right: 48px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-49 {
    margin-top: 49px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-49 {
    margin-left: 49px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-49 {
    margin-bottom: 49px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-49 {
    margin-right: 49px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-50 {
    margin-top: 50px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-50 {
    margin-left: 50px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-50 {
    margin-bottom: 50px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-50 {
    margin-right: 50px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-51 {
    margin-top: 51px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-51 {
    margin-left: 51px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-51 {
    margin-bottom: 51px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-51 {
    margin-right: 51px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-52 {
    margin-top: 52px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-52 {
    margin-left: 52px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-52 {
    margin-bottom: 52px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-52 {
    margin-right: 52px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-53 {
    margin-top: 53px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-53 {
    margin-left: 53px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-53 {
    margin-bottom: 53px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-53 {
    margin-right: 53px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-54 {
    margin-top: 54px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-54 {
    margin-left: 54px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-54 {
    margin-bottom: 54px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-54 {
    margin-right: 54px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-55 {
    margin-top: 55px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-55 {
    margin-left: 55px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-55 {
    margin-bottom: 55px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-55 {
    margin-right: 55px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-56 {
    margin-top: 56px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-56 {
    margin-left: 56px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-56 {
    margin-bottom: 56px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-56 {
    margin-right: 56px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-57 {
    margin-top: 57px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-57 {
    margin-left: 57px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-57 {
    margin-bottom: 57px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-57 {
    margin-right: 57px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-58 {
    margin-top: 58px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-58 {
    margin-left: 58px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-58 {
    margin-bottom: 58px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-58 {
    margin-right: 58px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-59 {
    margin-top: 59px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-59 {
    margin-left: 59px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-59 {
    margin-bottom: 59px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-59 {
    margin-right: 59px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-60 {
    margin-top: 60px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-60 {
    margin-left: 60px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-60 {
    margin-bottom: 60px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-60 {
    margin-right: 60px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-61 {
    margin-top: 61px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-61 {
    margin-left: 61px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-61 {
    margin-bottom: 61px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-61 {
    margin-right: 61px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-62 {
    margin-top: 62px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-62 {
    margin-left: 62px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-62 {
    margin-bottom: 62px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-62 {
    margin-right: 62px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-63 {
    margin-top: 63px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-63 {
    margin-left: 63px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-63 {
    margin-bottom: 63px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-63 {
    margin-right: 63px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-64 {
    margin-top: 64px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-64 {
    margin-left: 64px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-64 {
    margin-bottom: 64px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-64 {
    margin-right: 64px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-65 {
    margin-top: 65px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-65 {
    margin-left: 65px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-65 {
    margin-bottom: 65px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-65 {
    margin-right: 65px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-66 {
    margin-top: 66px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-66 {
    margin-left: 66px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-66 {
    margin-bottom: 66px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-66 {
    margin-right: 66px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-67 {
    margin-top: 67px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-67 {
    margin-left: 67px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-67 {
    margin-bottom: 67px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-67 {
    margin-right: 67px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-68 {
    margin-top: 68px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-68 {
    margin-left: 68px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-68 {
    margin-bottom: 68px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-68 {
    margin-right: 68px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-69 {
    margin-top: 69px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-69 {
    margin-left: 69px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-69 {
    margin-bottom: 69px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-69 {
    margin-right: 69px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-70 {
    margin-top: 70px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-70 {
    margin-left: 70px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-70 {
    margin-bottom: 70px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-70 {
    margin-right: 70px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-71 {
    margin-top: 71px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-71 {
    margin-left: 71px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-71 {
    margin-bottom: 71px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-71 {
    margin-right: 71px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-72 {
    margin-top: 72px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-72 {
    margin-left: 72px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-72 {
    margin-bottom: 72px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-72 {
    margin-right: 72px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-73 {
    margin-top: 73px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-73 {
    margin-left: 73px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-73 {
    margin-bottom: 73px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-73 {
    margin-right: 73px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-74 {
    margin-top: 74px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-74 {
    margin-left: 74px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-74 {
    margin-bottom: 74px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-74 {
    margin-right: 74px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-75 {
    margin-top: 75px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-75 {
    margin-left: 75px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-75 {
    margin-bottom: 75px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-75 {
    margin-right: 75px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-76 {
    margin-top: 76px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-76 {
    margin-left: 76px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-76 {
    margin-bottom: 76px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-76 {
    margin-right: 76px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-77 {
    margin-top: 77px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-77 {
    margin-left: 77px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-77 {
    margin-bottom: 77px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-77 {
    margin-right: 77px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-78 {
    margin-top: 78px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-78 {
    margin-left: 78px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-78 {
    margin-bottom: 78px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-78 {
    margin-right: 78px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-79 {
    margin-top: 79px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-79 {
    margin-left: 79px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-79 {
    margin-bottom: 79px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-79 {
    margin-right: 79px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-top-80 {
    margin-top: 80px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-left-80 {
    margin-left: 80px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-bottom-80 {
    margin-bottom: 80px !important;
}

/* line 489, ../sass/mixins/_template-mixins.scss */
.margin-right-80 {
    margin-right: 80px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-1 {
    padding-top: 1px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-1 {
    padding-left: 1px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-1 {
    padding-bottom: 1px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-1 {
    padding-right: 1px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-2 {
    padding-top: 2px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-2 {
    padding-left: 2px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-2 {
    padding-bottom: 2px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-2 {
    padding-right: 2px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-3 {
    padding-top: 3px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-3 {
    padding-left: 3px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-3 {
    padding-bottom: 3px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-3 {
    padding-right: 3px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-4 {
    padding-top: 4px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-4 {
    padding-left: 4px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-4 {
    padding-bottom: 4px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-4 {
    padding-right: 4px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-5 {
    padding-top: 5px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-5 {
    padding-left: 5px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-5 {
    padding-bottom: 5px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-5 {
    padding-right: 5px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-6 {
    padding-top: 6px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-6 {
    padding-left: 6px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-6 {
    padding-bottom: 6px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-6 {
    padding-right: 6px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-7 {
    padding-top: 7px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-7 {
    padding-left: 7px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-7 {
    padding-bottom: 7px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-7 {
    padding-right: 7px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-8 {
    padding-top: 8px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-8 {
    padding-left: 8px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-8 {
    padding-bottom: 8px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-8 {
    padding-right: 8px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-9 {
    padding-top: 9px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-9 {
    padding-left: 9px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-9 {
    padding-bottom: 9px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-9 {
    padding-right: 9px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-10 {
    padding-top: 10px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-10 {
    padding-left: 10px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-10 {
    padding-bottom: 10px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-10 {
    padding-right: 10px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-11 {
    padding-top: 11px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-11 {
    padding-left: 11px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-11 {
    padding-bottom: 11px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-11 {
    padding-right: 11px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-12 {
    padding-top: 12px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-12 {
    padding-left: 12px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-12 {
    padding-bottom: 12px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-12 {
    padding-right: 12px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-13 {
    padding-top: 13px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-13 {
    padding-left: 13px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-13 {
    padding-bottom: 13px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-13 {
    padding-right: 13px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-14 {
    padding-top: 14px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-14 {
    padding-left: 14px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-14 {
    padding-bottom: 14px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-14 {
    padding-right: 14px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-15 {
    padding-top: 15px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-15 {
    padding-left: 15px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-15 {
    padding-bottom: 15px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-15 {
    padding-right: 15px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-16 {
    padding-top: 16px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-16 {
    padding-left: 16px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-16 {
    padding-bottom: 16px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-16 {
    padding-right: 16px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-17 {
    padding-top: 17px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-17 {
    padding-left: 17px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-17 {
    padding-bottom: 17px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-17 {
    padding-right: 17px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-18 {
    padding-top: 18px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-18 {
    padding-left: 18px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-18 {
    padding-bottom: 18px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-18 {
    padding-right: 18px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-19 {
    padding-top: 19px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-19 {
    padding-left: 19px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-19 {
    padding-bottom: 19px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-19 {
    padding-right: 19px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-20 {
    padding-top: 20px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-20 {
    padding-left: 20px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-20 {
    padding-bottom: 20px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-20 {
    padding-right: 20px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-21 {
    padding-top: 21px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-21 {
    padding-left: 21px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-21 {
    padding-bottom: 21px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-21 {
    padding-right: 21px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-22 {
    padding-top: 22px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-22 {
    padding-left: 22px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-22 {
    padding-bottom: 22px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-22 {
    padding-right: 22px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-23 {
    padding-top: 23px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-23 {
    padding-left: 23px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-23 {
    padding-bottom: 23px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-23 {
    padding-right: 23px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-24 {
    padding-top: 24px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-24 {
    padding-left: 24px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-24 {
    padding-bottom: 24px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-24 {
    padding-right: 24px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-25 {
    padding-top: 25px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-25 {
    padding-left: 25px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-25 {
    padding-bottom: 25px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-25 {
    padding-right: 25px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-26 {
    padding-top: 26px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-26 {
    padding-left: 26px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-26 {
    padding-bottom: 26px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-26 {
    padding-right: 26px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-27 {
    padding-top: 27px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-27 {
    padding-left: 27px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-27 {
    padding-bottom: 27px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-27 {
    padding-right: 27px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-28 {
    padding-top: 28px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-28 {
    padding-left: 28px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-28 {
    padding-bottom: 28px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-28 {
    padding-right: 28px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-29 {
    padding-top: 29px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-29 {
    padding-left: 29px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-29 {
    padding-bottom: 29px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-29 {
    padding-right: 29px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-30 {
    padding-top: 30px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-30 {
    padding-left: 30px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-30 {
    padding-bottom: 30px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-30 {
    padding-right: 30px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-31 {
    padding-top: 31px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-31 {
    padding-left: 31px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-31 {
    padding-bottom: 31px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-31 {
    padding-right: 31px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-32 {
    padding-top: 32px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-32 {
    padding-left: 32px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-32 {
    padding-bottom: 32px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-32 {
    padding-right: 32px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-33 {
    padding-top: 33px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-33 {
    padding-left: 33px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-33 {
    padding-bottom: 33px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-33 {
    padding-right: 33px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-34 {
    padding-top: 34px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-34 {
    padding-left: 34px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-34 {
    padding-bottom: 34px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-34 {
    padding-right: 34px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-35 {
    padding-top: 35px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-35 {
    padding-left: 35px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-35 {
    padding-bottom: 35px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-35 {
    padding-right: 35px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-36 {
    padding-top: 36px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-36 {
    padding-left: 36px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-36 {
    padding-bottom: 36px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-36 {
    padding-right: 36px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-37 {
    padding-top: 37px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-37 {
    padding-left: 37px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-37 {
    padding-bottom: 37px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-37 {
    padding-right: 37px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-38 {
    padding-top: 38px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-38 {
    padding-left: 38px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-38 {
    padding-bottom: 38px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-38 {
    padding-right: 38px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-39 {
    padding-top: 39px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-39 {
    padding-left: 39px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-39 {
    padding-bottom: 39px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-39 {
    padding-right: 39px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-40 {
    padding-top: 40px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-40 {
    padding-left: 40px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-40 {
    padding-bottom: 40px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-40 {
    padding-right: 40px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-41 {
    padding-top: 41px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-41 {
    padding-left: 41px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-41 {
    padding-bottom: 41px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-41 {
    padding-right: 41px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-42 {
    padding-top: 42px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-42 {
    padding-left: 42px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-42 {
    padding-bottom: 42px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-42 {
    padding-right: 42px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-43 {
    padding-top: 43px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-43 {
    padding-left: 43px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-43 {
    padding-bottom: 43px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-43 {
    padding-right: 43px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-44 {
    padding-top: 44px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-44 {
    padding-left: 44px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-44 {
    padding-bottom: 44px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-44 {
    padding-right: 44px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-45 {
    padding-top: 45px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-45 {
    padding-left: 45px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-45 {
    padding-bottom: 45px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-45 {
    padding-right: 45px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-46 {
    padding-top: 46px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-46 {
    padding-left: 46px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-46 {
    padding-bottom: 46px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-46 {
    padding-right: 46px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-47 {
    padding-top: 47px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-47 {
    padding-left: 47px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-47 {
    padding-bottom: 47px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-47 {
    padding-right: 47px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-48 {
    padding-top: 48px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-48 {
    padding-left: 48px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-48 {
    padding-bottom: 48px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-48 {
    padding-right: 48px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-49 {
    padding-top: 49px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-49 {
    padding-left: 49px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-49 {
    padding-bottom: 49px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-49 {
    padding-right: 49px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-50 {
    padding-top: 50px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-50 {
    padding-left: 50px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-50 {
    padding-bottom: 50px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-50 {
    padding-right: 50px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-51 {
    padding-top: 51px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-51 {
    padding-left: 51px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-51 {
    padding-bottom: 51px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-51 {
    padding-right: 51px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-52 {
    padding-top: 52px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-52 {
    padding-left: 52px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-52 {
    padding-bottom: 52px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-52 {
    padding-right: 52px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-53 {
    padding-top: 53px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-53 {
    padding-left: 53px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-53 {
    padding-bottom: 53px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-53 {
    padding-right: 53px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-54 {
    padding-top: 54px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-54 {
    padding-left: 54px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-54 {
    padding-bottom: 54px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-54 {
    padding-right: 54px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-55 {
    padding-top: 55px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-55 {
    padding-left: 55px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-55 {
    padding-bottom: 55px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-55 {
    padding-right: 55px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-56 {
    padding-top: 56px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-56 {
    padding-left: 56px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-56 {
    padding-bottom: 56px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-56 {
    padding-right: 56px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-57 {
    padding-top: 57px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-57 {
    padding-left: 57px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-57 {
    padding-bottom: 57px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-57 {
    padding-right: 57px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-58 {
    padding-top: 58px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-58 {
    padding-left: 58px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-58 {
    padding-bottom: 58px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-58 {
    padding-right: 58px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-59 {
    padding-top: 59px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-59 {
    padding-left: 59px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-59 {
    padding-bottom: 59px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-59 {
    padding-right: 59px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-60 {
    padding-top: 60px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-60 {
    padding-left: 60px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-60 {
    padding-bottom: 60px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-60 {
    padding-right: 60px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-61 {
    padding-top: 61px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-61 {
    padding-left: 61px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-61 {
    padding-bottom: 61px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-61 {
    padding-right: 61px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-62 {
    padding-top: 62px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-62 {
    padding-left: 62px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-62 {
    padding-bottom: 62px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-62 {
    padding-right: 62px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-63 {
    padding-top: 63px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-63 {
    padding-left: 63px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-63 {
    padding-bottom: 63px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-63 {
    padding-right: 63px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-64 {
    padding-top: 64px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-64 {
    padding-left: 64px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-64 {
    padding-bottom: 64px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-64 {
    padding-right: 64px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-65 {
    padding-top: 65px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-65 {
    padding-left: 65px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-65 {
    padding-bottom: 65px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-65 {
    padding-right: 65px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-66 {
    padding-top: 66px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-66 {
    padding-left: 66px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-66 {
    padding-bottom: 66px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-66 {
    padding-right: 66px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-67 {
    padding-top: 67px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-67 {
    padding-left: 67px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-67 {
    padding-bottom: 67px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-67 {
    padding-right: 67px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-68 {
    padding-top: 68px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-68 {
    padding-left: 68px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-68 {
    padding-bottom: 68px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-68 {
    padding-right: 68px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-69 {
    padding-top: 69px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-69 {
    padding-left: 69px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-69 {
    padding-bottom: 69px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-69 {
    padding-right: 69px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-70 {
    padding-top: 70px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-70 {
    padding-left: 70px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-70 {
    padding-bottom: 70px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-70 {
    padding-right: 70px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-71 {
    padding-top: 71px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-71 {
    padding-left: 71px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-71 {
    padding-bottom: 71px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-71 {
    padding-right: 71px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-72 {
    padding-top: 72px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-72 {
    padding-left: 72px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-72 {
    padding-bottom: 72px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-72 {
    padding-right: 72px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-73 {
    padding-top: 73px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-73 {
    padding-left: 73px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-73 {
    padding-bottom: 73px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-73 {
    padding-right: 73px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-74 {
    padding-top: 74px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-74 {
    padding-left: 74px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-74 {
    padding-bottom: 74px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-74 {
    padding-right: 74px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-75 {
    padding-top: 75px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-75 {
    padding-left: 75px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-75 {
    padding-bottom: 75px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-75 {
    padding-right: 75px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-76 {
    padding-top: 76px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-76 {
    padding-left: 76px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-76 {
    padding-bottom: 76px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-76 {
    padding-right: 76px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-77 {
    padding-top: 77px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-77 {
    padding-left: 77px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-77 {
    padding-bottom: 77px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-77 {
    padding-right: 77px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-78 {
    padding-top: 78px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-78 {
    padding-left: 78px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-78 {
    padding-bottom: 78px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-78 {
    padding-right: 78px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-79 {
    padding-top: 79px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-79 {
    padding-left: 79px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-79 {
    padding-bottom: 79px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-79 {
    padding-right: 79px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-top-80 {
    padding-top: 80px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-left-80 {
    padding-left: 80px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-bottom-80 {
    padding-bottom: 80px !important;
}

/* line 501, ../sass/mixins/_template-mixins.scss */
.padding-right-80 {
    padding-right: 80px !important;
}

/* 1. base */
/* line 2, ../sass/template/_base.scss */
a:focus, a:active {
    outline: none !important;
}

/* line 5, ../sass/template/_base.scss */
.media-body {
    width: 10000px;
}

/* line 8, ../sass/template/_base.scss */
#ninzio-main-content, #ninzio-footer {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* line 14, ../sass/template/_base.scss */
.post-password-form input {
    padding: 5px 15px;
    height: 45px;
}

/* line 17, ../sass/template/_base.scss */
.post-password-form input[type="submit"] {
    border: none;
    background: #b5a473;
    color: #fff;
}

/* line 21, ../sass/template/_base.scss */
.post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:active {
    color: #fff;
    background: #b5a473;
}

/* line 28, ../sass/template/_base.scss */
.circle {
    padding: 0;
    margin: 20px 0;
    list-style: inside none disc;
}

/* line 32, ../sass/template/_base.scss */
.circle li {
    margin: 0 0 10px;
}

/* line 36, ../sass/template/_base.scss */
.list-number {
    color: #cccccc;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

/* line 351, ../sass/mixins/_template-mixins.scss */
::-moz-selection {
    color: #fff;
    background: #b5a473;
}

/* line 351, ../sass/mixins/_template-mixins.scss */
::selection {
    color: #fff;
    background: #b5a473;
}

/* line 43, ../sass/template/_base.scss */
.pswp__item {
    cursor: move;
}

/* line 48, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-content {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

/* line 54, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in.mfp-ready .mfp-content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 60, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content {
    position: relative;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
}

@media (min-width: 1200px) {
    /* line 60, ../sass/template/_base.scss */
    .ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content {
        width: 1000px;
        min-height: 400px;
    }
}

/* line 71, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .product_meta {
    padding: 15px 0 0;
}

/* line 73, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .product_meta > * {
    display: block;
    margin: 0 0 5px;
}

/* line 79, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .carousel .carousel-control {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #aaaaaa;
    color: #fff;
}

/* line 84, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .carousel .carousel-control:hover, .ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .carousel .carousel-control:active {
    color: #fff;
    background: #252525;
}

/* line 90, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .carousel:hover .carousel-control {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 96, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .mfp-close {
    background: #aaaaaa;
    color: #fff;
}

/* line 99, ../sass/template/_base.scss */
.ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .mfp-close:hover, .ninzio-mfp-zoom-in .mfp-inline-holder .mfp-content .mfp-close:active {
    background: #f65b47;
    color: #fff;
}

/* line 106, ../sass/template/_base.scss */
.action .caret {
    width: 8px;
    height: 8px;
    position: relative;
}

/* line 111, ../sass/template/_base.scss */
.action[aria-expanded="true"] b {
    border: none;
}

/* line 112, ../sass/template/_base.scss */
.action[aria-expanded="true"] b:before {
    font-family: FontAwesome;
    content: "\f00d";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .action[aria-expanded="true"] b:before {
    right: 0;
    left: auto;
}

/* line 124, ../sass/template/_base.scss */
ins {
    text-decoration: none;
}

/* line 127, ../sass/template/_base.scss */
.video-responsive {
    height: 0;
    padding-top: 0;
    padding-bottom: 56.25%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

/* line 134, ../sass/template/_base.scss */
.video-responsive embed, .video-responsive iframe, .video-responsive object, .video-responsive video {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .video-responsive embed, .rtl .video-responsive iframe, .rtl .video-responsive object, .rtl .video-responsive video {
    right: 0;
    left: auto;
}

/* line 142, ../sass/template/_base.scss */
.audio-responsive iframe {
    width: 100%;
    height: 126px;
}

/* line 146, ../sass/template/_base.scss */
ul.list-square {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* line 150, ../sass/template/_base.scss */
ul.list-square > li {
    line-height: 35px;
    font-size: 14px;
    margin: 0;
}

/* line 156, ../sass/template/_base.scss */
ul.list-square > li.active > a, ul.list-square > li:hover > a {
    color: #b5a473;
}

/* line 158, ../sass/template/_base.scss */
ul.list-square > li.active > a:before, ul.list-square > li:hover > a:before {
    background: #b5a473;
}

/* line 163, ../sass/template/_base.scss */
ul.list-square > li > a {
    display: block;
    padding-left: 21px;
    position: relative;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl ul.list-square > li > a {
    padding-right: 21px;
    padding-left: inherit;
}

/* line 167, ../sass/template/_base.scss */
ul.list-square > li > a:before {
    content: '';
    background: #999999;
    width: 8px;
    height: 8px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl ul.list-square > li > a:before {
    right: 0;
    left: auto;
}

/* line 180, ../sass/template/_base.scss */
.breadcrumb > li + li:before {
    color: #555555 !important;
    content: ">" !important;
}

/* line 185, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout1 {
    background-color: #f5f5f5;
    margin-bottom: 70px;
    position: relative;
}

/* line 189, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout1 .ninzio-breadscrumb-top {
    padding: 0;
    text-align: center;
    margin: 0;
    position: relative;
    width: 100%;
    min-height: 150px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/page_title_bg3.jpg");
}

/* line 200, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout1 .ninzio-breadscrumb-top .breadscrumb-title {
    padding: 139px 0;
    position: relative;
}

/* line 205, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout1 .ninzio-breadscrumb-bottom {
    bottom: -40px;
    min-height: 40px;
    position: absolute;
    text-align: left;
    width: 100%;
    background: #f5f5f5;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-breadscrumb.layout1 .ninzio-breadscrumb-bottom {
    text-align: right;
}

/* line 213, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout1 .bread-title {
    color: #ffffff;
    font-size: 52px;
    margin: 0;
    padding: 0 20px;
    font-weight: 600;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .ninzio-breadscrumb.layout1 .bread-title {
    right: 50%;
    left: auto;
}

@media (max-width: 1200px) {
    /* line 213, ../sass/template/_base.scss */
    .ninzio-breadscrumb.layout1 .bread-title {
        font-size: 42px;
        line-height: 52px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 213, ../sass/template/_base.scss */
    .ninzio-breadscrumb.layout1 .bread-title {
        font-size: 28px;
        line-height: 38px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 213, ../sass/template/_base.scss */
    .ninzio-breadscrumb.layout1 .bread-title {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (max-width: 640px) {
    /* line 213, ../sass/template/_base.scss */
    .ninzio-breadscrumb.layout1 .bread-title {
        font-size: 24px;
        line-height: 34px;
        padding: 0;
        width: 100%;
    }
}

/* line 242, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout1 .bread-title:before, .ninzio-breadscrumb.layout1 .bread-title:after {
    background: #FFFFFF;
    content: "";
    width: 81px;
    height: 2px;
    position: absolute;
    top: 50%;
    display: block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 640px) {
    /* line 242, ../sass/template/_base.scss */
    .ninzio-breadscrumb.layout1 .bread-title:before, .ninzio-breadscrumb.layout1 .bread-title:after {
        display: none;
    }
}

/* line 255, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout1 .bread-title:before {
    left: -90px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .ninzio-breadscrumb.layout1 .bread-title:before {
    right: -90px;
    left: auto;
}

/* line 258, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout1 .bread-title:after {
    right: -90px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .ninzio-breadscrumb.layout1 .bread-title:after {
    left: -90px;
    right: auto;
}

/* line 263, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 {
    padding: 40px 0;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 266, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 .breadscrumb-inner {
    color: #FFFFFF;
}

/* line 269, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 .bread-title {
    color: #FFFFFF;
    margin: 0;
    padding: 4px 0 0 0;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* line 278, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 .breadcrumb {
    margin: 0;
    background: transparent;
}

/* line 281, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 .breadcrumb li {
    color: #FFFFFF;
}

/* line 283, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 .breadcrumb li a {
    color: #FFFFFF;
}

/* line 285, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 .breadcrumb li a:hover, .ninzio-breadscrumb.layout2 .breadcrumb li a:focus, .ninzio-breadscrumb.layout2 .breadcrumb li a:active {
    color: #FFFFFF;
}

/* line 292, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 .breadcrumb li:last-child:before {
    left: -99999px;
    top: -99999px;
}

/* line 297, ../sass/template/_base.scss */
.ninzio-breadscrumb.layout2 .breadcrumb li:before {
    color: #FFFFFF;
}

/* line 303, ../sass/template/_base.scss */
.ninzio-breadscrumb .breadcrumb {
    border: 0 none;
    color: #999999;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 8px 0;
    text-transform: uppercase;
    z-index: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 313, ../sass/template/_base.scss */
.ninzio-breadscrumb .breadcrumb > .active {
    color: #b5a473;
}

/* line 316, ../sass/template/_base.scss */
.ninzio-breadscrumb .breadcrumb a {
    color: #999999;
}

/* line 318, ../sass/template/_base.scss */
.ninzio-breadscrumb .breadcrumb a:hover, .ninzio-breadscrumb .breadcrumb a:active {
    color: #b5a473;
}

/* line 323, ../sass/template/_base.scss */
.ninzio-breadscrumb .breadcrumb > li + li::before {
    color: #999999 !important;
}

/* line 327, ../sass/template/_base.scss */
.ninzio-breadscrumb .breadscrumb-inner {
    padding: 0;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-breadscrumb .breadscrumb-inner:before, .ninzio-breadscrumb .breadscrumb-inner:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-breadscrumb .breadscrumb-inner:after {
    clear: both;
}

/* line 333, ../sass/template/_base.scss */
#searchverlay {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    z-index: 98;
    visibility: hidden;
}

/* line 343, ../sass/template/_base.scss */
#searchverlay.show {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}

/* line 348, ../sass/template/_base.scss */
.search-form {
    margin: auto;
}

/* line 349, ../sass/template/_base.scss */
.search-form .btn, .search-form .edr-membership .edr-buy-widget__link, .edr-membership .search-form .edr-buy-widget__link,
.search-form .edr-membership .edr-membership-buy-link,
.edr-membership .search-form .edr-membership-buy-link,
.search-form .edr_membership .edr-buy-widget__link,
.edr_membership .search-form .edr-buy-widget__link,
.search-form .edr_membership .edr-membership-buy-link,
.edr_membership .search-form .edr-membership-buy-link, .search-form input {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 352, ../sass/template/_base.scss */
.search-form .dropdown-menu {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    display: block !important;
    visibility: hidden;
    -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
    -o-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
    transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
    left: auto;
    margin: 4px 0 0;
    min-width: 290px;
    padding: 10px;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .search-form .dropdown-menu {
    left: 0;
    right: auto;
}

/* line 366, ../sass/template/_base.scss */
.search-form .dropdown-menu form {
    position: relative;
}

/* line 368, ../sass/template/_base.scss */
.search-form .dropdown-menu form .button-search {
    padding: 0;
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .search-form .dropdown-menu form .button-search {
    left: 0;
    right: auto;
}

/* line 381, ../sass/template/_base.scss */
.search-form .btn-search {
    font-size: 15px;
    height: 50px;
    padding: 11px 20px;
}

/* line 387, ../sass/template/_base.scss */
.search-form.open .dropdown-menu {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform-origin: 29px -50px;
    -moz-transform-origin: 29px -50px;
    -ms-transform-origin: 29px -50px;
    transform-origin: 29px -50px;
    filter: none;
    -webkit-filter: none;
    -moz-filter: none;
    -o-filter: none;
    -ms-filter: none;
    visibility: visible;
}

/* line 396, ../sass/template/_base.scss */
.no-results {
    text-align: center;
}

/* line 398, ../sass/template/_base.scss */
.no-results .search-form {
    margin: 40px auto;
}

/* line 400, ../sass/template/_base.scss */
.no-results .search-form .btn-search {
    height: 60px;
    padding: 8px 21px;
}

/* line 406, ../sass/template/_base.scss */
.ui-autocomplete.ui-widget-content {
    padding: 15px;
    margin: 0;
    list-style: none;
    width: 293px !important;
    background: #fff;
    z-index: 999;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.176);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.176);
}

/* line 414, ../sass/template/_base.scss */
.ui-autocomplete.ui-widget-content li {
    padding-bottom: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* line 418, ../sass/template/_base.scss */
.ui-autocomplete.ui-widget-content li:last-child {
    border: none;
    margin: 0;
    padding-bottom: 20px;
}

/* line 423, ../sass/template/_base.scss */
.ui-autocomplete.ui-widget-content li img {
    width: 60px;
}

/* line 427, ../sass/template/_base.scss */
.ui-autocomplete.ui-widget-content li .name a {
    color: #111111;
    font-size: 13px;
    font-family: "Lato", serif;
}

/* line 435, ../sass/template/_base.scss */
.main-content {
    display: block;
    padding-bottom: 70px;
    padding-top: 60px;
}

@media (max-width: 1200px) {
    /* line 435, ../sass/template/_base.scss */
    .main-content {
        padding-bottom: 40px;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 435, ../sass/template/_base.scss */
    .main-content {
        padding-bottom: 40px;
        padding-top: 20px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 435, ../sass/template/_base.scss */
    .main-content {
        padding-bottom: 50px;
        padding-top: 0px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 435, ../sass/template/_base.scss */
    .main-content {
        padding-bottom: 40px;
        padding-top: 0px;
    }
}

@media (max-width: 640px) {
    /* line 435, ../sass/template/_base.scss */
    .main-content {
        padding-bottom: 10px;
        padding-top: 0px;
    }
}

/* line 460, ../sass/template/_base.scss */
.text-purple {
    color: #6c58bd !important;
}

/* line 463, ../sass/template/_base.scss */
.text-red {
    color: #c32322 !important;
}

/* line 466, ../sass/template/_base.scss */
.text-red-1 {
    color: #ff0000 !important;
}

/* line 469, ../sass/template/_base.scss */
.text-orange {
    color: #f66000 !important;
}

/* line 472, ../sass/template/_base.scss */
.text-yellow {
    color: #e2d951 !important;
}

/* line 475, ../sass/template/_base.scss */
.text-black {
    color: #000 !important;
}

/* line 478, ../sass/template/_base.scss */
.text-white, .text-light {
    color: #FFFFFF !important;
}

/* line 481, ../sass/template/_base.scss */
.text-darker {
    color: #333 !important;
}

/* line 484, ../sass/template/_base.scss */
.text-uppercase {
    text-transform: uppercase;
}

/*Radius
------------------------------------*/
/* line 489, ../sass/template/_base.scss */
[class*="radius"] {
    overflow: hidden;
}

/* line 492, ../sass/template/_base.scss */
.radius-0 {
    border-radius: 0 !important;
}

/* line 496, ../sass/template/_base.scss */
.radius-x {
    border-radius: 50% !important;
}

/* line 500, ../sass/template/_base.scss */
.radius-1x {
    border-radius: 10px !important;
}

/* line 504, ../sass/template/_base.scss */
.radius-2x {
    border-radius: 20px !important;
}

/* line 508, ../sass/template/_base.scss */
.radius-3x {
    border-radius: 30px !important;
}

/* line 512, ../sass/template/_base.scss */
.radius-4x {
    border-radius: 40px !important;
}

/* line 516, ../sass/template/_base.scss */
.radius-5x {
    border-radius: 5px !important;
}

/* line 520, ../sass/template/_base.scss */
.radius-6x {
    border-radius: 3px !important;
}

/* line 523, ../sass/template/_base.scss */
.owl-carousel-play {
    position: relative;
}

/* line 528, ../sass/template/_base.scss */
.owl-carousel-play .owl-item:last-child .product-wrapper {
    border: none;
}

/* line 533, ../sass/template/_base.scss */
.carousel-md {
    text-align: center;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
}

/* line 539, ../sass/template/_base.scss */
.carousel-sm {
    width: 34px;
    height: 34px;
    line-height: 31px;
    font-size: 14px;
    text-align: center;
    display: inline-block;
}

/* line 546, ../sass/template/_base.scss */
.carousel-xs {
    text-align: center;
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
}

/* line 554, ../sass/template/_base.scss */
#back-to-top {
    position: fixed;
    z-index: 99;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    background: #1ade97;
    color: #fff !important;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl #back-to-top {
    left: 30px;
    right: auto;
}

/* line 567, ../sass/template/_base.scss */
#back-to-top:hover {
    color: #fff !important;
    background: #129968;
}

/* line 571, ../sass/template/_base.scss */
#back-to-top.active {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 574, ../sass/template/_base.scss */
#back-to-top i {
    font-size: 18px;
}

/* line 578, ../sass/template/_base.scss */
.menu {
    padding: 0;
    margin: 0;
}

/* line 581, ../sass/template/_base.scss */
.menu li {
    list-style: none;
    margin: 0;
    line-height: 33px;
}

/* line 585, ../sass/template/_base.scss */
.menu li a:hover, .menu li a:active {
    text-decoration: none;
}

/* line 589, ../sass/template/_base.scss */
.menu ul {
    padding-left: 15px;
    margin: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .menu ul {
    padding-right: 15px;
    padding-left: inherit;
}

/* line 595, ../sass/template/_base.scss */
.ninzio-body-loading {
    overflow: hidden;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes -webkit-spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

/* line 614, ../sass/template/_base.scss */
.ninzio-page-loading {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99991;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .ninzio-page-loading {
    right: 0;
    left: auto;
}

/* line 621, ../sass/template/_base.scss */
.ninzio-page-loading #loader {
    animation: 2s linear 0s normal none infinite running spin;
    -webkit-animation: 2s linear 0s normal none infinite running spin;
    -ms-animation: 2s linear 0s normal none infinite running spin;
    border-color: #b5a473 transparent transparent;
    border-image: none;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    display: block;
    height: 100px;
    left: 50%;
    margin-left: -75px;
    margin-top: -75px;
    position: relative;
    top: 50%;
    width: 100px;
    z-index: 1001;
}

/* line 639, ../sass/template/_base.scss */
.ninzio-page-loading #loader:before {
    animation: 3s linear 0s normal none infinite running spin;
    -webkit-animation: 3s linear 0s normal none infinite running spin;
    -ms-animation: 3s linear 0s normal none infinite running spin;
    border-color: #b5a473 transparent transparent;
    border-image: none;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    bottom: 5px;
    content: "";
    left: 5px;
    position: absolute;
    right: 5px;
    top: 5px;
}

/* line 655, ../sass/template/_base.scss */
.ninzio-page-loading #loader:after {
    animation: 1.5s linear 0s normal none infinite running spin;
    -webkit-animation: 1.5s linear 0s normal none infinite running spin;
    -ms-animation: 1.5s linear 0s normal none infinite running spin;
    border-color: #b5a473 transparent transparent;
    border-image: none;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    bottom: 15px;
    content: "";
    left: 15px;
    position: absolute;
    right: 15px;
    top: 15px;
}

/* line 672, ../sass/template/_base.scss */
.ninzio-page-loading .loader-section {
    background: #f5f5f5 none repeat scroll 0 0;
    height: 100%;
    position: fixed;
    top: 0;
    transform: translateX(0px);
    width: 51%;
    z-index: 1000;
}

/* line 680, ../sass/template/_base.scss */
.ninzio-page-loading .loader-section.section-left {
    left: 0;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .ninzio-page-loading .loader-section.section-left {
    right: 0;
    left: auto;
}

/* line 683, ../sass/template/_base.scss */
.ninzio-page-loading .loader-section.section-right {
    right: 0;
}

/* line 690, ../sass/template/_base.scss */
.tab-v1 .tabs-list {
    border: none;
    text-align: center;
    padding: 30px 0 50px;
}

/* line 694, ../sass/template/_base.scss */
.tab-v1 .tabs-list li {
    padding: 0 22px;
    margin: 0;
    display: inline-block;
    float: none;
}

/* line 699, ../sass/template/_base.scss */
.tab-v1 .tabs-list li a {
    padding: 5px 0;
    color: #777777;
    border-width: 0 0 1px !important;
    border-color: #cccccc;
    border-style: dashed;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    background: transparent;
}

/* line 712, ../sass/template/_base.scss */
.tab-v1 .tabs-list li.active > a:active,
.tab-v1 .tabs-list li.active > a:focus,
.tab-v1 .tabs-list li.active > a, .tab-v1 .tabs-list li:hover > a:active,
.tab-v1 .tabs-list li:hover > a:focus,
.tab-v1 .tabs-list li:hover > a {
    border-color: transparent;
    color: #b5a473;
    background: transparent;
}

/* line 723, ../sass/template/_base.scss */
.tab-v1.style1 .tabs-list {
    padding: 10px 0 70px;
    text-align: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .tab-v1.style1 .tabs-list {
    text-align: left;
}

/* line 727, ../sass/template/_base.scss */
.tab-v1.style1 .tabs-list li.active, .tab-v1.style1 .tabs-list li:hover {
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

/* line 730, ../sass/template/_base.scss */
.tab-v1.style1 .tabs-list li.active > a:active,
.tab-v1.style1 .tabs-list li.active > a:focus,
.tab-v1.style1 .tabs-list li.active > a, .tab-v1.style1 .tabs-list li:hover > a:active,
.tab-v1.style1 .tabs-list li:hover > a:focus,
.tab-v1.style1 .tabs-list li:hover > a {
    color: #999999;
}

@media (min-width: 992px) {
    /* line 740, ../sass/template/_base.scss */
    .tab-v1.style1 {
        padding: 0 70px;
    }
}

/* line 746, ../sass/template/_base.scss */
.page-links {
    overflow: hidden;
    margin: 30px 0;
}

/* line 749, ../sass/template/_base.scss */
.page-links .page-links-title {
    font-weight: 700;
    color: #333;
    margin: 0 8px;
}

/* line 754, ../sass/template/_base.scss */
.page-links > span:not(.page-links-title),
.page-links > a {
    display: inline-block;
    line-height: 1;
    margin: 0 2px;
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    color: #b5a473;
}

/* line 762, ../sass/template/_base.scss */
.page-links > span:not(.page-links-title):hover, .page-links > span:not(.page-links-title):active,
.page-links > a:hover,
.page-links > a:active {
    color: #fff;
    background: #b5a473;
    border-color: #b5a473;
}

/* line 768, ../sass/template/_base.scss */
.page-links > span:not(.page-links-title) {
    color: #fff;
    background: #b5a473;
    border-color: #b5a473;
}

/* line 774, ../sass/template/_base.scss */
option {
    padding: 5px;
}

@media (min-width: 992px) {
    /* line 778, ../sass/template/_base.scss */
    .space-padding-left-30 {
        padding-left: 30px !important;
    }
}

/* line 784, ../sass/template/_base.scss */
.woocommerce-MyAccount-navigation > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    line-height: 35px;
}

/* line 794, ../sass/template/_base.scss */
#cboxWrapper #cboxMiddleLeft,
#cboxWrapper #cboxMiddleRight,
#cboxWrapper #cboxTopLeft,
#cboxWrapper #cboxTopCenter,
#cboxWrapper #cboxTopRight,
#cboxWrapper #cboxBottomLeft,
#cboxWrapper #cboxBottomCenter,
#cboxWrapper #cboxBottomRight {
    display: none;
}

/* line 804, ../sass/template/_base.scss */
#cboxWrapper #cboxContent {
    position: relative;
}

/* line 806, ../sass/template/_base.scss */
#cboxWrapper #cboxContent #cboxClose {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    color: #fff;
    background: #f65b47;
    text-transform: uppercase;
    width: 80px;
    height: 60px;
    text-indent: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl #cboxWrapper #cboxContent #cboxClose {
    left: 0;
    right: auto;
}

/* line 816, ../sass/template/_base.scss */
#cboxWrapper #cboxContent #cboxClose:hover, #cboxWrapper #cboxContent #cboxClose:active {
    background: #f5452f;
}

/* line 824, ../sass/template/_base.scss */
.rtl [class^="mn-"], .rtl [class*=" mn-"] {
    display: inline-block;
}

/* line 827, ../sass/template/_base.scss */
.rtl .media-left, .rtl .media > .pull-left {
    padding-left: 10px;
    padding-right: inherit;
}

/* line 835, ../sass/template/_base.scss */
.no-results .entry-content h2 {
    text-transform: uppercase;
}

/* line 841, ../sass/template/_base.scss */
.layout-blog .search-grid {
    background: #f5f5f5;
    padding: 30px 40px;
}

/* 2. elements */
/* line 2, ../sass/template/_elements.scss */
.widget.widget-text-heading {
    position: relative;
    text-align: center;
    padding: 0 0 40px 0;
}

/* line 6, ../sass/template/_elements.scss */
.widget.widget-text-heading:before {
    content: '';
    width: 333px;
    height: 2px;
    background: #e8e8e8;
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 100%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* line 17, ../sass/template/_elements.scss */
.widget.widget-text-heading:after {
    width: 55px;
    height: 55px;
    background: #FFFFFF;
    text-align: center;
    content: "\e909";
    color: #c4c4c4;
    display: block;
    font-size: 32px;
    position: absolute;
    left: 50%;
    bottom: -25px;
    line-height: 55px;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: "univero" !important;
}

/* line 34, ../sass/template/_elements.scss */
.widget.widget-text-heading.vc-blog:after {
    content: "\e92a" !important;
}

/* line 39, ../sass/template/_elements.scss */
.widget.widget-text-heading.vc-product:after {
    content: "\e95d" !important;
}

/* line 44, ../sass/template/_elements.scss */
.widget.widget-text-heading.vc-pricing:after {
    content: "\e92c" !important;
}

/* line 49, ../sass/template/_elements.scss */
.widget.widget-text-heading.vc-categories:after {
    content: "\e92e" !important;
    background: #f5f5f5;
}

/* line 55, ../sass/template/_elements.scss */
.widget.widget-text-heading.vc-events:after {
    content: "\e941" !important;
}

/* line 60, ../sass/template/_elements.scss */
.widget.widget-text-heading.vc-gallery:after {
    content: "\e92b" !important;
}

/* line 65, ../sass/template/_elements.scss */
.widget.widget-text-heading.vc-teachers:after {
    content: "\e934" !important;
}

/* line 70, ../sass/template/_elements.scss */
.widget.widget-text-heading.vc-popular-courses:after {
    content: "\e92e" !important;
}

/* line 74, ../sass/template/_elements.scss */
.widget.widget-text-heading .title {
    font-size: 32px;
    margin: 0 0 5px;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    /* line 74, ../sass/template/_elements.scss */
    .widget.widget-text-heading .title {
        font-size: 28px;
    }
}

/* line 82, ../sass/template/_elements.scss */
.widget.widget-text-heading .description {
    font-size: 18px;
    color: #999999;
}

/* line 86, ../sass/template/_elements.scss */
.widget.widget-text-heading.style1 {
    text-align: left;
    margin: 0 0 25px;
    padding: 0 0 25px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget.widget-text-heading.style1 {
    text-align: right;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 86, ../sass/template/_elements.scss */
    .widget.widget-text-heading.style1 {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 86, ../sass/template/_elements.scss */
    .widget.widget-text-heading.style1 {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 640px) {
    /* line 86, ../sass/template/_elements.scss */
    .widget.widget-text-heading.style1 {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

/* line 102, ../sass/template/_elements.scss */
.widget.widget-text-heading.style1 .title {
    font-size: 30px;
    margin: 0;
}

@media (max-width: 640px) {
    /* line 102, ../sass/template/_elements.scss */
    .widget.widget-text-heading.style1 .title {
        font-size: 28px;
    }
}

/* line 109, ../sass/template/_elements.scss */
.widget.widget-text-heading.style1:before {
    width: 140px;
    left: 0;
    background: #e5e5e5;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

/* line 115, ../sass/template/_elements.scss */
.widget.widget-text-heading.style1:after {
    top: -99999px;
    left: -99999px;
}

/* line 120, ../sass/template/_elements.scss */
.widget.widget-text-heading.style2 {
    padding: 0;
    margin: 0;
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget.widget-text-heading.style2 {
    text-align: right;
}

/* line 124, ../sass/template/_elements.scss */
.widget.widget-text-heading.style2 .description {
    text-align: left;
    margin-bottom: 30px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget.widget-text-heading.style2 .description {
    text-align: right;
}

/* line 128, ../sass/template/_elements.scss */
.widget.widget-text-heading.style2 .title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget.widget-text-heading.style2 .title {
    text-align: right;
}

/* line 136, ../sass/template/_elements.scss */
.widget.widget-text-heading.style2 .title:before, .widget.widget-text-heading.style2 .title:after {
    top: -99999px;
    left: -99999px;
}

/* line 141, ../sass/template/_elements.scss */
.widget.widget-text-heading.style2:before, .widget.widget-text-heading.style2:after {
    top: -99999px;
    left: -99999px;
}

/* line 148, ../sass/template/_elements.scss */
.list-circle {
    padding-left: 15px;
    margin: 0;
    line-height: 1.4;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .list-circle {
    padding-right: 15px;
    padding-left: inherit;
}

/* line 152, ../sass/template/_elements.scss */
.list-circle li {
    margin: 0 0 15px;
}

/* line 159, ../sass/template/_elements.scss */
.widget-action {
    border: 0;
}

/* line 162, ../sass/template/_elements.scss */
.default.widget-action.center {
    text-align: center;
}

/* line 164, ../sass/template/_elements.scss */
.default.widget-action.center .title {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 26px;
    margin: 0;
    text-transform: uppercase;
}

/* line 173, ../sass/template/_elements.scss */
.default.widget-action.center.center {
    text-align: center;
}

/* line 176, ../sass/template/_elements.scss */
.default.widget-action.center > * {
    display: inline-block;
    vertical-align: middle;
    margin: 0 25px;
}

/* line 184, ../sass/template/_elements.scss */
.widget-action.styledefault .title {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 26px;
    margin: 0;
    text-transform: uppercase;
}

/* line 193, ../sass/template/_elements.scss */
.widget-action.styledefault .info {
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 193, ../sass/template/_elements.scss */
    .widget-action.styledefault .info {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 193, ../sass/template/_elements.scss */
    .widget-action.styledefault .info {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    /* line 193, ../sass/template/_elements.scss */
    .widget-action.styledefault .info {
        margin-bottom: 30px;
    }
}

/* line 206, ../sass/template/_elements.scss */
.widget-action.styledefault .description p {
    margin-bottom: 15px;
}

/* line 208, ../sass/template/_elements.scss */
.widget-action.styledefault .description p:first-child {
    margin-bottom: 25px;
}

/* line 213, ../sass/template/_elements.scss */
.widget-action.styledefault .btn, .widget-action.styledefault .edr-membership .edr-buy-widget__link, .edr-membership .widget-action.styledefault .edr-buy-widget__link,
.widget-action.styledefault .edr-membership .edr-membership-buy-link,
.edr-membership .widget-action.styledefault .edr-membership-buy-link,
.widget-action.styledefault .edr_membership .edr-buy-widget__link,
.edr_membership .widget-action.styledefault .edr-buy-widget__link,
.widget-action.styledefault .edr_membership .edr-membership-buy-link,
.edr_membership .widget-action.styledefault .edr-membership-buy-link {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 216, ../sass/template/_elements.scss */
.widget-action.styledefault .img-left {
    margin-right: 40px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-action.styledefault .img-left {
    margin-left: 40px;
    margin-right: inherit;
}

/* line 219, ../sass/template/_elements.scss */
.widget-action.styledefault.dark {
    background: #252525;
}

/* line 221, ../sass/template/_elements.scss */
.widget-action.styledefault.dark .title {
    color: #333;
}

/* line 224, ../sass/template/_elements.scss */
.widget-action.styledefault.dark .description {
    color: #777777;
}

/* line 230, ../sass/template/_elements.scss */
.widget-action.center-white {
    min-height: 116px;
    padding: 30px 0;
    text-align: center;
    background-color: #b5a473;
}

/* line 235, ../sass/template/_elements.scss */
.widget-action.center-white > div {
    display: inline-block;
    vertical-align: middle;
    padding-right: 40px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-action.center-white > div {
    padding-left: 40px;
    padding-right: inherit;
}

@media only screen and (max-width: 767px) {
    /* line 235, ../sass/template/_elements.scss */
    .widget-action.center-white > div {
        margin-bottom: 20px;
        padding-right: 0px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-action.center-white > div {
        padding-left: 0px;
        padding-right: inherit;
    }
}

@media (max-width: 640px) {
    /* line 235, ../sass/template/_elements.scss */
    .widget-action.center-white > div {
        margin-bottom: 20px;
        padding-right: 0px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-action.center-white > div {
        padding-left: 0px;
        padding-right: inherit;
    }
}

/* line 247, ../sass/template/_elements.scss */
.widget-action.center-white > div:last-child {
    padding: 4px 0 0;
    vertical-align: bottom;
}

/* line 252, ../sass/template/_elements.scss */
.widget-action.center-white .title {
    font-size: 16px;
    margin: 0;
    color: #ffffff !important;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* line 261, ../sass/template/_elements.scss */
.widget-action.center-white .description {
    font-size: 20px;
    color: #ffffff !important;
    margin: 0 0 20px;
}

/* line 266, ../sass/template/_elements.scss */
.widget-action.center-white .btn, .widget-action.center-white .edr-membership .edr-buy-widget__link, .edr-membership .widget-action.center-white .edr-buy-widget__link,
.widget-action.center-white .edr-membership .edr-membership-buy-link,
.edr-membership .widget-action.center-white .edr-membership-buy-link,
.widget-action.center-white .edr_membership .edr-buy-widget__link,
.edr_membership .widget-action.center-white .edr-buy-widget__link,
.widget-action.center-white .edr_membership .edr-membership-buy-link,
.edr_membership .widget-action.center-white .edr-membership-buy-link {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 272, ../sass/template/_elements.scss */
.widget-course-categories .owl-carousel .owl-stage-outer {
    margin-bottom: 60px;
}

/* line 276, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper {
    color: #FFFFFF !important;
    text-align: center;
    min-height: 225px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 291, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper:before {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 310, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper:hover:before, .widget-course-categories .category-wrapper:focus:before, .widget-course-categories .category-wrapper:active:before {
    z-index: 1;
    -webkit-transform: scale(2);
    transform: scale(2);
}

/* line 315, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper .category-wrapper-box {
    outline: none;
    padding: 0;
}

/* line 319, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper a {
    z-index: 1000;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 145px;
    right: 0;
    left: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget-course-categories .category-wrapper a {
    left: 0;
    right: auto;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .widget-course-categories .category-wrapper a {
    right: 0;
    left: auto;
}

@media (max-width: 640px) {
    /* line 319, ../sass/template/_elements.scss */
    .widget-course-categories .category-wrapper a {
        height: 120px;
        text-align: center;
        padding: 15px 0 0;
    }

    /* line 333, ../sass/template/_elements.scss */
    .widget-course-categories .category-wrapper a > div {
        outline: none;
    }
}

/* line 338, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper .label {
    display: inline-block;
    padding: 11px 18px;
    margin: 0;
    border: 0;
    top: -30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: absolute;
    background: #b5a473;
    right: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-family: "Montserrat";
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget-course-categories .category-wrapper .label {
    left: 0;
    right: auto;
}

/* line 354, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper .title {
    margin-bottom: 0;
    margin-top: -10px;
    color: #FFFFFF !important;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Montserrat";
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 354, ../sass/template/_elements.scss */
    .widget-course-categories .category-wrapper .title {
        font-size: 14px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }
}

@media only screen and (max-width: 767px) {
    /* line 354, ../sass/template/_elements.scss */
    .widget-course-categories .category-wrapper .title {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    /* line 354, ../sass/template/_elements.scss */
    .widget-course-categories .category-wrapper .title {
        font-size: 12px;
    }
}

/* line 374, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper .title {
    display: block;
}

/* line 377, ../sass/template/_elements.scss */
.widget-course-categories .category-wrapper .icon {
    color: #FFFFFF !important;
    font-size: 68px;
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 377, ../sass/template/_elements.scss */
    .widget-course-categories .category-wrapper .icon {
        font-size: 48px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }
}

@media only screen and (max-width: 767px) {
    /* line 377, ../sass/template/_elements.scss */
    .widget-course-categories .category-wrapper .icon {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    /* line 377, ../sass/template/_elements.scss */
    .widget-course-categories .category-wrapper .icon {
        font-size: 38px;
    }
}

/* line 393, ../sass/template/_elements.scss */
.widget-course-categories.grid .category-wrapper {
    height: 100%;
    min-height: 225px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 393, ../sass/template/_elements.scss */
    .widget-course-categories.grid .category-wrapper {
        min-height: 180px;
        width: 180px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 393, ../sass/template/_elements.scss */
    .widget-course-categories.grid .category-wrapper {
        min-height: 180px;
        width: 180px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 393, ../sass/template/_elements.scss */
    .widget-course-categories.grid .category-wrapper {
        min-height: 180px;
        width: 180px;
    }
}

@media (max-width: 640px) {
    /* line 393, ../sass/template/_elements.scss */
    .widget-course-categories.grid .category-wrapper {
        min-height: 120px;
        width: 120px;
    }
}

/* line 416, ../sass/template/_elements.scss */
.widget-course-categories.carousel .category-wrapper {
    height: 100%;
    min-height: 225px;
}

/* line 425, ../sass/template/_elements.scss */
.widget-event .owl-carousel .owl-stage-outer {
    margin-bottom: 60px;
}

@media (max-width: 640px) {
    /* line 432, ../sass/template/_elements.scss */
    .widget-counters [class*='col-'] {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

/* line 439, ../sass/template/_elements.scss */
.widget-counters .font-icon {
    font-size: 76px;
    line-height: normal;
}

/* line 443, ../sass/template/_elements.scss */
.widget-counters .counter-wrap {
    font-family: "Montserrat";
    font-size: 52px;
    line-height: 62px;
    font-weight: 500;
}

@media (max-width: 640px) {
    /* line 443, ../sass/template/_elements.scss */
    .widget-counters .counter-wrap {
        font-size: 24px;
        line-height: 26px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 443, ../sass/template/_elements.scss */
    .widget-counters .counter-wrap {
        font-size: 38px;
        line-height: 38px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 443, ../sass/template/_elements.scss */
    .widget-counters .counter-wrap {
        font-size: 24px;
        line-height: 26px;
    }
}

/* line 460, ../sass/template/_elements.scss */
.widget-counters .counter-wrap .counter-suffix {
    margin: 0 0 0 -8px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .widget-counters .counter-wrap .counter-suffix {
    margin: 0 -8px 0 0;
}

/* line 464, ../sass/template/_elements.scss */
.widget-counters .title {
    font-size: 16px;
    font-family: "Montserrat";
    line-height: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 464, ../sass/template/_elements.scss */
    .widget-counters .title {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    /* line 464, ../sass/template/_elements.scss */
    .widget-counters .title {
        font-size: 14px;
    }
}

/* line 478, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item {
    text-align: center;
    min-height: 291px;
}

/* line 481, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item .widget-counters-inner {
    position: relative;
}

/* line 484, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style1 {
    color: #FFFFFF !important;
    background: #b5a473;
    padding: 56px 70px;
    -webkit-transition: background-color 0, 3s ease-in-out;
    -o-transition: background-color 0, 3s ease-in-out;
    transition: background-color 0, 3s ease-in-out;
}

/* line 489, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style1 a {
    color: #FFFFFF !important;
}

/* line 491, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style1 a:hover, .widget-counters .widget-counters-item.style1 a:active, .widget-counters .widget-counters-item.style1 a:focus {
    color: #FFFFFF !important;
}

/* line 495, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style1:hover, .widget-counters .widget-counters-item.style1:focus, .widget-counters .widget-counters-item.style1:active {
    background: #15b57b;
}

/* line 501, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style2 {
    color: #FFFFFF !important;
    min-height: 150px;
}

/* line 504, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style2 .font-icon {
    margin: 5px 0 0 0;
    color: #b5a473;
}

/* line 508, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style2 .counter-wrap {
    margin: -7px 0 0 0;
}

/* line 511, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style2 .title {
    margin: -5px 0 0;
}

/* line 515, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style2 .widget-counters-inner:after {
    content: "";
    height: 142px;
    width: 1px;
    position: absolute;
    top: 50%;
    background: rgba(255, 255, 255, 0.4);
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget-counters .widget-counters-item.style2 .widget-counters-inner:after {
    left: 0;
    right: auto;
}

@media (max-width: 640px) {
    /* line 526, ../sass/template/_elements.scss */
    .widget-counters .widget-counters-item.style2 .widget-counters-inner:after {
        display: none;
    }
}

/* line 531, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style2 a {
    color: #FFFFFF !important;
}

/* line 533, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.style2 a:hover, .widget-counters .widget-counters-item.style2 a:active, .widget-counters .widget-counters-item.style2 a:focus {
    color: #FFFFFF !important;
}

/* line 538, ../sass/template/_elements.scss */
.widget-counters .widget-counters-item.featured {
    margin: 0 -20px;
    background: #15b57b;
}

/* line 546, ../sass/template/_elements.scss */
.widget-counters [class^="col-"]:last-child .widget-counters-inner:after, .widget-counters [class*=" col-"]:last-child .widget-counters-inner:after {
    left: -99999px;
    top: -99999px;
}

/* line 555, ../sass/template/_elements.scss */
.counters .counter {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    font-family: "Lato";
}

/* line 561, ../sass/template/_elements.scss */
.counters .title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    padding: 14px 0 0;
    position: relative;
}

/* line 568, ../sass/template/_elements.scss */
.counters .title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #b5a473;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .counters .title:before {
    right: 0;
    left: auto;
}

/* line 580, ../sass/template/_elements.scss */
.vc_tta-container > h2 {
    font-weight: 700;
    margin: 0 0 30px;
    position: relative;
    font-family: "Montserrat", cursive, sans-serif;
    font-size: 25px;
    padding: 0 0 12px;
    position: relative;
}

/* line 588, ../sass/template/_elements.scss */
.vc_tta-container > h2:before {
    content: '';
    width: 52px;
    height: 1px;
    background: #b5a473;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .vc_tta-container > h2:before {
    right: 0;
    left: auto;
}

/* line 600, ../sass/template/_elements.scss */
.vc_tta-accordion .vc_tta-panel {
    border: 1px solid #e0e0e0;
    border-bottom: 0;
}

/* line 603, ../sass/template/_elements.scss */
.vc_tta-accordion .vc_tta-panel:last-child {
    border-bottom: 1px solid #e0e0e0;
}

/* line 607, ../sass/template/_elements.scss */
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title > a {
    color: #333;
    font-weight: 600;
    padding: 8px 10px;
}

/* line 613, ../sass/template/_elements.scss */
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading {
    margin: 0 !important;
    padding: 10px;
    border: none !important;
    background: #fff !important;
}

/* line 619, ../sass/template/_elements.scss */
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
    padding: 20px 0 20px 20px !important;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
    padding: 20px 20px !important
    20px 0;
}

/* line 621, ../sass/template/_elements.scss */
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body .list-check {
    margin: 0;
}

/* line 623, ../sass/template/_elements.scss */
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body .list-check > li .list-check-item-icon {
    margin-right: 15px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .vc_tta-accordion .vc_tta-panel .vc_tta-panel-body .list-check > li .list-check-item-icon {
    margin-left: 15px;
    margin-right: inherit;
}

/* line 631, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a {
    color: #333 !important;
}

/* line 635, ../sass/template/_elements.scss */
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
    left: inherit;
    right: 30px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
    right: inherit;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
    left: 30px;
    right: auto;
}

/* line 640, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-green.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title > a {
    color: #333 !important;
    padding: 7px !important;
}

/* line 645, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-green.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after, .wpb-js-composer .vc_tta-color-green.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before {
    border-color: #FFFFFF !important;
}

/* line 649, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta .vc_tta-controls-icon.vc_tta-controls-icon-plus::before {
    background: #FFFFFF !important;
    content: "";
    height: 2px;
    left: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    border: 0;
}

/* line 662, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta .vc_tta-controls-icon.vc_tta-controls-icon-plus::after {
    background: #FFFFFF !important;
    content: "";
    height: 10px;
    left: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    border: 0;
}

/* line 677, ../sass/template/_elements.scss */
.widget-banner .img-feature {
    display: inline-block;
    position: relative;
}

/* line 681, ../sass/template/_elements.scss */
.widget-banner .mailto {
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    left: -30px;
    bottom: -20px;
    left: -45px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .widget-banner .mailto {
    right: -30px;
    left: auto;
}

/* line 690, ../sass/template/_elements.scss */
.widget-banner .mailto a {
    color: #b5a473;
}

/* line 694, ../sass/template/_elements.scss */
.widget-banner .name {
    color: #999999;
    font-size: 20px;
    text-transform: inherit;
    font-style: italic;
}

/* line 702, ../sass/template/_elements.scss */
.widget-banner.style2 .style-table > div {
    display: block;
    width: 100%;
}

/* line 705, ../sass/template/_elements.scss */
.widget-banner.style2 .style-table > div.img-info {
    padding-bottom: 20px;
}

@media (min-width: 992px) {
    /* line 711, ../sass/template/_elements.scss */
    .widget-banner.style2 .widget-content {
        padding-left: 100px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-banner.style2 .widget-content {
        padding-right: 100px;
        padding-left: inherit;
    }
}

/* line 715, ../sass/template/_elements.scss */
.widget-banner.style2 .widget-title {
    font-size: 17px;
    margin: 0 0 5px;
}

/* line 720, ../sass/template/_elements.scss */
.widget-banner.style3 {
    margin: 0;
}

/* line 722, ../sass/template/_elements.scss */
.widget-banner.style3 .widget-content {
    padding: 30px;
    text-align: center;
}

@media (min-width: 992px) {
    /* line 727, ../sass/template/_elements.scss */
    .widget-banner.style3 .widget-content {
        padding: 100px;
    }

    /* line 730, ../sass/template/_elements.scss */
    .widget-banner.style3 .widget-title {
        margin: 0 0 40px !important;
    }
}

/* line 741, ../sass/template/_elements.scss */
.widget_ninzio_vertical_menu .widget-vertical-menu ul {
    padding: 0 30px;
    background: #b5a473;
}

/* line 750, ../sass/template/_elements.scss */
.widget.widget_ninzio_vertical_menu > .widget-title {
    margin: 0;
    padding: 20px 40px;
    background: #b5a473;
    color: #ffffff !important;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
}

/* line 758, ../sass/template/_elements.scss */
.widget.widget_ninzio_vertical_menu > .widget-title .fa {
    margin-right: 18px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget.widget_ninzio_vertical_menu > .widget-title .fa {
    margin-left: 18px;
    margin-right: inherit;
}

/* line 761, ../sass/template/_elements.scss */
.widget.widget_ninzio_vertical_menu > .widget-title > span {
    padding: 0;
    border: none;
    margin: 0;
}

/* line 768, ../sass/template/_elements.scss */
.widget.widget_ninzio_vertical_menu .dropdown-menu .widgettitle,
.widget.widget_ninzio_vertical_menu .dropdown-menu .widget-title {
    border: none;
    margin: 0 0 10px;
}

/* line 772, ../sass/template/_elements.scss */
.widget.widget_ninzio_vertical_menu .dropdown-menu .widgettitle > span,
.widget.widget_ninzio_vertical_menu .dropdown-menu .widget-title > span {
    margin: 0;
    padding: 0;
    border: none;
}

/* line 780, ../sass/template/_elements.scss */
.widget.widget_ninzio_vertical_menu.darken .ninzio-vertical-menu {
    background: #f6f6f6;
}

/* line 786, ../sass/template/_elements.scss */
.ninzio-vertical-menu {
    padding: 0 !important;
    background: #fff;
}

/* line 790, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega > li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(221, 221, 221, 0.3);
    text-transform: capitalize;
    line-height: 60px;
}

/* line 796, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega > li:last-child {
    border: none;
}

/* line 801, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega > li.open > a, .ninzio-vertical-menu .navbar-vertical-mega > li:hover > a {
    background: transparent;
}

/* line 805, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega > li > a {
    font-size: 20px;
    padding: 0;
    font-weight: 700;
    color: #ffffff !important;
}

/* line 810, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega > li > a:hover, .ninzio-vertical-menu .navbar-vertical-mega > li > a:active, .ninzio-vertical-menu .navbar-vertical-mega > li > a:focus {
    background: transparent;
}

/* line 815, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega > li > a > img {
    margin-right: 18px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-vertical-menu .navbar-vertical-mega > li > a > img {
    margin-left: 18px;
    margin-right: inherit;
}

/* line 818, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega > li > a .caret {
    float: right;
    margin: 23px 0 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-vertical-menu .navbar-vertical-mega > li > a .caret {
    float: left;
}

/* line 824, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega > li .ninzio-container {
    padding: 10px 35px;
}

/* line 829, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega .dropdown-menu .ninzio_custom_menu,
.ninzio-vertical-menu .navbar-vertical-mega .dropdown-menu .widget {
    margin: 0;
}

/* line 833, ../sass/template/_elements.scss */
.ninzio-vertical-menu .navbar-vertical-mega .dropdown-menu .product-block.grid {
    margin: 0 0 10px;
}

/* line 839, ../sass/template/_elements.scss */
.ninzio-vertical-menu.menu-left .dropdown-menu {
    top: 0;
    left: 100%;
}

/* line 845, ../sass/template/_elements.scss */
.ninzio-vertical-menu.menu-right .dropdown-menu {
    top: 0;
    right: 100%;
}

/* line 853, ../sass/template/_elements.scss */
.widget-contact .title {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

/* line 858, ../sass/template/_elements.scss */
.widget-contact .item {
    padding: 0 0 30px;
}

/* line 860, ../sass/template/_elements.scss */
.widget-contact .item:last-child {
    padding: 0;
}

/* line 864, ../sass/template/_elements.scss */
.widget-contact.default {
    color: #999999;
}

/* line 866, ../sass/template/_elements.scss */
.widget-contact.default .title {
    color: #ffffff !important;
    margin: 0 0 5px;
}

/* line 871, ../sass/template/_elements.scss */
.widget-contact.default .media-left > i {
    border: 1px solid #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    color: #b5a473;
}

@media (min-width: 992px) {
    /* line 882, ../sass/template/_elements.scss */
    .widget-contact.default .media-left {
        padding-right: 20px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-contact.default .media-left {
        padding-left: 20px;
        padding-right: inherit;
    }
}

/* line 887, ../sass/template/_elements.scss */
.widget-contact.default.style_circle .media-left > i {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* line 892, ../sass/template/_elements.scss */
.widget-contact.default.style_normal .item {
    padding: 0 0 50px;
}

/* line 895, ../sass/template/_elements.scss */
.widget-contact.default.style_normal .title {
    color: #999999;
}

/* line 899, ../sass/template/_elements.scss */
.widget-contact.default.style_normal .media-left > i {
    border: 1px solid #e0e0e0;
}

/* line 909, ../sass/template/_elements.scss */
.tabs-v1 .tab-content {
    padding: 0;
    margin-top: 53px;
}

/* line 912, ../sass/template/_elements.scss */
.tabs-v1 .tab-content #comments {
    border: none;
}

/* line 915, ../sass/template/_elements.scss */
.tabs-v1 .tab-content #tabs-list-description {
    margin: 0;
    padding: 0;
    border: 0;
}

/* line 921, ../sass/template/_elements.scss */
.tabs-v1 .nav-tabs {
    margin: 0;
    position: relative;
}

/* line 924, ../sass/template/_elements.scss */
.tabs-v1 .nav-tabs li {
    margin-left: 7px;
    margin-bottom: 0;
    position: relative;
    z-index: 9;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-family: "Montserrat";
    text-transform: uppercase;
    border: 0 !important;
    color: #999999;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .tabs-v1 .nav-tabs li {
    margin-right: 7px;
    margin-left: inherit;
}

/* line 936, ../sass/template/_elements.scss */
.tabs-v1 .nav-tabs li:first-child {
    margin-left: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .tabs-v1 .nav-tabs li:first-child {
    margin-right: 0;
    margin-left: inherit;
}

/* line 939, ../sass/template/_elements.scss */
.tabs-v1 .nav-tabs li > a {
    background: #f5f5f5;
    margin: 0;
    padding: 15px 40px;
    margin-bottom: -1px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 640px) {
    /* line 939, ../sass/template/_elements.scss */
    .tabs-v1 .nav-tabs li > a {
        padding: 15px 25px;
    }
}

/* line 952, ../sass/template/_elements.scss */
.tabs-v1 .nav-tabs li:hover > a, .tabs-v1 .nav-tabs li:active > a, .tabs-v1 .nav-tabs li.active > a {
    color: #333;
    background: #fff;
    border-color: #e0e0e0;
    border-bottom-color: #fff;
}

/* line 961, ../sass/template/_elements.scss */
.tabs-v1 h2 {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 30px !important;
    text-align: uppercase;
}

/* line 970, ../sass/template/_elements.scss */
.nav.tabs-product1 {
    text-align: center;
    padding: 20px 0;
}

/* line 973, ../sass/template/_elements.scss */
.nav.tabs-product1 > li {
    display: inline-block;
    line-height: 1;
    float: none;
    border-right: 1px solid #777777;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .nav.tabs-product1 > li {
    border-left: 1px solid #777777;
    border-right: inherit;
}

/* line 978, ../sass/template/_elements.scss */
.nav.tabs-product1 > li:last-child {
    border: none;
}

/* line 981, ../sass/template/_elements.scss */
.nav.tabs-product1 > li > a {
    font-family: "Montserrat", cursive, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #777777;
    padding: 0 10px;
    background: transparent;
}

/* line 991, ../sass/template/_elements.scss */
.nav.tabs-product1 > li.active > a, .nav.tabs-product1 > li:hover > a {
    color: #b5a473;
    background: transparent;
}

/* line 999, ../sass/template/_elements.scss */
.nav.tabs-product-light > li {
    border-color: #fff;
}

/* line 1001, ../sass/template/_elements.scss */
.nav.tabs-product-light > li > a {
    color: #ffffff !important;
}

/* line 1006, ../sass/template/_elements.scss */
.nav.tabs-product-light > li.active > a, .nav.tabs-product-light > li:hover > a {
    color: #b5a473;
    background: transparent;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/* line 1017, ../sass/template/_elements.scss */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* line 1023, ../sass/template/_elements.scss */
.owl-carousel .owl-animated-in {
    z-index: 0;
}

/* line 1026, ../sass/template/_elements.scss */
.owl-carousel .owl-animated-out {
    z-index: 1;
}

/* line 1029, ../sass/template/_elements.scss */
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 1037, ../sass/template/_elements.scss */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/* line 1045, ../sass/template/_elements.scss */
.owl-carousel-top.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel-top.owl-carousel .owl-controls .owl-nav .owl-prev {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1054, ../sass/template/_elements.scss */
.owl-carousel-top-full .owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel-top-full .owl-carousel .owl-controls .owl-nav .owl-prev {
    opacity: 1;
    filter: alpha(opacity=100);
    background: #aaaaaa;
    border: none;
    color: #ffffff !important;
}

/* line 1060, ../sass/template/_elements.scss */
.owl-carousel-top-full .owl-carousel .owl-controls .owl-nav .owl-next:hover, .owl-carousel-top-full .owl-carousel .owl-controls .owl-nav .owl-next:active,
.owl-carousel-top-full .owl-carousel .owl-controls .owl-nav .owl-prev:hover,
.owl-carousel-top-full .owl-carousel .owl-controls .owl-nav .owl-prev:active {
    background: #1f2227;
    color: #ffffff !important;
}

/* line 1065, ../sass/template/_elements.scss */
.owl-carousel-top-full .owl-carousel .owl-controls {
    top: -108px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

/*
 *  Core Owl Carousel CSS File
 */
/* line 1075, ../sass/template/_elements.scss */
.owl-carousel {
    display: none;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
    margin-right: -12px;
    margin-left: -12px;
    cursor: pointer;
    width: calc(100% + 24px) !important;
}

/* line 1086, ../sass/template/_elements.scss */
.owl-carousel:hover .owl-controls .owl-nav .owl-prev,
.owl-carousel:hover .owl-controls .owl-nav .owl-next {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

/* line 1093, ../sass/template/_elements.scss */
.owl-controls .owl-nav {
    outline: none;
}

/* line 1096, ../sass/template/_elements.scss */
.owl-controls .owl-dots {
    bottom: 0;
    height: auto;
    left: 0;
    margin: 0 auto -48px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 100px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1096, ../sass/template/_elements.scss */
    .owl-controls .owl-dots {
        width: auto;
        margin: 0 auto -38px;
        bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1096, ../sass/template/_elements.scss */
    .owl-controls .owl-dots {
        width: auto;
        margin: 0 auto -38px;
        bottom: 0;
        display: none !important;
    }
}

@media (max-width: 640px) {
    /* line 1096, ../sass/template/_elements.scss */
    .owl-controls .owl-dots {
        width: auto;
        margin: 0 auto -38px;
        bottom: 0;
        display: none !important;
    }
}

/* line 1122, ../sass/template/_elements.scss */
.owl-controls .owl-dots .owl-dot {
    text-align: center;
    border: 0;
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 7px 0px 7px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .owl-controls .owl-dots .owl-dot {
    margin: 0 7px 0px 7px;
}

/* line 1131, ../sass/template/_elements.scss */
.owl-controls .owl-dots .owl-dot span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #bebebe;
}

/* line 1137, ../sass/template/_elements.scss */
.owl-controls .owl-dots .owl-dot.hover, .owl-controls .owl-dots .owl-dot.active {
    border-color: transparent;
    background: #b5a473;
}

/* line 1140, ../sass/template/_elements.scss */
.owl-controls .owl-dots .owl-dot.hover span, .owl-controls .owl-dots .owl-dot.active span {
    background: transparent;
}

/* line 1147, ../sass/template/_elements.scss */
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

/* line 1151, ../sass/template/_elements.scss */
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* line 1159, ../sass/template/_elements.scss */
.owl-carousel .owl-stage-outer {
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 1168, ../sass/template/_elements.scss */
.owl-carousel .owl-controls {
    outline: none;
}

/* line 1171, ../sass/template/_elements.scss */
.owl-carousel .owl-controls .owl-nav .owl-prev {
    left: -70px;
    right: auto;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .owl-carousel .owl-controls .owl-nav .owl-prev {
    right: -70px;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: auto;
    right: auto;
}

/* line 1175, ../sass/template/_elements.scss */
.owl-carousel .owl-controls .owl-nav .owl-next {
    right: -70px;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .owl-carousel .owl-controls .owl-nav .owl-next {
    left: -70px;
    right: auto;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .owl-carousel .owl-controls .owl-nav .owl-next {
    right: auto;
    left: auto;
}

/* line 1179, ../sass/template/_elements.scss */
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next {
    cursor: hand;
    display: inline-block;
    top: 0;
    bottom: 0;
    background: transparent;
    color: #d0d0d0;
    font-size: 12px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    border: 2px solid #eaeaea;
    z-index: 99;
    margin: auto 0;
    width: 38px;
    height: 38px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* line 1197, ../sass/template/_elements.scss */
.owl-carousel .owl-controls .owl-nav .owl-prev:hover,
.owl-carousel .owl-controls .owl-nav .owl-next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    border-color: #b5a473;
    color: #b5a473;
}

/* line 1203, ../sass/template/_elements.scss */
.owl-carousel.owl-loaded {
    display: block;
}

/* line 1206, ../sass/template/_elements.scss */
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

/* line 1210, ../sass/template/_elements.scss */
.owl-carousel.owl-hidden {
    opacity: 0;
}

/* line 1213, ../sass/template/_elements.scss */
.owl-carousel .owl-refresh .owl-item {
    display: none;
}

/* line 1216, ../sass/template/_elements.scss */
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-right: 12px;
    padding-left: 12px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .owl-carousel .owl-item {
    float: right;
}

/* line 1229, ../sass/template/_elements.scss */
.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* line 1235, ../sass/template/_elements.scss */
.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

/* line 1242, ../sass/template/_elements.scss */
.owl-carousel.owl-rtl {
    direction: rtl;
}

/* line 1245, ../sass/template/_elements.scss */
.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .owl-carousel.owl-rtl .owl-item {
    float: left;
}

/* No Js */
/* line 1250, ../sass/template/_elements.scss */
.no-js .owl-carousel {
    display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 1257, ../sass/template/_elements.scss */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

/*
 * 	Owl Carousel - Video Plugin
 */
/* line 1268, ../sass/template/_elements.scss */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

/* line 1273, ../sass/template/_elements.scss */
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}

/* line 1291, ../sass/template/_elements.scss */
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3);
}

/* line 1298, ../sass/template/_elements.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

/* line 1302, ../sass/template/_elements.scss */
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

/* line 1317, ../sass/template/_elements.scss */
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

/* line 1322, ../sass/template/_elements.scss */
.wpb_gmaps_widget.wpb_content_element {
    margin: 0;
}

/* line 1327, ../sass/template/_elements.scss */
.social-link {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
}

/* line 1331, ../sass/template/_elements.scss */
.social-link li {
    display: inline-block;
    margin: 0 5px;
}

/* line 1334, ../sass/template/_elements.scss */
.social-link li a {
    background: #f4f4f4 none repeat scroll 0 0;
    border-radius: 100%;
    color: #777777;
    display: inline-block;
    height: 40px;
    line-height: 38px;
    text-align: center;
    width: 40px;
    border: 1px solid #e0e0e0;
}

/* line 1347, ../sass/template/_elements.scss */
.social-link.lighten li a {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #ffffff;
    color: #ffffff !important;
}

/* line 1356, ../sass/template/_elements.scss */
.ourteam-inner .name-team {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

/* line 1363, ../sass/template/_elements.scss */
.ourteam-inner .job {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* line 1368, ../sass/template/_elements.scss */
.ourteam-inner .avarta {
    overflow: hidden;
    position: relative;
}

/* line 1369, ../sass/template/_elements.scss */
.ourteam-inner .avarta:before {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    content: "";
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    width: 100%;
    z-index: 1;
}

/* line 1381, ../sass/template/_elements.scss */
.ourteam-inner .avarta .social-link {
    bottom: 0;
    left: 0;
    margin: 0;
    position: absolute;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    visibility: hidden;
    width: 100%;
    z-index: 9;
}

/* line 1394, ../sass/template/_elements.scss */
.ourteam-inner:hover .avarta:before {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1397, ../sass/template/_elements.scss */
.ourteam-inner:hover .avarta .social-link {
    bottom: 60px;
    visibility: visible;
}

/* line 1402, ../sass/template/_elements.scss */
.ourteam-inner .entry-info {
    padding: 20px;
}

/* line 1409, ../sass/template/_elements.scss */
.widget-gallery .image {
    margin: 0 10px 10px 0;
}

/* line 1412, ../sass/template/_elements.scss */
.widget-gallery .fancybox {
    position: relative;
    display: inline-block;
}

/* line 1415, ../sass/template/_elements.scss */
.widget-gallery .fancybox:before {
    background: rgba(0, 0, 0, 0.8) url("../images/plus.png") no-repeat scroll center center;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    width: 100%;
    z-index: 9;
}

/* line 1428, ../sass/template/_elements.scss */
.widget-gallery .fancybox:hover:before {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1433, ../sass/template/_elements.scss */
.widget-gallery .heading {
    line-height: 1;
    padding: 60px 0;
}

/* line 1439, ../sass/template/_elements.scss */
.widget-gallery .description h3,
.widget-gallery .heading h3 {
    margin: 0;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

/* line 1445, ../sass/template/_elements.scss */
.widget-gallery .description h3.title-des,
.widget-gallery .heading h3.title-des {
    margin: 8px 0 0;
}

/* line 1451, ../sass/template/_elements.scss */
.widget-gallery .fancybox {
    display: block;
    max-height: 292px;
    overflow: hidden;
}

/* line 1457, ../sass/template/_elements.scss */
.widget-gallery.style1 .image {
    margin: 0 5px 5px 0;
}

/* line 1463, ../sass/template/_elements.scss */
.title-white {
    text-align: center;
}

/* line 1465, ../sass/template/_elements.scss */
.title-white .title {
    color: #ffffff !important;
    font-size: 38px;
    margin: 0;
}

/* line 1470, ../sass/template/_elements.scss */
.title-white .des {
    color: #ffffff !important;
    font-size: 16px;
}

/* line 1475, ../sass/template/_elements.scss */
.infor-serach {
    text-align: center;
    color: #bbbbbb;
}

/* line 1478, ../sass/template/_elements.scss */
.infor-serach i {
    margin-right: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .infor-serach i {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 1481, ../sass/template/_elements.scss */
.infor-serach > div {
    display: inline-block;
    vertical-align: top;
}

/* line 1484, ../sass/template/_elements.scss */
.infor-serach > div + div {
    margin-left: 30px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .infor-serach > div + div {
    margin-right: 30px;
    margin-left: inherit;
}

/* line 1489, ../sass/template/_elements.scss */
.banner-item {
    position: relative;
    overflow: hidden;
}

/* line 1492, ../sass/template/_elements.scss */
.banner-item .title {
    font-size: 16px;
    color: #ffffff !important;
    margin: 0;
    padding: 12px 10px 15px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    width: 100%;
}

/* line 1505, ../sass/template/_elements.scss */
.banner-item .title a {
    color: #ffffff !important;
}

/* line 1509, ../sass/template/_elements.scss */
.banner-item img {
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

/* line 1513, ../sass/template/_elements.scss */
.banner-item:hover .title {
    background: rgba(0, 0, 0, 0.9);
}

/* line 1516, ../sass/template/_elements.scss */
.banner-item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/* line 1522, ../sass/template/_elements.scss */
.section-contact {
    font-size: 16px;
    position: relative;
}

/* line 1525, ../sass/template/_elements.scss */
.section-contact textarea,
.section-contact input:not(.btn) {
    width: 100%;
    max-width: 100%;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    margin: 0 0 20px;
    padding: 10px 28px;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 1535, ../sass/template/_elements.scss */
.section-contact textarea:active, .section-contact textarea:focus,
.section-contact input:not(.btn):active,
.section-contact input:not(.btn):focus {
    background: transparent;
    color: #515151;
}

/* line 1540, ../sass/template/_elements.scss */
.section-contact .title-contact {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Montserrat", cursive, sans-serif;
    color: #111111;
}

/* line 1548, ../sass/template/_elements.scss */
.section-contact textarea {
    max-height: 230px;
    margin: 0;
}

/* line 1552, ../sass/template/_elements.scss */
.section-contact p {
    margin: 0;
}

/* line 1555, ../sass/template/_elements.scss */
.section-contact .title {
    font-size: 30px;
    margin: 0 0 30px;
}

/* line 1559, ../sass/template/_elements.scss */
.section-contact input.btn, .section-contact .edr-membership input.edr-buy-widget__link, .edr-membership .section-contact input.edr-buy-widget__link,
.section-contact .edr-membership input.edr-membership-buy-link,
.edr-membership .section-contact input.edr-membership-buy-link,
.section-contact .edr_membership input.edr-buy-widget__link,
.edr_membership .section-contact input.edr-buy-widget__link,
.section-contact .edr_membership input.edr-membership-buy-link,
.edr_membership .section-contact input.edr-membership-buy-link {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 9px 52px;
    margin-top: 5px;
    background: #111111;
    color: #ffffff !important;
    position: absolute;
    width: 100%;
}

/* line 1575, ../sass/template/_elements.scss */
.video-wrapper-inner {
    position: relative;
}

/* line 1577, ../sass/template/_elements.scss */
.video-wrapper-inner .fancybox-video {
    position: relative;
    display: block;
    margin: 20px 0 0;
}

/* line 1581, ../sass/template/_elements.scss */
.video-wrapper-inner .fancybox-video .fa {
    border: 2px solid #ffffff;
    border-radius: 50%;
    bottom: 0;
    color: #ffffff !important;
    font-size: 28px;
    height: 80px;
    left: 0;
    line-height: 76px;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 80px;
    z-index: 9;
}

/* line 1600, ../sass/template/_elements.scss */
.video-wrapper-inner .fancybox-video:hover .fa {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* line 1605, ../sass/template/_elements.scss */
.video-wrapper-inner .title-video {
    color: #fff;
    font-size: 28px;
    padding: 0 45px;
    background: #17181a;
    position: relative;
    z-index: 99;
    display: inline-block;
    margin: 0 0 10px;
    text-transform: uppercase;
}

/* line 1616, ../sass/template/_elements.scss */
.video-wrapper-inner .description {
    color: #8c8c8c;
}

/* line 1619, ../sass/template/_elements.scss */
.video-wrapper-inner .video {
    padding-bottom: 0;
    position: relative;
}

/* line 1623, ../sass/template/_elements.scss */
.video-wrapper-inner .video .image-wrapper .unveil-image {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

/* line 1628, ../sass/template/_elements.scss */
.video-wrapper-inner .video-icon-wrap {
    top: 50%;
    left: 50%;
    color: #FFFFFF !important;
    position: absolute;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* line 1635, ../sass/template/_elements.scss */
.video-wrapper-inner .video-icon-wrap .popup-video {
    font-size: 60px;
    color: #FFFFFF !important;
}

/* line 1638, ../sass/template/_elements.scss */
.video-wrapper-inner .video-icon-wrap .popup-video .icon {
    height: auto;
    line-height: normal;
    margin: 0;
    vertical-align: middle;
    width: auto;
}

/* line 1646, ../sass/template/_elements.scss */
.video-wrapper-inner .video-icon-wrap .title {
    color: #FFFFFF !important;
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

/* line 1655, ../sass/template/_elements.scss */
.video-wrapper-inner .video-content {
    left: 80px;
    margin: -48px 0 0;
    position: absolute;
    top: 100%;
}

/* line 1660, ../sass/template/_elements.scss */
.video-wrapper-inner .video-content .description {
    padding: 0 45px;
    margin: 0;
}

/* line 1669, ../sass/template/_elements.scss */
.widget-infor .infor-inner {
    margin: 0 0 15px;
}

/* line 1671, ../sass/template/_elements.scss */
.widget-infor .infor-inner .heding {
    font-weight: 500;
}

/* line 1678, ../sass/template/_elements.scss */
.widget-features-box.default .feature-box {
    padding: 35px;
}

/* line 1681, ../sass/template/_elements.scss */
.widget-features-box.default .feature-box:hover .readmore {
    color: #1f2227;
}

/* line 1686, ../sass/template/_elements.scss */
.widget-features-box.default .fbox-icon {
    float: left;
    padding-right: 20px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget-features-box.default .fbox-icon {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-features-box.default .fbox-icon {
    padding-left: 20px;
    padding-right: inherit;
}

/* line 1690, ../sass/template/_elements.scss */
.widget-features-box.default .fbox-content {
    overflow: hidden;
}

/* line 1693, ../sass/template/_elements.scss */
.widget-features-box.default .row-item {
    margin: 0;
}

/* line 1695, ../sass/template/_elements.scss */
.widget-features-box.default .row-item > div {
    padding: 0;
}

/* line 1699, ../sass/template/_elements.scss */
.widget-features-box.default .ourservice-heading {
    font-family: "Lato";
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.1;
    color: #ffffff !important;
    font-weight: 500;
}

/* line 1707, ../sass/template/_elements.scss */
.widget-features-box.default .readmore {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 12px;
    font-family: "Lato";
    text-transform: uppercase;
}

/* line 1716, ../sass/template/_elements.scss */
.widget-features-box.center {
    text-align: center;
}

/* line 1718, ../sass/template/_elements.scss */
.widget-features-box.center .ourservice-heading {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px;
}

/* line 1723, ../sass/template/_elements.scss */
.widget-features-box.center .description {
    font-size: 15px;
}

/* line 1726, ../sass/template/_elements.scss */
.widget-features-box.center .fbox-icon {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    color: #999999;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 154px;
    height: 154px;
    margin: 0 auto 35px;
    border: 1px solid #e0e0e0;
    padding: 37px;
    background: #fff;
}

/* line 1735, ../sass/template/_elements.scss */
.widget-features-box.center .fbox-icon .fbox-icon-inner {
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 78px;
    height: 78px;
    font-size: 20px;
    line-height: 75px;
    background: #eeeeee;
}

/* line 1743, ../sass/template/_elements.scss */
.widget-features-box.center .fbox-icon .img-hover {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 3;
    background: #b5a473;
    -webkit-box-shadow: 0 0 0 7px rgba(23, 199, 135, 0.3);
    box-shadow: 0 0 0 7px rgba(23, 199, 135, 0.3);
}

/* line 1757, ../sass/template/_elements.scss */
.widget-features-box.center .feature-box-inner:hover .fbox-icon {
    color: #ffffff !important;
}

/* line 1759, ../sass/template/_elements.scss */
.widget-features-box.center .feature-box-inner:hover .fbox-icon .img-hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1765, ../sass/template/_elements.scss */
.widget-features-box {
    outline: none;
    background: transparent;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

/* line 1769, ../sass/template/_elements.scss */
.widget-features-box .feature-box {
    padding: 5px 20px 15px 20px;
    position: relative;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .widget-features-box .feature-box {
    padding: 5px 20px 15px 20px;
}

/* line 1772, ../sass/template/_elements.scss */
.widget-features-box .feature-box:after {
    background: #eeeeee;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: -10px;
    top: 0;
    width: 1px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1772, ../sass/template/_elements.scss */
    .widget-features-box .feature-box:after {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1772, ../sass/template/_elements.scss */
    .widget-features-box .feature-box:after {
        display: none;
    }
}

@media (max-width: 640px) {
    /* line 1772, ../sass/template/_elements.scss */
    .widget-features-box .feature-box:after {
        display: none;
    }
}

/* line 1792, ../sass/template/_elements.scss */
.widget-features-box .fbox-content {
    text-align: center;
}

/* line 1795, ../sass/template/_elements.scss */
.widget-features-box .ourservice-heading {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* line 1802, ../sass/template/_elements.scss */
.widget-features-box .fbox-icon {
    margin: 0 0 25px 0;
    text-align: center;
}

/* line 1805, ../sass/template/_elements.scss */
.widget-features-box .fbox-icon .fbox-icon-inner {
    color: #b5a473;
    background: #f3f3f3;
    color: #b5a473;
    font-size: 56px;
    display: inline-block;
    padding: 5px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 100px;
    height: 100px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* line 1816, ../sass/template/_elements.scss */
.widget-features-box .fbox-icon .fbox-icon-inner:hover {
    color: #FFFFFF;
    background-color: #b5a473;
}

/* line 1827, ../sass/template/_elements.scss */
.widget-features-box.grid.style1 .item:last-child .feature-box:after {
    display: none;
}

/* line 1835, ../sass/template/_elements.scss */
.widget-features-box.grid.style2 .ourservice-heading {
    color: #FFFFFF !important;
}

/* line 1838, ../sass/template/_elements.scss */
.widget-features-box.grid.style2 .fbox-icon {
    margin: 0 0 20px 0;
}

/* line 1840, ../sass/template/_elements.scss */
.widget-features-box.grid.style2 .fbox-icon .fbox-icon-inner {
    background: transparent;
    color: #FFFFFF !important;
    font-size: 74px;
    padding: 0;
}

/* line 1847, ../sass/template/_elements.scss */
.widget-features-box.grid.style2 .feature-box {
    color: #FFFFFF !important;
    background: #b5a473;
    position: relative;
    margin: 0 -10px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 65px 20% 65px 20%;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .widget-features-box.grid.style2 .feature-box {
    padding: 65px 20% 65px 20%;
}

@media (max-width: 640px) {
    /* line 1847, ../sass/template/_elements.scss */
    .widget-features-box.grid.style2 .feature-box {
        padding: 25px 5%;
        margin: 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1847, ../sass/template/_elements.scss */
    .widget-features-box.grid.style2 .feature-box {
        padding: 30px 10px;
    }
}

/* line 1861, ../sass/template/_elements.scss */
.widget-features-box.grid.style2 .feature-box:before, .widget-features-box.grid.style2 .feature-box:after {
    display: none;
}

/* line 1864, ../sass/template/_elements.scss */
.widget-features-box.grid.style2 .feature-box.featured, .widget-features-box.grid.style2 .feature-box:hover, .widget-features-box.grid.style2 .feature-box:active, .widget-features-box.grid.style2 .feature-box:focus {
    background-color: #14ac74;
}

/* line 1872, ../sass/template/_elements.scss */
.widget-features-box.grid.style2.features-box-small .feature-box {
    padding: 65px 10% 65px 10%;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .widget-features-box.grid.style2.features-box-small .feature-box {
    padding: 65px 10% 65px 10%;
}

@media (max-width: 1200px) {
    /* line 1872, ../sass/template/_elements.scss */
    .widget-features-box.grid.style2.features-box-small .feature-box {
        padding: 40px 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 1872, ../sass/template/_elements.scss */
    .widget-features-box.grid.style2.features-box-small .feature-box {
        padding: 40px 10px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }
}

@media only screen and (max-width: 767px) {
    /* line 1872, ../sass/template/_elements.scss */
    .widget-features-box.grid.style2.features-box-small .feature-box {
        padding: 30px 20px 30px 20px;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .widget-features-box.grid.style2.features-box-small .feature-box {
        padding: 30px 20px 30px 20px;
    }
}

@media (max-width: 640px) {
    /* line 1872, ../sass/template/_elements.scss */
    .widget-features-box.grid.style2.features-box-small .feature-box {
        padding: 20px 15px 20px 15px;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .widget-features-box.grid.style2.features-box-small .feature-box {
        padding: 20px 15px 20px 15px;
    }
}

/* line 1890, ../sass/template/_elements.scss */
.widget-features-box.grid.style3 .fbox-icon {
    margin-bottom: 0px;
    position: relative;
}

/* line 1893, ../sass/template/_elements.scss */
.widget-features-box.grid.style3 .fbox-icon:after {
    background: transparent;
    width: 170px;
    height: 1px;
    border-top: 1px dotted #b2b2b2;
    top: 50%;
    content: "";
    position: absolute;
    right: -115px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget-features-box.grid.style3 .fbox-icon:after {
    left: -115px;
    right: auto;
}

/* line 1905, ../sass/template/_elements.scss */
.widget-features-box.grid.style3 .ourservice-heading {
    margin: 10px 0;
    color: #999999;
}

/* line 1911, ../sass/template/_elements.scss */
.widget-features-box.grid.style3 .feature-box.featured .ourservice-heading {
    color: #b5a473;
}

/* line 1915, ../sass/template/_elements.scss */
.widget-features-box.grid.style3 .feature-box.featured .fbox-icon .fbox-icon-inner {
    background: #b5a473;
    color: #FFFFFF !important;
}

/* line 1921, ../sass/template/_elements.scss */
.widget-features-box.grid.style3 .feature-box:after {
    left: -99999px;
    top: -99999px;
}

/* line 1930, ../sass/template/_elements.scss */
.widget-features-box.grid.style3 .item:last-child .fbox-icon:after,
.widget-features-box.grid.style3 .item:last-child .feature-box:after {
    display: none;
}

/* line 1939, ../sass/template/_elements.scss */
.widget-features-box.list {
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget-features-box.list {
    text-align: right;
}

@media (max-width: 640px) {
    /* line 1939, ../sass/template/_elements.scss */
    .widget-features-box.list {
        text-align: center;
    }
}

/* line 1944, ../sass/template/_elements.scss */
.widget-features-box.list .fbox-content {
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget-features-box.list .fbox-content {
    text-align: right;
}

@media (max-width: 640px) {
    /* line 1944, ../sass/template/_elements.scss */
    .widget-features-box.list .fbox-content {
        text-align: center;
    }
}

/* line 1950, ../sass/template/_elements.scss */
.widget-features-box.list .feature-box {
    padding: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1950, ../sass/template/_elements.scss */
    .widget-features-box.list .feature-box {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1950, ../sass/template/_elements.scss */
    .widget-features-box.list .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    /* line 1950, ../sass/template/_elements.scss */
    .widget-features-box.list .feature-box {
        margin-bottom: 30px;
    }
}

/* line 1962, ../sass/template/_elements.scss */
.widget-features-box.list .fbox-icon {
    padding: 0 25px 0 0;
}

@media (max-width: 640px) {
    /* line 1962, ../sass/template/_elements.scss */
    .widget-features-box.list .fbox-icon {
        padding: 0;
        margin: 0 0 30px 0;
        display: block;
    }
}

/* line 1970, ../sass/template/_elements.scss */
.widget-features-box.list .feature-box::after {
    top: -99999px;
    left: -99999px;
}

/* line 1976, ../sass/template/_elements.scss */
.widget-features-box.center-line {
    text-align: center;
}

/* line 1978, ../sass/template/_elements.scss */
.widget-features-box.center-line .ourservice-heading {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px;
    padding: 0 0 12px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 1985, ../sass/template/_elements.scss */
.widget-features-box.center-line .ourservice-heading:before {
    content: '';
    width: 40px;
    height: 1px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    background: #777777;
}

/* line 1995, ../sass/template/_elements.scss */
.widget-features-box.center-line .fbox-icon {
    margin: 0 0 25px;
}

/* line 1999, ../sass/template/_elements.scss */
.widget-features-box.center-line .feature-box-inner:hover .ourservice-heading {
    color: #b5a473;
}

/* line 2002, ../sass/template/_elements.scss */
.widget-features-box.center-line .feature-box-inner:hover .ourservice-heading:before {
    background: #b5a473;
}

/* line 2010, ../sass/template/_elements.scss */
.banner-countdown-widget .title {
    font-size: 28px;
    margin: 15px 0 12px;
    font-weight: 300;
    line-height: 1.2;
}

/* line 2015, ../sass/template/_elements.scss */
.banner-countdown-widget .title strong {
    font-weight: 700;
}

/* line 2019, ../sass/template/_elements.scss */
.banner-countdown-widget .des {
    margin: 0 0 18px;
}

/* line 2022, ../sass/template/_elements.scss */
.banner-countdown-widget .setting {
    font-size: 16px;
    text-align: center;
    margin: 20px 0 25px;
}

/* line 2027, ../sass/template/_elements.scss */
.banner-countdown-widget .times {
    text-align: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .banner-countdown-widget .times {
    text-align: left;
}

/* line 2029, ../sass/template/_elements.scss */
.banner-countdown-widget .times > div {
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .banner-countdown-widget .times > div {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 2033, ../sass/template/_elements.scss */
.banner-countdown-widget .times > div:last-child {
    margin: 0;
}

/* line 2036, ../sass/template/_elements.scss */
.banner-countdown-widget .times > div span {
    display: block;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    margin: 0 0 7px;
    padding: 7px 17px;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff !important;
    background: #333333;
    -webkit-box-shadow: 0 -2px 0 0 #666666;
    box-shadow: 0 -2px 0 0 #666666;
    position: relative;
}

/* line 2047, ../sass/template/_elements.scss */
.banner-countdown-widget .times > div span:after {
    content: '';
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    width: 100%;
    height: 50%;
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    bottom: 0;
    left: 0;
}

/* line 2062, ../sass/template/_elements.scss */
.widget-location .media-heading {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 5px;
}

/* line 2067, ../sass/template/_elements.scss */
.widget-location .media-left {
    font-size: 22px;
    min-width: 45px;
}

/* line 2071, ../sass/template/_elements.scss */
.widget-location .media {
    font-size: 15px;
    margin: 0 0 25px;
}

/* line 2077, ../sass/template/_elements.scss */
.feature-banner-inner {
    text-align: center;
    overflow: hidden;
    color: #ffffff !important;
}

/* line 2081, ../sass/template/_elements.scss */
.feature-banner-inner .widget-title {
    color: #ffffff !important;
    font-size: 25px;
}

@media (min-width: 480px) {
    /* line 2086, ../sass/template/_elements.scss */
    .feature-banner-inner.col-lg-cus-5 {
        width: 20%;
        float: left;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .feature-banner-inner.col-lg-cus-5 {
        float: right;
    }
}

/* line 2091, ../sass/template/_elements.scss */
.feature-banner-inner .banner-static {
    position: relative;
}

/* line 2093, ../sass/template/_elements.scss */
.feature-banner-inner .banner-static .widget-title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 2101, ../sass/template/_elements.scss */
.feature-banner-inner .banner-body {
    background: #00a1f1 none repeat scroll 0 0;
    color: #ffffff !important;
    font-size: 15px;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    text-align: center;
    top: 100%;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    z-index: 1;
}

/* line 2114, ../sass/template/_elements.scss */
.feature-banner-inner .banner-body .widget-title {
    margin: 0 0 45px;
    position: relative;
}

/* line 2117, ../sass/template/_elements.scss */
.feature-banner-inner .banner-body .widget-title:before {
    background: #ffffff none repeat scroll 0 0;
    bottom: -22px;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 52px;
}

/* line 2129, ../sass/template/_elements.scss */
.feature-banner-inner .banner-body .description {
    margin: 0 0 35px;
}

/* line 2132, ../sass/template/_elements.scss */
.feature-banner-inner .banner-body a {
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

/* line 2137, ../sass/template/_elements.scss */
.feature-banner-inner .banner-body a .fa {
    margin-left: 8px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .feature-banner-inner .banner-body a .fa {
    margin-right: 8px;
    margin-left: inherit;
}

/* line 2142, ../sass/template/_elements.scss */
.feature-banner-inner .content {
    left: 0;
    padding: 30px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 2150, ../sass/template/_elements.scss */
.feature-banner-inner:hover .banner-body {
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
}

/* line 2158, ../sass/template/_elements.scss */
.widget-contactform .control {
    font-size: 13px;
    padding: 10px 30px;
    max-width: 100%;
    width: 100%;
    margin: 0 0 30px;
    border: 1px solid #e0e0e0;
}

/* line 2166, ../sass/template/_elements.scss */
.widget-contactform textarea.control {
    margin: 0 0 30px;
}

/* line 2169, ../sass/template/_elements.scss */
.widget-contactform .des {
    max-width: 760px;
    margin: 0 auto;
}

/* line 2178, ../sass/template/_elements.scss */
.widget-brands .item-wrapper {
    background: #fff;
    line-height: 88px;
    text-align: center;
    border: 1px solid #e0e0e0;
    position: relative;
}

/* line 2184, ../sass/template/_elements.scss */
.widget-brands .item-wrapper a {
    display: block;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    border-bottom: 2px solid transparent;
}

/* line 2188, ../sass/template/_elements.scss */
.widget-brands .item-wrapper a:hover {
    border-color: #b5a473;
}

/* line 2196, ../sass/template/_elements.scss */
.service-timeline {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    /* line 2196, ../sass/template/_elements.scss */
    .service-timeline {
        padding: 0 100px;
    }
}

/* line 2206, ../sass/template/_elements.scss */
.service-timeline .date {
    color: #ffffff !important;
    font-size: 14px;
    padding: 2px 15px;
    background: #b5a473;
    display: inline-block;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    /* line 2206, ../sass/template/_elements.scss */
    .service-timeline .date {
        -webkit-transform: translateY(-17px);
        -ms-transform: translateY(-17px);
        -o-transform: translateY(-17px);
        transform: translateY(-17px);
    }
}

/* line 2217, ../sass/template/_elements.scss */
.service-timeline .hentry {
    position: relative;
}

@media (min-width: 992px) {
    /* line 2221, ../sass/template/_elements.scss */
    .service-timeline:before {
        background: #e0e0e0;
        content: "";
        left: 50%;
        top: 60px;
        bottom: 0;
        position: absolute;
        width: 1px;
        margin-left: -1px;
        height: 82%;
    }
}

@media (min-width: 992px) and (max-width: 991px) {
    /* line 2221, ../sass/template/_elements.scss */
    .service-timeline:before {
        display: none;
    }
}

/* line 2236, ../sass/template/_elements.scss */
.service-timeline > li {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 25px;
}

/* line 2241, ../sass/template/_elements.scss */
.service-timeline > li .hentry {
    width: 50%;
}

@media (max-width: 991px) {
    /* line 2245, ../sass/template/_elements.scss */
    .service-timeline > li .hentry {
        width: 100%;
        float: left;
        clear: left;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .service-timeline > li .hentry {
        float: right;
    }
}

/* line 2252, ../sass/template/_elements.scss */
.service-timeline > li:nth-child(odd) .hentry {
    float: left;
    clear: left;
}

@media (min-width: 992px) {
    /* line 2252, ../sass/template/_elements.scss */
    .service-timeline > li:nth-child(odd) .hentry {
        padding-right: 55px;
    }
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .service-timeline > li:nth-child(odd) .hentry {
    float: right;
}

/* line 2261, ../sass/template/_elements.scss */
.service-timeline > li:nth-child(even) .hentry {
    float: right;
    clear: right;
}

@media (min-width: 992px) {
    /* line 2261, ../sass/template/_elements.scss */
    .service-timeline > li:nth-child(even) .hentry {
        padding-left: 55px;
    }

    /* line 2264, ../sass/template/_elements.scss */
    .service-timeline > li:nth-child(even) .hentry:before {
        right: inherit;
        left: -8px;
    }
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .service-timeline > li:nth-child(even) .hentry {
    float: left;
}

@media (min-width: 992px) {
    /* line 2273, ../sass/template/_elements.scss */
    .service-timeline > li:nth-child(even) .hentry .hentry-box:before {
        left: inherit;
        right: 100%;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

/* line 2282, ../sass/template/_elements.scss */
.service-timeline > li .hentry {
    position: relative;
}

@media (min-width: 992px) {
    /* line 2285, ../sass/template/_elements.scss */
    .service-timeline > li .hentry:before {
        content: '';
        width: 18px;
        height: 18px;
        border: 3px solid #fff;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        background: #e0e0e0;
        position: absolute;
        top: 35px;
        right: -8px;
        -webkit-box-shadow: 0 0 0 3px #e0e0e0;
        box-shadow: 0 0 0 3px #e0e0e0;
    }
}

/* line 2297, ../sass/template/_elements.scss */
.service-timeline > li .hentry .hentry-box {
    position: relative;
}

@media (min-width: 992px) {
    /* line 2300, ../sass/template/_elements.scss */
    .service-timeline > li .hentry .hentry-box:before {
        content: '';
        width: 28px;
        height: 20px;
        border-style: solid;
        border-width: 10px 14px;
        border-color: transparent transparent transparent #f8f8f8;
        position: absolute;
        top: 35px;
        left: 100%;
    }
}

/* line 2312, ../sass/template/_elements.scss */
.service-timeline > li .hentry .title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #000;
    text-transform: uppercase;
}

/* line 2319, ../sass/template/_elements.scss */
.service-timeline > li .hentry .content {
    font-size: 14px;
}

/* line 2322, ../sass/template/_elements.scss */
.service-timeline > li .hentry .content-inner {
    padding: 0 30px 50px 30px;
    background: #f8f8f8;
    color: #777777;
}

/* line 2332, ../sass/template/_elements.scss */
.widget-contact p {
    margin: 0 0 5px;
}

/* line 2335, ../sass/template/_elements.scss */
.widget-contact i {
    margin-right: 7px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-contact i {
    margin-left: 7px;
    margin-right: inherit;
}

/* line 2339, ../sass/template/_elements.scss */
.opa-80 {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 2341, ../sass/template/_elements.scss */
.opa-80:hover, .opa-80:active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

/* line 2346, ../sass/template/_elements.scss */
.grid-style-2 > .row {
    margin: 0;
}

/* line 2348, ../sass/template/_elements.scss */
.grid-style-2 > .row > [class*="col-"] {
    padding: 0;
}

/* line 2353, ../sass/template/_elements.scss */
.no-space {
    margin: 0 !important;
}

/* line 2356, ../sass/template/_elements.scss */
.no-space > .ninzio-container > .vc_fluid {
    padding: 0;
}

/* line 2360, ../sass/template/_elements.scss */
.no-space .row {
    margin: 0;
}

/* line 2362, ../sass/template/_elements.scss */
.no-space .row > [class*="col"] {
    padding: 0;
}

/* line 2367, ../sass/template/_elements.scss */
.font-size-36 {
    font-size: 36px !important;
}

/* line 2370, ../sass/template/_elements.scss */
.font-size-30 {
    font-size: 30px !important;
}

/* line 2373, ../sass/template/_elements.scss */
.space-top-40 {
    margin-top: 40px !important;
}

/* line 2376, ../sass/template/_elements.scss */
.space-top-20 {
    margin-top: 20px !important;
}

/* line 2379, ../sass/template/_elements.scss */
.space-10 {
    margin-bottom: 10px !important;
}

/* line 2382, ../sass/template/_elements.scss */
.space-15 {
    margin-bottom: 15px !important;
}

/* line 2385, ../sass/template/_elements.scss */
.space-25 {
    margin-bottom: 25px !important;
}

/* line 2388, ../sass/template/_elements.scss */
.space-20 {
    margin-bottom: 20px !important;
}

/* line 2391, ../sass/template/_elements.scss */
.space-30 {
    margin-bottom: 30px !important;
}

/* line 2394, ../sass/template/_elements.scss */
.space-50 {
    margin-bottom: 50px !important;
}

/* line 2397, ../sass/template/_elements.scss */
.space-padding-35 {
    padding: 35px 0 !important;
}

/* line 2400, ../sass/template/_elements.scss */
.space-padding-tb-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

/* line 2404, ../sass/template/_elements.scss */
.space-padding-tb-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

/* line 2408, ../sass/template/_elements.scss */
.space-padding-lr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

/* line 2412, ../sass/template/_elements.scss */
.p-relative {
    position: relative !important;
}

/* line 2415, ../sass/template/_elements.scss */
.p-absolute {
    position: absolute !important;
}

/* line 2418, ../sass/template/_elements.scss */
.p-static {
    position: static !important;
}

@media (min-width: 768px) {
    /* line 2422, ../sass/template/_elements.scss */
    .position-top {
        height: 0 !important;
        position: absolute;
        width: 100%;
    }

    /* line 2426, ../sass/template/_elements.scss */
    .position-top > div {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

/* line 2431, ../sass/template/_elements.scss */
.hr {
    border-top: 1px solid #e0e0e0;
    min-height: 1px;
    width: 100%;
}

/* line 2436, ../sass/template/_elements.scss */
.text-theme {
    color: #b5a473;
}

/* line 2439, ../sass/template/_elements.scss */
.second-color {
    color: #b5a473 !important;
}

/* line 2442, ../sass/template/_elements.scss */
.bg-theme {
    background: #b5a473;
}

/* line 2445, ../sass/template/_elements.scss */
.border-theme {
    border-color: #b5a473;
}

/* line 2448, ../sass/template/_elements.scss */
.table-fix > [class*="col-"] {
    display: table-cell;
    float: none !important;
    vertical-align: middle;
}

/* line 2455, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_wrapper {
    margin: 0;
}

/* line 2458, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_section.group {
    padding: 0;
}

/* line 2461, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_section.group:first-child .kc_accordion_header {
    border-top: none;
}

/* line 2465, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_section.group .kc_accordion_header {
    border-right: 0;
    border-left: 0;
    border-color: #f2f2f2;
}

/* line 2469, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_section.group .kc_accordion_header > a {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    color: #999999;
}

/* line 2474, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_section.group .kc_accordion_header > a:hover, .ui-tabs .kc_accordion_section.group .kc_accordion_header > a:active {
    color: #999999;
}

/* line 2478, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_section.group .kc_accordion_header.ui-state-active {
    border-color: #fff;
}

/* line 2480, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_section.group .kc_accordion_header.ui-state-active > a {
    color: #b5a473;
}

/* line 2486, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_content {
    border-right: 0;
    border-left: 0;
}

/* line 2491, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_wrapper .kc_accordion_section.kc-section-active .kc_accordion_header {
    background: #f2f2f2;
    border-bottom: none;
}

/* line 2494, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_wrapper .kc_accordion_section.kc-section-active .kc_accordion_header > a {
    color: #b5a473;
}

/* line 2498, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_wrapper .kc_accordion_section.kc-section-active .kc_accordion_content {
    background: #f2f2f2;
    border-bottom: 0;
}

/* line 2501, ../sass/template/_elements.scss */
.ui-tabs .kc_accordion_wrapper .kc_accordion_section.kc-section-active .kc_accordion_content .kc-panel-body {
    padding: 0 30px 30px;
}

/* line 2510, ../sass/template/_elements.scss */
.kc-tabs-slider .owl-carousel .owl-item {
    padding: 0;
}

/* line 2513, ../sass/template/_elements.scss */
.kc-tabs-slider .owl-carousel .owl-controls {
    bottom: 25px;
    top: inherit;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

/* line 2518, ../sass/template/_elements.scss */
.kc-tabs-slider .owl-carousel .owl-dots {
    text-align: left;
    margin: auto;
    max-width: 1170px;
    padding: 0 8px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .kc-tabs-slider .owl-carousel .owl-dots {
    text-align: right;
}

/* line 2527, ../sass/template/_elements.scss */
.kc-call-to-action.kc-cta-2 {
    text-align: left;
}

/* line 2529, ../sass/template/_elements.scss */
.kc-call-to-action.kc-cta-2 .sub-title {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 600;
}

/* line 2537, ../sass/template/_elements.scss */
.kc_image_gallery a {
    display: block;
    position: relative;
}

/* line 2540, ../sass/template/_elements.scss */
.kc_image_gallery a:before {
    content: '';
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 2551, ../sass/template/_elements.scss */
.kc_image_gallery a:hover:before, .kc_image_gallery a:active:before {
    opacity: 0;
    filter: alpha(opacity=0);
}

/* line 2556, ../sass/template/_elements.scss */
.kc_image_gallery.space-30 {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px) !important;
}

/* line 2560, ../sass/template/_elements.scss */
.kc_image_gallery.space-30 > .item-grid {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

/* line 2567, ../sass/template/_elements.scss */
.contact-info {
    text-align: center;
}

/* line 2569, ../sass/template/_elements.scss */
.contact-info .icon {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 70px;
    height: 70px;
    line-height: 68px;
    border: 1px solid #b5a473;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    display: inline-block;
}

/* line 2570, ../sass/template/_elements.scss */
.contact-info .icon i {
    font-size: 24px;
    line-height: inherit;
    color: #b5a473;
}

/* line 2583, ../sass/template/_elements.scss */
.contact-info .title {
    font-size: 16px;
    font-weight: 700;
    color: #777777;
    margin: 7px 0 5px;
}

/* line 2589, ../sass/template/_elements.scss */
.contact-info .content {
    font-size: 12px;
    color: #999999;
    font-weight: 500;
}

/* line 2595, ../sass/template/_elements.scss */
.contact-info:hover .icon {
    background: #b5a473;
}

/* line 2597, ../sass/template/_elements.scss */
.contact-info:hover .icon i {
    color: #ffffff !important;
}

/* line 2604, ../sass/template/_elements.scss */
.icon-theme {
    border: 1px solid #a2a2a2;
    display: inline-block;
    text-align: center;
    padding: 7px 12px;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 2612, ../sass/template/_elements.scss */
.icon-theme.icon-theme--success {
    background: #b5a473;
    border-color: #b5a473;
    color: #FFFFFF !important;
}

/* line 2617, ../sass/template/_elements.scss */
.icon-theme.icon-theme--gray {
    color: #999999 !important;
}

/* line 2620, ../sass/template/_elements.scss */
.icon-theme.icon-theme--large {
    font-size: 24px;
    padding: 0px 10px;
    line-height: 47px;
    width: 49px;
    height: 47px;
}

/* line 2626, ../sass/template/_elements.scss */
.icon-theme.icon-theme--tinysmall {
    font-size: 10px;
    padding: 4px;
    width: 20px;
    height: 20px;
}

/* line 2631, ../sass/template/_elements.scss */
.icon-theme.icon-theme--small {
    font-size: 16px;
    padding: 5px 0;
    width: 37px;
    height: 38px;
}

/* line 2636, ../sass/template/_elements.scss */
.icon-theme.icon-theme--medium {
    font-size: 18px;
    width: 43px;
    height: 43px;
}

/* line 2640, ../sass/template/_elements.scss */
.icon-theme.icon-theme--light {
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

/* line 2643, ../sass/template/_elements.scss */
.icon-theme.icon-theme--light i {
    color: #FFFFFF !important;
}

/* line 2649, ../sass/template/_elements.scss */
.border-color-dark {
    border-right: 1px solid #e1e1e1 !important;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .border-color-dark {
    border-left: 1px solid #e1e1e1 !important;
    border-right: inherit;
}

/* line 2653, ../sass/template/_elements.scss */
.btn-offcanvas {
    background: transparent;
}

/* line 2659, ../sass/template/_elements.scss */
.mfp-gallery .mfp-content button.mfp-close {
    position: absolute;
    width: 83px;
    height: 83px;
    background: #b5a473;
    color: #ffffff !important;
    font-size: 46px;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
    line-height: 83px;
    padding-right: 0;
    right: -83px;
    text-align: center;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .mfp-gallery .mfp-content button.mfp-close {
    padding-left: 0;
    padding-right: inherit;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .mfp-gallery .mfp-content button.mfp-close {
    left: -83px;
    right: auto;
}

/* line 2673, ../sass/template/_elements.scss */
.mfp-gallery figure {
    background: #FFFFFF;
    padding: 12px 14px;
}

/* line 2676, ../sass/template/_elements.scss */
.mfp-gallery figure img {
    padding: 0;
}

/* line 2679, ../sass/template/_elements.scss */
.mfp-gallery figure .mfp-bottom-bar {
    background: white;
    bottom: 0;
    margin-top: 0;
    padding: 12px;
    text-align: center;
    top: auto;
}

/* line 2686, ../sass/template/_elements.scss */
.mfp-gallery figure .mfp-bottom-bar .mfp-title {
    padding: 0;
    line-height: 32px;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1.5px;
}

/* line 2696, ../sass/template/_elements.scss */
.mfp-gallery figure .mfp-bottom-bar .mfp-counter {
    left: -99999px;
    top: -99999px;
}

/* line 2701, ../sass/template/_elements.scss */
.mfp-gallery figure .mfp-bottom-bar .mfp-arrow:before, .mfp-gallery figure .mfp-bottom-bar .mfp-arrow:after {
    border: 0;
    background: transparent;
}

/* line 2711, ../sass/template/_elements.scss */
.list-tab-v1 {
    text-align: left;
    margin: 0 0 60px 0;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .list-tab-v1 {
    text-align: right;
}

@media (max-width: 1200px) {
    /* line 2711, ../sass/template/_elements.scss */
    .list-tab-v1 {
        margin-bottom: 50px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 2711, ../sass/template/_elements.scss */
    .list-tab-v1 {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 2711, ../sass/template/_elements.scss */
    .list-tab-v1 {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    /* line 2711, ../sass/template/_elements.scss */
    .list-tab-v1 {
        margin-bottom: 30px;
    }
}

/* line 2726, ../sass/template/_elements.scss */
.list-tab-v1 > li {
    padding: 0;
    margin: 0 -2px;
}

@media (max-width: 640px) {
    /* line 2726, ../sass/template/_elements.scss */
    .list-tab-v1 > li {
        margin: 0;
    }
}

/* line 2732, ../sass/template/_elements.scss */
.list-tab-v1 > li > a {
    font-family: "Montserrat";
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    background: #f5f5f5;
    padding: 12px 40px;
    letter-spacing: 0.5px;
    position: relative;
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .list-tab-v1 > li > a {
    float: right;
}

@media (max-width: 640px) {
    /* line 2732, ../sass/template/_elements.scss */
    .list-tab-v1 > li > a {
        padding: 12px 20px;
    }
}

/* line 2745, ../sass/template/_elements.scss */
.list-tab-v1 > li > a:hover, .list-tab-v1 > li > a:focus, .list-tab-v1 > li > a:active {
    color: #ffffff !important;
    background-color: #b5a473;
}

/* line 2748, ../sass/template/_elements.scss */
.list-tab-v1 > li > a:hover:after, .list-tab-v1 > li > a:focus:after, .list-tab-v1 > li > a:active:after {
    left: -99999px;
    top: -99999px;
    background: #b5a473;
}

/* line 2754, ../sass/template/_elements.scss */
.list-tab-v1 > li > a:after {
    background: #e0e0e0;
    content: "";
    top: 50%;
    position: absolute;
    right: 1px;
    width: 1px;
    height: 21px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .list-tab-v1 > li > a:after {
    left: 1px;
    right: auto;
}

@media only screen and (max-width: 767px) {
    /* line 2754, ../sass/template/_elements.scss */
    .list-tab-v1 > li > a:after {
        display: none;
    }
}

@media (max-width: 640px) {
    /* line 2754, ../sass/template/_elements.scss */
    .list-tab-v1 > li > a:after {
        display: none;
    }
}

/* line 2770, ../sass/template/_elements.scss */
.list-tab-v1 > li > .active {
    background: #b5a473;
    color: #ffffff !important;
}

/* line 2773, ../sass/template/_elements.scss */
.list-tab-v1 > li > .active:after {
    left: -99999px;
    top: -99999px;
    background: #b5a473;
}

/* line 2780, ../sass/template/_elements.scss */
.list-tab-v1 > li:hover > a, .list-tab-v1 > li:focus > a, .list-tab-v1 > li:active > a {
    background: #b5a473;
    color: #ffffff !important;
}

/* line 2783, ../sass/template/_elements.scss */
.list-tab-v1 > li:hover > a:after, .list-tab-v1 > li:focus > a:after, .list-tab-v1 > li:active > a:after {
    left: -99999px;
    top: -99999px;
    background: #b5a473;
}

/* line 2793, ../sass/template/_elements.scss */
.list-tab-v1 > li:last-child > a.active:after {
    left: -99999px;
    top: -99999px;
    background: #b5a473;
}

/* line 2799, ../sass/template/_elements.scss */
.list-tab-v1 > li:last-child > a:after {
    left: -99999px;
    top: -99999px;
    background: #b5a473;
}

/* line 2810, ../sass/template/_elements.scss */
.btn.btn-outline, .edr-membership .btn-outline.edr-buy-widget__link,
.edr-membership .btn-outline.edr-membership-buy-link,
.edr_membership .btn-outline.edr-buy-widget__link,
.edr_membership .btn-outline.edr-membership-buy-link {
    border-color: #e0e0e0;
    color: #999999;
}

/* line 2813, ../sass/template/_elements.scss */
.btn.btn-outline:hover, .edr-membership .btn-outline.edr-buy-widget__link:hover,
.edr-membership .btn-outline.edr-membership-buy-link:hover,
.edr_membership .btn-outline.edr-buy-widget__link:hover,
.edr_membership .btn-outline.edr-membership-buy-link:hover, .btn.btn-outline:active, .edr-membership .btn-outline.edr-buy-widget__link:active,
.edr-membership .btn-outline.edr-membership-buy-link:active,
.edr_membership .btn-outline.edr-buy-widget__link:active,
.edr_membership .btn-outline.edr-membership-buy-link:active, .btn.btn-outline:focus, .edr-membership .btn-outline.edr-buy-widget__link:focus,
.edr-membership .btn-outline.edr-membership-buy-link:focus,
.edr_membership .btn-outline.edr-buy-widget__link:focus,
.edr_membership .btn-outline.edr-membership-buy-link:focus {
    border-color: #b5a473;
    color: #b5a473;
}

/* line 2820, ../sass/template/_elements.scss */
.list-breadcrumb {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

@media (max-width: 640px) {
    /* line 2820, ../sass/template/_elements.scss */
    .list-breadcrumb {
        text-align: center;
    }
}

/* line 2828, ../sass/template/_elements.scss */
.list-breadcrumb > li {
    display: inline-block;
    color: #999999;
    font-size: 13px;
    position: relative;
    letter-spacing: 1.5px;
    padding: 0 17px 0 7px;
}

@media (max-width: 640px) {
    /* line 2828, ../sass/template/_elements.scss */
    .list-breadcrumb > li {
        font-size: 12px;
        letter-spacing: 0;
        padding: 0 13px;
    }
}

/* line 2840, ../sass/template/_elements.scss */
.list-breadcrumb > li:first-child {
    padding-left: 0;
}

/* line 2843, ../sass/template/_elements.scss */
.list-breadcrumb > li:last-child {
    padding-right: 0;
}

/* line 2845, ../sass/template/_elements.scss */
.list-breadcrumb > li:last-child:before {
    display: none;
}

/* line 2849, ../sass/template/_elements.scss */
.list-breadcrumb > li:before {
    content: "/";
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #d7d7d7;
}

/* line 2858, ../sass/template/_elements.scss */
.list-breadcrumb > li > a {
    color: #999999;
}

/* line 2860, ../sass/template/_elements.scss */
.list-breadcrumb > li > a:hover, .list-breadcrumb > li > a:focus, .list-breadcrumb > li > a:active {
    color: #b5a473;
    /*color: #8A7A4D;*/
}

/* line 2869, ../sass/template/_elements.scss */
.overflow-h {
    overflow: hidden;
}

/* line 2873, ../sass/template/_elements.scss */
.m-100 {
    margin-top: 100px !important;
}

@media (max-width: 640px) {
    /* line 2873, ../sass/template/_elements.scss */
    .m-100 {
        margin-top: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 2873, ../sass/template/_elements.scss */
    .m-100 {
        margin-top: 20px !important;
    }
}

/* line 2883, ../sass/template/_elements.scss */
.mtop-100 {
    margin-top: -100px !important;
}

@media (max-width: 640px) {
    /* line 2883, ../sass/template/_elements.scss */
    .mtop-100 {
        margin-top: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 2883, ../sass/template/_elements.scss */
    .mtop-100 {
        margin-top: 20px !important;
    }
}

/* line 2893, ../sass/template/_elements.scss */
.m-74 {
    margin-top: 74px !important;
}

@media only screen and (max-width: 767px) {
    /* line 2893, ../sass/template/_elements.scss */
    .m-74 {
        margin-top: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 2893, ../sass/template/_elements.scss */
    .m-74 {
        margin-top: 20px !important;
    }
}

/* line 2903, ../sass/template/_elements.scss */
.mtop-74 {
    margin-top: -74px !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 2903, ../sass/template/_elements.scss */
    .mtop-74 {
        margin-top: 20px !important;
    }
}

@media only screen and (max-width: 767px) {
    /* line 2903, ../sass/template/_elements.scss */
    .mtop-74 {
        margin-top: 10px !important;
    }
}

@media (max-width: 640px) {
    /* line 2903, ../sass/template/_elements.scss */
    .mtop-74 {
        margin-top: 0px !important;
    }
}

/* line 2916, ../sass/template/_elements.scss */
.mtop-76 {
    margin-top: -76px !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 2916, ../sass/template/_elements.scss */
    .mtop-76 {
        margin-top: 20px !important;
    }
}

@media only screen and (max-width: 767px) {
    /* line 2916, ../sass/template/_elements.scss */
    .mtop-76 {
        margin-top: 20px !important;
    }
}

@media (max-width: 640px) {
    /* line 2916, ../sass/template/_elements.scss */
    .mtop-76 {
        margin-top: 0px !important;
    }
}

/* line 2929, ../sass/template/_elements.scss */
.text-theme {
    color: #b5a473;
}

/* line 2933, ../sass/template/_elements.scss */
.bg-theme {
    background-color: #b5a473;
}

/* Progress Bar */
@media (min-width: 768px) and (max-width: 1023px) {
    /* line 2938, ../sass/template/_elements.scss */
    .vc_progress_bar {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 2938, ../sass/template/_elements.scss */
    .vc_progress_bar {
        margin-bottom: 20px;
        margin-top: 50px;
    }
}

@media (max-width: 640px) {
    /* line 2938, ../sass/template/_elements.scss */
    .vc_progress_bar {
        margin-bottom: 20px;
        margin-top: 50px;
    }
}

/* line 2951, ../sass/template/_elements.scss */
.vc_progress_bar .vc_single_bar {
    background: #e0e0e0;
    height: 11px;
    margin-bottom: 60px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 2958, ../sass/template/_elements.scss */
.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_label {
    padding: 0;
    color: #333;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 13px;
    line-height: normal;
    letter-spacing: 1.5px;
    position: absolute;
    top: -25px;
    width: 100%;
    display: block;
    left: 0;
    text-shadow: none;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    -ms-text-shadow: none;
    -o-text-shadow: none;
    text-transform: uppercase;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_label {
    right: 0;
    left: auto;
}

/* line 2973, ../sass/template/_elements.scss */
.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_label .vc_label_units {
    position: absolute;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_label .vc_label_units {
    left: 0;
    right: auto;
}

/* line 2978, ../sass/template/_elements.scss */
.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_bar {
    background-color: #b5a473;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 2983, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_general {
    font-size: inherit;
}

/* line 2986, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel {
    border: 0;
    margin-bottom: 5px;
}

/* line 2990, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-green.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading {
    background: #FFFFFF;
    border: 0;
    border-color: transparent;
}

/* line 2995, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 62px;
    font-weight: 500;
    letter-spacing: 1.2px;
    font-family: "Raleway", cursive, sans-serif;
}

/* line 3003, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-green.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a {
    color: #333;
    font-weight: 600;
}

/* line 3007, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-green.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a {
    color: #333;
    padding: 7px;
}

/* line 3011, ../sass/template/_elements.scss */
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
    background: transparent;
}

/* line 3014, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-green.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body {
    background: transparent;
    border: 0;
}

/* line 3018, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel.vc_active, .wpb-js-composer .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-body {
    background: transparent;
    border: 0;
    padding: 0;
}

/* line 3023, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
    background: #b5a473 !important;
}

/* line 3026, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
    left: auto !important;
    right: 0;
    width: 23px;
    height: 23px;
    background: #d3d3d3;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .wpb-js-composer .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
    left: 0;
    right: auto;
}

/* line 3034, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
    background: #ebebeb !important;
    padding: 18px 15px 15px 30px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
    padding: 18px 30px 15px 15px;
}

/* line 3039, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a {
    padding: 0;
}

/* line 3043, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_tta-shape-round .vc_tta-tabs-container {
    margin: 0;
}

/* line 3047, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-green.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels, .wpb-js-composer .vc_tta-color-green.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels::after, .wpb-js-composer .vc_tta-color-green.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels::before {
    border-color: transparent !important;
}

/* line 3050, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-green.vc_tta-style-modern.vc_tta-tabs .vc_tta-panels {
    background-color: transparent !important;
}

/* line 3053, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::after, .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon::before, .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-controls-icon::after, .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-controls-icon::before {
    border-color: #FFFFFF !important;
}

/* line 3058, ../sass/template/_elements.scss */
.mfp-prevent-close:after {
    content: "\e911" !important;
}

/* line 3061, ../sass/template/_elements.scss */
.mfp-prevent-close:before, .mfp-prevent-close:after {
    opacity: 1 !important;
    display: block;
    font-size: 24px !important;
    background: transparent !important;
    color: #FFFFFF !important;
    font-family: "univero" !important;
    border: 0 !important;
}

/* line 3072, ../sass/template/_elements.scss */
.mfp-prevent-close.mfp-arrow-right:after {
    content: "\e912" !important;
}

/* line 3078, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_tta-shape-round .vc_tta-tabs-container {
    margin: 0 !important;
}

/* line 3082, ../sass/template/_elements.scss */
.letter--small {
    letter-spacing: .5px !important;
}

/* line 3085, ../sass/template/_elements.scss */
.letter--medium {
    letter-spacing: 1px !important;
}

/* line 3088, ../sass/template/_elements.scss */
.letter--large {
    letter-spacing: 4px !important;
}

@media only screen and (max-width: 767px) {
    /* line 3094, ../sass/template/_elements.scss */
    .ninzio-footer .mobile-mb40 {
        margin-bottom: 40px !important;
    }

    /* line 3097, ../sass/template/_elements.scss */
    .ninzio-footer .mobile-mb50 {
        margin-bottom: 50px !important;
    }
}

@media (max-width: 640px) {
    /* line 3102, ../sass/template/_elements.scss */
    .ninzio-footer .mobile-mb40 {
        margin-bottom: 40px !important;
    }

    /* line 3105, ../sass/template/_elements.scss */
    .ninzio-footer .mobile-mb50 {
        margin-bottom: 50px !important;
    }
}

/* line 3111, ../sass/template/_elements.scss */
.border-1 {
    border: 1px solid #e0e0e0;
}

/* line 3114, ../sass/template/_elements.scss */
.pd-3 {
    padding: 30px;
}

/* line 3118, ../sass/template/_elements.scss */
.wpb_single_image img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

/* line 3122, ../sass/template/_elements.scss */
.mobile-no-padding {
    outline: none;
}

@media only screen and (max-width: 767px) {
    /* line 3122, ../sass/template/_elements.scss */
    .mobile-no-padding {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media (max-width: 640px) {
    /* line 3122, ../sass/template/_elements.scss */
    .mobile-no-padding {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media (max-width: 1200px) {
    /* line 3134, ../sass/template/_elements.scss */
    .mobile-padding-0 .vc_column-inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 3134, ../sass/template/_elements.scss */
    .mobile-padding-0 .vc_column-inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media only screen and (max-width: 767px) {
    /* line 3134, ../sass/template/_elements.scss */
    .mobile-padding-0 .vc_column-inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 640px) {
    /* line 3134, ../sass/template/_elements.scss */
    .mobile-padding-0 .vc_column-inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* line 3154, ../sass/template/_elements.scss */
.pd-l-80 {
    padding-left: 80px !important;
}

@media (max-width: 1200px) {
    /* line 3154, ../sass/template/_elements.scss */
    .pd-l-80 {
        padding-left: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 3154, ../sass/template/_elements.scss */
    .pd-l-80 {
        padding-left: 30px !important;
    }
}

@media only screen and (max-width: 767px) {
    /* line 3154, ../sass/template/_elements.scss */
    .pd-l-80 {
        padding-left: 20px !important;
    }
}

@media (max-width: 640px) {
    /* line 3154, ../sass/template/_elements.scss */
    .pd-l-80 {
        padding-left: 10px !important;
    }
}

/* line 3169, ../sass/template/_elements.scss */
.pd-r-80 {
    padding-right: 80px !important;
}

@media (max-width: 1200px) {
    /* line 3169, ../sass/template/_elements.scss */
    .pd-r-80 {
        padding-right: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 3169, ../sass/template/_elements.scss */
    .pd-r-80 {
        padding-right: 30px !important;
    }
}

@media only screen and (max-width: 767px) {
    /* line 3169, ../sass/template/_elements.scss */
    .pd-r-80 {
        padding-right: 20px !important;
    }
}

@media (max-width: 640px) {
    /* line 3169, ../sass/template/_elements.scss */
    .pd-r-80 {
        padding-right: 10px !important;
    }
}

@media (max-width: 640px) {
    /* line 3184, ../sass/template/_elements.scss */
    .mobile-col-3 {
        width: 33.33% !important;
    }
}

/* line 3191, ../sass/template/_elements.scss */
.list-info .list-info-item {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}

/* line 3196, ../sass/template/_elements.scss */
.list-info .list-info-item .list-info-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 0 0 25px;
    -moz-box-flex: 0 0 25px;
    -webkit-flex: 0 0 25px;
    -ms-flex: 0 0 25px;
    flex: 0 0 25px;
    max-width: 25px;
    font-size: 0;
    color: transparent;
    margin-right: 15px;
    width: 25px;
    height: 25px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .list-info .list-info-item .list-info-icon {
    margin-left: 15px;
    margin-right: inherit;
}

/* line 3204, ../sass/template/_elements.scss */
.list-info .list-info-item .list-info-icon i {
    color: transparent;
}

/* line 3206, ../sass/template/_elements.scss */
.list-info .list-info-item .list-info-icon i:before {
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    font-size: 12px;
    margin: 0;
    color: #FFFFFF;
    background-color: #b5a473;
}

/* line 3218, ../sass/template/_elements.scss */
.list-info .list-info-item .list-info-label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 0 0 90%;
    -moz-box-flex: 0 0 90%;
    -webkit-flex: 0 0 90%;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
}

/* line 3230, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta.vc_general .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer .vc_tta.vc_general .vc_tta-panels .vc_tta-panel-body {
    padding: 0;
    background-color: transparent;
}

/* line 3239, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab {
    text-align: center;
}

/* line 3244, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab:last-child a i:before, .wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab:last-child a i:after {
    border-color: transparent;
}

/* line 3251, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab.vc_active .vc_tta-title-text {
    color: #b5a473;
}

/* line 3254, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab.vc_active > a {
    background-image: none;
    background-color: transparent;
    border-color: transparent;
}

/* line 3258, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab.vc_active > a .vc_tta-icon {
    color: #FFFFFF !important;
    border-color: #b5a473;
    background-color: #b5a473;
}

/* line 3265, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a {
    min-width: 294px;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    position: relative;
    background-image: none;
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 3276, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:hover, .wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:focus, .wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:active {
    background-image: none;
    background-color: transparent;
    border-color: transparent;
}

/* line 3280, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:hover .vc_tta-title-text, .wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:focus .vc_tta-title-text, .wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:active .vc_tta-title-text {
    color: #b5a473;
}

/* line 3283, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:hover .vc_tta-icon, .wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:focus .vc_tta-icon, .wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:active .vc_tta-icon {
    color: #FFFFFF !important;
    border-color: #b5a473;
    background-color: #b5a473;
}

/* line 3289, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a:before {
    display: none !important;
}

/* line 3292, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a .vc_tta-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    width: 100px;
    height: 100px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    font-size: 56px;
    padding: 5px;
    margin: 0 auto;
    text-align: center;
    color: #b5a473;
    border-color: #f3f3f3;
    background-color: #f3f3f3;
}

/* line 3307, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a .vc_tta-icon:after {
    background: transparent;
    display: block !important;
    width: 170px;
    height: 1px;
    border-top: 1px dotted #e0e0e0;
    top: 50%;
    content: "";
    position: absolute;
    right: -183px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a .vc_tta-icon:after {
    left: -183px;
    right: auto;
}

/* line 3320, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-color-green.vc_tta-style-modern .vc_tta-tab > a .vc_tta-title-text {
    display: inline-block;
    vertical-align: bottom;
    font-weight: 500;
    color: #999999;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-size: 18px;
    margin: 10px 0;
    letter-spacing: 1.5px;
}

/* line 3336, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-shape-round .vc_tta-tabs-container {
    margin: 0;
}

/* line 3341, ../sass/template/_elements.scss */
.wpb-js-composer .vc_tta-container .vc_tta-shape-round .vc_tta-tab > a .vc_tta-icon {
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

/* line 3350, ../sass/template/_elements.scss */
.vc_progress_bar .vc_single_bar:last-child {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin-bottom: 60px;
}

/* 3. form */
/* line 2, ../sass/template/_form.scss */
button, .btn, .edr-membership .edr-buy-widget__link,
.edr-membership .edr-membership-buy-link,
.edr_membership .edr-buy-widget__link,
.edr_membership .edr-membership-buy-link {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 4, ../sass/template/_form.scss */
button:hover, button:focus, .btn:hover, .edr-membership .edr-buy-widget__link:hover,
.edr-membership .edr-membership-buy-link:hover,
.edr_membership .edr-buy-widget__link:hover,
.edr_membership .edr-membership-buy-link:hover, .btn:focus, .edr-membership .edr-buy-widget__link:focus,
.edr-membership .edr-membership-buy-link:focus,
.edr_membership .edr-buy-widget__link:focus,
.edr_membership .edr-membership-buy-link:focus {
    outline: none !important;
}

/* line 8, ../sass/template/_form.scss */
.btn-outline-light {
    color: #FFFFFF !important;
    background-color: transparent;
    border-color: #FFFFFF !important;
}

/* line 79, ../sass/mixins/_template-mixins.scss */
.btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active, .btn-outline-light.active {
    color: #252525;
    background-color: #FFFFFF !important;
    border-color: #252525;
}

/* line 87, ../sass/mixins/_template-mixins.scss */
.open .btn-outline-light.dropdown-toggle {
    color: #252525;
    background-color: #FFFFFF !important;
    border-color: #252525;
}

/* line 92, ../sass/mixins/_template-mixins.scss */
.btn-outline-light:active, .btn-outline-light.active {
    background-image: none;
}

/* line 96, ../sass/mixins/_template-mixins.scss */
.open .btn-outline-light.dropdown-toggle {
    background-image: none;
}

/* line 102, ../sass/mixins/_template-mixins.scss */
.btn-outline-light.disabled, .btn-outline-light.disabled:hover, .btn-outline-light.disabled:focus, .btn-outline-light.disabled:active, .btn-outline-light.disabled.active, .btn-outline-light[disabled], .btn-outline-light[disabled]:hover, .btn-outline-light[disabled]:focus, .btn-outline-light[disabled]:active, .btn-outline-light[disabled].active, fieldset[disabled] .btn-outline-light, fieldset[disabled] .btn-outline-light:hover, fieldset[disabled] .btn-outline-light:focus, fieldset[disabled] .btn-outline-light:active, fieldset[disabled] .btn-outline-light.active {
    background-color: transparent;
    border-color: #FFFFFF !important;
}

/* line 112, ../sass/mixins/_template-mixins.scss */
.btn-outline-light .badge {
    color: transparent;
    background-color: #FFFFFF !important;
}

/* line 62, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-default {
    background: transparent;
    border-color: #fff !important;
    color: #fff !important;
}

/* line 66, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-default:hover {
    color: #b5a473;
    border-color: #fff !important;
    background: #fff !important;
}

/* line 62, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-primary {
    background: transparent;
    border-color: #252525;
    color: #252525;
}

/* line 66, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-primary:hover {
    color: #fff !important;
    border-color: #252525;
    background: #252525;
}

/* line 62, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-success {
    background: transparent;
    border-color: #b5a473;
    color: #b5a473;
}

/* line 66, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-success:hover {
    color: #FFFFFF !important;
    border-color: #b5a473;
    background: #b5a473;
}

/* line 62, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-info {
    background: transparent;
    border-color: #00aeef;
    color: #00aeef;
}

/* line 66, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-info:hover {
    color: #FFFFFF !important;
    border-color: #00aeef;
    background: #00aeef;
}

/* line 62, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-danger {
    background: transparent;
    border-color: #f65b47;
    color: #f65b47;
}

/* line 66, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-danger:hover {
    color: #FFFFFF !important;
    border-color: #f65b47;
    background: #f65b47;
}

/* line 62, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-warning {
    background: transparent;
    border-color: #fdb900;
    color: #fdb900;
}

/* line 66, ../sass/mixins/_template-mixins.scss */
.btn-outline.btn-warning:hover {
    color: #FFFFFF !important;
    border-color: #fdb900;
    background: #fdb900;
}

/* line 51, ../sass/mixins/_template-mixins.scss */
.btn-inverse.btn-primary:hover {
    color: #fff !important;
    background: #b5a473;
    border-color: #b5a473;
}

/* line 51, ../sass/mixins/_template-mixins.scss */
.btn-inverse.btn-success:hover {
    color: #b5a473;
    background: #FFFFFF !important;
}

/* line 51, ../sass/mixins/_template-mixins.scss */
.btn-inverse.btn-info:hover {
    color: #00aeef;
    background: #FFFFFF !important;
}

/* line 51, ../sass/mixins/_template-mixins.scss */
.btn-inverse.btn-danger:hover {
    color: #f65b47;
    background: #FFFFFF !important;
}

/* line 51, ../sass/mixins/_template-mixins.scss */
.btn-inverse.btn-warning:hover {
    color: #fdb900;
    background: #FFFFFF !important;
}

/* line 51, ../sass/mixins/_template-mixins.scss */
.btn-inverse.btn-theme:hover {
    color: #b5a473;
    background: #FFFFFF !important;
}

/* line 28, ../sass/template/_form.scss */
.btn-dark-double {
    font-size: 13px;
    font-weight: 600;
    color: #999999;
    border: 2px solid #4b4d4e;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding: 10px 15px;
    background: transparent;
}

/* line 36, ../sass/template/_form.scss */
.btn-dark-double:hover, .btn-dark-double:active {
    background: #252525;
    color: rgba(255, 255, 255, 0.7);
    border-color: #181818;
}

/* line 42, ../sass/template/_form.scss */
.btn.btn-dark, .edr-membership .btn-dark.edr-buy-widget__link,
.edr-membership .btn-dark.edr-membership-buy-link,
.edr_membership .btn-dark.edr-buy-widget__link,
.edr_membership .btn-dark.edr-membership-buy-link {
    border: 1px solid #e0e0e0 !important;
    background: #eeeeee !important;
    color: #888888 !important;
}

/* line 46, ../sass/template/_form.scss */
.btn.btn-dark:hover, .edr-membership .btn-dark.edr-buy-widget__link:hover,
.edr-membership .btn-dark.edr-membership-buy-link:hover,
.edr_membership .btn-dark.edr-buy-widget__link:hover,
.edr_membership .btn-dark.edr-membership-buy-link:hover, .btn.btn-dark:active, .edr-membership .btn-dark.edr-buy-widget__link:active,
.edr-membership .btn-dark.edr-membership-buy-link:active,
.edr_membership .btn-dark.edr-buy-widget__link:active,
.edr_membership .btn-dark.edr-membership-buy-link:active {
    background: lightgray !important;
    border-color: lightgray !important;
}

/* line 51, ../sass/template/_form.scss */
.btn-sm {
    font-weight: 500;
}

/* line 54, ../sass/template/_form.scss */
.btn-border2x {
    border-width: 2px;
}

/* line 57, ../sass/template/_form.scss */
.btn.btn-lighten, .edr-membership .btn-lighten.edr-buy-widget__link,
.edr-membership .btn-lighten.edr-membership-buy-link,
.edr_membership .btn-lighten.edr-buy-widget__link,
.edr_membership .btn-lighten.edr-membership-buy-link {
    border-color: #fff !important;
    color: #fff !important;
    background: transparent;
}

/* line 61, ../sass/template/_form.scss */
.btn.btn-lighten:hover, .edr-membership .btn-lighten.edr-buy-widget__link:hover,
.edr-membership .btn-lighten.edr-membership-buy-link:hover,
.edr_membership .btn-lighten.edr-buy-widget__link:hover,
.edr_membership .btn-lighten.edr-membership-buy-link:hover {
    color: #fff !important;
    background: transparent;
    border-color: #fff !important;
}

/* line 67, ../sass/template/_form.scss */
.btn.btn-white, .edr-membership .btn-white.edr-buy-widget__link,
.edr-membership .btn-white.edr-membership-buy-link,
.edr_membership .btn-white.edr-buy-widget__link,
.edr_membership .btn-white.edr-membership-buy-link {
    background: #fff !important;
    color: #999999;
    border-color: #fff !important;
}

/* line 71, ../sass/template/_form.scss */
.btn.btn-white:hover, .edr-membership .btn-white.edr-buy-widget__link:hover,
.edr-membership .btn-white.edr-membership-buy-link:hover,
.edr_membership .btn-white.edr-buy-widget__link:hover,
.edr_membership .btn-white.edr-membership-buy-link:hover {
    color: #999999;
    background: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

/* line 77, ../sass/template/_form.scss */
.btn-link-dark {
    color: #999999 !important;
    font-size: 18px !important;
    text-transform: inherit !important;
    line-height: 1.1 !important;
}

/* line 83, ../sass/template/_form.scss */
.btn-reverse {
    background: transparent;
    font-weight: 400;
    text-transform: capitalize;
}

/* line 87, ../sass/template/_form.scss */
.btn-reverse:hover, .btn-reverse:active, .btn-reverse:focus {
    color: #fff !important;
    background: #b5a473;
}

/* line 91, ../sass/template/_form.scss */
.btn-reverse i {
    font-size: 16px;
    margin-right: 8px;
    vertical-align: text-top;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .btn-reverse i {
    margin-left: 8px;
    margin-right: inherit;
}

/* line 97, ../sass/template/_form.scss */
.btn-gray {
    background: #eeeeee;
    color: #969696;
}

/* line 100, ../sass/template/_form.scss */
.btn-gray:hover, .btn-gray:active {
    background: #cccccc;
    color: #616161;
}

/* line 105, ../sass/template/_form.scss */
.btn-pink {
    color: #fff !important;
    background-color: #e3a3a2;
    border-color: #e3a3a2;
}

/* line 11, ../sass/bootstrap/mixins/_buttons.scss */
.btn-pink:hover, .btn-pink:focus, .btn-pink:active, .btn-pink.active, .open > .btn-pink.dropdown-toggle {
    color: #fff !important !important;
    background-color: #d77c7b;
    border-color: #d57473;
}

/* line 20, ../sass/bootstrap/mixins/_buttons.scss */
.btn-pink:active, .btn-pink.active, .open > .btn-pink.dropdown-toggle {
    background-image: none;
}

/* line 28, ../sass/bootstrap/mixins/_buttons.scss */
.btn-pink.disabled, .btn-pink.disabled:hover, .btn-pink.disabled:focus, .btn-pink.disabled:active, .btn-pink.disabled.active, .btn-pink[disabled], .btn-pink[disabled]:hover, .btn-pink[disabled]:focus, .btn-pink[disabled]:active, .btn-pink[disabled].active, fieldset[disabled] .btn-pink, fieldset[disabled] .btn-pink:hover, fieldset[disabled] .btn-pink:focus, fieldset[disabled] .btn-pink:active, fieldset[disabled] .btn-pink.active {
    background-color: #e3a3a2;
    border-color: #e3a3a2;
}

/* line 38, ../sass/bootstrap/mixins/_buttons.scss */
.btn-pink .badge {
    color: #e3a3a2;
    background-color: #fff !important;
}

/* line 108, ../sass/template/_form.scss */
.btn-3d {
    border: 0;
    border: 0;
    box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    -o-box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    -ms-box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    border: 0;
    border: 0;
}

/* line 33, ../sass/mixins/_template-mixins.scss */
.btn-3d.btn-lg {
    box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    -o-box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
    -ms-box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
}

/* line 33, ../sass/mixins/_template-mixins.scss */
.btn-3d.btn-sm {
    box-shadow: 0 -4px 0 0 rgba(0, 0, 0, 0.15) inset;
    -o-box-shadow: 0 -4px 0 0 rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 -4px 0 0 rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 0 -4px 0 0 rgba(0, 0, 0, 0.15) inset;
    -ms-box-shadow: 0 -4px 0 0 rgba(0, 0, 0, 0.15) inset;
}

/* line 33, ../sass/mixins/_template-mixins.scss */
.btn-3d.btn-xs {
    box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    -o-box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
    -ms-box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
}

/* line 114, ../sass/template/_form.scss */
.btn-shadow {
    border: 0;
    box-shadow: 0 -15px 15px -10px rgba(0, 0, 0, 0.3) inset;
    -o-box-shadow: 0 -15px 15px -10px rgba(0, 0, 0, 0.3) inset;
    -moz-box-shadow: 0 -15px 15px -10px rgba(0, 0, 0, 0.3) inset;
    -webkit-box-shadow: 0 -15px 15px -10px rgba(0, 0, 0, 0.3) inset;
    -ms-box-shadow: 0 -15px 15px -10px rgba(0, 0, 0, 0.3) inset;
}

/* line 117, ../sass/template/_form.scss */
.btn-theme {
    color: #fff !important;
    background-color: #b5a473;
    border-color: #b5a473;
}

/* line 11, ../sass/bootstrap/mixins/_buttons.scss */
.btn-theme:hover, .btn-theme:focus, .btn-theme:active, .btn-theme.active, .open > .btn-theme.dropdown-toggle {
    color: #fff !important !important;
    background-color: #129968;
    border-color: #119062;
}

/* line 20, ../sass/bootstrap/mixins/_buttons.scss */
.btn-theme:active, .btn-theme.active, .open > .btn-theme.dropdown-toggle {
    background-image: none;
}

/* line 28, ../sass/bootstrap/mixins/_buttons.scss */
.btn-theme.disabled, .btn-theme.disabled:hover, .btn-theme.disabled:focus, .btn-theme.disabled:active, .btn-theme.disabled.active, .btn-theme[disabled], .btn-theme[disabled]:hover, .btn-theme[disabled]:focus, .btn-theme[disabled]:active, .btn-theme[disabled].active, fieldset[disabled] .btn-theme, fieldset[disabled] .btn-theme:hover, fieldset[disabled] .btn-theme:focus, fieldset[disabled] .btn-theme:active, fieldset[disabled] .btn-theme.active {
    background-color: #b5a473;
    border-color: #b5a473;
}

/* line 38, ../sass/bootstrap/mixins/_buttons.scss */
.btn-theme .badge {
    color: #b5a473;
    background-color: #fff !important;
}

/* line 120, ../sass/template/_form.scss */
.btn-dark {
    color: #fff !important;
    background-color: #616161;
    border-color: #616161;
}

/* line 11, ../sass/bootstrap/mixins/_buttons.scss */
.btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active, .open > .btn-dark.dropdown-toggle {
    color: #fff !important !important;
    background-color: #484848;
    border-color: #424242;
}

/* line 20, ../sass/bootstrap/mixins/_buttons.scss */
.btn-dark:active, .btn-dark.active, .open > .btn-dark.dropdown-toggle {
    background-image: none;
}

/* line 28, ../sass/bootstrap/mixins/_buttons.scss */
.btn-dark.disabled, .btn-dark.disabled:hover, .btn-dark.disabled:focus, .btn-dark.disabled:active, .btn-dark.disabled.active, .btn-dark[disabled], .btn-dark[disabled]:hover, .btn-dark[disabled]:focus, .btn-dark[disabled]:active, .btn-dark[disabled].active, fieldset[disabled] .btn-dark, fieldset[disabled] .btn-dark:hover, fieldset[disabled] .btn-dark:focus, fieldset[disabled] .btn-dark:active, fieldset[disabled] .btn-dark.active {
    background-color: #616161;
    border-color: #616161;
}

/* line 38, ../sass/bootstrap/mixins/_buttons.scss */
.btn-dark .badge {
    color: #616161;
    background-color: #fff !important;
}

/* line 123, ../sass/template/_form.scss */
.btn-theme-color-second {
    background: #b5a473 !important;
}

/* line 125, ../sass/template/_form.scss */
.btn-theme-color-second:hover, .btn-theme-color-second:active {
    background: #13a26e !important;
}

/* line 129, ../sass/template/_form.scss */
.btn-theme-second {
    color: #fff !important;
    background-color: #b5a473;
    border-color: #b5a473;
}

/* line 11, ../sass/bootstrap/mixins/_buttons.scss */
.btn-theme-second:hover, .btn-theme-second:focus, .btn-theme-second:active, .btn-theme-second.active, .open > .btn-theme-second.dropdown-toggle {
    color: #fff !important !important;
    background-color: #129968;
    border-color: #119062;
}

/* line 20, ../sass/bootstrap/mixins/_buttons.scss */
.btn-theme-second:active, .btn-theme-second.active, .open > .btn-theme-second.dropdown-toggle {
    background-image: none;
}

/* line 28, ../sass/bootstrap/mixins/_buttons.scss */
.btn-theme-second.disabled, .btn-theme-second.disabled:hover, .btn-theme-second.disabled:focus, .btn-theme-second.disabled:active, .btn-theme-second.disabled.active, .btn-theme-second[disabled], .btn-theme-second[disabled]:hover, .btn-theme-second[disabled]:focus, .btn-theme-second[disabled]:active, .btn-theme-second[disabled].active, fieldset[disabled] .btn-theme-second, fieldset[disabled] .btn-theme-second:hover, fieldset[disabled] .btn-theme-second:focus, fieldset[disabled] .btn-theme-second:active, fieldset[disabled] .btn-theme-second.active {
    background-color: #b5a473;
    border-color: #b5a473;
}

/* line 38, ../sass/bootstrap/mixins/_buttons.scss */
.btn-theme-second .badge {
    color: #b5a473;
    background-color: #fff !important;
}

/* line 132, ../sass/template/_form.scss */
.btn-theme.btn-outline {
    color: #999999;
    border-color: #b5a473;
    background: #fff !important;
}

/* line 136, ../sass/template/_form.scss */
.btn-theme.btn-outline:hover, .btn-theme.btn-outline:active {
    color: #fff !important;
    background: #b5a473;
    border-color: #b5a473;
}

/* line 142, ../sass/template/_form.scss */
.more-link {
    display: inline-block;
    margin: 30px 0px 0px 0px;
    font-family: "Raleway", cursive, sans-serif;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #FFFFFF;
    background-image: none;
    border: 2px solid transparent;
    background-color: #b5a473;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 40px;
    font-size: 12px;
    line-height: 1.625;
    border-radius: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

/* line 161, ../sass/template/_form.scss */
.more-link:hover, .more-link:focus, .more-link:active {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #b5a473;
}

/* Search
------------------------------------------------*/
/* line 172, ../sass/template/_form.scss */
.search-popup .dropdown-menu {
    padding: 10px;
}

/* line 176, ../sass/template/_form.scss */
.btn-action {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    line-height: 30px;
    margin-bottom: 0;
    padding: 0px 10px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
}

/* line 193, ../sass/template/_form.scss */
.searchform .input-search {
    padding: 15px;
    border-right: 0;
    line-height: 1.5;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .searchform .input-search {
    border-left: 0;
    border-right: inherit;
}

/* line 198, ../sass/template/_form.scss */
.searchform .btn-search {
    vertical-align: top;
    color: #adafac;
    padding: 12px 5px;
}

/* line 203, ../sass/template/_form.scss */
.searchform .input-group-btn {
    line-height: 100%;
}

/* line 207, ../sass/template/_form.scss */
.ninzio-search {
    height: 48px;
    padding-right: 55px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-search {
    padding-left: 55px;
    padding-right: inherit;
}

/* line 210, ../sass/template/_form.scss */
.ninzio-search .button-search {
    display: block;
    margin-top: 1px;
    font-size: 16px;
    color: #999999;
}

/* line 215, ../sass/template/_form.scss */
.ninzio-search .button-search:hover {
    color: #999999 !important;
}

/* line 222, ../sass/template/_form.scss */
.search-category .btn, .search-category .edr-membership .edr-buy-widget__link, .edr-membership .search-category .edr-buy-widget__link,
.search-category .edr-membership .edr-membership-buy-link,
.edr-membership .search-category .edr-membership-buy-link,
.search-category .edr_membership .edr-buy-widget__link,
.edr_membership .search-category .edr-buy-widget__link,
.search-category .edr_membership .edr-membership-buy-link,
.edr_membership .search-category .edr-membership-buy-link {
    margin-left: 10px !important;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .search-category .btn, .rtl .search-category .edr-membership .edr-buy-widget__link, .edr-membership .rtl .search-category .edr-buy-widget__link,
.rtl .search-category .edr-membership .edr-membership-buy-link,
.edr-membership .rtl .search-category .edr-membership-buy-link,
.rtl .search-category .edr_membership .edr-buy-widget__link,
.edr_membership .rtl .search-category .edr-buy-widget__link,
.rtl .search-category .edr_membership .edr-membership-buy-link,
.edr_membership .rtl .search-category .edr-membership-buy-link {
    margin-right: 10px !important;
    margin-left: inherit;
}

/* line 227, ../sass/template/_form.scss */
.search-category .wpo-search-inner label.form-control {
    border: none;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

/* line 233, ../sass/template/_form.scss */
.search-category select {
    border: none;
    text-transform: capitalize;
    font-weight: 500;
}

/* comment form
------------------------------------------------*/
/* line 242, ../sass/template/_form.scss */
.chosen-container {
    width: 100% !important;
}

/* line 246, ../sass/template/_form.scss */
.input-group-form {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background: transparent;
    margin: 0 0 5px 0;
}

/* line 250, ../sass/template/_form.scss */
.input-group-form .form-control-reversed {
    border: 0px;
    background: #222222;
    color: #cccccc;
    font-size: 14px;
    height: 34px;
}

/* line 256, ../sass/template/_form.scss */
.input-group-form .form-control-reversed:hover, .input-group-form .form-control-reversed:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* line 261, ../sass/template/_form.scss */
.input-group-form .input-group-addon {
    border: 0;
    background: #222222;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

/* line 267, ../sass/template/_form.scss */
.woocommerce #review_form #respond p {
    margin: 20px 0 0;
}

/* line 272, ../sass/template/_form.scss */
#review_form .comment-form label {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

/* line 278, ../sass/template/_form.scss */
#review_form .comment-form > p,
#review_form .comment-form > div {
    margin-top: 20px;
}

/* line 281, ../sass/template/_form.scss */
#review_form .comment-form > p:first-child,
#review_form .comment-form > div:first-child {
    margin: 0;
}

/* line 284, ../sass/template/_form.scss */
#review_form .comment-form > p input, #review_form .comment-form > p textarea,
#review_form .comment-form > div input,
#review_form .comment-form > div textarea {
    width: 100%;
}

@media (min-width: 1024px) {
    /* line 289, ../sass/template/_form.scss */
    #review_form .comment-form > p,
    #review_form .comment-form > div {
        display: table;
        width: 100%;
    }

    /* line 293, ../sass/template/_form.scss */
    #review_form .comment-form > p > *,
    #review_form .comment-form > div > * {
        display: table-cell;
        vertical-align: top;
        padding-top: 10px;
    }

    /* line 298, ../sass/template/_form.scss */
    #review_form .comment-form > p label,
    #review_form .comment-form > div label {
        width: 150px;
    }

    /* line 301, ../sass/template/_form.scss */
    #review_form .comment-form > p input,
    #review_form .comment-form > div input {
        width: 100%;
    }

    /* line 305, ../sass/template/_form.scss */
    #review_form .comment-form .you-rating {
        width: 150px;
        float: left;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl #review_form .comment-form .you-rating {
        float: right;
    }

    /* line 309, ../sass/template/_form.scss */
    #review_form .comment-form .comment-form-rating {
        overflow: hidden;
    }

    /* line 312, ../sass/template/_form.scss */
    #review_form .comment-form .form-submit {
        padding-left: 150px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl #review_form .comment-form .form-submit {
        padding-right: 150px;
        padding-left: inherit;
    }
}

/* line 316, ../sass/template/_form.scss */
#review_form .comment-form input {
    height: 45px;
}

/* line 319, ../sass/template/_form.scss */
#review_form .comment-form input, #review_form .comment-form textarea {
    padding: 10px 15px;
    height: 45px;
    font-family: "Montserrat";
    font-size: 16px;
    color: #a4a4a4;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* line 647, ../sass/mixins/_template-mixins.scss */
#review_form .comment-form input:-webkit-input-placeholder, #review_form .comment-form textarea:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
#review_form .comment-form input:-moz-placeholder, #review_form .comment-form textarea:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
#review_form .comment-form input::-moz-placeholder, #review_form .comment-form textarea::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
#review_form .comment-form input:-ms-input-placeholder, #review_form .comment-form textarea:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 333, ../sass/template/_form.scss */
#review_form .comment-form input:focus, #review_form .comment-form textarea:focus {
    border-color: #b5a473;
    -webkit-box-shadow: inset 0 0 0 1px #b5a473;
    box-shadow: inset 0 0 0 1px #b5a473;
}

/* line 338, ../sass/template/_form.scss */
#review_form .comment-form textarea {
    height: 120px !important;
}

/* line 341, ../sass/template/_form.scss */
#review_form .comment-form input#submit {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    font-family: "Raleway", cursive, sans-serif;
    font-weight: 700;
    background: #c8cace !important;
    text-transform: uppercase;
    color: #fff !important;
    display: inline-block;
    padding: 12px 50px;
    width: auto;
    border: none;
    height: 46px;
    letter-spacing: 1px;
    font-size: 12px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

/* line 356, ../sass/template/_form.scss */
#review_form .comment-form input#submit:hover, #review_form .comment-form input#submit:active, #review_form .comment-form input#submit:focus {
    color: #fff !important;
    background: #bbbdc2 !important;
}

/* line 364, ../sass/template/_form.scss */
#reviews #comments {
    margin: 0 0 60px;
    padding: 0;
}

/* line 367, ../sass/template/_form.scss */
#reviews #comments .woocommerce-noreviews {
    margin: 20px 0;
}

/* line 370, ../sass/template/_form.scss */
#reviews #comments .title-tab {
    border-top: 1px solid #e0e0e0;
    margin-bottom: 50px;
    margin-top: 50px;
    padding-top: 35px;
}

/* line 377, ../sass/template/_form.scss */
#reviews .commentlist {
    padding: 0;
}

/* line 381, ../sass/template/_form.scss */
#reviews .reviews-summary .review-summary-total {
    text-align: center;
    font-weight: 400;
}

/* line 384, ../sass/template/_form.scss */
#reviews .reviews-summary .review-summary-total .review-summary-result {
    width: 70px;
    height: 70px;
    text-align: center;
    border: 2px solid #b5a473;
    color: #b5a473;
    line-height: 66px;
    font-size: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-bottom: 8px;
}

/* line 395, ../sass/template/_form.scss */
#reviews .reviews-summary .review-summary-detal {
    overflow: hidden;
    display: block;
}

/* line 398, ../sass/template/_form.scss */
#reviews .reviews-summary .review-summary-detal .review-label {
    color: #000;
    font-weight: 400;
}

/* line 406, ../sass/template/_form.scss */
#reviews .comments {
    padding: 30px 0;
}

/* line 408, ../sass/template/_form.scss */
#reviews .comments .commentlist {
    margin: 15px 0;
}

/* line 410, ../sass/template/_form.scss */
#reviews .comments .commentlist .comment {
    margin-bottom: 30px;
}

/* line 413, ../sass/template/_form.scss */
#reviews .comments .commentlist .comment-image {
    min-width: 100px;
    margin-right: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #reviews .comments .commentlist .comment-image {
    margin-left: 20px;
    margin-right: inherit;
}

/* line 416, ../sass/template/_form.scss */
#reviews .comments .commentlist .comment-image > span {
    display: block;
    margin-bottom: 5px;
}

/* line 420, ../sass/template/_form.scss */
#reviews .comments .commentlist .comment-image .avatar {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* line 423, ../sass/template/_form.scss */
#reviews .comments .commentlist .comment-image .author {
    color: #000;
}

/* line 427, ../sass/template/_form.scss */
#reviews .comments .commentlist .comment-text {
    border: 1px solid #e0e0e0;
    padding: 15px 30px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

/* line 431, ../sass/template/_form.scss */
#reviews .comments .commentlist .comment-text > div {
    margin-bottom: 7px;
}

/* line 437, ../sass/template/_form.scss */
#reviews .review_form_wrapper {
    border-top: 1px solid #e0e0e0;
}

/* line 440, ../sass/template/_form.scss */
#reviews .comment-reply-title {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    line-height: 28px;
    text-transform: uppercase;
    color: #999999;
    margin: 0 0 30px !important;
}

/* line 451, ../sass/template/_form.scss */
#reviews .title-info {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px !important;
    font-family: "Lato";
}

/* line 457, ../sass/template/_form.scss */
#reviews .title-info {
    margin: 0 0 20px !important;
}

/* line 460, ../sass/template/_form.scss */
#reviews .average-value {
    font-size: 30px;
    font-weight: 700;
    color: #999999;
    line-height: 1.2;
}

/* line 465, ../sass/template/_form.scss */
#reviews .average-value span {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

/* line 475, ../sass/template/_form.scss */
.wpcf7-form span.wpcf7-not-valid-tip {
    margin-bottom: 12px;
}

/* line 478, ../sass/template/_form.scss */
.wpcf7-form textarea.form-control {
    height: 160px;
    resize: none;
}

/* line 482, ../sass/template/_form.scss */
.wpcf7-form .submit {
    text-align: left !important;
}

/* line 485, ../sass/template/_form.scss */
.wpcf7-form .wpcf7-submit {
    background: #c8cace !important;
    border-color: #c8cace !important;
}

/* line 488, ../sass/template/_form.scss */
.wpcf7-form .wpcf7-submit:hover {
    background: #c8cace !important;
    border-color: #c8cace !important;
}

/* line 493, ../sass/template/_form.scss */
.wpcf7-form .form-control {
    color: #a4a4a4;
    margin: 0 0 20px;
    height: 45px;
    background: #F9F9F9;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* line 647, ../sass/mixins/_template-mixins.scss */
.wpcf7-form .form-control:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
.wpcf7-form .form-control:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
.wpcf7-form .form-control::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
.wpcf7-form .form-control:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 506, ../sass/template/_form.scss */
.wpcf7-form .form-control:focus {
    border-color: #b5a473;
    -webkit-box-shadow: inset 0 0 0 1px #b5a473;
    box-shadow: inset 0 0 0 1px #b5a473;
}

/* line 513, ../sass/template/_form.scss */
.widget-search-form {
    padding: 56px 120px;
}

@media (max-width: 1200px) {
    /* line 513, ../sass/template/_form.scss */
    .widget-search-form {
        padding: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 513, ../sass/template/_form.scss */
    .widget-search-form {
        padding: 35px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 513, ../sass/template/_form.scss */
    .widget-search-form {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 513, ../sass/template/_form.scss */
    .widget-search-form {
        padding: 25px;
    }
}

@media (max-width: 640px) {
    /* line 513, ../sass/template/_form.scss */
    .widget-search-form {
        padding: 20px;
    }
}

/* line 530, ../sass/template/_form.scss */
.widget-search-form .left-search {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

/* line 535, ../sass/template/_form.scss */
.widget-search-form .search-form-item {
    max-width: 29%;
    -webkit-box-flex: 0 0 29%;
    -moz-box-flex: 0 0 29%;
    -webkit-flex: 0 0 29%;
    -ms-flex: 0 0 29%;
    flex: 0 0 29%;
    margin-right: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-search-form .search-form-item {
    margin-left: 20px;
    margin-right: inherit;
}

/* line 539, ../sass/template/_form.scss */
.widget-search-form .search-form-item.submit {
    -webkit-box-flex: 0 0 50px;
    -moz-box-flex: 0 0 50px;
    -webkit-flex: 0 0 50px;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
}

@media (max-width: 1200px) {
    /* line 535, ../sass/template/_form.scss */
    .widget-search-form .search-form-item {
        margin-bottom: 10px;
        margin-right: 10px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-search-form .search-form-item {
        margin-left: 10px;
        margin-right: inherit;
    }

    /* line 545, ../sass/template/_form.scss */
    .widget-search-form .search-form-item:last-child {
        margin-right: 0px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-search-form .search-form-item:last-child {
        margin-left: 0px;
        margin-right: inherit;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 535, ../sass/template/_form.scss */
    .widget-search-form .search-form-item {
        margin-bottom: 10px;
        margin-right: 10px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-search-form .search-form-item {
        margin-left: 10px;
        margin-right: inherit;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 535, ../sass/template/_form.scss */
    .widget-search-form .search-form-item {
        margin-bottom: 10px;
        margin-right: 20px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-search-form .search-form-item {
        margin-left: 20px;
        margin-right: inherit;
    }
}

@media only screen and (max-width: 767px) {
    /* line 535, ../sass/template/_form.scss */
    .widget-search-form .search-form-item {
        float: none !important;
        margin-bottom: 10px;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-search-form .search-form-item {
        margin-left: 0px;
        margin-right: inherit;
    }
}

@media (max-width: 640px) {
    /* line 535, ../sass/template/_form.scss */
    .widget-search-form .search-form-item {
        float: none !important;
        margin-bottom: 10px;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-search-form .search-form-item {
        margin-left: 0px;
        margin-right: inherit;
    }
}

/* line 571, ../sass/template/_form.scss */
.widget-search-form .search-form-item:last-child {
    margin: 0;
}

/* line 575, ../sass/template/_form.scss */
.widget-search-form .input_search, .widget-search-form select {
    border: 0px;
    padding: 8px 23px;
    height: 47px;
    color: #a4a4a4;
    min-width: 269px;
}

/* line 647, ../sass/mixins/_template-mixins.scss */
.widget-search-form .input_search:-webkit-input-placeholder, .widget-search-form select:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
.widget-search-form .input_search:-moz-placeholder, .widget-search-form select:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
.widget-search-form .input_search::-moz-placeholder, .widget-search-form select::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
.widget-search-form .input_search:-ms-input-placeholder, .widget-search-form select:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 586, ../sass/template/_form.scss */
.widget-search-form .btn, .widget-search-form .edr-membership .edr-buy-widget__link, .edr-membership .widget-search-form .edr-buy-widget__link,
.widget-search-form .edr-membership .edr-membership-buy-link,
.edr-membership .widget-search-form .edr-membership-buy-link,
.widget-search-form .edr_membership .edr-buy-widget__link,
.edr_membership .widget-search-form .edr-buy-widget__link,
.widget-search-form .edr_membership .edr-membership-buy-link,
.edr_membership .widget-search-form .edr-membership-buy-link {
    padding: 0;
    font-size: 16px;
    text-align: center;
    border: 2px solid #FFFFFF !important;
    width: 51px;
    height: 47px;
    background: transparent !important;
}

/* line 593, ../sass/template/_form.scss */
.widget-search-form .btn:hover, .widget-search-form .edr-membership .edr-buy-widget__link:hover, .edr-membership .widget-search-form .edr-buy-widget__link:hover,
.widget-search-form .edr-membership .edr-membership-buy-link:hover,
.edr-membership .widget-search-form .edr-membership-buy-link:hover,
.widget-search-form .edr_membership .edr-buy-widget__link:hover,
.edr_membership .widget-search-form .edr-buy-widget__link:hover,
.widget-search-form .edr_membership .edr-membership-buy-link:hover,
.edr_membership .widget-search-form .edr-membership-buy-link:hover, .widget-search-form .btn:active, .widget-search-form .edr-membership .edr-buy-widget__link:active, .edr-membership .widget-search-form .edr-buy-widget__link:active,
.widget-search-form .edr-membership .edr-membership-buy-link:active,
.edr-membership .widget-search-form .edr-membership-buy-link:active,
.widget-search-form .edr_membership .edr-buy-widget__link:active,
.edr_membership .widget-search-form .edr-buy-widget__link:active,
.widget-search-form .edr_membership .edr-membership-buy-link:active,
.edr_membership .widget-search-form .edr-membership-buy-link:active, .widget-search-form .btn:focus, .widget-search-form .edr-membership .edr-buy-widget__link:focus, .edr-membership .widget-search-form .edr-buy-widget__link:focus,
.widget-search-form .edr-membership .edr-membership-buy-link:focus,
.edr-membership .widget-search-form .edr-membership-buy-link:focus,
.widget-search-form .edr_membership .edr-buy-widget__link:focus,
.edr_membership .widget-search-form .edr-buy-widget__link:focus,
.widget-search-form .edr_membership .edr-membership-buy-link:focus,
.edr_membership .widget-search-form .edr-membership-buy-link:focus {
    border-color: #FFFFFF !important;
}

/* line 602, ../sass/template/_form.scss */
.btn.btn-theme:hover, .edr-membership .btn-theme.edr-buy-widget__link:hover,
.edr-membership .btn-theme.edr-membership-buy-link:hover,
.edr_membership .btn-theme.edr-buy-widget__link:hover,
.edr_membership .btn-theme.edr-membership-buy-link:hover, .btn.btn-theme:focus, .edr-membership .btn-theme.edr-buy-widget__link:focus,
.edr-membership .btn-theme.edr-membership-buy-link:focus,
.edr_membership .btn-theme.edr-buy-widget__link:focus,
.edr_membership .btn-theme.edr-membership-buy-link:focus, .btn.btn-theme:active, .edr-membership .btn-theme.edr-buy-widget__link:active,
.edr-membership .btn-theme.edr-membership-buy-link:active,
.edr_membership .btn-theme.edr-buy-widget__link:active,
.edr_membership .btn-theme.edr-membership-buy-link:active {
    color: #FFFFFF !important;
}

/* line 608, ../sass/template/_form.scss */
select {
    border: 1px solid #e0e0e0;
    height: 43px;
    padding: 5px 15px;
    font-weight: 400;
    font-size: 14px;
    font-family: "Montserrat";
}

/* 4. layout */
/*------------------------------------*\
    Topbar
\*------------------------------------*/
/* line 4, ../sass/template/_layout.scss */
.ninzio-topbar {
    border: 0;
    color: rgba(255, 255, 255, 0.6);
    background: #1f2227;
    text-transform: uppercase;
    font-size: 12px;
    -webkit-transition: top 0.5s ease 0s;
    -o-transition: top 0.5s ease 0s;
    transition: top 0.5s ease 0s;
}

.ninzio-topbar em {
    text-transform: lowercase;
    font-size: 10px;
}

/* line 11, ../sass/template/_layout.scss */
.ninzio-topbar a {
    color: #cccccc;
}

/* line 14, ../sass/template/_layout.scss */
.ninzio-topbar .widget {
    margin-bottom: 0;
}

/* line 17, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown {
    outline: none;
    background-color: transparent;
    border: 0;
    padding: 0;
    height: 42px;
    width: auto;
    border-left: 1px solid #36393d;
    border-right: 1px solid #36393d;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

/* line 28, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    background-color: #2c2e32;
    border: 0 none;
    left: auto;
    padding: 12px 0px;
    position: absolute;
    right: 0;
    top: 100%;
    width: 180px;
    margin: -1px 0 0 0;
}

/* line 38, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu > li {
    display: block;
    margin: 0;
    padding: 0;
}

/* line 42, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu > li > a {
    padding: 8px 16px;
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-topbar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu > li > a {
    float: right;
}

/* line 52, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    position: relative;
    padding: 15px 30px;
    border: 0 !important;
    background-color: transparent !important;
}

/* line 57, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    content: "\e90f";
    color: rgba(255, 255, 255, 0.6);
    font-family: "univero" !important;
    font-size: 8px;
    border: 0;
    top: 50%;
    right: 15px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 70, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown ul > li {
    border: 0;
}

/* line 72, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown ul > li:hover, .ninzio-topbar .wpml-ls-legacy-dropdown ul > li:active, .ninzio-topbar .wpml-ls-legacy-dropdown ul > li:focus {
    border: 0;
    background-color: transparent;
}

/* line 75, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown ul > li:hover a.wpml-ls-item-toggle:after, .ninzio-topbar .wpml-ls-legacy-dropdown ul > li:active a.wpml-ls-item-toggle:after, .ninzio-topbar .wpml-ls-legacy-dropdown ul > li:focus a.wpml-ls-item-toggle:after {
    color: #b5a473;
}

/* line 79, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown ul > li > a {
    border: 0;
    color: #cccccc;
    background-color: transparent;
}

/* line 83, ../sass/template/_layout.scss */
.ninzio-topbar .wpml-ls-legacy-dropdown ul > li > a:hover, .ninzio-topbar .wpml-ls-legacy-dropdown ul > li > a:active, .ninzio-topbar .wpml-ls-legacy-dropdown ul > li > a:focus {
    border: 0;
    color: #b5a473;
    background-color: transparent;
    text-decoration: none;
}

/* line 94, ../sass/template/_layout.scss */
.ninzio-topbar .contact-topbar .light {
    color: #cccccc;
}

/* line 98, ../sass/template/_layout.scss */
.ninzio-topbar .login-topbar {
    padding: 11px 20px;
    border-right: 1px solid #36393d;
}

/* line 101, ../sass/template/_layout.scss */
.ninzio-topbar .login-topbar a {
    color: rgba(255, 255, 255, 0.6);
}

/* line 104, ../sass/template/_layout.scss */
.ninzio-topbar .login-topbar .register {
    margin-left: 7px;
    padding-left: 7px;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-topbar .login-topbar .register {
    margin-right: 7px;
    margin-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-topbar .login-topbar .register {
    padding-right: 7px;
    padding-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-topbar .login-topbar .register {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-left: inherit;
}

/* line 110, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account {
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-topbar .accept-account {
    text-align: right;
}

/* line 113, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .account .icon {
    font-size: 8px;
}

/* line 117, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu {
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #2c2e32;
}

/* line 123, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu .collapse {
    padding: 0;
}

/* line 126, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu ul {
    padding: 12px 0;
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-topbar .accept-account .dropdown-menu ul {
    text-align: right;
}

/* line 129, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu ul li {
    padding: 1px 20px;
}

/* line 133, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu ul li:hover a:focus, .ninzio-topbar .accept-account .dropdown-menu ul li:hover a:hover, .ninzio-topbar .accept-account .dropdown-menu ul li:hover a:active {
    color: #b5a473;
}

/* line 136, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu ul li:hover a:before, .ninzio-topbar .accept-account .dropdown-menu ul li:hover a:after {
    display: none !important;
}

/* line 141, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu ul li:before, .ninzio-topbar .accept-account .dropdown-menu ul li:after {
    display: none !important;
}

/* line 144, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu ul li a {
    color: #979899;
    padding: 0;
    display: inline-block;
    font-size: 12px;
    line-height: normal;
}

/* line 150, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu ul li a:focus, .ninzio-topbar .accept-account .dropdown-menu ul li a:hover, .ninzio-topbar .accept-account .dropdown-menu ul li a:active {
    color: #b5a473;
}

/* line 152, ../sass/template/_layout.scss */
.ninzio-topbar .accept-account .dropdown-menu ul li a:focus:before, .ninzio-topbar .accept-account .dropdown-menu ul li a:focus:after, .ninzio-topbar .accept-account .dropdown-menu ul li a:hover:before, .ninzio-topbar .accept-account .dropdown-menu ul li a:hover:after, .ninzio-topbar .accept-account .dropdown-menu ul li a:active:before, .ninzio-topbar .accept-account .dropdown-menu ul li a:active:after {
    display: none !important;
}

/*------------------------------------*\
    Header
\*------------------------------------*/
/* line 167, ../sass/template/_layout.scss */
.ninzio-header {
    margin: 0;
    padding: 0;
    z-index: 99;
    position: relative;
    width: 100%;
}

/* line 173, ../sass/template/_layout.scss */
.ninzio-header .header-container {
    position: relative;
}

/* line 176, ../sass/template/_layout.scss */
.ninzio-header .header-inner {
    position: relative;
    padding: 25px 0 45px;
}

/* line 180, ../sass/template/_layout.scss */
.ninzio-header .header-menu {
    position: absolute;
    top: 100px;
    left: 0;
    display: block;
    width: 100%;
}

/* line 187, ../sass/template/_layout.scss */
.ninzio-header .menu_fixed {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1200px;
    padding: 0 30px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

/* line 200, ../sass/template/_layout.scss */
.ninzio-header .btn-transparent {
    background: transparent !important;
    border-color: transparent !important;
}

/* line 204, ../sass/template/_layout.scss */
.ninzio-header .list-social {
    margin: 0;
}

/* line 206, ../sass/template/_layout.scss */
.ninzio-header .list-social > li {
    margin: 0;
    padding: 0px;
    border-right: 1px solid #36393d;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}

/* line 214, ../sass/template/_layout.scss */
.ninzio-header .list-social > li:first-child {
    border-left: 1px solid #36393d;
}

/* line 217, ../sass/template/_layout.scss */
.ninzio-header .list-social > li > a {
    font-size: 14px;
    background: transparent;
    float: none;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

/* line 224, ../sass/template/_layout.scss */
.ninzio-header .list-social > li > a:hover {
    background-color: transparent;
}

/* line 230, ../sass/template/_layout.scss */
.ninzio-header .top-information {
    padding: 11px 20px;
    border-right: 1px solid #36393d;
}

/* line 234, ../sass/template/_layout.scss */
.ninzio-header .ninzio-search-form {
    position: relative;
    width: 278px;
    display: table-cell;
    vertical-align: middle;
}

/* line 239, ../sass/template/_layout.scss */
.ninzio-header .ninzio-search-form .ninzio-search {
    height: 46px;
    border: 1px solid #a2a2a2;
    padding: 10px 62px 10px 30px;
    width: 100%;
    font-family: "Montserrat";
    font-size: 16px;
    color: #a4a4a4;
    background: #f7f2e3;
}

/* line 647, ../sass/mixins/_template-mixins.scss */
.ninzio-header .ninzio-search-form .ninzio-search:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
.ninzio-header .ninzio-search-form .ninzio-search:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
.ninzio-header .ninzio-search-form .ninzio-search::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
.ninzio-header .ninzio-search-form .ninzio-search:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 252, ../sass/template/_layout.scss */
.ninzio-header .ninzio-search-form .btn, .ninzio-header .ninzio-search-form .edr-membership .edr-buy-widget__link, .edr-membership .ninzio-header .ninzio-search-form .edr-buy-widget__link,
.ninzio-header .ninzio-search-form .edr-membership .edr-membership-buy-link,
.edr-membership .ninzio-header .ninzio-search-form .edr-membership-buy-link,
.ninzio-header .ninzio-search-form .edr_membership .edr-buy-widget__link,
.edr_membership .ninzio-header .ninzio-search-form .edr-buy-widget__link,
.ninzio-header .ninzio-search-form .edr_membership .edr-membership-buy-link,
.edr_membership .ninzio-header .ninzio-search-form .edr-membership-buy-link {
    padding: 0;
    height: 46px;
    width: 52px;
    margin: 8px 0 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    background: transparent;
    border-left: 1px solid #e0e0e0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 266, ../sass/template/_layout.scss */
.ninzio-header .top-cart {
    display: table-cell;
    vertical-align: middle;
}

/* line 269, ../sass/template/_layout.scss */
.ninzio-header .top-cart .mini-cart {
    margin-left: 15px;
    position: relative;
    color: #999999;
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header .top-cart .mini-cart {
    float: right;
}

/* line 275, ../sass/template/_layout.scss */
.ninzio-header .top-cart .mini-cart .cart-icon .count {
    background: #b5a473;
    width: 18px;
    height: 18px;
    position: absolute;
    top: -10px;
    font-size: 10px;
    font-weight: 700;
    font-family: "Montserrat";
    right: -10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header .top-cart .mini-cart .cart-icon .count {
    left: -10px;
    right: auto;
}

/* line 289, ../sass/template/_layout.scss */
.ninzio-header .top-cart .mini-cart i {
    font-size: 22px;
    color: #999999;
}

/* line 296, ../sass/template/_layout.scss */
.ninzio-header .header-meta .media-heading {
    text-transform: uppercase;
    color: #a2a2a2;
    font-size: 12px;
    margin: 2px 0 0 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 295, ../sass/template/_layout.scss */
    .ninzio-header .header-meta {
        display: none;
    }
}

/* line 306, ../sass/template/_layout.scss */
.ninzio-header .contact-information {
    padding: 0 0 0 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 306, ../sass/template/_layout.scss */
    .ninzio-header .contact-information {
        padding: 0 0 0 20px;
    }
}

/* line 313, ../sass/template/_layout.scss */
.ninzio-header .contact-information .box-icon {
    margin-right: 10px;
}

/* line 316, ../sass/template/_layout.scss */
.ninzio-header .contact-information .box-content {
    float: left;
    font-family: "Montserrat";
    font-size: 16px;
    margin: 0 40px 0 0;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header .contact-information .box-content {
    float: right;
}

/* line 322, ../sass/template/_layout.scss */
.ninzio-header .contact-information .media-phone, .ninzio-header .contact-information .media-email {
    overflow: hidden;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
}

/* line 327, ../sass/template/_layout.scss */
.ninzio-header .headertop {
    position: relative;
    background: transparent;
}

/* line 331, ../sass/template/_layout.scss */
.ninzio-header .header-actions {
    display: table;
}

/* line 335, ../sass/template/_layout.scss */
.ninzio-header .sticky-header {
    background: #F7F2E3;
}

/* line 339, ../sass/template/_layout.scss */
.ninzio-header.header-v1 {
    outline: none;
}

/* line 346, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .ninzio-topbar .login-topbar .register {
    border-color: #e1e1e1;
}

/* line 350, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .ninzio-topbar .wpml-ls-legacy-dropdown {
    border-color: #e1e1e1;
}

/* line 353, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .ninzio-topbar .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    color: #cccccc;
}

/* line 359, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .sticky-header {
    background: #fff;
}

/* line 362, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .header-inner {
    padding: 0;
}

/* line 365, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .header-inner-wrapper {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

/* line 369, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .header-logo {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    margin-right: 30px;
    height: 94px;
    line-height: 90px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v2 .header-logo {
    margin-left: 30px;
    margin-right: inherit;
}

/* line 375, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .header-meta {
    -webkit-flex-basis: 1%;
    -moz-flex-basis: 1%;
    -ms-flex-basis: 1%;
    flex-basis: 1%;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
}

/* line 379, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .header-actions {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-self: flex-end;
    -moz-align-self: flex-end;
    -ms-align-self: flex-end;
    align-self: flex-end;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    height: 94px;
}

/* line 385, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .header-actions > div {
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
}

/* line 389, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .ninzio-topbar {
    background: #f0f0f0 !important;
    color: #999999;
}

/* line 392, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .ninzio-topbar a {
    color: #999999;
}

/* line 396, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .top-information {
    border-color: #e1e1e1;
}

/* line 400, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .list-social > li {
    border-right: 1px solid #e1e1e1;
}

/* line 402, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .list-social > li:first-child {
    border-left: 1px solid #e1e1e1;
}

/* line 408, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .accept-account .language {
    border-color: #e1e1e1;
}

/* line 412, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .login-topbar {
    border-color: #e1e1e1;
    padding: 0;
}

/* line 415, ../sass/template/_layout.scss */
.ninzio-header.header-v2 .login-topbar .account, .ninzio-header.header-v2 .login-topbar .login, .ninzio-header.header-v2 .login-topbar .register {
    padding: 11px 20px;
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v2 .login-topbar .account, .rtl .ninzio-header.header-v2 .login-topbar .login, .rtl .ninzio-header.header-v2 .login-topbar .register {
    float: right;
}

/* line 422, ../sass/template/_layout.scss */
.ninzio-header.header-v3 .sticky-header {
    background: #1f2227;
}

@media (max-width: 1200px) {
    /* line 425, ../sass/template/_layout.scss */
    .ninzio-header.header-v3 .header-inner-wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
    }
}

/* line 434, ../sass/template/_layout.scss */
.ninzio-header.header-v3 .header-inner, .ninzio-header.header-v4 .header-inner {
    padding: 0;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-header.header-v3 .header-inner-wrapper:before, .ninzio-header.header-v3 .header-inner-wrapper:after, .ninzio-header.header-v4 .header-inner-wrapper:before, .ninzio-header.header-v4 .header-inner-wrapper:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-header.header-v3 .header-inner-wrapper:after, .ninzio-header.header-v4 .header-inner-wrapper:after {
    clear: both;
}

/* line 440, ../sass/template/_layout.scss */
.ninzio-header.header-v3 .header-logo,
.ninzio-header.header-v3 .header-meta, .ninzio-header.header-v4 .header-logo,
.ninzio-header.header-v4 .header-meta {
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v3 .header-logo, .rtl
.ninzio-header.header-v3 .header-meta, .rtl .ninzio-header.header-v4 .header-logo, .rtl
.ninzio-header.header-v4 .header-meta {
    float: right;
}

/* line 445, ../sass/template/_layout.scss */
.ninzio-header.header-v3 .header-logo, .ninzio-header.header-v4 .header-logo {
    margin: 0 auto;
    text-align: center;
    float: none !important;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* line 454, ../sass/template/_layout.scss */
.ninzio-header.header-v3 .header-actions, .ninzio-header.header-v4 .header-actions {
    float: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v3 .header-actions, .rtl .ninzio-header.header-v4 .header-actions {
    float: left;
}

/* line 456, ../sass/template/_layout.scss */
.ninzio-header.header-v3 .header-actions .header-box-right, .ninzio-header.header-v4 .header-actions .header-box-right {
    margin: 30px 0 0 30px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v3 .header-actions .header-box-right, .rtl .ninzio-header.header-v4 .header-actions .header-box-right {
    margin: 30px 30px 0 0;
}

/* line 460, ../sass/template/_layout.scss */
.ninzio-header.header-v3 .headertop, .ninzio-header.header-v4 .headertop {
    padding: 0;
    height: 94px;
}

/* line 465, ../sass/template/_layout.scss */
.ninzio-header.header-v4 {
    background: #1f2227;
}

/* line 467, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .sticky-header {
    background: #1f2227;
}

/* line 471, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .search-form .icon-theme {
    color: #FFFFFF;
}

/* line 475, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .cart-icon {
    color: #FFFFFF;
}

/* line 478, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .ninzio-topbar {
    color: #999999;
}

/* line 480, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .ninzio-topbar a {
    color: #999999;
}

/* line 484, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .top-information {
    border-color: #e1e1e1;
}

/* line 488, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .list-social > li {
    border-color: #e1e1e1;
}

/* line 490, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .list-social > li:first-child {
    border-color: #e1e1e1;
}

/* line 496, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .ninzio-topbar .login-topbar {
    border-color: #e1e1e1;
}

/* line 500, ../sass/template/_layout.scss */
.ninzio-header.header-v4 .ninzio-topbar .accept-account .language {
    border-color: #e1e1e1;
}

/* line 506, ../sass/template/_layout.scss */
.ninzio-header.header-v5 {
    background: transparent;
}

/* line 511, ../sass/template/_layout.scss */
.ninzio-header.header-v5 .top-cart .mini-cart .cart-icon .count {
    background: #1f2227;
}

/* line 517, ../sass/template/_layout.scss */
.ninzio-header.header-v5 .sticky-header {
    background: #b5a473;
}

/* line 520, ../sass/template/_layout.scss */
.ninzio-header.header-v5 .header-inner, .ninzio-header.header-v5 .headertop {
    padding: 0;
}

/* line 523, ../sass/template/_layout.scss */
.ninzio-header.header-v5 .header-inner-wrapper {
    height: 94px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

/* line 528, ../sass/template/_layout.scss */
.ninzio-header.header-v5 .header-inner-wrapper .header-actions {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 0 0 70px;
    -moz-box-flex: 0 0 70px;
    -webkit-flex: 0 0 70px;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
}

/* line 532, ../sass/template/_layout.scss */
.ninzio-header.header-v5 .header-inner-wrapper .header-actions .icon-theme {
    color: #FFFFFF;
}

@media (max-width: 1200px) {
    /* line 528, ../sass/template/_layout.scss */
    .ninzio-header.header-v5 .header-inner-wrapper .header-actions {
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
    }
}

/* line 539, ../sass/template/_layout.scss */
.ninzio-header.header-v5 .header-inner-wrapper .header-meta {
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}

@media (max-width: 1200px) {
    /* line 539, ../sass/template/_layout.scss */
    .ninzio-header.header-v5 .header-inner-wrapper .header-meta {
        -webkit-flex-basis: 1%;
        -moz-flex-basis: 1%;
        -ms-flex-basis: 1%;
        flex-basis: 1%;
        -webkit-flex-grow: 1;
        -moz-flex-grow: 1;
        -ms-flex-grow: 1;
        flex-grow: 1;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 539, ../sass/template/_layout.scss */
    .ninzio-header.header-v5 .header-inner-wrapper .header-meta {
        -webkit-flex-basis: 1%;
        -moz-flex-basis: 1%;
        -ms-flex-basis: 1%;
        flex-basis: 1%;
        -webkit-flex-grow: 1;
        -moz-flex-grow: 1;
        -ms-flex-grow: 1;
        flex-grow: 1;
    }
}

/* line 553, ../sass/template/_layout.scss */
.ninzio-header.header-v5 .header-inner-wrapper .header-logo {
    -webkit-box-flex: 0 0 200px;
    -moz-box-flex: 0 0 200px;
    -webkit-flex: 0 0 200px;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v5 .header-inner-wrapper .header-logo {
    text-align: right;
}

@media (max-width: 1200px) {
    /* line 553, ../sass/template/_layout.scss */
    .ninzio-header.header-v5 .header-inner-wrapper .header-logo {
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 553, ../sass/template/_layout.scss */
    .ninzio-header.header-v5 .header-inner-wrapper .header-logo {
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
    }
}

@media (max-width: 640px) {
    /* line 553, ../sass/template/_layout.scss */
    .ninzio-header.header-v5 .header-inner-wrapper .header-logo {
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
    }
}

/* line 572, ../sass/template/_layout.scss */
.ninzio-header.header-v6 .cart-icon .count {
    background: #1f2227;
}

/* line 576, ../sass/template/_layout.scss */
.ninzio-header.header-v6 .header-inner {
    padding: 0;
}

/* line 579, ../sass/template/_layout.scss */
.ninzio-header.header-v6 .headertop {
    padding: 0;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-header.header-v6 .header-inner-wrapper:before, .ninzio-header.header-v6 .header-inner-wrapper:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-header.header-v6 .header-inner-wrapper:after {
    clear: both;
}

/* line 584, ../sass/template/_layout.scss */
.ninzio-header.header-v6 .header-inner-wrapper .header-logo,
.ninzio-header.header-v6 .header-inner-wrapper .header-meta {
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v6 .header-inner-wrapper .header-logo, .rtl
.ninzio-header.header-v6 .header-inner-wrapper .header-meta {
    float: right;
}

/* line 588, ../sass/template/_layout.scss */
.ninzio-header.header-v6 .header-inner-wrapper .header-actions {
    float: right;
    margin: 29px 0 0 0;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v6 .header-inner-wrapper .header-actions {
    float: left;
}

/* line 591, ../sass/template/_layout.scss */
.ninzio-header.header-v6 .header-inner-wrapper .header-actions .icon-theme {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
}

/* line 596, ../sass/template/_layout.scss */
.ninzio-header.header-v6 .header-inner-wrapper .header-logo {
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v6 .header-inner-wrapper .header-logo {
    float: right;
}

/* line 598, ../sass/template/_layout.scss */
.ninzio-header.header-v6 .header-inner-wrapper .header-logo .logo {
    height: 94px;
    line-height: 94px;
    text-align: left;
    width: 330px;
}

/* line 608, ../sass/template/_layout.scss */
.ninzio-header.header-v7 .icon-theme {
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

/* line 615, ../sass/template/_layout.scss */
.ninzio-header.header-v7 .header-inner, .ninzio-header.header-v8 .header-inner {
    padding: 0;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-header.header-v7 .header-inner-wrapper:before, .ninzio-header.header-v7 .header-inner-wrapper:after, .ninzio-header.header-v8 .header-inner-wrapper:before, .ninzio-header.header-v8 .header-inner-wrapper:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-header.header-v7 .header-inner-wrapper:after, .ninzio-header.header-v8 .header-inner-wrapper:after {
    clear: both;
}

/* line 620, ../sass/template/_layout.scss */
.ninzio-header.header-v7 .header-inner-wrapper .header-meta, .ninzio-header.header-v7 .header-inner-wrapper .header-logo, .ninzio-header.header-v8 .header-inner-wrapper .header-meta, .ninzio-header.header-v8 .header-inner-wrapper .header-logo {
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v7 .header-inner-wrapper .header-meta, .rtl .ninzio-header.header-v7 .header-inner-wrapper .header-logo, .rtl .ninzio-header.header-v8 .header-inner-wrapper .header-meta, .rtl .ninzio-header.header-v8 .header-inner-wrapper .header-logo {
    float: right;
}

/* line 623, ../sass/template/_layout.scss */
.ninzio-header.header-v7 .header-inner-wrapper .header-logo, .ninzio-header.header-v8 .header-inner-wrapper .header-logo {
    padding: 31px 25px;
}

/* line 626, ../sass/template/_layout.scss */
.ninzio-header.header-v7 .header-inner-wrapper .header-actions, .ninzio-header.header-v8 .header-inner-wrapper .header-actions {
    margin: 31px 0 0 0;
    float: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v7 .header-inner-wrapper .header-actions, .rtl .ninzio-header.header-v8 .header-inner-wrapper .header-actions {
    float: left;
}

/* line 631, ../sass/template/_layout.scss */
.ninzio-header.header-v7 .headertop, .ninzio-header.header-v8 .headertop {
    padding: 0;
    background: #1f2227;
}

/* line 636, ../sass/template/_layout.scss */
.ninzio-header.header-v7 .top-cart .mini-cart, .ninzio-header.header-v8 .top-cart .mini-cart {
    color: #FFFFFF;
}

/* line 638, ../sass/template/_layout.scss */
.ninzio-header.header-v7 .top-cart .mini-cart i, .ninzio-header.header-v8 .top-cart .mini-cart i {
    font-size: 20px;
}

/* line 645, ../sass/template/_layout.scss */
.ninzio-header.header-v8 .headertop {
    padding: 0;
    background: #FFFFFF;
}

/* line 649, ../sass/template/_layout.scss */
.ninzio-header.header-v8 .icon-theme {
    border-color: #dadada;
    color: #999999;
}

/* line 654, ../sass/template/_layout.scss */
.ninzio-header.header-v8 .top-cart .mini-cart {
    border-color: #dadada;
    color: #999999;
}

/* line 661, ../sass/template/_layout.scss */
.ninzio-header.header-v9 .header-inner {
    padding: 0;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-header.header-v9 .header-inner-wrapper:before, .ninzio-header.header-v9 .header-inner-wrapper:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-header.header-v9 .header-inner-wrapper:after {
    clear: both;
}

/* line 666, ../sass/template/_layout.scss */
.ninzio-header.header-v9 .header-inner-wrapper .header-meta, .ninzio-header.header-v9 .header-inner-wrapper .header-logo {
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v9 .header-inner-wrapper .header-meta, .rtl .ninzio-header.header-v9 .header-inner-wrapper .header-logo {
    float: right;
}

/* line 669, ../sass/template/_layout.scss */
.ninzio-header.header-v9 .header-inner-wrapper .header-logo {
    margin-right: 75px;
    padding: 32px 0;
}

/* line 673, ../sass/template/_layout.scss */
.ninzio-header.header-v9 .header-inner-wrapper .header-actions {
    margin: 30px 0 0 0;
    float: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-header.header-v9 .header-inner-wrapper .header-actions {
    float: left;
}

/* line 678, ../sass/template/_layout.scss */
.ninzio-header.header-v9 .headertop {
    padding: 0;
}

/* line 683, ../sass/template/_layout.scss */
.ninzio-header.header-v9 .top-cart .mini-cart i {
    font-size: 20px;
}

/* line 690, ../sass/template/_layout.scss */
.ninzio-header .cart-icon .count {
    width: 17px;
    height: 17px;
}

/* line 697, ../sass/template/_layout.scss */
.header-mobile {
    padding: 0;
    width: 100%;
    background: #ffffff;
    z-index: 90;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

/* line 703, ../sass/template/_layout.scss */
.header-mobile .active-mobile {
    margin-right: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-mobile .active-mobile {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 706, ../sass/template/_layout.scss */
.header-mobile .header-mobile-top {
    min-height: 112px;
    padding: 0 26px 30px 26px;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

/* line 711, ../sass/template/_layout.scss */
.header-mobile .header-mobile-top .site-mobile-actions {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
}

/* line 716, ../sass/template/_layout.scss */
.header-mobile .header-mobile-top .logo-mobile-wrapper {
    float: none !important;
    margin: 0;
    text-align: left;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .header-mobile .header-mobile-top .logo-mobile-wrapper {
    text-align: right;
}

@media (max-width: 640px) {
    /* line 716, ../sass/template/_layout.scss */
    .header-mobile .header-mobile-top .logo-mobile-wrapper {
        width: 130px;
    }

    /* line 723, ../sass/template/_layout.scss */
    .header-mobile .header-mobile-top .logo-mobile-wrapper img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

/* line 730, ../sass/template/_layout.scss */
.header-mobile .header-mobile-top .active-mobile .button,
.header-mobile .header-mobile-top .dropdown .button {
    margin: 0;
}

/* line 735, ../sass/template/_layout.scss */
.header-mobile .container {
    padding: 0px;
}

/* line 739, ../sass/template/_layout.scss */
.header-mobile .logo-theme img {
    max-height: 100%;
}

/* line 743, ../sass/template/_layout.scss */
.header-mobile .btn.dropdown-toggle, .header-mobile .edr-membership .dropdown-toggle.edr-buy-widget__link, .edr-membership .header-mobile .dropdown-toggle.edr-buy-widget__link,
.header-mobile .edr-membership .dropdown-toggle.edr-membership-buy-link,
.edr-membership .header-mobile .dropdown-toggle.edr-membership-buy-link,
.header-mobile .edr_membership .dropdown-toggle.edr-buy-widget__link,
.edr_membership .header-mobile .dropdown-toggle.edr-buy-widget__link,
.header-mobile .edr_membership .dropdown-toggle.edr-membership-buy-link,
.edr_membership .header-mobile .dropdown-toggle.edr-membership-buy-link,
.header-mobile .btn.offcanvas,
.header-mobile .edr-membership .offcanvas.edr-buy-widget__link,
.edr-membership .header-mobile .offcanvas.edr-buy-widget__link,
.header-mobile .edr-membership .offcanvas.edr-membership-buy-link,
.edr-membership .header-mobile .offcanvas.edr-membership-buy-link,
.header-mobile .edr_membership .offcanvas.edr-buy-widget__link,
.edr_membership .header-mobile .offcanvas.edr-buy-widget__link,
.header-mobile .edr_membership .offcanvas.edr-membership-buy-link,
.edr_membership .header-mobile .offcanvas.edr-membership-buy-link {
    border: none;
    padding: 0px 10px;
    font-size: 16px;
    color: #999999;
    display: block;
    background: transparent;
}

/* line 751, ../sass/template/_layout.scss */
.header-mobile .btn.dropdown-toggle:focus, .header-mobile .edr-membership .dropdown-toggle.edr-buy-widget__link:focus, .edr-membership .header-mobile .dropdown-toggle.edr-buy-widget__link:focus,
.header-mobile .edr-membership .dropdown-toggle.edr-membership-buy-link:focus,
.edr-membership .header-mobile .dropdown-toggle.edr-membership-buy-link:focus,
.header-mobile .edr_membership .dropdown-toggle.edr-buy-widget__link:focus,
.edr_membership .header-mobile .dropdown-toggle.edr-buy-widget__link:focus,
.header-mobile .edr_membership .dropdown-toggle.edr-membership-buy-link:focus,
.edr_membership .header-mobile .dropdown-toggle.edr-membership-buy-link:focus, .header-mobile .btn.dropdown-toggle:hover, .header-mobile .edr-membership .dropdown-toggle.edr-buy-widget__link:hover, .edr-membership .header-mobile .dropdown-toggle.edr-buy-widget__link:hover,
.header-mobile .edr-membership .dropdown-toggle.edr-membership-buy-link:hover,
.edr-membership .header-mobile .dropdown-toggle.edr-membership-buy-link:hover,
.header-mobile .edr_membership .dropdown-toggle.edr-buy-widget__link:hover,
.edr_membership .header-mobile .dropdown-toggle.edr-buy-widget__link:hover,
.header-mobile .edr_membership .dropdown-toggle.edr-membership-buy-link:hover,
.edr_membership .header-mobile .dropdown-toggle.edr-membership-buy-link:hover, .header-mobile .btn.dropdown-toggle:active, .header-mobile .edr-membership .dropdown-toggle.edr-buy-widget__link:active, .edr-membership .header-mobile .dropdown-toggle.edr-buy-widget__link:active,
.header-mobile .edr-membership .dropdown-toggle.edr-membership-buy-link:active,
.edr-membership .header-mobile .dropdown-toggle.edr-membership-buy-link:active,
.header-mobile .edr_membership .dropdown-toggle.edr-buy-widget__link:active,
.edr_membership .header-mobile .dropdown-toggle.edr-buy-widget__link:active,
.header-mobile .edr_membership .dropdown-toggle.edr-membership-buy-link:active,
.edr_membership .header-mobile .dropdown-toggle.edr-membership-buy-link:active, .header-mobile .btn.dropdown-toggle:focus, .header-mobile .edr-membership .dropdown-toggle.edr-buy-widget__link:focus, .edr-membership .header-mobile .dropdown-toggle.edr-buy-widget__link:focus,
.header-mobile .edr-membership .dropdown-toggle.edr-membership-buy-link:focus,
.edr-membership .header-mobile .dropdown-toggle.edr-membership-buy-link:focus,
.header-mobile .edr_membership .dropdown-toggle.edr-buy-widget__link:focus,
.edr_membership .header-mobile .dropdown-toggle.edr-buy-widget__link:focus,
.header-mobile .edr_membership .dropdown-toggle.edr-membership-buy-link:focus,
.edr_membership .header-mobile .dropdown-toggle.edr-membership-buy-link:focus,
.header-mobile .btn.offcanvas:focus,
.header-mobile .edr-membership .offcanvas.edr-buy-widget__link:focus,
.edr-membership .header-mobile .offcanvas.edr-buy-widget__link:focus,
.header-mobile .edr-membership .offcanvas.edr-membership-buy-link:focus,
.edr-membership .header-mobile .offcanvas.edr-membership-buy-link:focus,
.header-mobile .edr_membership .offcanvas.edr-buy-widget__link:focus,
.edr_membership .header-mobile .offcanvas.edr-buy-widget__link:focus,
.header-mobile .edr_membership .offcanvas.edr-membership-buy-link:focus,
.edr_membership .header-mobile .offcanvas.edr-membership-buy-link:focus,
.header-mobile .btn.offcanvas:hover,
.header-mobile .edr-membership .offcanvas.edr-buy-widget__link:hover,
.edr-membership .header-mobile .offcanvas.edr-buy-widget__link:hover,
.header-mobile .edr-membership .offcanvas.edr-membership-buy-link:hover,
.edr-membership .header-mobile .offcanvas.edr-membership-buy-link:hover,
.header-mobile .edr_membership .offcanvas.edr-buy-widget__link:hover,
.edr_membership .header-mobile .offcanvas.edr-buy-widget__link:hover,
.header-mobile .edr_membership .offcanvas.edr-membership-buy-link:hover,
.edr_membership .header-mobile .offcanvas.edr-membership-buy-link:hover,
.header-mobile .btn.offcanvas:active,
.header-mobile .edr-membership .offcanvas.edr-buy-widget__link:active,
.edr-membership .header-mobile .offcanvas.edr-buy-widget__link:active,
.header-mobile .edr-membership .offcanvas.edr-membership-buy-link:active,
.edr-membership .header-mobile .offcanvas.edr-membership-buy-link:active,
.header-mobile .edr_membership .offcanvas.edr-buy-widget__link:active,
.edr_membership .header-mobile .offcanvas.edr-buy-widget__link:active,
.header-mobile .edr_membership .offcanvas.edr-membership-buy-link:active,
.edr_membership .header-mobile .offcanvas.edr-membership-buy-link:active,
.header-mobile .btn.offcanvas:focus,
.header-mobile .edr-membership .offcanvas.edr-buy-widget__link:focus,
.edr-membership .header-mobile .offcanvas.edr-buy-widget__link:focus,
.header-mobile .edr-membership .offcanvas.edr-membership-buy-link:focus,
.edr-membership .header-mobile .offcanvas.edr-membership-buy-link:focus,
.header-mobile .edr_membership .offcanvas.edr-buy-widget__link:focus,
.edr_membership .header-mobile .offcanvas.edr-buy-widget__link:focus,
.header-mobile .edr_membership .offcanvas.edr-membership-buy-link:focus,
.edr_membership .header-mobile .offcanvas.edr-membership-buy-link:focus {
    color: #b5a473;
    background: transparent;
}

/* line 755, ../sass/template/_layout.scss */
.header-mobile .btn.dropdown-toggle i, .header-mobile .edr-membership .dropdown-toggle.edr-buy-widget__link i, .edr-membership .header-mobile .dropdown-toggle.edr-buy-widget__link i,
.header-mobile .edr-membership .dropdown-toggle.edr-membership-buy-link i,
.edr-membership .header-mobile .dropdown-toggle.edr-membership-buy-link i,
.header-mobile .edr_membership .dropdown-toggle.edr-buy-widget__link i,
.edr_membership .header-mobile .dropdown-toggle.edr-buy-widget__link i,
.header-mobile .edr_membership .dropdown-toggle.edr-membership-buy-link i,
.edr_membership .header-mobile .dropdown-toggle.edr-membership-buy-link i,
.header-mobile .btn.offcanvas i,
.header-mobile .edr-membership .offcanvas.edr-buy-widget__link i,
.edr-membership .header-mobile .offcanvas.edr-buy-widget__link i,
.header-mobile .edr-membership .offcanvas.edr-membership-buy-link i,
.edr-membership .header-mobile .offcanvas.edr-membership-buy-link i,
.header-mobile .edr_membership .offcanvas.edr-buy-widget__link i,
.edr_membership .header-mobile .offcanvas.edr-buy-widget__link i,
.header-mobile .edr_membership .offcanvas.edr-membership-buy-link i,
.edr_membership .header-mobile .offcanvas.edr-membership-buy-link i {
    margin-left: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-mobile .btn.dropdown-toggle i, .rtl .header-mobile .edr-membership .dropdown-toggle.edr-buy-widget__link i, .edr-membership .rtl .header-mobile .dropdown-toggle.edr-buy-widget__link i,
.rtl .header-mobile .edr-membership .dropdown-toggle.edr-membership-buy-link i,
.edr-membership .rtl .header-mobile .dropdown-toggle.edr-membership-buy-link i,
.rtl .header-mobile .edr_membership .dropdown-toggle.edr-buy-widget__link i,
.edr_membership .rtl .header-mobile .dropdown-toggle.edr-buy-widget__link i,
.rtl .header-mobile .edr_membership .dropdown-toggle.edr-membership-buy-link i,
.edr_membership .rtl .header-mobile .dropdown-toggle.edr-membership-buy-link i, .rtl
.header-mobile .btn.offcanvas i, .rtl
.header-mobile .edr-membership .offcanvas.edr-buy-widget__link i, .edr-membership .rtl
.header-mobile .offcanvas.edr-buy-widget__link i,
.rtl
.header-mobile .edr-membership .offcanvas.edr-membership-buy-link i,
.edr-membership .rtl
.header-mobile .offcanvas.edr-membership-buy-link i,
.rtl
.header-mobile .edr_membership .offcanvas.edr-buy-widget__link i,
.edr_membership .rtl
.header-mobile .offcanvas.edr-buy-widget__link i,
.rtl
.header-mobile .edr_membership .offcanvas.edr-membership-buy-link i,
.edr_membership .rtl
.header-mobile .offcanvas.edr-membership-buy-link i {
    margin-right: 5px;
    margin-left: inherit;
}

/* line 761, ../sass/template/_layout.scss */
.header-mobile .top-cart {
    padding: 0 40px 25px 40px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .header-mobile .top-cart {
    padding: 0 40px 25px 40px;
}

/* line 764, ../sass/template/_layout.scss */
.header-mobile .top-cart .ninzio-topcart-mobile .mini-cart {
    position: relative;
    background: #2e3238;
    min-height: 47px;
    padding: 11px 28px;
    color: #a4a4a4;
    font-size: 16px;
    font-weight: 400;
    display: block;
    width: 100%;
    font-family: "Montserrat";
}

/* line 778, ../sass/template/_layout.scss */
.header-mobile .widget {
    margin-bottom: 30px;
    margin-left: 40px;
    margin-right: 40px;
}

/* line 782, ../sass/template/_layout.scss */
.header-mobile .widget.widget_icl_lang_sel_widget {
    border: 0;
    background-color: transparent;
}

/* line 785, ../sass/template/_layout.scss */
.header-mobile .widget.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

/* line 789, ../sass/template/_layout.scss */
.header-mobile .widget.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    background-color: #2e3238;
    border: 0;
    outline: none;
    height: 47px;
    line-height: 23px;
    padding: 10px 30px;
    font-weight: 400;
    font-size: 16px;
    font-family: "Montserrat";
}

/* line 799, ../sass/template/_layout.scss */
.header-mobile .widget.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    right: 20px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .header-mobile .widget.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    left: 20px;
    right: auto;
}

/* line 803, ../sass/template/_layout.scss */
.header-mobile .widget.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    border: 0;
}

/* line 806, ../sass/template/_layout.scss */
.header-mobile .widget.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu > li > a {
    background-color: #2e3238;
    border-color: #3e4146;
    padding: 10px 30px;
    border-width: 1px 0 0 0;
}

/* line 818, ../sass/template/_layout.scss */
.header-mobile .mobile-social-links {
    border-top: 1px solid #36393d;
    border-bottom: 1px solid #36393d;
    height: 42px;
    display: block;
    margin: 0;
    min-height: 42px;
    overflow: hidden;
    padding: 0;
    text-align: center;
}

/* line 828, ../sass/template/_layout.scss */
.header-mobile .mobile-social-links > li {
    padding: 0;
}

/* line 831, ../sass/template/_layout.scss */
.header-mobile .mobile-social-links > li:last-child > a {
    border-right: 1px solid #36393d;
}

/* line 835, ../sass/template/_layout.scss */
.header-mobile .mobile-social-links > li > a {
    border-left: 1px solid #36393d;
    color: #a5a7a9;
    float: left;
    height: 42px;
    line-height: 42px;
    padding: 0;
    text-align: center;
    width: 62px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .header-mobile .mobile-social-links > li > a {
    float: right;
}

/* line 844, ../sass/template/_layout.scss */
.header-mobile .mobile-social-links > li > a:hover, .header-mobile .mobile-social-links > li > a:focus, .header-mobile .mobile-social-links > li > a:active {
    color: #b5a473;
}

/* line 853, ../sass/template/_layout.scss */
.header-mobile .ninzio-search-form {
    min-width: 300px;
    padding: 40px 40px 23px;
}

/* line 856, ../sass/template/_layout.scss */
.header-mobile .ninzio-search-form form {
    position: relative;
}

/* line 859, ../sass/template/_layout.scss */
.header-mobile .ninzio-search-form .ninzio-search {
    border: 0px;
    background: #2e3238;
    height: 47px;
    padding: 10px 64px 10px 28px;
    color: #a4a4a4;
    font-size: 16px;
    width: 100%;
    font-weight: 400;
    font-family: "Montserrat";
}

/* line 647, ../sass/mixins/_template-mixins.scss */
.header-mobile .ninzio-search-form .ninzio-search:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
.header-mobile .ninzio-search-form .ninzio-search:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
.header-mobile .ninzio-search-form .ninzio-search::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
.header-mobile .ninzio-search-form .ninzio-search:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 874, ../sass/template/_layout.scss */
.header-mobile .ninzio-search-form .button-search {
    position: absolute;
    height: 47px;
    font-size: 16px;
    top: 0;
    color: #999999;
    right: 0;
    padding: 11px 17px;
    background: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: none;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
}

/* line 886, ../sass/template/_layout.scss */
.header-mobile .ninzio-search-form .button-search:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 29px;
    display: block;
    background: #52555a;
    top: 9px;
    left: 0;
}

/* line 897, ../sass/template/_layout.scss */
.header-mobile .ninzio-search-form .select-category {
    display: none;
}

/* line 901, ../sass/template/_layout.scss */
.header-mobile .action-right {
    margin: 5px 0 0;
}

/* line 903, ../sass/template/_layout.scss */
.header-mobile .action-right > .active-mobile {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-mobile .action-right > .active-mobile {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-left: inherit;
}

/* line 905, ../sass/template/_layout.scss */
.header-mobile .action-right > .active-mobile:last-child {
    border: none;
}

/* line 912, ../sass/template/_layout.scss */
.header-mobile .dropdown.open .dropdown-menu {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform-origin: 29px -50px;
    -moz-transform-origin: 29px -50px;
    -ms-transform-origin: 29px -50px;
    transform-origin: 29px -50px;
    filter: none;
    -webkit-filter: none;
    -moz-filter: none;
    -o-filter: none;
    -ms-filter: none;
    visibility: visible;
}

/* line 921, ../sass/template/_layout.scss */
.header-mobile .dropdown-menu {
    background: #FFFFFF;
    padding: 0 10px;
    left: 0;
    width: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
    -o-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
    transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
    margin: 5px 0 0 0;
    border: 0;
    min-width: 200px;
    display: block;
    visibility: hidden;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 921, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu {
        left: auto;
        right: 0;
        -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
    }
}

@media only screen and (max-width: 767px) {
    /* line 921, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu {
        left: auto;
        right: 0;
        -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 640px) {
    /* line 921, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu {
        left: auto;
        right: 0;
        -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
    }
}

/* line 952, ../sass/template/_layout.scss */
.header-mobile .dropdown-menu .menu-topbar {
    margin: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 952, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu .menu-topbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 952, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu .menu-topbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 640px) {
    /* line 952, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu .menu-topbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* line 966, ../sass/template/_layout.scss */
.header-mobile .dropdown-menu .menu-topbar > li {
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 12px;
}

/* line 970, ../sass/template/_layout.scss */
.header-mobile .dropdown-menu .menu-topbar > li > a {
    color: #FFFFFF;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 970, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu .menu-topbar > li > a {
        color: #999999;
    }
}

@media only screen and (max-width: 767px) {
    /* line 970, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu .menu-topbar > li > a {
        color: #999999;
    }
}

@media (max-width: 640px) {
    /* line 970, ../sass/template/_layout.scss */
    .header-mobile .dropdown-menu .menu-topbar > li > a {
        color: #999999;
    }
}

/* line 987, ../sass/template/_layout.scss */
.header-mobile .top-cart .dropdown-toggle span {
    outline: none;
    margin: 0;
}

/* line 990, ../sass/template/_layout.scss */
.header-mobile .top-cart .dropdown-toggle span .icon {
    display: block;
    height: 47px;
    line-height: 52px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 52px;
}

/* line 999, ../sass/template/_layout.scss */
.header-mobile .top-cart .dropdown-toggle span .icon i {
    font-size: 20px;
}

/* line 1002, ../sass/template/_layout.scss */
.header-mobile .top-cart .dropdown-toggle span .icon:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 29px;
    display: block;
    background: #52555a;
    top: 10px;
    left: 0;
}

/* line 1013, ../sass/template/_layout.scss */
.header-mobile .top-cart .dropdown-toggle span.cart-icon {
    color: #999999;
}

/* line 1016, ../sass/template/_layout.scss */
.header-mobile .top-cart .dropdown-toggle span i {
    color: #999999;
    font-size: 16px;
}

/* line 1022, ../sass/template/_layout.scss */
.header-mobile .icon-theme {
    font-size: 18px;
}

/* line 1025, ../sass/template/_layout.scss */
.header-mobile .btn-offcanvas {
    margin-left: 10px;
}

/* line 1030, ../sass/template/_layout.scss */
.sticky-header {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9990;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: top 0.5s ease 0s;
    -o-transition: top 0.5s ease 0s;
    transition: top 0.5s ease 0s;
}

/* line 1038, ../sass/template/_layout.scss */
.sticky-header.sticky-header-hidden {
    top: -110%;
}

/*------------------------------------*\
    Breadcrumb
\*------------------------------------*/
/* line 1046, ../sass/template/_layout.scss */
.ninzio-breadcrumb {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin: 0 0 30px;
    text-align: left;
    font-size: 16px;
}

/* line 1052, ../sass/template/_layout.scss */
.ninzio-breadcrumb .breadcrumb-title {
    color: #777777;
    margin: 0;
    font-weight: 300;
    font-size: 48px;
}

/* line 1058, ../sass/template/_layout.scss */
.ninzio-breadcrumb nav {
    text-align: left;
    line-height: 30px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-breadcrumb nav {
    text-align: right;
}

/* line 1061, ../sass/template/_layout.scss */
.ninzio-breadcrumb nav a {
    color: #000;
}

/*------------------------------------*\
    Container
\*------------------------------------*/
/* line 1071, ../sass/template/_layout.scss */
.ninzio-mainbody {
    background: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
}

/*------------------------------------*\
    Content
\*------------------------------------*/
/* line 1077, ../sass/template/_layout.scss */
.ninzio-content {
    background: #fff;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-content:before, .ninzio-content:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-content:after {
    clear: both;
}

/*------------------------------------*\
    Pagination
\*------------------------------------*/
/* line 1085, ../sass/template/_layout.scss */
.ninzio-pagination {
    font-weight: 500;
    font-family: "Montserrat";
    margin: 15px 0;
    text-transform: uppercase;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-flex: 0 1 auto;
    -moz-box-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-pagination:before, .ninzio-pagination:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.ninzio-pagination:after {
    clear: both;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1085, ../sass/template/_layout.scss */
    .ninzio-pagination {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1085, ../sass/template/_layout.scss */
    .ninzio-pagination {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    /* line 1085, ../sass/template/_layout.scss */
    .ninzio-pagination {
        margin-bottom: 30px;
    }
}

/* line 1105, ../sass/template/_layout.scss */
.ninzio-pagination ul.page-numbers {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* line 1109, ../sass/template/_layout.scss */
.ninzio-pagination ul.page-numbers li {
    display: inline-block;
}

/* line 1113, ../sass/template/_layout.scss */
.ninzio-pagination span, .ninzio-pagination a {
    padding: 7px;
    margin: 0;
    position: relative;
    color: #999999;
    background: #f5f5f5;
    border: 0;
    font-size: 16px;
    text-transform: uppercase;
    height: 40px;
    max-width: 52px;
    width: 52px;
    vertical-align: top;
    display: inline-block;
    -webkit-flex-basis: 52px;
    -moz-flex-basis: 52px;
    -ms-flex-basis: 52px;
    flex-basis: 52px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/* line 1131, ../sass/template/_layout.scss */
.ninzio-pagination span:last-child:after, .ninzio-pagination a:last-child:after {
    display: none;
}

/* line 1136, ../sass/template/_layout.scss */
.ninzio-pagination span.prev:before, .ninzio-pagination a.prev:before {
    font-family: "univero" !important;
    content: "\e911";
    position: absolute;
    top: 50%;
    font-size: 10px;
    color: #999999;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .ninzio-pagination span.prev:before, .rtl .ninzio-pagination a.prev:before {
    right: 50%;
    left: auto;
}

/* line 1148, ../sass/template/_layout.scss */
.ninzio-pagination span.next:before, .ninzio-pagination a.next:before {
    font-family: "univero" !important;
    content: "\e912";
    position: absolute;
    top: 50%;
    font-size: 10px;
    color: #999999;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .ninzio-pagination span.next:before, .rtl .ninzio-pagination a.next:before {
    right: 50%;
    left: auto;
}

/* line 1159, ../sass/template/_layout.scss */
.ninzio-pagination span:after, .ninzio-pagination a:after {
    content: "";
    width: 1px;
    height: 21px;
    background: #e0e0e0;
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .ninzio-pagination span:after, .rtl .ninzio-pagination a:after {
    left: 0px;
    right: auto;
}

/* line 1169, ../sass/template/_layout.scss */
.ninzio-pagination span.current, .ninzio-pagination a.current {
    color: #FFFFFF !important;
    border-color: #b5a473;
    background: #b5a473;
}

/* line 1173, ../sass/template/_layout.scss */
.ninzio-pagination span.current:after, .ninzio-pagination a.current:after {
    display: none;
}

/* line 1177, ../sass/template/_layout.scss */
.ninzio-pagination span i, .ninzio-pagination a i {
    font-size: 14px;
}

/* line 1181, ../sass/template/_layout.scss */
.ninzio-pagination span, .ninzio-pagination a {
    color: #999999;
    cursor: pointer;
}

/* line 1184, ../sass/template/_layout.scss */
.ninzio-pagination span:active, .ninzio-pagination span:focus, .ninzio-pagination span:hover, .ninzio-pagination a:active, .ninzio-pagination a:focus, .ninzio-pagination a:hover {
    color: #FFFFFF !important;
    background: #b5a473;
    border-color: #b5a473;
}

/* line 1190, ../sass/template/_layout.scss */
.ninzio-pagination span:active:before, .ninzio-pagination span:focus:before, .ninzio-pagination span:hover:before, .ninzio-pagination a:active:before, .ninzio-pagination a:focus:before, .ninzio-pagination a:hover:before {
    color: #FFFFFF !important;
}

/* line 1193, ../sass/template/_layout.scss */
.ninzio-pagination span:active:after, .ninzio-pagination span:focus:after, .ninzio-pagination span:hover:after, .ninzio-pagination a:active:after, .ninzio-pagination a:focus:after, .ninzio-pagination a:hover:after {
    left: -99999px;
    right: -99999px;
    top: -99999px;
    background: #b5a473;
}

/*------------------------------------*\
    Footer
\*------------------------------------*/
/* line 1208, ../sass/template/_layout.scss */
#ninzio-footer .widget-newletter .widgettitle, #ninzio-footer .widget-newletter .widget-title {
    color: #333;
}

/* line 1213, ../sass/template/_layout.scss */
.ninzio-footer {
    position: relative;
    color: #aaaaaa;
    background: #25282e;
}

/* line 1218, ../sass/template/_layout.scss */
.ninzio-footer .widget-newletter .widgettitle,
.ninzio-footer .widget-newletter .widget-title {
    color: #333;
}

/* line 1223, ../sass/template/_layout.scss */
.ninzio-footer .ninzio-copyright {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 32px;
}

/* line 1228, ../sass/template/_layout.scss */
.ninzio-footer .ninzio-copyright a {
    color: #b5a473;
}

/* line 1232, ../sass/template/_layout.scss */
.ninzio-footer a {
    color: #aaaaaa;
}

/* line 1235, ../sass/template/_layout.scss */
.ninzio-footer .dark {
    background: #25282e;
    color: #aaaaaa;
}

/* line 1239, ../sass/template/_layout.scss */
.ninzio-footer .dark .widget .widget-title,
.ninzio-footer .dark .widget .widgettitle {
    color: #FFFFFF;
}

/* line 1247, ../sass/template/_layout.scss */
.ninzio-footer .dark .ninzio-copyright .menu > li a {
    color: #aaaaaa;
    border-right: 1px solid #36393d;
    padding: 0 15px 0 0;
}

/* line 1251, ../sass/template/_layout.scss */
.ninzio-footer .dark .ninzio-copyright .menu > li a:hover, .ninzio-footer .dark .ninzio-copyright .menu > li a:focus, .ninzio-footer .dark .ninzio-copyright .menu > li a:active {
    color: #b5a473;
}

/* line 1256, ../sass/template/_layout.scss */
.ninzio-footer .dark .ninzio-copyright .menu > li:last-child a {
    border: 0;
    padding: 0;
}

/* line 1264, ../sass/template/_layout.scss */
.ninzio-footer .dark .widget-social.style1 li a {
    background: #212121;
    border: none;
}

/* line 1267, ../sass/template/_layout.scss */
.ninzio-footer .dark .widget-social.style1 li a i {
    line-height: inherit;
}

/* line 1270, ../sass/template/_layout.scss */
.ninzio-footer .dark .widget-social.style1 li a:hover, .ninzio-footer .dark .widget-social.style1 li a:active {
    background: #b5a473;
}

/* line 1275, ../sass/template/_layout.scss */
.ninzio-footer .dark .widget-blog .entry-date {
    color: #616161;
}

/* line 1279, ../sass/template/_layout.scss */
.ninzio-footer .widget {
    margin-bottom: 0;
}

/* line 1282, ../sass/template/_layout.scss */
.ninzio-footer .widget.widget-gallery .gallery-item {
    position: relative;
    margin: 0 0 7px 0;
}

/* line 1285, ../sass/template/_layout.scss */
.ninzio-footer .widget.widget-gallery .gallery-item .gallery-item-image {
    width: 100%;
    height: 100%;
    background: transparent !important;
}

/* line 1288, ../sass/template/_layout.scss */
.ninzio-footer .widget.widget-gallery .gallery-item .gallery-item-image img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

/* line 1292, ../sass/template/_layout.scss */
.ninzio-footer .widget.widget-gallery .gallery-item:before {
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    background: rgba(23, 199, 135, 0.6);
}

/* line 1298, ../sass/template/_layout.scss */
.ninzio-footer .widget.widget-gallery .gallery-item:hover .gallery-item-content {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1302, ../sass/template/_layout.scss */
.ninzio-footer .widget.widget-gallery .gallery-item:hover:before {
    z-index: -1;
}

/* line 1307, ../sass/template/_layout.scss */
.ninzio-footer .widget.widget-gallery .gallery-item-content {
    z-index: 2;
    position: absolute;
    border: 0;
    text-align: center;
    top: 50%;
    left: 50%;
    width: 90%;
    display: none;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/* line 1321, ../sass/template/_layout.scss */
.ninzio-footer .widget.widget-gallery .gallery-item-content .icon-theme.icon-theme--small {
    font-size: 14px;
    width: 30px;
    height: 30px;
}

/* line 1331, ../sass/template/_layout.scss */
.menu-colums {
    width: 100%;
    overflow: hidden;
}

/* line 1334, ../sass/template/_layout.scss */
.menu-colums .menu {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    width: 100%;
}

/* line 1338, ../sass/template/_layout.scss */
.menu-colums li {
    text-align: center;
}

/*------------------------------------*\
    Copyright
\*------------------------------------*/
/* line 1345, ../sass/template/_layout.scss */
.ninzio-copyright {
    color: #aaaaaa;
    background: #1f2227;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1350, ../sass/template/_layout.scss */
    .ninzio-copyright {
        text-align: center !important;
        line-height: 26px;
    }
}

@media (max-width: 640px) {
    /* line 1350, ../sass/template/_layout.scss */
    .ninzio-copyright {
        text-align: center !important;
    }
}

/*------------------------------------*\
    Top bar
\*------------------------------------*/
/* line 1363, ../sass/template/_layout.scss */
.ninzio-offcanvas {
    display: none;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 99;
    background: #1f2227;
}

/* line 1364, ../sass/template/_layout.scss */
.ninzio-offcanvas .navbar-offcanvas {
    margin: 0;
}

/* line 1367, ../sass/template/_layout.scss */
.ninzio-offcanvas .ninzio-offcanvas-body {
    position: relative;
}

/* line 1378, ../sass/template/_layout.scss */
.none-padding [class*="kc_col-"] {
    padding: 0px;
}

/* line 1381, ../sass/template/_layout.scss */
.none-padding [class*="col-"] {
    padding: 0px;
}

/* line 1387, ../sass/template/_layout.scss */
.hesperiden.tp-bullets .tp-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid #ffffff;
    margin: 0 8px;
}

/* line 1392, ../sass/template/_layout.scss */
.hesperiden.tp-bullets .tp-bullet.selected {
    background: #ffffff;
}

/* line 1399, ../sass/template/_layout.scss */
.col-md-c5 {
    width: 20%;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1399, ../sass/template/_layout.scss */
    .col-md-c5 {
        width: 20%;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1399, ../sass/template/_layout.scss */
    .col-md-c5 {
        width: 50%;
    }
}

@media (max-width: 640px) {
    /* line 1399, ../sass/template/_layout.scss */
    .col-md-c5 {
        width: 100%;
    }
}

/* line 1415, ../sass/template/_layout.scss */
#ninzio-header.header-v2 #ninzio-topbar .list-social > li > a {
    color: #999999 !important;
}

/* 5. menu */
/* line 1, ../sass/template/_menu.scss */
.ninzio-megamenu {
    margin: 0;
    border: 0;
    position: relative;
    min-height: 46px;
    background-color: #b5a473;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* line 9, ../sass/template/_menu.scss */
.ninzio-megamenu:before, .ninzio-megamenu:after {
    content: "";
    background: #b5a473;
    position: absolute;
    top: 0;
    width: 15px;
    height: 100%;
    display: block;
}

/* line 19, ../sass/template/_menu.scss */
.ninzio-megamenu:before {
    left: -15px;
}

/* line 22, ../sass/template/_menu.scss */
.ninzio-megamenu:after {
    right: -15px;
}

/* line 27, ../sass/template/_menu.scss */
.navbar-nav {
    width: 100%;
    text-align: center;
}

/* line 30, ../sass/template/_menu.scss */
.navbar-nav > li {
    padding-right: 60px;
    display: inline-block;
    float: none;
    margin: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .navbar-nav > li {
    padding-left: 60px;
    padding-right: inherit;
}

/* line 35, ../sass/template/_menu.scss */
.navbar-nav > li:last-child {
    padding-right: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .navbar-nav > li:last-child {
    padding-left: 0;
    padding-right: inherit;
}

/* line 38, ../sass/template/_menu.scss */
.navbar-nav > li .menu-item-description {
    font-size: 10px;
    font-weight: 500;
    margin: 3px 0 0;
    text-transform: capitalize;
}

/* line 44, ../sass/template/_menu.scss */
.navbar-nav > li > a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    font-family: "Montserrat";
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    color: #999999;
}

/* line 59, ../sass/template/_menu.scss */
.navbar-nav > li:hover > a, .navbar-nav > li.open > a, .navbar-nav > li.active > a {
    text-decoration: none;
}

/* line 63, ../sass/template/_menu.scss */
.navbar-nav > li > .dropdown-menu {
    top: 100%;
    left: 0;
    border: 0;
    background: #2c2e32;
    min-width: 258px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* line 72, ../sass/template/_menu.scss */
.navbar-nav > li > .dropdown-menu > li > a {
    font-weight: 500;
}

/* line 78, ../sass/template/_menu.scss */
.navbar-nav > li.aligned-right > .dropdown-menu {
    left: auto;
    right: 0;
}

/* line 85, ../sass/template/_menu.scss */
.navbar-nav .sub-menu .widget-title,
.navbar-nav .sub-menu .widgettitle {
    font-weight: 500;
    margin: 0 0 25px;
    padding-bottom: 12px;
    border: 0;
    color: #FFFFFF;
    font-size: 13px;
    letter-spacing: .5px;
    text-align: left;
    position: relative;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .navbar-nav .sub-menu .widget-title, .rtl
.navbar-nav .sub-menu .widgettitle {
    text-align: right;
}

/* line 96, ../sass/template/_menu.scss */
.navbar-nav .sub-menu .widget-title:after,
.navbar-nav .sub-menu .widgettitle:after {
    display: none;
}

/* line 99, ../sass/template/_menu.scss */
.navbar-nav .sub-menu .widget-title:before,
.navbar-nav .sub-menu .widgettitle:before {
    position: absolute;
    content: "";
    background: #56585b;
    width: 44px;
    height: 2px;
    bottom: 0;
    display: block;
    left: 0;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .navbar-nav .sub-menu .widget-title:before, .rtl
.navbar-nav .sub-menu .widgettitle:before {
    right: 0;
    left: auto;
}

/* line 109, ../sass/template/_menu.scss */
.navbar-nav .sub-menu .widget-title > span,
.navbar-nav .sub-menu .widgettitle > span {
    padding: 0;
    margin: 0;
    border: none;
}

/* line 116, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu {
    background: #25272a;
    display: block;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    padding: 15px 0;
    border: none;
    position: absolute;
    left: 100%;
    min-width: 258px;
    top: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 131, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .current-menu-item > a {
    color: #b5a473;
}

/* line 135, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu > li > a {
    background: transparent;
    text-transform: uppercase;
    color: #979899;
    padding: 5px 25px;
    font-size: 13px;
    font-family: "Montserrat";
}

/* line 142, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu > li > a:hover, .navbar-nav .dropdown-menu > li > a:focus, .navbar-nav .dropdown-menu > li > a:active {
    color: #FFFFFF;
}

/* line 150, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu > li.open > a, .navbar-nav .dropdown-menu > li.active > a {
    color: #FFFFFF;
}

/* line 152, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu > li.open > a:before, .navbar-nav .dropdown-menu > li.active > a:before {
    height: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 160, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .dropdown-menu-inner {
    padding: 40px 60px;
}

/* line 163, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .widget-title,
.navbar-nav .dropdown-menu .widgettitle {
    font-weight: 500;
    margin: 0 0 25px;
    padding-bottom: 12px;
    border: 0;
    color: #FFFFFF;
    font-size: 13px;
    letter-spacing: .5px;
    text-align: left;
    position: relative;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .navbar-nav .dropdown-menu .widget-title, .rtl
.navbar-nav .dropdown-menu .widgettitle {
    text-align: right;
}

/* line 174, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .widget-title:after,
.navbar-nav .dropdown-menu .widgettitle:after {
    display: none;
}

/* line 177, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .widget-title:before,
.navbar-nav .dropdown-menu .widgettitle:before {
    position: absolute;
    content: "";
    background: #56585b;
    width: 44px;
    height: 2px;
    bottom: 0;
    display: block;
    left: 0;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .navbar-nav .dropdown-menu .widget-title:before, .rtl
.navbar-nav .dropdown-menu .widgettitle:before {
    right: 0;
    left: auto;
}

/* line 187, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .widget-title > span,
.navbar-nav .dropdown-menu .widgettitle > span {
    padding: 0;
    margin: 0;
    border: none;
}

/* line 193, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .menu-megamenu-container {
    margin: 0;
    padding: 0;
}

/* line 197, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .menu-megamenu-container ul > li {
    line-height: 30px;
}

/* line 199, ../sass/template/_menu.scss */
.navbar-nav .dropdown-menu .menu-megamenu-container ul > li > a {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5px;
    font-family: "Montserrat";
}

/* line 210, ../sass/template/_menu.scss */
.navbar-nav .ninzio-container {
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

/* line 216, ../sass/template/_menu.scss */
.navbar-nav li:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

/* line 223, ../sass/template/_menu.scss */
.navbar-nav li:hover > .dropdown-menu > li:hover > a:before {
    top: 0;
    left: 0;
}

/* line 232, ../sass/template/_menu.scss */
.navbar-nav li.aligned-fullwidth {
    position: static;
}

/* line 234, ../sass/template/_menu.scss */
.navbar-nav li.aligned-fullwidth > .dropdown-menu {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* line 240, ../sass/template/_menu.scss */
.navbar-nav .text-label {
    font-size: 13px;
    padding: 2px 5px;
    background: #252525;
    color: #fff;
    position: absolute;
    right: 0;
    top: -15px;
    text-transform: capitalize;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .navbar-nav .text-label {
    left: 0;
    right: auto;
}

/* line 249, ../sass/template/_menu.scss */
.navbar-nav .text-label.label-hot {
    background: #f65b47;
}

/* line 256, ../sass/template/_menu.scss */
.navbar-offcanvas {
    border: none;
}

/* line 258, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-collapse {
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* line 263, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav {
    width: 100%;
    float: none;
    margin: 0;
}

/* line 267, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav > li {
    border-bottom: 1px solid #3e4146;
    padding: 0;
}

/* line 274, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav > li:hover > a, .navbar-offcanvas .navbar-nav > li:focus > a, .navbar-offcanvas .navbar-nav > li:active > a, .navbar-offcanvas .navbar-nav > li.active > a {
    background: #b5a473;
}

/* line 279, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li {
    display: block;
    float: none;
    position: relative;
    line-height: 2.5;
    -webkit-transition: border-color 0.2s linear;
    -o-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
}

/* line 285, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li.active {
    outline: none;
}

/* line 287, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li.active a {
    color: #FFFFFF !important;
}

/* line 291, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li > .icon-toggle {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0px;
    cursor: pointer;
    padding: 9px 20px;
    font-size: 13px;
    color: #999999;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .navbar-offcanvas .navbar-nav li > .icon-toggle {
    left: 0px;
    right: auto;
}

/* line 300, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li > .icon-toggle:hover {
    color: #b5a473;
}

/* line 304, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li > a {
    background: transparent;
    text-transform: uppercase;
    font-family: "Montserrat", cursive, sans-serif;
    display: block;
    padding: 15px 25px;
    font-size: 13px;
    width: 100%;
    font-weight: 500;
    text-align: center;
    color: #999999;
    -webkit-transition: background-color 0.2s linear, color 0.1s ease-in;
    -o-transition: background-color 0.2s linear, color 0.1s ease-in;
    transition: background-color 0.2s linear, color 0.1s ease-in;
}

/* line 320, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li:hover > a, .navbar-offcanvas .navbar-nav li.open > a, .navbar-offcanvas .navbar-nav li.active > a {
    color: #FFFFFF !important;
    background: #b5a473;
}

/* line 323, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li:hover > a:before, .navbar-offcanvas .navbar-nav li.open > a:before, .navbar-offcanvas .navbar-nav li.active > a:before {
    display: none;
}

/* line 327, ../sass/template/_menu.scss */
.navbar-offcanvas .navbar-nav li:hover .icon-toggle, .navbar-offcanvas .navbar-nav li.open .icon-toggle, .navbar-offcanvas .navbar-nav li.active .icon-toggle {
    color: #FFFFFF !important;
}

/* line 333, ../sass/template/_menu.scss */
.navbar-offcanvas .dropdown-menu {
    margin: 0;
}

/* line 336, ../sass/template/_menu.scss */
.navbar-offcanvas .dropdown-menu > li a {
    background: transparent;
}

/* line 339, ../sass/template/_menu.scss */
.navbar-offcanvas .dropdown-menu > li.active > a,
.navbar-offcanvas .dropdown-menu > li > a:hover,
.navbar-offcanvas .dropdown-menu > li > a:focus {
    color: #999999;
    text-decoration: underline;
}

/* line 346, ../sass/template/_menu.scss */
.navbar-offcanvas .dropdown-menu [class*="col-sm"] {
    width: 100%;
}

/* line 349, ../sass/template/_menu.scss */
.navbar-offcanvas .dropdown-menu .dropdown-menu-inner {
    padding: 0 30px;
}

/* line 352, ../sass/template/_menu.scss */
.navbar-offcanvas .dropdown-menu .widgettitle {
    font-weight: 500;
    margin: 0 0 10px;
}

/* line 356, ../sass/template/_menu.scss */
.navbar-offcanvas .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
}

/* line 362, ../sass/template/_menu.scss */
.navbar-offcanvas li:hover .dropdown-menu {
    display: block;
}

/* line 367, ../sass/template/_menu.scss */
.navbar-offcanvas .aligned-fullwidth > .dropdown-menu {
    width: 100%;
}

/* line 376, ../sass/template/_menu.scss */
#main-mobile-menu .has-submenu > .sub-menu {
    padding-left: 0;
    list-style: none;
    display: none;
    background: #282b31;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #main-mobile-menu .has-submenu > .sub-menu {
    padding-right: 0;
    padding-left: inherit;
}

/* line 381, ../sass/template/_menu.scss */
#main-mobile-menu .has-submenu > .sub-menu li {
    line-height: 1.2;
    border-bottom: 1px solid #3e4146;
}

/* line 387, ../sass/template/_menu.scss */
#main-mobile-menu .has-submenu > .sub-menu li:hover > a, #main-mobile-menu .has-submenu > .sub-menu li:focus > a, #main-mobile-menu .has-submenu > .sub-menu li:active > a, #main-mobile-menu .has-submenu > .sub-menu li.active > a, #main-mobile-menu .has-submenu > .sub-menu li.open > a {
    background: transparent;
}

/* line 393, ../sass/template/_menu.scss */
#main-mobile-menu .has-submenu > .sub-menu li .icon-toggle {
    top: 8px;
}

/* line 396, ../sass/template/_menu.scss */
#main-mobile-menu .has-submenu > .sub-menu li > a {
    padding: 18px 35px;
    display: block;
}

/* line 400, ../sass/template/_menu.scss */
#main-mobile-menu .has-submenu > .sub-menu li:last-child {
    border-bottom: 0px;
}

/* line 406, ../sass/template/_menu.scss */
#main-mobile-menu .widget .widget-title,
#main-mobile-menu .widget .widgettitle,
#main-mobile-menu .widget .widget-heading {
    border: 0;
    margin: 0;
    font-size: 13px;
}

/* line 412, ../sass/template/_menu.scss */
#main-mobile-menu .widget .widget-title > span,
#main-mobile-menu .widget .widgettitle > span,
#main-mobile-menu .widget .widget-heading > span {
    padding: 0;
    margin: 0 0 8px;
    border: none;
}

/* line 421, ../sass/template/_menu.scss */
#ninzio-mobile-menu .btn-toggle-canvas {
    padding: 8px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 426, ../sass/template/_menu.scss */
#ninzio-mobile-menu .offcanvas-head strong {
    margin: 0 5px;
}

/* line 430, ../sass/template/_menu.scss */
#ninzio-mobile-menu .ninzio-search,
#ninzio-mobile-menu .button-search {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 434, ../sass/template/_menu.scss */
#ninzio-mobile-menu .setting {
    font-size: 16px;
    padding: 0 25px;
    margin: 30px 0 10px;
    text-transform: uppercase;
}

/* line 439, ../sass/template/_menu.scss */
#ninzio-mobile-menu .setting i {
    margin-right: 3px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #ninzio-mobile-menu .setting i {
    margin-left: 3px;
    margin-right: inherit;
}

/* line 443, ../sass/template/_menu.scss */
#ninzio-mobile-menu .menu-topbar {
    padding: 0;
    list-style: none;
}

/* line 446, ../sass/template/_menu.scss */
#ninzio-mobile-menu .menu-topbar li {
    line-height: 2.5;
    border-bottom: 1px solid #eeeeee;
}

/* line 449, ../sass/template/_menu.scss */
#ninzio-mobile-menu .menu-topbar li a {
    padding: 7px 25px;
    display: block;
}

/* line 457, ../sass/template/_menu.scss */
.over-dark {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

/* line 470, ../sass/template/_menu.scss */
.wrapper-container.active .over-dark {
    display: block;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 477, ../sass/template/_menu.scss */
.dropdown-menu .dropdown-toggle {
    position: relative;
}

/* line 479, ../sass/template/_menu.scss */
.dropdown-menu .dropdown-toggle .caret {
    transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    position: absolute;
    right: 10px;
    top: 50%;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .dropdown-menu .dropdown-toggle .caret {
    left: 10px;
    right: auto;
}

/* line 491, ../sass/template/_menu.scss */
.dropdown-menu .dropdown:hover .dropdown-toggle .caret {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* line 499, ../sass/template/_menu.scss */
.full-top-search-form {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-height: 120px;
    z-index: 9;
    width: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 509, ../sass/template/_menu.scss */
.full-top-search-form.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* line 512, ../sass/template/_menu.scss */
.full-top-search-form .close-search-form {
    color: #f65b47;
}

/* line 515, ../sass/template/_menu.scss */
.full-top-search-form div.input-group {
    bottom: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

/* line 521, ../sass/template/_menu.scss */
.full-top-search-form div.input-group .ninzio-search {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 100%;
    position: absolute;
    padding: 10px 70px;
    font-size: 25px;
}

/* line 528, ../sass/template/_menu.scss */
.full-top-search-form div.input-group .close-search-form {
    position: absolute;
    top: 50%;
    right: 70px;
    z-index: 12;
    border: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 539, ../sass/template/_menu.scss */
.button-show-search {
    background: transparent;
    border: none;
    vertical-align: middle;
}

/* line 548, ../sass/template/_menu.scss */
.header-v1 .navbar-nav > li > a {
    color: #FFFFFF;
    position: relative;
    font-weight: 500;
}

/* line 552, ../sass/template/_menu.scss */
.header-v1 .navbar-nav > li > a:before {
    -webkit-transition: width 0.2s ease-out;
    -o-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    background: #fff;
    left: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
}

/* line 569, ../sass/template/_menu.scss */
.header-v1 .navbar-nav > li:hover > a, .header-v1 .navbar-nav > li:focus > a, .header-v1 .navbar-nav > li:active > a, .header-v1 .navbar-nav > li.active > a {
    color: #FFFFFF;
}

/* line 571, ../sass/template/_menu.scss */
.header-v1 .navbar-nav > li:hover > a:before, .header-v1 .navbar-nav > li:focus > a:before, .header-v1 .navbar-nav > li:active > a:before, .header-v1 .navbar-nav > li.active > a:before {
    width: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 590, ../sass/template/_menu.scss */
.header-v1 #topmenu-menu.navbar-nav > li > a:hover > a:before, .header-v1 #topmenu-menu.navbar-nav > li > a:focus > a:before, .header-v1 #topmenu-menu.navbar-nav > li > a:active > a:before, .header-v1 #topmenu-menu.navbar-nav > li > a.active > a:before {
    visibility: hidden;
}

/* line 599, ../sass/template/_menu.scss */
.header-v1 #topmenu-menu.navbar-nav > li > a::before {
    visibility: hidden;
}

/* line 603, ../sass/template/_menu.scss */
.header-v2 .ninzio-megamenu {
    background: transparent;
    min-height: 94px;
    position: static;
}

/* line 607, ../sass/template/_menu.scss */
.header-v2 .ninzio-megamenu:before, .header-v2 .ninzio-megamenu:after {
    display: none;
}

/* line 612, ../sass/template/_menu.scss */
.header-v2 .navbar-nav > li {
    padding-right: 30px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-v2 .navbar-nav > li {
    padding-left: 30px;
    padding-right: inherit;
}

/* line 614, ../sass/template/_menu.scss */
.header-v2 .navbar-nav > li > a {
    color: #999999;
    position: relative;
    padding-top: 34px;
    padding-bottom: 34px;
    font-weight: 500;
}

/* line 620, ../sass/template/_menu.scss */
.header-v2 .navbar-nav > li > a:before {
    -webkit-transition: width 0.2s ease-out;
    -o-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    background: #b5a473;
    left: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
}

/* line 638, ../sass/template/_menu.scss */
.header-v2 .navbar-nav > li:hover > a:before, .header-v2 .navbar-nav > li:focus > a:before, .header-v2 .navbar-nav > li:active > a:before, .header-v2 .navbar-nav > li.active > a:before {
    width: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/template/_menu.scss */
.header-v3 .ninzio-megamenu {
    width: auto;
    background: transparent;
    position: static;
    min-height: 94px;
}

/* line 655, ../sass/template/_menu.scss */
.header-v3 .ninzio-megamenu:before, .header-v3 .ninzio-megamenu:after {
    display: none;
}

/* line 661, ../sass/template/_menu.scss */
.header-v3 .navbar-nav > li {
    padding-right: 30px;
}

/* line 663, ../sass/template/_menu.scss */
.header-v3 .navbar-nav > li.active > a {
    color: #FFFFFF;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-v3 .navbar-nav > li {
    padding-left: 30px;
    padding-right: inherit;
}

/* line 668, ../sass/template/_menu.scss */
.header-v3 .navbar-nav > li > a {
    font-size: 16px;
    font-weight: 500;
    padding: 36px 0;
    text-transform: none;
    color: #FFFFFF;
}

/* line 674, ../sass/template/_menu.scss */
.header-v3 .navbar-nav > li > a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    left: 0;
    bottom: 33px;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: width 0.2s ease-out;
    -o-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
}

/* line 690, ../sass/template/_menu.scss */
.header-v3 .navbar-nav > li:hover > a, .header-v3 .navbar-nav > li:focus > a, .header-v3 .navbar-nav > li:active > a, .header-v3 .navbar-nav > li.active > a {
    color: #FFFFFF;
}

/* line 692, ../sass/template/_menu.scss */
.header-v3 .navbar-nav > li:hover > a:after, .header-v3 .navbar-nav > li:focus > a:after, .header-v3 .navbar-nav > li:active > a:after, .header-v3 .navbar-nav > li.active > a:after {
    display: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 704, ../sass/template/_menu.scss */
.header-v4 .ninzio-megamenu {
    width: auto;
    background: transparent;
    position: static;
    min-height: 94px;
}

/* line 709, ../sass/template/_menu.scss */
.header-v4 .ninzio-megamenu:before, .header-v4 .ninzio-megamenu:after {
    display: none;
}

/* line 714, ../sass/template/_menu.scss */
.header-v4 .navbar-nav > li {
    padding-right: 60px;
    float: left;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-v4 .navbar-nav > li {
    padding-left: 60px;
    padding-right: inherit;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .header-v4 .navbar-nav > li {
    float: right;
}

/* line 717, ../sass/template/_menu.scss */
.header-v4 .navbar-nav > li:last-child {
    padding-right: 0px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-v4 .navbar-nav > li:last-child {
    padding-left: 0px;
    padding-right: inherit;
}

/* line 720, ../sass/template/_menu.scss */
.header-v4 .navbar-nav > li > a {
    position: relative;
    color: #FFFFFF;
    font-size: 12px;
    padding-bottom: 34px;
    padding-top: 34px;
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .header-v4 .navbar-nav > li > a {
    float: right;
}

/* line 727, ../sass/template/_menu.scss */
.header-v4 .navbar-nav > li > a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    left: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: width 0.2s ease-out;
    -o-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
}

/* line 740, ../sass/template/_menu.scss */
.header-v4 .navbar-nav > li:hover > a, .header-v4 .navbar-nav > li:focus > a, .header-v4 .navbar-nav > li:active > a, .header-v4 .navbar-nav > li.active > a {
    color: #FFFFFF;
}

/* line 742, ../sass/template/_menu.scss */
.header-v4 .navbar-nav > li:hover > a:before, .header-v4 .navbar-nav > li:focus > a:before, .header-v4 .navbar-nav > li:active > a:before, .header-v4 .navbar-nav > li.active > a:before {
    width: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 754, ../sass/template/_menu.scss */
.header-v5 .ninzio-megamenu {
    width: auto;
    position: static;
    min-height: 94px;
    background: transparent;
}

/* line 759, ../sass/template/_menu.scss */
.header-v5 .ninzio-megamenu:before, .header-v5 .ninzio-megamenu:after {
    display: none;
}

/* line 765, ../sass/template/_menu.scss */
.header-v5 .navbar-nav > li {
    padding-right: 17px;
    padding-top: 33px;
    padding-bottom: 33px;
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .header-v5 .navbar-nav > li {
    float: right;
}

@media (max-width: 1200px) {
    /* line 765, ../sass/template/_menu.scss */
    .header-v5 .navbar-nav > li {
        padding-right: 5px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .header-v5 .navbar-nav > li {
        padding-left: 5px;
        padding-right: inherit;
    }
}

/* line 774, ../sass/template/_menu.scss */
.header-v5 .navbar-nav > li.active > a, .header-v5 .navbar-nav > li:hover > a, .header-v5 .navbar-nav > li:active > a, .header-v5 .navbar-nav > li:focus > a {
    border-color: rgba(255, 255, 255, 0.45);
}

/* line 778, ../sass/template/_menu.scss */
.header-v5 .navbar-nav > li > a {
    padding: 0px 8px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid transparent;
    float: left;
    -webkit-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .header-v5 .navbar-nav > li > a {
    float: right;
}

/* line 786, ../sass/template/_menu.scss */
.header-v5 .navbar-nav > li > a:hover, .header-v5 .navbar-nav > li > a:active, .header-v5 .navbar-nav > li > a:focus {
    color: #FFFFFF;
    background: #b5a473;
}

/* line 790, ../sass/template/_menu.scss */
.header-v5 .navbar-nav > li > a:before {
    display: none;
}

/* line 799, ../sass/template/_menu.scss */
.header-v6 .ninzio-megamenu {
    width: auto;
    background: transparent;
    position: static;
    min-height: 94px;
}

/* line 804, ../sass/template/_menu.scss */
.header-v6 .ninzio-megamenu:before, .header-v6 .ninzio-megamenu:after {
    display: none;
}

/* line 811, ../sass/template/_menu.scss */
.header-v6 .navbar-nav.megamenu > li {
    padding-right: 13px;
    padding-top: 36px;
    padding-bottom: 36px;
}

/* line 815, ../sass/template/_menu.scss */
.header-v6 .navbar-nav.megamenu > li > a {
    padding: 2px 8px;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid transparent;
    -webkit-transition: border-color 0.2s linear;
    -o-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
}

/* line 821, ../sass/template/_menu.scss */
.header-v6 .navbar-nav.megamenu > li > a:before {
    display: none;
}

/* line 829, ../sass/template/_menu.scss */
.header-v6 .navbar-nav.megamenu > li.active a, .header-v6 .navbar-nav.megamenu > li:hover a, .header-v6 .navbar-nav.megamenu > li:focus a, .header-v6 .navbar-nav.megamenu > li:active a {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

/* line 840, ../sass/template/_menu.scss */
.header-v7 .ninzio-megamenu {
    width: auto;
    background: transparent;
    position: static;
    min-height: 94px;
}

/* line 845, ../sass/template/_menu.scss */
.header-v7 .ninzio-megamenu:before, .header-v7 .ninzio-megamenu:after {
    display: none;
}

/* line 850, ../sass/template/_menu.scss */
.header-v7 .header-meta-2 {
    padding-left: 30px;
}

/* line 855, ../sass/template/_menu.scss */
.header-v7 .navbar-nav > li > a {
    position: relative;
    color: #FFFFFF;
}

/* line 858, ../sass/template/_menu.scss */
.header-v7 .navbar-nav > li > a:before {
    -webkit-transition: width 0.2s ease-out;
    -o-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    left: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
}

/* line 875, ../sass/template/_menu.scss */
.header-v7 .navbar-nav > li:hover > a:before, .header-v7 .navbar-nav > li:focus > a:before, .header-v7 .navbar-nav > li:active > a:before, .header-v7 .navbar-nav > li.active > a:before {
    width: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 886, ../sass/template/_menu.scss */
.header-v7 .navbar-nav.megamenu > li {
    padding-right: 30px;
}

/* line 888, ../sass/template/_menu.scss */
.header-v7 .navbar-nav.megamenu > li > a {
    padding: 40px 0;
}

/* line 897, ../sass/template/_menu.scss */
.header-v8 .ninzio-megamenu {
    width: auto;
    background: transparent;
    position: static;
    min-height: 94px;
}

/* line 902, ../sass/template/_menu.scss */
.header-v8 .ninzio-megamenu:before, .header-v8 .ninzio-megamenu:after {
    display: none;
}

/* line 908, ../sass/template/_menu.scss */
.header-v8 .navbar-nav > li {
    padding: 40px 12px 40px 0;
}

/* line 910, ../sass/template/_menu.scss */
.header-v8 .navbar-nav > li > a {
    padding: 0px 5px;
    border: 1px solid transparent;
    -webkit-transition: border-color 0.2s linear;
    -o-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
}

/* line 914, ../sass/template/_menu.scss */
.header-v8 .navbar-nav > li > a:before {
    display: none;
}

/* line 922, ../sass/template/_menu.scss */
.header-v8 .navbar-nav > li:hover > a, .header-v8 .navbar-nav > li:focus > a, .header-v8 .navbar-nav > li:active > a, .header-v8 .navbar-nav > li.active > a {
    color: gray;
}

/* line 931, ../sass/template/_menu.scss */
.header-v9 .ninzio-megamenu {
    width: auto;
    background: transparent;
    position: static;
    min-height: 96px;
}

/* line 936, ../sass/template/_menu.scss */
.header-v9 .ninzio-megamenu:before, .header-v9 .ninzio-megamenu:after {
    display: none;
}

/* line 949, ../sass/template/_menu.scss */
.header-v9 .navbar-nav .dropdown-menu > li.open > a, .header-v9 .navbar-nav .dropdown-menu > li:hover > a, .header-v9 .navbar-nav .dropdown-menu > li:focus > a, .header-v9 .navbar-nav .dropdown-menu > li:active > a, .header-v9 .navbar-nav .dropdown-menu > li.active > a {
    background: transparent;
}

/* line 953, ../sass/template/_menu.scss */
.header-v9 .navbar-nav .dropdown-menu > li > a {
    background: transparent;
}

/* line 958, ../sass/template/_menu.scss */
.header-v9 .navbar-nav > li {
    padding: 40px 12px 40px 0;
}

/* line 960, ../sass/template/_menu.scss */
.header-v9 .navbar-nav > li > a {
    padding: 0px 5px;
    border: 1px solid transparent;
    -webkit-transition: border-color 0.2s linear;
    -o-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
}

/* line 964, ../sass/template/_menu.scss */
.header-v9 .navbar-nav > li > a:before {
    display: none;
}

/* line 973, ../sass/template/_menu.scss */
.header-v9 .navbar-nav > li.open > a, .header-v9 .navbar-nav > li:hover > a, .header-v9 .navbar-nav > li:focus > a, .header-v9 .navbar-nav > li:active > a, .header-v9 .navbar-nav > li.active > a {
    background: transparent;
    color: gray;
}

/* line 976, ../sass/template/_menu.scss */
.header-v9 .navbar-nav > li.open > a:hover, .header-v9 .navbar-nav > li.open > a:focus, .header-v9 .navbar-nav > li.open > a:active, .header-v9 .navbar-nav > li:hover > a:hover, .header-v9 .navbar-nav > li:hover > a:focus, .header-v9 .navbar-nav > li:hover > a:active, .header-v9 .navbar-nav > li:focus > a:hover, .header-v9 .navbar-nav > li:focus > a:focus, .header-v9 .navbar-nav > li:focus > a:active, .header-v9 .navbar-nav > li:active > a:hover, .header-v9 .navbar-nav > li:active > a:focus, .header-v9 .navbar-nav > li:active > a:active, .header-v9 .navbar-nav > li.active > a:hover, .header-v9 .navbar-nav > li.active > a:focus, .header-v9 .navbar-nav > li.active > a:active {
    background: transparent;
}

/* line 989, ../sass/template/_menu.scss */
.navbar-nav > li > a {
    position: relative;
}

/* line 991, ../sass/template/_menu.scss */
.navbar-nav > li > a i {
    display: none;
}

/* line 997, ../sass/template/_menu.scss */
.navbar-nav > li > ul > li > a {
    position: relative;
}

/* line 1000, ../sass/template/_menu.scss */
.navbar-nav > li > ul > li > a:hover:before {
    height: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1006, ../sass/template/_menu.scss */
.navbar-nav > li > ul > li > a:before {
    position: absolute;
    content: "";
    width: 3px;
    height: 0;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: height 0.2s ease-out;
    -o-transition: height 0.2s ease-out;
    transition: height 0.2s ease-out;
}

/* line 1017, ../sass/template/_menu.scss */
.navbar-nav > li > ul > li > a i {
    font-size: 8px;
    position: absolute;
    right: 20px;
    top: 11px;
}

/* line 1026, ../sass/template/_menu.scss */
.navbar-nav > li > ul > li > ul > li > a {
    position: relative;
}

/* line 1029, ../sass/template/_menu.scss */
.navbar-nav > li > ul > li > ul > li > a:hover:before {
    height: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1035, ../sass/template/_menu.scss */
.navbar-nav > li > ul > li > ul > li > a:before {
    position: absolute;
    content: "";
    background: #b5a473;
    width: 3px;
    height: 0;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: height 0.2s ease-out;
    -o-transition: height 0.2s ease-out;
    transition: height 0.2s ease-out;
}

/* line 1047, ../sass/template/_menu.scss */
.navbar-nav > li > ul > li > ul > li > a i {
    font-size: 8px;
    position: absolute;
    right: 20px;
    top: 11px;
}

/* line 1061, ../sass/template/_menu.scss */
.list-check {
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    /* line 1061, ../sass/template/_menu.scss */
    .list-check {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    /* line 1061, ../sass/template/_menu.scss */
    .list-check {
        margin-bottom: 30px;
    }
}

/* line 1069, ../sass/template/_menu.scss */
.list-check > li {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

/* line 1073, ../sass/template/_menu.scss */
.list-check > li span {
    float: none !important;
}

/* line 1076, ../sass/template/_menu.scss */
.list-check > li .list-check-item-label {
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 1069, ../sass/template/_menu.scss */
    .list-check > li {
        display: table;
        text-align: left;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }
}

/* line 1085, ../sass/template/_menu.scss */
.list-check > li .list-check-item-icon {
    -webkit-box-flex: 0 0 20px;
    -moz-box-flex: 0 0 20px;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    margin-right: 20px;
    max-width: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .list-check > li .list-check-item-icon {
    margin-left: 20px;
    margin-right: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 1085, ../sass/template/_menu.scss */
    .list-check > li .list-check-item-icon {
        margin-right: 0px;
        float: none;
        display: table-cell;
        vertical-align: middle;
        font-size: 10px;
        padding: 0;
        width: 10px;
        height: 10px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .list-check > li .list-check-item-icon {
        margin-left: 0px;
        margin-right: inherit;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1085, ../sass/template/_menu.scss */
    .list-check > li .list-check-item-icon {
        margin-right: 0px;
        float: none;
        display: inline-block;
        vertical-align: middle;
        font-size: 12px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .list-check > li .list-check-item-icon {
        margin-left: 0px;
        margin-right: inherit;
    }
}

@media (max-width: 640px) {
    /* line 1085, ../sass/template/_menu.scss */
    .list-check > li .list-check-item-icon {
        margin-right: 0px;
        float: none;
        display: inline-block;
        vertical-align: middle;
        font-size: 12px;
        display: none;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .list-check > li .list-check-item-icon {
        margin-left: 0px;
        margin-right: inherit;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 1115, ../sass/template/_menu.scss */
    .list-check > li .list-check-item-label {
        margin-right: 0px;
        float: none;
        display: table-cell;
        vertical-align: top;
        font-size: 13px;
        line-height: 22px;
        padding-left: 10px;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .list-check > li .list-check-item-label {
        margin-left: 0px;
        margin-right: inherit;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1115, ../sass/template/_menu.scss */
    .list-check > li .list-check-item-label {
        margin-right: 0px;
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .list-check > li .list-check-item-label {
        margin-left: 0px;
        margin-right: inherit;
    }
}

@media (max-width: 640px) {
    /* line 1115, ../sass/template/_menu.scss */
    .list-check > li .list-check-item-label {
        margin-right: 0px;
        float: none;
        display: inline-block;
        vertical-align: middle;
        line-height: 24px;
        overflow: visible;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .list-check > li .list-check-item-label {
        margin-left: 0px;
        margin-right: inherit;
    }
}

/* line 1143, ../sass/template/_menu.scss */
.list-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

/* line 1145, ../sass/template/_menu.scss */
.list-social > li {
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    align-self: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    align-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin-right: 10px;
    margin-left: 0px;
    width: 37px;
    height: 37px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .list-social > li {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .list-social > li {
    margin-right: 0px;
    margin-left: inherit;
}

/* line 1152, ../sass/template/_menu.scss */
.list-social > li:first-child {
    margin-left: 0px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .list-social > li:first-child {
    margin-right: 0px;
    margin-left: inherit;
}

/* line 1155, ../sass/template/_menu.scss */
.list-social > li:last-child {
    margin: 0;
}

/* line 1158, ../sass/template/_menu.scss */
.list-social > li > a {
    margin: 0;
    border: 0;
    padding: 0px;
    font-size: 15px;
    text-align: center;
    background: #f5f5f5;
    color: #FFFFFF !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    width: 37px;
    height: 37px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* line 1171, ../sass/template/_menu.scss */
.list-social > li > a:hover, .list-social > li > a:focus, .list-social > li > a:active {
    color: #FFFFFF !important;
    background-color: white;
}

/* line 1175, ../sass/template/_menu.scss */
.list-social > li > a.facebook {
    background: #3b5998;
}

/* line 1177, ../sass/template/_menu.scss */
.list-social > li > a.facebook:hover, .list-social > li > a.facebook:focus, .list-social > li > a.facebook:active {
    background-color: #718dc8;
}

/* line 1181, ../sass/template/_menu.scss */
.list-social > li > a.twitter {
    background: #55acee;
}

/* line 1183, ../sass/template/_menu.scss */
.list-social > li > a.twitter:hover, .list-social > li > a.twitter:focus, .list-social > li > a.twitter:active {
    background-color: #b2d9f7;
}

/* line 1187, ../sass/template/_menu.scss */
.list-social > li > a.linkedin {
    background: #007bb6;
}

/* line 1189, ../sass/template/_menu.scss */
.list-social > li > a.linkedin:hover, .list-social > li > a.linkedin:focus, .list-social > li > a.linkedin:active {
    background-color: #1db6ff;
}

/* line 1193, ../sass/template/_menu.scss */
.list-social > li > a.pinterest {
    background: #be000f;
}

/* line 1195, ../sass/template/_menu.scss */
.list-social > li > a.pinterest:hover, .list-social > li > a.pinterest:focus, .list-social > li > a.pinterest:active {
    background-color: #ff2536;
}

/* line 1199, ../sass/template/_menu.scss */
.list-social > li > a.google-plus {
    background: #dd4b39;
}

/* line 1201, ../sass/template/_menu.scss */
.list-social > li > a.google-plus:hover, .list-social > li > a.google-plus:focus, .list-social > li > a.google-plus:active {
    background-color: #ec9a90;
}

/* line 1205, ../sass/template/_menu.scss */
.list-social > li > a.instagram {
    background: #e03b6a;
}

/* line 1207, ../sass/template/_menu.scss */
.list-social > li > a.instagram:hover, .list-social > li > a.instagram:focus, .list-social > li > a.instagram:active {
    background-color: #ee93ad;
}

/* line 1211, ../sass/template/_menu.scss */
.list-social > li > a.youtube {
    background: #e52d27;
}

/* line 1213, ../sass/template/_menu.scss */
.list-social > li > a.youtube:hover, .list-social > li > a.youtube:focus, .list-social > li > a.youtube:active {
    background-color: #f08682;
}

/* line 1217, ../sass/template/_menu.scss */
.list-social > li > a.tumblr {
    background: #636d9c;
}

/* line 1219, ../sass/template/_menu.scss */
.list-social > li > a.tumblr:hover, .list-social > li > a.tumblr:focus, .list-social > li > a.tumblr:active {
    background-color: #a1a7c4;
}

/* line 1223, ../sass/template/_menu.scss */
.list-social > li > a.google {
    background: #dd4b39;
}

/* line 1225, ../sass/template/_menu.scss */
.list-social > li > a.google:hover, .list-social > li > a.google:focus, .list-social > li > a.google:active {
    background-color: #ec9a90;
}

/* line 1235, ../sass/template/_menu.scss */
#ninzio-header.header-v2 .navbar-nav.megamenu {
    background: transparent;
}

/* line 1239, ../sass/template/_menu.scss */
#ninzio-header.header-v2 .navbar-nav > li > a {
    color: #999999 !important;
}

/* 6. pages */
/* line 4, ../sass/template/_pages.scss */
div.wpcf7-validation-errors {
    margin: 12px 0;
    padding: 15px;
}

/* line 8, ../sass/template/_pages.scss */
.contact-form-content {
    padding: 30px;
    background: white;
    min-height: 260px;
}

/* line 12, ../sass/template/_pages.scss */
.contact-form-content .rounded {
    margin-right: 10px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: #cccccc;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .contact-form-content .rounded {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 17, ../sass/template/_pages.scss */
.contact-form-content .rounded .fa, .contact-form-content .rounded .icon {
    font-size: 16px;
    margin: 13px;
}

/* line 22, ../sass/template/_pages.scss */
.contact-form-content small {
    color: #444444;
}

/* line 29, ../sass/template/_pages.scss */
.error-404 {
    padding: 60px 0;
}

/* line 32, ../sass/template/_pages.scss */
.page-404 {
    padding: 50px 0;
}

/* line 34, ../sass/template/_pages.scss */
.page-404 .big-font {
    line-height: 140px;
    font-size: 130px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Montserrat";
    color: #999999;
}

@media only screen and (max-width: 767px) {
    /* line 34, ../sass/template/_pages.scss */
    .page-404 .big-font {
        font-size: 110px;
    }
}

@media (max-width: 640px) {
    /* line 34, ../sass/template/_pages.scss */
    .page-404 .big-font {
        font-size: 110px;
    }
}

/* line 48, ../sass/template/_pages.scss */
.page-404 .page-title {
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 25px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 48, ../sass/template/_pages.scss */
    .page-404 .page-title {
        font-size: 54px;
        line-height: 64px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 48, ../sass/template/_pages.scss */
    .page-404 .page-title {
        font-size: 44px;
        line-height: 54px;
    }
}

@media (max-width: 640px) {
    /* line 48, ../sass/template/_pages.scss */
    .page-404 .page-title {
        font-size: 38px;
        line-height: 48px;
    }
}

/* line 66, ../sass/template/_pages.scss */
.page-404 .sub-title {
    font-size: 16px;
    margin: 0 0 40px;
}

/* line 72, ../sass/template/_pages.scss */
.blog-masonry .post-container {
    margin-bottom: 30px;
    background-color: #fafafa;
}

/* line 76, ../sass/template/_pages.scss */
.blog-masonry .information-post {
    padding: 15px;
}

/* line 80, ../sass/template/_pages.scss */
.blog-list-item {
    border-bottom: 1px solid #e0e0e0;
}

/* 7. post */
/*
* General Post Style using for all with naming class entry
*/
/* line 4, ../sass/template/_post.scss */
.entry-thumb {
    position: relative;
    overflow: hidden;
}

/* line 7, ../sass/template/_post.scss */
.entry-thumb img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* line 11, ../sass/template/_post.scss */
.entry-thumb:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/* line 16, ../sass/template/_post.scss */
.entry-date {
    padding: 7px;
    color: #ffffff;
    text-align: center;
    width: 60px;
    height: 70px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: normal;
    font-family: "Montserrat";
}

/* line 25, ../sass/template/_post.scss */
.entry-date > * {
    display: block;
}

/* line 28, ../sass/template/_post.scss */
.entry-date .day {
    font-size: 26px;
    margin: 2px 0 0;
}

/* line 32, ../sass/template/_post.scss */
.entry-date .month {
    font-size: 13px;
    margin: -4px 0 0;
}

/* line 37, ../sass/template/_post.scss */
.layout-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px;
    text-transform: inherit;
}

/* line 43, ../sass/template/_post.scss */
.entry-create {
    font-size: 13px;
    margin: 0 0 15px;
}

/* line 46, ../sass/template/_post.scss */
.entry-create > * {
    margin-right: 2px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .entry-create > * {
    margin-left: 2px;
    margin-right: inherit;
}

/* line 49, ../sass/template/_post.scss */
.entry-create .author {
    font-style: italic;
    text-transform: capitalize;
}

/* line 54, ../sass/template/_post.scss */
.entry-link {
    margin-top: 20px;
}

/* line 56, ../sass/template/_post.scss */
.entry-link .readmore {
    color: #b5a473;
    text-transform: capitalize;
}

/* line 59, ../sass/template/_post.scss */
.entry-link .readmore:hover {
    color: #b5a473;
}

/* line 64, ../sass/template/_post.scss */
.entry-meta {
    margin: 0;
}

/* line 66, ../sass/template/_post.scss */
.entry-meta i {
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .entry-meta i {
    margin-left: 8px;
    margin-right: inherit;
}

/* line 72, ../sass/template/_post.scss */
.entry-vote {
    z-index: 1;
    display: table;
    text-align: center;
    top: 20px;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    right: 20px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .entry-vote {
    left: 20px;
    right: auto;
}

/* line 81, ../sass/template/_post.scss */
.entry-vote .entry-vote-inner {
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    font-weight: 700;
}

/* line 88, ../sass/template/_post.scss */
.entry-vote.vote-perfect .entry-vote-inner {
    color: #ec5355;
}

/* line 93, ../sass/template/_post.scss */
.entry-vote.vote-good .entry-vote-inner {
    color: #fdff39;
}

/* line 98, ../sass/template/_post.scss */
.entry-vote.vote-average .entry-vote-inner {
    color: #91e536;
}

/* line 103, ../sass/template/_post.scss */
.entry-vote.vote-bad .entry-vote-inner {
    color: #e93434;
}

/* line 108, ../sass/template/_post.scss */
.entry-vote.vote-poor .entry-vote-inner {
    color: #78ae00;
}

/* line 113, ../sass/template/_post.scss */
.type-post {
    margin-bottom: 30px;
}

/* line 116, ../sass/template/_post.scss */
.blog-title {
    margin-bottom: 30px;
}

/* line 119, ../sass/template/_post.scss */
.entry-tags-list {
    font-weight: 400;
    font-family: "Lato";
}

/* line 122, ../sass/template/_post.scss */
.entry-tags-list strong {
    font-weight: 600;
    color: #232323;
}

/* line 126, ../sass/template/_post.scss */
.entry-tags-list a {
    font-size: 14px;
    color: #777777;
    display: inline-block;
}

/* line 130, ../sass/template/_post.scss */
.entry-tags-list a:hover {
    color: #999999;
}

/* line 136, ../sass/template/_post.scss */
.comment-navigation {
    overflow: hidden;
    padding: 20px 0;
}

/* line 140, ../sass/template/_post.scss */
.comment-navigation .nav-links > div {
    display: inline-block;
}

/* line 142, ../sass/template/_post.scss */
.comment-navigation .nav-links > div + div {
    line-height: 1.1;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 2px solid #e0e0e0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .comment-navigation .nav-links > div + div {
    margin-right: 15px;
    margin-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .comment-navigation .nav-links > div + div {
    padding-right: 15px;
    padding-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .comment-navigation .nav-links > div + div {
    border-right: 2px solid #e0e0e0;
    border-left: inherit;
}

/* line 152, ../sass/template/_post.scss */
#commentform .form-control {
    border: 1px solid #e0e0e0;
    color: #777777;
    font-size: 14px;
    padding: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* line 647, ../sass/mixins/_template-mixins.scss */
#commentform .form-control:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
#commentform .form-control:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
#commentform .form-control::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
#commentform .form-control:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 152, ../sass/template/_post.scss */
    #commentform .form-control {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 152, ../sass/template/_post.scss */
    #commentform .form-control {
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    /* line 152, ../sass/template/_post.scss */
    #commentform .form-control {
        margin-bottom: 10px;
    }
}

/* line 172, ../sass/template/_post.scss */
#commentform .form-control:focus {
    border-color: #b5a473;
    -webkit-box-shadow: inset 0 0 0 1px #b5a473;
    box-shadow: inset 0 0 0 1px #b5a473;
}

/* line 177, ../sass/template/_post.scss */
#commentform .form-group {
    margin: 0 0 18px;
}

/* line 180, ../sass/template/_post.scss */
#commentform .row > .form-group {
    margin: 0;
}

/* line 183, ../sass/template/_post.scss */
#commentform .h-info {
    margin: 0 0 12px;
}

/* line 186, ../sass/template/_post.scss */
#commentform .input-title {
    font-size: 14px;
    font-weight: 500;
    font-family: "Lato";
    margin: 0 0 8px;
    color: #777777;
}

/* line 193, ../sass/template/_post.scss */
#commentform textarea {
    height: 145px;
    resize: none;
}

/* line 197, ../sass/template/_post.scss */
#commentform .form-submit {
    margin: 30px 0;
}

/*
* using for new, magazine
*/
/* line 205, ../sass/template/_post.scss */
.post-specail {
    background: #f5f5f5;
}

/* line 207, ../sass/template/_post.scss */
.post-specail .entry-content {
    background: transparent;
}

/* line 210, ../sass/template/_post.scss */
.post-specail .entry-title {
    font-size: 16px;
}

/* line 213, ../sass/template/_post.scss */
.post-specail .entry-date {
    font-style: italic;
}

/* line 216, ../sass/template/_post.scss */
.post-specail .entry-create {
    margin: 0 0 18px;
}

/* line 220, ../sass/template/_post.scss */
.post-title {
    font-size: 18px;
}

/* line 223, ../sass/template/_post.scss */
.post-thumb {
    position: relative;
}

/* line 226, ../sass/template/_post.scss */
.blog-meta {
    top: 0;
    position: absolute;
    right: 0px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .blog-meta {
    left: 0px;
    right: auto;
}

/** Post blog style **/
/* line 233, ../sass/template/_post.scss */
.blog.style1 .blog-date {
    top: 0;
    position: absolute;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .blog.style1 .blog-date {
    left: 0;
    right: auto;
}

/* line 238, ../sass/template/_post.scss */
.blog.style2 {
    border: 1px solid #e0e0e0;
}

/* line 240, ../sass/template/_post.scss */
.blog.style2 .blog-date {
    float: left;
    margin: -1px 30px 0px 0px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .blog.style2 .blog-date {
    float: right;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .blog.style2 .blog-date {
    margin: -1px 0px 0px 30px;
}

/* line 244, ../sass/template/_post.scss */
.blog.style2 .entry-title {
    padding-left: 65px;
    padding-right: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .blog.style2 .entry-title {
    padding-right: 65px;
    padding-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .blog.style2 .entry-title {
    padding-left: 20px;
    padding-right: inherit;
}

/* line 248, ../sass/template/_post.scss */
.blog.style2 .entry-description {
    padding-left: 65px;
    padding-right: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .blog.style2 .entry-description {
    padding-right: 65px;
    padding-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .blog.style2 .entry-description {
    padding-left: 20px;
    padding-right: inherit;
}

/* line 252, ../sass/template/_post.scss */
.blog.style2 .entry-content {
    border: 0px;
    margin-bottom: 20px;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.blog.style2 .entry-content:before, .blog.style2 .entry-content:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.blog.style2 .entry-content:after {
    clear: both;
}

/* line 258, ../sass/template/_post.scss */
.blog .blog-date {
    display: table;
    background: #e93434;
    text-align: center !important;
    color: #000;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    width: 50px;
    height: 50px;
    line-height: normal;
}

/* line 268, ../sass/template/_post.scss */
.blog .blog-date .blog-date-inner {
    display: table-cell;
    vertical-align: middle;
}

/* line 272, ../sass/template/_post.scss */
.blog .blog-date span {
    display: block;
    margin: 2px 0 3px 0;
    line-height: 25px;
    font-size: 24px;
    font-weight: 400;
}

/* line 280, ../sass/template/_post.scss */
.blog .blog-date--grids {
    position: absolute;
    top: 0;
    right: 15px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .blog .blog-date--grids {
    left: 15px;
    right: auto;
}

/* line 285, ../sass/template/_post.scss */
.blog .entry-content--info {
    overflow: hidden;
    padding: 30px 0;
}

/* Post type: Grid */
/* line 291, ../sass/template/_post.scss */
.entry-image {
    display: block;
}

/* line 294, ../sass/template/_post.scss */
.layout-blog {
    padding-right: 8px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .layout-blog {
    padding-left: 8px;
    padding-right: inherit;
}

/* line 296, ../sass/template/_post.scss */
.layout-blog .ninzio-pagination {
    margin-top: 70px;
}

/* line 301, ../sass/template/_post.scss */
.layout-blog [class*="col-"]:last-child .post-grid-v3 .inner-border {
    margin: 0;
    padding: 0;
    border: none;
}

/* line 308, ../sass/template/_post.scss */
.layout-blog .post-gallery-owl .owl-controls {
    height: 100%;
}

/* line 310, ../sass/template/_post.scss */
.layout-blog .post-gallery-owl .owl-controls .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* line 318, ../sass/template/_post.scss */
.layout-blog .post-gallery-owl .owl-stage-outer {
    text-align: center;
}

/* line 322, ../sass/template/_post.scss */
.layout-blog article {
    margin-bottom: 40px;
    overflow: hidden;
    background: #ffffff;
}

/* line 327, ../sass/template/_post.scss */
.layout-blog .post-thumbnail {
    display: block;
}

/* line 330, ../sass/template/_post.scss */
.layout-blog .chess-item {
    background: #ffffff;
}

/* line 333, ../sass/template/_post.scss */
.layout-blog .entry-thumb {
    position: relative;
    overflow: hidden;
}

/* line 336, ../sass/template/_post.scss */
.layout-blog .entry-thumb img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* line 339, ../sass/template/_post.scss */
.layout-blog .entry-thumb:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

/* line 342, ../sass/template/_post.scss */
.layout-blog .entry-thumb .category {
    margin-top: 25px;
    display: inline-block;
}

/* line 345, ../sass/template/_post.scss */
.layout-blog .entry-thumb .category a {
    color: #777777;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 15px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
    border: 1px solid #e0e0e0;
}

/* line 354, ../sass/template/_post.scss */
.layout-blog .entry-thumb .category a:hover {
    color: #b5a473;
    border-color: #b5a473;
    text-decoration: none;
}

/* line 359, ../sass/template/_post.scss */
.layout-blog .entry-thumb .category a + a {
    margin-left: 4px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .layout-blog .entry-thumb .category a + a {
    margin-right: 4px;
    margin-left: inherit;
}

/* line 365, ../sass/template/_post.scss */
.layout-blog .social {
    margin: 25px 0 0;
}

/* line 369, ../sass/template/_post.scss */
.layout-blog .bo-sicolor > a {
    margin-left: 20px;
    color: #777777;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .layout-blog .bo-sicolor > a {
    margin-right: 20px;
    margin-left: inherit;
}

/* line 372, ../sass/template/_post.scss */
.layout-blog .bo-sicolor > a:hover {
    color: #999999;
}

/* line 377, ../sass/template/_post.scss */
.layout-blog.style-timeline {
    position: relative;
}

/* line 379, ../sass/template/_post.scss */
.layout-blog.style-timeline article {
    overflow: visible;
}

/* line 382, ../sass/template/_post.scss */
.layout-blog.style-timeline .ninzio-timeline-date {
    display: inline-block;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #f8f8f8;
}

/* line 390, ../sass/template/_post.scss */
.layout-blog.style-timeline .ninzio-posts-month .item-first, .layout-blog.style-timeline .ninzio-posts-month .right {
    padding: 25px;
}

/* line 394, ../sass/template/_post.scss */
.layout-blog.style-timeline .ninzio-timeline-blog {
    position: absolute;
    top: 27px;
    height: 94%;
    border: 1px solid #b5a473;
    left: 50%;
}

/* line 402, ../sass/template/_post.scss */
.layout-blog.style-timeline .entry-content {
    position: relative;
}

/* line 404, ../sass/template/_post.scss */
.layout-blog.style-timeline .entry-content:before {
    content: "\f04b";
    font-family: "FontAwesome";
    color: #ffffff;
    position: absolute;
    left: 100%;
}

/* line 411, ../sass/template/_post.scss */
.layout-blog.style-timeline .entry-content:after {
    content: "\f111";
    font-family: "FontAwesome";
    color: #b5a473;
    position: absolute;
    top: 15px;
}

/* line 421, ../sass/template/_post.scss */
.layout-blog.style-timeline .item-first .entry-content:before {
    left: 100%;
}

/* line 424, ../sass/template/_post.scss */
.layout-blog.style-timeline .item-first .entry-content:after {
    right: -33px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .layout-blog.style-timeline .item-first .entry-content:after {
    left: -33px;
    right: auto;
}

/* line 432, ../sass/template/_post.scss */
.layout-blog.style-timeline .right .entry-content:before {
    left: -10px;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .layout-blog.style-timeline .right .entry-content:before {
    right: -10px;
    left: auto;
}

/* line 436, ../sass/template/_post.scss */
.layout-blog.style-timeline .right .entry-content:after {
    left: -30px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .layout-blog.style-timeline .right .entry-content:after {
    right: -30px;
    left: auto;
}

/* line 446, ../sass/template/_post.scss */
.post.sticky .entry-title a {
    color: #b5a473;
}

/* line 450, ../sass/template/_post.scss */
.post .entry-description {
    margin: 0 0 18px;
}

@media (max-width: 1200px) {
    /* line 450, ../sass/template/_post.scss */
    .post .entry-description {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 450, ../sass/template/_post.scss */
    .post .entry-description {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 450, ../sass/template/_post.scss */
    .post .entry-description {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (max-width: 640px) {
    /* line 450, ../sass/template/_post.scss */
    .post .entry-description {
        font-size: 14px;
        margin: 0 0 10px;
        padding-left: 0px;
        padding-right: 0px;
    }
}

/* line 472, ../sass/template/_post.scss */
.entry-meta {
    font-size: 13px;
    font-weight: 500;
}

/* line 475, ../sass/template/_post.scss */
.entry-meta > * {
    margin-right: 20px;
    display: inline-block;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .entry-meta > * {
    margin-left: 20px;
    margin-right: inherit;
}

/* line 478, ../sass/template/_post.scss */
.entry-meta > *:last-child {
    margin: 0;
}

/* line 482, ../sass/template/_post.scss */
.entry-meta i {
    margin-right: 5px;
    font-size: 12px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .entry-meta i {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 486, ../sass/template/_post.scss */
.entry-meta a:hover, .entry-meta a:active {
    color: #b5a473;
}

/* line 490, ../sass/template/_post.scss */
.entry-image-wrapper {
    position: relative;
}

/* line 492, ../sass/template/_post.scss */
.entry-image-wrapper .image-wrapper {
    position: relative;
    overflow: hidden;
}

/* line 495, ../sass/template/_post.scss */
.entry-image-wrapper .image-wrapper img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* line 498, ../sass/template/_post.scss */
.entry-image-wrapper .image-wrapper:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

/* line 503, ../sass/template/_post.scss */
.entry-date {
    position: absolute;
    top: 0;
    margin: 15px;
    left: 0;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .entry-date {
    right: 0;
    left: auto;
}

/* line 509, ../sass/template/_post.scss */
.entry-info {
    overflow: hidden;
    background: #f8f8f8;
    padding: 14px 10px;
    border-bottom: 1px solid #e0e0e0;
}

/* line 515, ../sass/template/_post.scss */
.entry-title {
    padding: 0;
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 640px) {
    /* line 515, ../sass/template/_post.scss */
    .entry-title {
        font-size: 16px;
        line-height: 24px;
    }
}

/* line 525, ../sass/template/_post.scss */
.entry-title a {
    color: #333;
}

/* line 527, ../sass/template/_post.scss */
.entry-title a:hover {
    color: #b5a473;
}

/* line 532, ../sass/template/_post.scss */
.entry-content {
    padding: 30px 30px 40px 40px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .entry-content {
    padding: 30px 40px 40px 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 532, ../sass/template/_post.scss */
    .entry-content {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 532, ../sass/template/_post.scss */
    .entry-content {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    /* line 532, ../sass/template/_post.scss */
    .entry-content {
        padding: 15px;
    }
}

/* line 544, ../sass/template/_post.scss */
.readmore {
    color: #999999;
    font-size: 14px;
    letter-spacing: 1.2px;
    line-height: normal;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 1px solid #999999;
    -webkit-transition: all 0.3s ease 0.1s;
    -o-transition: all 0.3s ease 0.1s;
    transition: all 0.3s ease 0.1s;
}

/* line 554, ../sass/template/_post.scss */
.readmore:hover {
    color: #b5a473;
    border-color: #b5a473;
}

/* line 559, ../sass/template/_post.scss */
.entry-meta {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
}

/* line 564, ../sass/template/_post.scss */
.entry-meta a {
    color: #999999;
}

/* line 566, ../sass/template/_post.scss */
.entry-meta a:hover, .entry-meta a:active, .entry-meta a:focus {
    color: #b5a473;
}

/* line 572, ../sass/template/_post.scss */
.post-grid, .post-list {
    position: relative;
    margin-bottom: 0;
    border: 1px solid #e0e0e0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 577, ../sass/template/_post.scss */
    .post-grid .entry-thumb img, .post-list .entry-thumb img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    /* line 577, ../sass/template/_post.scss */
    .post-grid .entry-thumb img, .post-list .entry-thumb img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    /* line 577, ../sass/template/_post.scss */
    .post-grid .entry-thumb img, .post-list .entry-thumb img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

/* line 589, ../sass/template/_post.scss */
.post-grid.category-sticky, .post-list.category-sticky {
    background-color: #b5a473;
    border-color: #b5a473;
    color: #ffffff;
}

/* line 593, ../sass/template/_post.scss */
.post-grid.category-sticky .entry-title, .post-list.category-sticky .entry-title {
    font-size: 24px;
    line-height: 34px;
}

/* line 597, ../sass/template/_post.scss */
.post-grid.category-sticky .readmore, .post-list.category-sticky .readmore {
    border-color: #ffffff;
}

/* line 600, ../sass/template/_post.scss */
.post-grid.category-sticky .readmore, .post-grid.category-sticky a, .post-list.category-sticky .readmore, .post-list.category-sticky a {
    color: #FFFFFF !important;
}

/* line 606, ../sass/template/_post.scss */
.post-grid-v2 {
    overflow: hidden;
    background: transparent !important;
    position: relative;
    padding: 25px 0;
}

/* line 611, ../sass/template/_post.scss */
.post-grid-v2:before {
    display: none;
}

/* line 614, ../sass/template/_post.scss */
.post-grid-v2:after {
    content: '';
    width: 82%;
    height: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 2px solid #b5a473;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .post-grid-v2:after {
    left: 0;
    right: auto;
}

/* line 627, ../sass/template/_post.scss */
.post-grid-v2 > * {
    position: relative;
    z-index: 9;
}

/* line 631, ../sass/template/_post.scss */
.post-grid-v2 div.post-img {
    width: 35%;
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-grid-v2 div.post-img {
    float: right;
}

/* line 635, ../sass/template/_post.scss */
.post-grid-v2 .entry-content {
    float: left;
    width: 65%;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-grid-v2 .entry-content {
    float: right;
}

/* line 643, ../sass/template/_post.scss */
.post-grid-v2:hover:after {
    -webkit-box-shadow: 0 -2px 0 0 #b5a473 inset;
    box-shadow: 0 -2px 0 0 #b5a473 inset;
}

/* line 648, ../sass/template/_post.scss */
.post-grid-v3 {
    margin: 0 !important;
    padding: 0;
}

/* line 651, ../sass/template/_post.scss */
.post-grid-v3 .entry-title {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 10px;
}

/* line 656, ../sass/template/_post.scss */
.post-grid-v3 .entry-meta {
    margin: 0 0 20px;
    text-transform: uppercase;
}

/* line 659, ../sass/template/_post.scss */
.post-grid-v3 .entry-meta a {
    color: #666666;
}

/* line 661, ../sass/template/_post.scss */
.post-grid-v3 .entry-meta a:hover, .post-grid-v3 .entry-meta a:active {
    color: #b5a473;
}

/* line 666, ../sass/template/_post.scss */
.post-grid-v3 .entry-description {
    margin: 0 0 25px;
    line-height: 26px;
}

/* line 670, ../sass/template/_post.scss */
.post-grid-v3 .top-image {
    margin: 0 0 30px;
}

/* line 673, ../sass/template/_post.scss */
.post-grid-v3 .date {
    font-family: "Lato";
    padding: 5px 10px 10px;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    float: left;
    border: 1px solid #e0e0e0;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-grid-v3 .date {
    float: right;
}

/* line 681, ../sass/template/_post.scss */
.post-grid-v3 .date .day {
    border-bottom: 1px solid #e0e0e0;
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 7px;
}

/* line 687, ../sass/template/_post.scss */
.post-grid-v3 .date .year, .post-grid-v3 .date .month {
    line-height: 1.2;
}

/* line 691, ../sass/template/_post.scss */
.post-grid-v3 .content-inner {
    overflow: hidden;
    padding-left: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-grid-v3 .content-inner {
    padding-right: 20px;
    padding-left: inherit;
}

/* line 695, ../sass/template/_post.scss */
.post-grid-v3 .inner-border {
    margin: 0 0 50px;
    padding: 0 0 50px;
    border-bottom: 1px solid #e0e0e0;
}

/* line 703, ../sass/template/_post.scss */
.isotope-items .info-bottom {
    display: none;
}

/* line 707, ../sass/template/_post.scss */
.style-chess {
    padding: 0 0 40px;
}

/* line 709, ../sass/template/_post.scss */
.style-chess article {
    margin: 0 !important;
}

/* line 712, ../sass/template/_post.scss */
.style-chess .entry-content {
    padding: 28px;
}

/* line 715, ../sass/template/_post.scss */
.style-chess .entry-media {
    margin: 0;
}

/* Post type: List */
/* line 720, ../sass/template/_post.scss */
.posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* line 724, ../sass/template/_post.scss */
.posts-list li {
    margin: 0 0 30px;
}

/* line 726, ../sass/template/_post.scss */
.posts-list li:last-child {
    margin: 0;
}

/* line 729, ../sass/template/_post.scss */
.posts-list li .entry-content {
    background: transparent;
    padding: 0;
}

/* line 734, ../sass/template/_post.scss */
.posts-list .date {
    font-size: 13px;
}

/* line 737, ../sass/template/_post.scss */
.posts-list .entry-thumb {
    width: 100px;
}

/* line 740, ../sass/template/_post.scss */
.posts-list .entry-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
}

/* line 745, ../sass/template/_post.scss */
.posts-list .entry-create {
    font-size: 10px;
    font-weight: 500;
    margin: 0;
}

/* line 750, ../sass/template/_post.scss */
.posts-list .entry-meta {
    padding: 0;
}

/* Post type: By Category */
/* line 756, ../sass/template/_post.scss */
.posts-grid-category {
    overflow: hidden;
}

/* line 759, ../sass/template/_post.scss */
.category-posts {
    position: relative;
}

/* line 761, ../sass/template/_post.scss */
.category-posts::after {
    content: "";
    top: 20px;
    position: absolute;
    right: 0;
    width: 1px;
    height: 1000px;
    background: #e0e0e0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .category-posts::after {
    left: 0;
    right: auto;
}

/* line 769, ../sass/template/_post.scss */
.category-posts .post {
    border-bottom: 1px solid #e0e0e0;
}

/* line 772, ../sass/template/_post.scss */
.category-posts .category-posts-label {
    padding: 1px 3px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #b5a473;
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
}

/* line 779, ../sass/template/_post.scss */
.category-posts .category-posts-label a {
    color: #fff;
}

/* line 784, ../sass/template/_post.scss */
.category-posts .entry-meta::after {
    display: none;
}

/* line 790, ../sass/template/_post.scss */
.category-posts .posts-more .post:last-child {
    border: 0px;
}

/* line 794, ../sass/template/_post.scss */
.category-posts .posts-more .entry-title {
    font-size: 10px;
}

/* line 796, ../sass/template/_post.scss */
.category-posts .posts-more .entry-title a {
    color: #777777;
}

/* line 798, ../sass/template/_post.scss */
.category-posts .posts-more .entry-title a:hover {
    color: #b5a473;
}

/*------------------------------------*\
    Post detail
\*------------------------------------*/
/* line 809, ../sass/template/_post.scss */
.sharebox {
    margin-bottom: 30px;
}

/* line 811, ../sass/template/_post.scss */
.sharebox .sharebox-title {
    margin: 10px 0;
}

/* line 817, ../sass/template/_post.scss */
.social-networks li {
    padding-left: 10px;
    padding-right: 10px;
}

/* line 821, ../sass/template/_post.scss */
.social-networks li:last-child a {
    margin-right: 0;
}

/* line 825, ../sass/template/_post.scss */
.social-networks li a {
    font-size: 14px;
}

/* line 827, ../sass/template/_post.scss */
.social-networks li a:hover {
    color: #b5a473;
}

/* line 833, ../sass/template/_post.scss */
.tag-links,
.post-share {
    margin-bottom: 10px;
}

/* line 836, ../sass/template/_post.scss */
.tag-links span i,
.post-share span i {
    margin-right: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .tag-links span i, .rtl
.post-share span i {
    margin-left: 5px;
    margin-right: inherit;
}

/*------------------------------------*\
    Comment List
\*------------------------------------*/
/* line 843, ../sass/template/_post.scss */
.comment-list {
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
    border: 0px solid #e0e0e0;
}

/* line 848, ../sass/template/_post.scss */
.comment-list div.avatar {
    min-width: 100px;
    padding-right: 25px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .comment-list div.avatar {
    padding-left: 25px;
    padding-right: inherit;
}

@media (max-width: 640px) {
    /* line 848, ../sass/template/_post.scss */
    .comment-list div.avatar {
        display: block;
        margin-bottom: 20px;
        min-width: 100px;
        padding-right: 0;
    }
}

/* line 858, ../sass/template/_post.scss */
.comment-list .date-comment {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #999999;
}

/* line 864, ../sass/template/_post.scss */
.comment-list .comment-box {
    position: relative;
}

/* line 867, ../sass/template/_post.scss */
.comment-list .reply-link {
    position: absolute;
    top: 0;
    right: 0;
}

/* line 871, ../sass/template/_post.scss */
.comment-list .reply-link .comment-reply-link {
    background-color: transparent;
    border: 1px solid #e0e0e0;
}

/* line 874, ../sass/template/_post.scss */
.comment-list .reply-link .comment-reply-link:hover {
    background-color: #b5a473;
    border-color: #b5a473;
    color: #FFFFFF;
}

/* line 881, ../sass/template/_post.scss */
.comment-list .the-comment {
    padding: 30px 25px;
    border-bottom: 0;
    margin-bottom: 45px;
    background-color: #f5f5f5;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 881, ../sass/template/_post.scss */
    .comment-list .the-comment {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 881, ../sass/template/_post.scss */
    .comment-list .the-comment {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    /* line 881, ../sass/template/_post.scss */
    .comment-list .the-comment {
        padding: 20px;
    }
}

/* line 896, ../sass/template/_post.scss */
.comment-list ul.children {
    list-style: none;
    padding: 0;
}

/* line 899, ../sass/template/_post.scss */
.comment-list ul.children > li {
    padding-left: 30px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .comment-list ul.children > li {
    padding-right: 30px;
    padding-left: inherit;
}

/* line 903, ../sass/template/_post.scss */
.comment-list .comment-respond {
    padding: 25px 25px 0;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

/* line 907, ../sass/template/_post.scss */
.comment-list .comment-respond textarea {
    resize: none;
}

/* line 910, ../sass/template/_post.scss */
.comment-list .comment-respond .input-title {
    margin: 0 0 5px !important;
}

/* line 913, ../sass/template/_post.scss */
.comment-list .comment-respond #cancel-comment-reply-link {
    display: inline-block;
    background: #f65b47;
    color: #fff;
    padding: 2px 8px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

/* line 920, ../sass/template/_post.scss */
.comment-list .comment-respond .title {
    margin: 0 0 5px;
}

/* line 924, ../sass/template/_post.scss */
.comment-list .comment-author {
    font-size: 14px;
    margin: 0 0 10px;
}

/* line 927, ../sass/template/_post.scss */
.comment-list .comment-author strong {
    font-size: 20px;
    font-weight: 500;
    margin: -8px 0 8px;
    text-transform: capitalize;
    color: #333;
    display: block;
}

/* line 934, ../sass/template/_post.scss */
.comment-list .comment-author strong a {
    color: #333;
}

/* line 936, ../sass/template/_post.scss */
.comment-list .comment-author strong a:hover {
    color: #b5a473;
}

/* line 942, ../sass/template/_post.scss */
.comment-list .comment-reply-link {
    color: #999999;
    font-family: "Raleway", cursive, sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #eeeeee;
    padding: 6px 20px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    display: inline-block;
}

/* line 953, ../sass/template/_post.scss */
.comment-list .comment-reply-link:hover, .comment-list .comment-reply-link:active {
    color: #555;
    background: gainsboro;
}

/* line 960, ../sass/template/_post.scss */
.commentform .title {
    font-size: 24px;
    margin: 0;
    font-weight: 300;
}

/* line 967, ../sass/template/_post.scss */
.post-navigation .navi {
    display: block;
    float: none;
    width: 100%;
    font-weight: 700;
    margin: 0 0 10px;
    font-size: 12px;
    font-family: "Montserrat";
    text-transform: uppercase;
}

/*------------------------------------*\
    Single post
\*------------------------------------*/
/* line 983, ../sass/template/_post.scss */
.detail-post .category-sticky .entry-title {
    font-size: 38px;
    line-height: 48px;
}

/* line 989, ../sass/template/_post.scss */
.detail-post .ninzio-social-share strong {
    background: #f5f5f5;
    color: #999999;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    height: 35px;
    margin: 0 12px 0 0;
    padding: 9px 20px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    font-family: "Montserrat";
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 989, ../sass/template/_post.scss */
    .detail-post .ninzio-social-share strong {
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    /* line 989, ../sass/template/_post.scss */
    .detail-post .ninzio-social-share strong {
        height: auto;
    }
}

@media (max-width: 640px) {
    /* line 989, ../sass/template/_post.scss */
    .detail-post .ninzio-social-share strong {
        height: auto;
    }
}

/* line 1012, ../sass/template/_post.scss */
.detail-post .ninzio-social-share a {
    margin-left: 5px;
    width: 35px;
    height: 35px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    display: inline-block;
    color: #fff;
    background: #b5a473;
    text-align: center;
    line-height: 35px;
    vertical-align: middle;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-post .ninzio-social-share a {
    margin-right: 5px;
    margin-left: inherit;
}

/* line 1022, ../sass/template/_post.scss */
.detail-post .ninzio-social-share a:first-child {
    margin: 0;
}

/* line 1025, ../sass/template/_post.scss */
.detail-post .ninzio-social-share a.facebook {
    background: #3b5998;
}

/* line 1028, ../sass/template/_post.scss */
.detail-post .ninzio-social-share a.twitter {
    background: #55acee;
}

/* line 1031, ../sass/template/_post.scss */
.detail-post .ninzio-social-share a.google {
    background: #dd4b39;
}

/* line 1034, ../sass/template/_post.scss */
.detail-post .ninzio-social-share a.linkedin {
    background: #007bb6;
}

/* line 1037, ../sass/template/_post.scss */
.detail-post .ninzio-social-share a.instagram {
    background: #bc2a8d;
}

/* line 1040, ../sass/template/_post.scss */
.detail-post .ninzio-social-share a.youtube {
    background: #bb0000;
}

/* line 1045, ../sass/template/_post.scss */
.detail-post .entry-info {
    background: transparent;
    border: 0 none;
    margin: 0 0 35px;
    padding: 0;
}

/* line 1051, ../sass/template/_post.scss */
.detail-post .entry-description {
    margin-bottom: 30px;
}

/* line 1054, ../sass/template/_post.scss */
.detail-post .entry-tag {
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
    padding-top: 20px;
}

/* line 1058, ../sass/template/_post.scss */
.detail-post .entry-tag strong {
    background: #f5f5f5;
    color: #999999;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    margin: 0 3px 0 0;
    padding: 8px 20px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    font-family: "Montserrat";
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .detail-post .entry-tag strong {
    margin: 0 0 0 3px;
}

/* line 1071, ../sass/template/_post.scss */
.detail-post .entry-tag a {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #999999;
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    margin: 0 3px;
    padding: 8px 20px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    font-family: "Montserrat";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* line 1085, ../sass/template/_post.scss */
.detail-post .entry-tag a:hover {
    color: #b5a473;
    border-color: #b5a473;
}

/* line 1090, ../sass/template/_post.scss */
.detail-post .entry-tag .entry-tags-list > * {
    margin-top: 10px;
}

/* line 1094, ../sass/template/_post.scss */
.detail-post .blockquote {
    background: #f5f5f5;
    border: 0;
    font-size: 26px;
    line-height: 36px;
    font-weight: 300;
    margin: 40px 0;
    position: relative;
    padding: 40px 30px 50px 90px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .detail-post .blockquote {
    padding: 40px 90px 50px 30px;
}

/* line 1103, ../sass/template/_post.scss */
.detail-post .blockquote:before {
    content: "\f10d";
    position: absolute;
    top: 0px;
    color: #999999;
    left: 0;
    margin: 45px 35px;
    font-size: 36px;
    font-family: 'FontAwesome';
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .detail-post .blockquote:before {
    right: 0;
    left: auto;
}

/* line 1114, ../sass/template/_post.scss */
.detail-post .entry-meta {
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 1px 0 1px 0;
    padding: 20px 0;
    font-weight: 600;
    line-height: 24px;
}

/* line 1121, ../sass/template/_post.scss */
.detail-post .entry-meta > * {
    margin-right: 25px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-post .entry-meta > * {
    margin-left: 25px;
    margin-right: inherit;
}

/* line 1125, ../sass/template/_post.scss */
.detail-post .tag-social {
    margin-top: 30px;
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

/* line 1130, ../sass/template/_post.scss */
.detail-post .tag-social > .pull-left {
    margin-top: 5px;
}

/* line 1135, ../sass/template/_post.scss */
.detail-post .related-posts-content .widget-title,
.detail-post .related-posts-content .entry-title {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 26px;
}

/* line 1142, ../sass/template/_post.scss */
.detail-post .author-info {
    background: #f5f5f5;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding: 56px;
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1142, ../sass/template/_post.scss */
    .detail-post .author-info {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1142, ../sass/template/_post.scss */
    .detail-post .author-info {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    /* line 1142, ../sass/template/_post.scss */
    .detail-post .author-info {
        padding: 20px;
    }
}

/* line 1156, ../sass/template/_post.scss */
.detail-post .author-info .author-title {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 0 8px;
}

/* line 1161, ../sass/template/_post.scss */
.detail-post .author-info .author-title a {
    color: #333;
}

/* line 1163, ../sass/template/_post.scss */
.detail-post .author-info .author-title a:hover {
    color: #b5a473;
}

/* line 1168, ../sass/template/_post.scss */
.detail-post .author-info .avatar-img {
    padding: 0;
}

@media (max-width: 640px) {
    /* line 1168, ../sass/template/_post.scss */
    .detail-post .author-info .avatar-img {
        display: block;
        height: auto;
        margin: 0 0 20px;
        width: auto;
    }
}

/* line 1176, ../sass/template/_post.scss */
.detail-post .author-info .avatar-img img {
    max-width: none;
}

/* line 1180, ../sass/template/_post.scss */
.detail-post .author-info .description {
    padding-left: 25px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-post .author-info .description {
    padding-right: 25px;
    padding-left: inherit;
}

@media (max-width: 640px) {
    /* line 1180, ../sass/template/_post.scss */
    .detail-post .author-info .description {
        padding: 0px;
    }
}

/* line 1187, ../sass/template/_post.scss */
.detail-post .entry-title {
    font-size: 32px;
    font-weight: 500;
    margin: 60px 0 30px 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1187, ../sass/template/_post.scss */
    .detail-post .entry-title {
        font-size: 28px;
        line-height: 30px;
        margin: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1187, ../sass/template/_post.scss */
    .detail-post .entry-title {
        font-size: 24px;
        line-height: 34px;
        margin: 30px 0;
    }
}

@media (max-width: 640px) {
    /* line 1187, ../sass/template/_post.scss */
    .detail-post .entry-title {
        font-size: 18px;
        line-height: 28px;
        margin: 20px 0;
    }
}

/* line 1207, ../sass/template/_post.scss */
.detail-post .meta {
    font-size: 18px;
    font-weight: 600;
}

/* line 1210, ../sass/template/_post.scss */
.detail-post .meta a {
    color: #999999;
}

/* line 1212, ../sass/template/_post.scss */
.detail-post .meta a:hover, .detail-post .meta a:active {
    color: #b5a473;
}

/* line 1217, ../sass/template/_post.scss */
.detail-post .entry-thumb {
    margin: 0;
    padding: 0;
}

/* line 1221, ../sass/template/_post.scss */
.detail-post .sub {
    font-size: 18px;
    margin: 0 0 20px;
    font-weight: 500;
}

/* line 1226, ../sass/template/_post.scss */
.detail-post .title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 40px 0;
    padding-top: 25px;
    color: #999999;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid #e0e0e0;
}

/* line 1237, ../sass/template/_post.scss */
#comments {
    padding: 0;
}

/* line 1239, ../sass/template/_post.scss */
#comments #reply-title {
    margin: 0;
}

/* line 1242, ../sass/template/_post.scss */
#comments .comments-title {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 30px;
}

/* line 1249, ../sass/template/_post.scss */
.post-navigation {
    padding: 0;
    border-color: transparent;
}

/* line 1252, ../sass/template/_post.scss */
.post-navigation .screen-reader-text {
    display: none;
}

/* line 1256, ../sass/template/_post.scss */
.post-navigation .navi i {
    margin: 0 5px;
}

/* line 1260, ../sass/template/_post.scss */
.post-navigation .post-title {
    font-size: 14px;
}

/* line 1263, ../sass/template/_post.scss */
.post-navigation .nav-links {
    overflow: hidden;
}

/* line 1265, ../sass/template/_post.scss */
.post-navigation .nav-links > * {
    width: 40%;
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .nav-links > * {
    float: right;
}

/* line 1268, ../sass/template/_post.scss */
.post-navigation .nav-links > *.nav-next {
    float: right;
    text-align: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .nav-links > *.nav-next {
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .nav-links > *.nav-next {
    text-align: left;
}

/* line 1273, ../sass/template/_post.scss */
.post-navigation .nav-links .meta-nav {
    display: none;
}

/* line 1277, ../sass/template/_post.scss */
.post-navigation .nav-links .next-post .before-hover {
    padding-left: 0px;
    padding-right: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .nav-links .next-post .before-hover {
    padding-right: 0px;
    padding-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .nav-links .next-post .before-hover {
    padding-left: 5px;
    padding-right: inherit;
}

/* line 1282, ../sass/template/_post.scss */
.post-navigation .nav-links .before-hover {
    color: #999999;
    position: relative;
    padding-left: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .nav-links .before-hover {
    padding-right: 5px;
    padding-left: inherit;
}

/* line 1286, ../sass/template/_post.scss */
.post-navigation .nav-links .before-hover:hover, .post-navigation .nav-links .before-hover:active {
    color: #b5a473;
}

/* line 1291, ../sass/template/_post.scss */
.post-navigation .before-hover {
    font-size: 14px;
}

/* line 1293, ../sass/template/_post.scss */
.post-navigation .before-hover i {
    font-size: 10px;
    margin-right: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .before-hover i {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 1299, ../sass/template/_post.scss */
.post-navigation .on-hover h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* line 1303, ../sass/template/_post.scss */
.post-navigation .on-hover h3 a {
    color: #333;
}

/* line 1305, ../sass/template/_post.scss */
.post-navigation .on-hover h3 a:hover, .post-navigation .on-hover h3 a:active, .post-navigation .on-hover h3 a:focus {
    color: #b5a473;
}

/* line 1311, ../sass/template/_post.scss */
.post-navigation .next-post {
    float: right;
    text-align: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .next-post {
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .next-post {
    text-align: left;
}

/* line 1314, ../sass/template/_post.scss */
.post-navigation .next-post .before-hover i {
    margin-left: 8px;
    margin-right: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .next-post .before-hover i {
    margin-right: 8px;
    margin-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-navigation .next-post .before-hover i {
    margin-left: 0;
    margin-right: inherit;
}

/* line 1321, ../sass/template/_post.scss */
.related-posts {
    padding: 0;
    margin: 30px 0;
}

/* line 1324, ../sass/template/_post.scss */
.related-posts .widget-content {
    position: static;
}

/* line 1327, ../sass/template/_post.scss */
.related-posts .owl-carousel {
    position: static;
}

/* line 1329, ../sass/template/_post.scss */
.related-posts .owl-carousel .owl-controls {
    top: 0;
    position: absolute;
    margin: 27px 0 0 0;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .related-posts .owl-carousel .owl-controls {
    left: 0;
    right: auto;
}

/* line 1335, ../sass/template/_post.scss */
.related-posts .owl-carousel .owl-controls .owl-nav .owl-prev,
.related-posts .owl-carousel .owl-controls .owl-nav .owl-next {
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    line-height: 25px;
    position: static;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1346, ../sass/template/_post.scss */
.related-posts .owl-carousel .owl-controls .owl-nav .owl-prev {
    margin-right: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .related-posts .owl-carousel .owl-controls .owl-nav .owl-prev {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 1352, ../sass/template/_post.scss */
.related-posts .format-status,
.related-posts .format-chat,
.related-posts .format-quote {
    background: #f5f5f5;
    padding: 0;
}

/* line 1357, ../sass/template/_post.scss */
.related-posts .format-status .entry-content,
.related-posts .format-chat .entry-content,
.related-posts .format-quote .entry-content {
    border: 0;
}

/* line 1361, ../sass/template/_post.scss */
.related-posts .entry-title {
    font-size: 16px;
    line-height: 26px;
}

/* line 1365, ../sass/template/_post.scss */
.related-posts .entry-content {
    padding: 25px 34px 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1365, ../sass/template/_post.scss */
    .related-posts .entry-content {
        padding: 15px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1365, ../sass/template/_post.scss */
    .related-posts .entry-content {
        padding: 15px;
    }
}

@media (max-width: 640px) {
    /* line 1365, ../sass/template/_post.scss */
    .related-posts .entry-content {
        padding: 15px;
    }
}

/* line 1376, ../sass/template/_post.scss */
.related-posts .entry-content .entry-description {
    font: 0/0;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    position: absolute;
    top: -99999px;
    left: -99999px;
}

/* line 1383, ../sass/template/_post.scss */
.related-posts .categories,
.related-posts .post-author,
.related-posts .info-bottom {
    display: none;
}

/* line 1390, ../sass/template/_post.scss */
.post-list {
    border: 1px solid #e0e0e0;
}

/* line 1392, ../sass/template/_post.scss */
.post-list .entry-title {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 10px;
    padding: 30px 30px 0 30px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .post-list .entry-title {
    padding: 30px 30px 0 30px;
}

@media (max-width: 1200px) {
    /* line 1392, ../sass/template/_post.scss */
    .post-list .entry-title {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 10px;
        padding: 20px 20px 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1392, ../sass/template/_post.scss */
    .post-list .entry-title {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 10px;
        padding: 20px 20px 0;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1392, ../sass/template/_post.scss */
    .post-list .entry-title {
        font-size: 18px;
        line-height: 28px;
        padding: 10px 20px 0 20px;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .post-list .entry-title {
        padding: 10px 20px 0 20px;
    }
}

@media (max-width: 640px) {
    /* line 1392, ../sass/template/_post.scss */
    .post-list .entry-title {
        font-size: 18px;
        line-height: 28px;
        padding: 10px 20px 0 20px;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .post-list .entry-title {
        padding: 10px 20px 0 20px;
    }
}

/* line 1420, ../sass/template/_post.scss */
.post-list .entry-description {
    margin: 0 0 15px 0;
    padding-left: 30px;
    padding-right: 40px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .post-list .entry-description {
    margin: 0 0 15px 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-list .entry-description {
    padding-right: 30px;
    padding-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-list .entry-description {
    padding-left: 40px;
    padding-right: inherit;
}

@media (max-width: 1200px) {
    /* line 1420, ../sass/template/_post.scss */
    .post-list .entry-description {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1420, ../sass/template/_post.scss */
    .post-list .entry-description {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1420, ../sass/template/_post.scss */
    .post-list .entry-description {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 640px) {
    /* line 1420, ../sass/template/_post.scss */
    .post-list .entry-description {
        font-size: 14px;
        margin: 0 0 10px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* line 1443, ../sass/template/_post.scss */
.post-list .readmore {
    margin-left: 30px;
    margin-right: 30px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-list .readmore {
    margin-right: 30px;
    margin-left: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-list .readmore {
    margin-left: 30px;
    margin-right: inherit;
}

@media (max-width: 1200px) {
    /* line 1443, ../sass/template/_post.scss */
    .post-list .readmore {
        margin-bottom: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .post-list .readmore {
        margin-right: 20px;
        margin-left: inherit;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .post-list .readmore {
        margin-left: 20px;
        margin-right: inherit;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1443, ../sass/template/_post.scss */
    .post-list .readmore {
        margin-bottom: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .post-list .readmore {
        margin-right: 20px;
        margin-left: inherit;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .post-list .readmore {
        margin-left: 20px;
        margin-right: inherit;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1443, ../sass/template/_post.scss */
    .post-list .readmore {
        margin-bottom: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .post-list .readmore {
        margin-right: 20px;
        margin-left: inherit;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .post-list .readmore {
        margin-left: 20px;
        margin-right: inherit;
    }
}

@media (max-width: 640px) {
    /* line 1443, ../sass/template/_post.scss */
    .post-list .readmore {
        margin-bottom: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .post-list .readmore {
        margin-right: 20px;
        margin-left: inherit;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .post-list .readmore {
        margin-left: 20px;
        margin-right: inherit;
    }
}

/* line 1467, ../sass/template/_post.scss */
.post-list .entry-content {
    min-height: inherit;
}

/* line 1475, ../sass/template/_post.scss */
.layout-blog .format-status .entry-title, .layout-blog .format-chat .entry-title, .layout-blog .format-quote .entry-title {
    margin-top: 0;
}

/* line 1481, ../sass/template/_post.scss */
.layout-blog.style-list .format-status .entry-title, .layout-blog.style-list .format-status .entry-description, .layout-blog.style-list .format-chat .entry-title, .layout-blog.style-list .format-chat .entry-description, .layout-blog.style-list .format-quote .entry-title, .layout-blog.style-list .format-quote .entry-description {
    padding: 0;
}

/* line 1484, ../sass/template/_post.scss */
.layout-blog.style-list .format-status .readmore, .layout-blog.style-list .format-chat .readmore, .layout-blog.style-list .format-quote .readmore {
    margin: 0;
}

/* line 1489, ../sass/template/_post.scss */
.layout-blog .post-standard {
    margin-bottom: 60px;
    overflow: visible;
    position: relative;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1489, ../sass/template/_post.scss */
    .layout-blog .post-standard {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1489, ../sass/template/_post.scss */
    .layout-blog .post-standard {
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    /* line 1489, ../sass/template/_post.scss */
    .layout-blog .post-standard {
        margin-bottom: 30px;
    }
}

/* line 1506, ../sass/template/_post.scss */
.style-grid .format-status, .style-grid .format-chat, .style-grid .format-quote {
    background: #f5f5f5;
    padding: 30px;
}

/* line 1509, ../sass/template/_post.scss */
.style-grid .format-status .entry-thumb, .style-grid .format-chat .entry-thumb, .style-grid .format-quote .entry-thumb {
    margin-bottom: 20px;
}

/* line 1512, ../sass/template/_post.scss */
.style-grid .format-status .entry-content, .style-grid .format-chat .entry-content, .style-grid .format-quote .entry-content {
    border: 0;
    padding: 0;
}

/* line 1520, ../sass/template/_post.scss */
.post-standard .entry-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px;
    margin-top: 30px;
    padding: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1520, ../sass/template/_post.scss */
    .post-standard .entry-title {
        font-size: 24px;
        line-height: 34px;
        margin-top: 20px;
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1520, ../sass/template/_post.scss */
    .post-standard .entry-title {
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
        padding: 0;
    }
}

@media (max-width: 640px) {
    /* line 1520, ../sass/template/_post.scss */
    .post-standard .entry-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 20px;
        margin-top: 20px;
        padding: 0;
    }
}

/* line 1546, ../sass/template/_post.scss */
.post-standard .entry-content {
    padding: 0;
    border: 0px;
    min-height: inherit;
}

/* line 1551, ../sass/template/_post.scss */
.post-standard .entry-date {
    margin: 0;
    left: -70px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .post-standard .entry-date {
    right: -70px;
    left: auto;
}

/*------------------------------------*\
    Blog Page Default
\*------------------------------------*/
/* line 1562, ../sass/template/_post.scss */
.post-area .post-list .entry-list {
    margin-bottom: 0;
}

/* line 1566, ../sass/template/_post.scss */
.post-area .sticky {
    margin-top: 20px;
    padding: 20px;
    border: 2px solid #b5a473;
}

/* line 1571, ../sass/template/_post.scss */
.post-area .post-link {
    font-size: 18px;
    display: block;
    padding: 17px 27px;
    min-height: 60px;
    color: #fff;
    float: left;
    width: 100%;
    height: auto;
    background: #222222;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .post-area .post-link {
    float: right;
}

/* line 1581, ../sass/template/_post.scss */
.post-area .entry-meta {
    margin: 8px 0 12px 0;
    font-size: 12px;
    font-weight: 300;
}

/* line 1585, ../sass/template/_post.scss */
.post-area .entry-meta, .post-area .entry-meta a {
    color: #b5a473;
}

/* line 1591, ../sass/template/_post.scss */
.post-area .entry-content .ratings .meta {
    color: inherit;
    font-size: inherit;
}

/* line 1596, ../sass/template/_post.scss */
.post-area .entry-content .ratings .rating a {
    text-indent: -999em;
}

/* line 1602, ../sass/template/_post.scss */
.post-area .author-info {
    overflow: hidden;
    background: #f6f6f6;
    border: 1px solid #e0e0e0;
    padding: 30px;
}

@media (min-width: 992px) {
    /* line 1608, ../sass/template/_post.scss */
    .post-area .author-info .avatar-img {
        min-width: 110px;
    }

    /* line 1611, ../sass/template/_post.scss */
    .post-area .author-info .description {
        padding: 0 50px;
    }
}

/* line 1617, ../sass/template/_post.scss */
.post-area .author-info .author-about-container .avatar-img img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: 20px;
    margin-right: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .post-area .author-info .author-about-container .avatar-img img {
    margin-left: 20px;
    margin-right: inherit;
}

/* line 1623, ../sass/template/_post.scss */
.post-area .author-info .author-title {
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 20px;
}

/* line 1630, ../sass/template/_post.scss */
.blog-post-icon {
    display: table;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 1;
    background: #b5a473;
    opacity: 0.9;
    filter: alpha(opacity=90);
    left: 0;
    width: 50px;
    height: 50px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .blog-post-icon {
    right: 0;
    left: auto;
}

/* line 1641, ../sass/template/_post.scss */
.blog-post-icon .fa {
    display: table-cell;
    vertical-align: middle;
    font-size: 22px;
}

/*------------------------------------*\
    Blog Masonry Page
\*------------------------------------*/
/* line 1652, ../sass/template/_post.scss */
.blog-masonry .entry-thumb {
    margin-bottom: 0;
}

/* line 1657, ../sass/template/_post.scss */
.format-gallery .owl-controls .owl-dots {
    display: none !important;
}

/* line 1662, ../sass/template/_post.scss */
.gallery {
    margin-left: -15px;
    margin-right: -15px;
    overflow: hidden;
}

/* line 1666, ../sass/template/_post.scss */
.gallery .gallery-item {
    float: left;
    margin-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .gallery .gallery-item {
    float: right;
}

/* line 1675, ../sass/template/_post.scss */
.gallery.gallery-columns-9 .gallery-item {
    width: 11%;
}

/* line 1680, ../sass/template/_post.scss */
.gallery.gallery-columns-8 .gallery-item {
    width: 12.5%;
}

/* line 1685, ../sass/template/_post.scss */
.gallery.gallery-columns-7 .gallery-item {
    width: 14%;
}

/* line 1690, ../sass/template/_post.scss */
.gallery.gallery-columns-6 .gallery-item {
    width: 16.5%;
}

/* line 1695, ../sass/template/_post.scss */
.gallery.gallery-columns-5 .gallery-item {
    width: 20%;
}

/* line 1700, ../sass/template/_post.scss */
.gallery.gallery-columns-4 .gallery-item {
    width: 25%;
}

/* line 1705, ../sass/template/_post.scss */
.gallery.gallery-columns-3 .gallery-item {
    width: 33%;
}

/* line 1710, ../sass/template/_post.scss */
.gallery.gallery-columns-1 .gallery-item {
    width: 100%;
}

/* line 1715, ../sass/template/_post.scss */
.gallery.gallery-columns-2 .gallery-item {
    width: 50%;
}

/* line 1723, ../sass/template/_post.scss */
.sidebar .widget-gallery .gallery-item {
    margin-bottom: 10px;
}

/* line 1727, ../sass/template/_post.scss */
.sidebar .widget-gallery .gallery-item-image img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

/* line 1732, ../sass/template/_post.scss */
.sidebar .post-list {
    border: 0;
}

/* line 1734, ../sass/template/_post.scss */
.sidebar .post-list .entry-thumb {
    max-width: none;
    width: auto;
}

/* line 1739, ../sass/template/_post.scss */
.sidebar .posts-list {
    border: 0;
}

/* line 1741, ../sass/template/_post.scss */
.sidebar .posts-list .entry-thumb {
    max-width: none;
    width: auto;
}

/* line 1745, ../sass/template/_post.scss */
.sidebar .posts-list .entry-thumb:hover img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* line 1750, ../sass/template/_post.scss */
.sidebar .posts-list li {
    margin: 0 0 18px 0;
    padding-bottom: 18px;
    border-bottom: 1px solid #e0e0e0;
}

/* line 1754, ../sass/template/_post.scss */
.sidebar .posts-list li:last-child {
    margin-bottom: 0;
    border: 0;
    padding: 0;
}

/* line 1762, ../sass/template/_post.scss */
.sidebar .widget-search .btn, .sidebar .widget-search .edr-membership .edr-buy-widget__link, .edr-membership .sidebar .widget-search .edr-buy-widget__link,
.sidebar .widget-search .edr-membership .edr-membership-buy-link,
.edr-membership .sidebar .widget-search .edr-membership-buy-link,
.sidebar .widget-search .edr_membership .edr-buy-widget__link,
.edr_membership .sidebar .widget-search .edr-buy-widget__link,
.sidebar .widget-search .edr_membership .edr-membership-buy-link,
.edr_membership .sidebar .widget-search .edr-membership-buy-link {
    font-size: 16px;
    color: #999999;
    border: 0 none;
    margin: 0;
    position: relative;
    padding: 11px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* line 1771, ../sass/template/_post.scss */
.sidebar .widget-search .btn:before, .sidebar .widget-search .edr-membership .edr-buy-widget__link:before, .edr-membership .sidebar .widget-search .edr-buy-widget__link:before,
.sidebar .widget-search .edr-membership .edr-membership-buy-link:before,
.edr-membership .sidebar .widget-search .edr-membership-buy-link:before,
.sidebar .widget-search .edr_membership .edr-buy-widget__link:before,
.edr_membership .sidebar .widget-search .edr-buy-widget__link:before,
.sidebar .widget-search .edr_membership .edr-membership-buy-link:before,
.edr_membership .sidebar .widget-search .edr-membership-buy-link:before {
    position: absolute;
    background: #e0e0e0;
    content: "";
    height: 29px;
    width: 1px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .sidebar .widget-search .btn:before, .rtl .sidebar .widget-search .edr-membership .edr-buy-widget__link:before, .edr-membership .rtl .sidebar .widget-search .edr-buy-widget__link:before,
.rtl .sidebar .widget-search .edr-membership .edr-membership-buy-link:before,
.edr-membership .rtl .sidebar .widget-search .edr-membership-buy-link:before,
.rtl .sidebar .widget-search .edr_membership .edr-buy-widget__link:before,
.edr_membership .rtl .sidebar .widget-search .edr-buy-widget__link:before,
.rtl .sidebar .widget-search .edr_membership .edr-membership-buy-link:before,
.edr_membership .rtl .sidebar .widget-search .edr-membership-buy-link:before {
    right: 0;
    left: auto;
}

/* line 1783, ../sass/template/_post.scss */
.sidebar .date {
    font-size: 13px;
    color: #999999;
    display: block;
    margin: 0;
}

/* line 1789, ../sass/template/_post.scss */
.sidebar .entry-title {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .3px;
    line-height: 20px;
    padding: 0;
    margin: -3px 0 0 0;
}

/* line 1797, ../sass/template/_post.scss */
.sidebar .entry-content {
    border: 0;
    min-height: auto;
}

/* line 1804, ../sass/template/_post.scss */
.sidebar .widget_ninzio_courses .course-item:last-child .edr-course {
    border: 0;
}

/* line 1810, ../sass/template/_post.scss */
.sidebar .edr-course {
    margin-bottom: 18px;
    padding-bottom: 18px;
}

/* line 1813, ../sass/template/_post.scss */
.sidebar .edr-course .edr-course__title {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: -5px 0 0 0;
}

/* line 1821, ../sass/template/_post.scss */
.sidebar .edr-course .course-review {
    margin-top: -3px;
}

/* line 1825, ../sass/template/_post.scss */
.sidebar input[type="text"] {
    padding: 5px 15px;
    height: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* line 1830, ../sass/template/_post.scss */
.sidebar input[type="text"]:focus {
    border-color: #b5a473;
    -webkit-box-shadow: inset 0 0 0 1px #b5a473;
    box-shadow: inset 0 0 0 1px #b5a473;
}

/* line 647, ../sass/mixins/_template-mixins.scss */
.sidebar input[type="text"]:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
.sidebar input[type="text"]:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
.sidebar input[type="text"]::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
.sidebar input[type="text"]:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* 8. effect */
/* line 2, ../sass/template/_theme-effect.scss */
.effect-1 {
    position: relative;
}

/* line 4, ../sass/template/_theme-effect.scss */
.effect-1:after {
    content: '';
    display: block;
    width: 0px;
    height: 1px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
    margin: auto;
}

/* line 16, ../sass/template/_theme-effect.scss */
.effect-1:hover:after {
    width: 100%;
    height: 1px;
    background: #b5a473;
}

/* line 22, ../sass/template/_theme-effect.scss */
.zoom-2 {
    overflow: hidden;
    display: block;
}

/* line 25, ../sass/template/_theme-effect.scss */
.zoom-2 img {
    position: relative;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

/* line 33, ../sass/template/_theme-effect.scss */
.zoom-2:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

/* line 40, ../sass/template/_theme-effect.scss */
.filter-grayscale {
    -webkit-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

/* line 42, ../sass/template/_theme-effect.scss */
.filter-grayscale:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}

/* line 48, ../sass/template/_theme-effect.scss */
.filter-brightness {
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

/* line 50, ../sass/template/_theme-effect.scss */
.filter-brightness:hover {
    filter: brightness(0.4);
    -webkit-filter: brightness(0.4);
    -moz-filter: brightness(0.4);
    -o-filter: brightness(0.4);
    -ms-filter: brightness(0.4);
}

/* line 56, ../sass/template/_theme-effect.scss */
.filter-blur {
    -webkit-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

/* line 58, ../sass/template/_theme-effect.scss */
.filter-blur:hover {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
}

/* line 68, ../sass/template/_theme-effect.scss */
.close .fa {
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

/* line 72, ../sass/template/_theme-effect.scss */
.close:hover .fa {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

/* line 79, ../sass/template/_theme-effect.scss */
.image-overlay-1:after, .image-overlay-1:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .image-overlay-1:after, .rtl .image-overlay-1:before {
    right: 0;
    left: auto;
}

/* line 90, ../sass/template/_theme-effect.scss */
.image-overlay-1:after {
    top: -100%;
}

/* line 93, ../sass/template/_theme-effect.scss */
.image-overlay-1:before {
    bottom: -100%;
}

/* line 97, ../sass/template/_theme-effect.scss */
.image-overlay-1:hover:after {
    top: -50%;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 101, ../sass/template/_theme-effect.scss */
.image-overlay-1:hover:before {
    bottom: -50%;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 110, ../sass/template/_theme-effect.scss */
.image-plus-1 {
    position: relative;
}

/* line 112, ../sass/template/_theme-effect.scss */
.image-plus-1::before {
    overflow: hidden;
    position: absolute;
    top: 0;
    content: "";
    z-index: 100;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    background: url("../images/plus.png") no-repeat scroll center center/60px 60px rgba(0, 0, 0, 0.6);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .image-plus-1::before {
    right: 0;
    left: auto;
}

/* line 126, ../sass/template/_theme-effect.scss */
.image-plus-1:hover::before {
    visibility: visible;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* line 134, ../sass/template/_theme-effect.scss */
.image-plus-2 {
    position: relative;
}

/* line 136, ../sass/template/_theme-effect.scss */
.image-plus-2::before {
    content: "";
    z-index: 199;
    top: 0;
    position: absolute;
    background: url("../images/plus.png") no-repeat scroll center center/60px 60px rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-background-size: 10px 10px, 100% 100%;
    -moz-background-size: 10px 10px, 100% 100%;
    -ms-background-size: 10px 10px, 100% 100%;
    -o-background-size: 10px 10px, 100% 100%;
    background-size: 10px 10px, 100% 100%;
    -webkit-background-origin: padding-box, padding-box;
    -moz-background-origin: padding-box, padding-box;
    -ms-background-origin: padding-box, padding-box;
    -o-background-origin: padding-box, padding-box;
    background-origin: padding-box, padding-box;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .image-plus-2::before {
    right: 0;
    left: auto;
}

/* line 150, ../sass/template/_theme-effect.scss */
.image-plus-2:hover::before {
    opacity: .6;
    visibility: visible;
    -webkit-background-size: 60px 60px, 100% 100%;
    -moz-background-size: 60px 60px, 100% 100%;
    -ms-background-size: 60px 60px, 100% 100%;
    -o-background-size: 60px 60px, 100% 100%;
    background-size: 60px 60px, 100% 100%;
}

/* line 158, ../sass/template/_theme-effect.scss */
.image-plus-3 {
    position: relative;
}

/* line 160, ../sass/template/_theme-effect.scss */
.image-plus-3::before {
    content: "";
    top: 0;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    -webkit-transform: scale(0.5) rotateX(180deg);
    -moz-transform: scale(0.5) rotateX(180deg);
    -ms-transform: scale(0.5) rotateX(180deg);
    -o-transform: scale(0.5) rotateX(180deg);
    transform: scale(0.5) rotateX(180deg);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: rgba(0, 0, 0, 0.8);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .image-plus-3::before {
    right: 0;
    left: auto;
}

/* line 174, ../sass/template/_theme-effect.scss */
.image-plus-3:hover::before {
    visibility: visible;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -webkit-transform: scale(1) rotateX(0deg);
    -moz-transform: scale(1) rotateX(0deg);
    -ms-transform: scale(1) rotateX(0deg);
    -o-transform: scale(1) rotateX(0deg);
    transform: scale(1) rotateX(0deg);
}

/* line 183, ../sass/template/_theme-effect.scss */
.icon-effect-1 {
    position: relative;
}

/* line 185, ../sass/template/_theme-effect.scss */
.icon-effect-1:before {
    content: "";
    display: block;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: transparent;
}

/* line 195, ../sass/template/_theme-effect.scss */
.icon-effect-1:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 9. utilities */
/*-------------------------------------------
    No Margin
-------------------------------------------*/
/* line 4, ../sass/template/_utilities.scss */
.no-margin {
    margin: 0 !important;
}

/* line 6, ../sass/template/_utilities.scss */
.no-margin .pagination {
    margin: 0;
}

/*-------------------------------------------
    No Padding
-------------------------------------------*/
/* line 13, ../sass/template/_utilities.scss */
.no-padding {
    padding: 0 !important;
}

/* line 16, ../sass/template/_utilities.scss */
.no-position {
    position: static !important;
}

/* line 19, ../sass/template/_utilities.scss */
.inline-block {
    display: inline-block;
    vertical-align: middle;
}

/* line 206, ../sass/mixins/_template-mixins.scss */
.lt-ie8 .inline-block {
    display: inline;
    zoom: 1;
}

/* line 22, ../sass/template/_utilities.scss */
.no-background {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none !important;
}

/* line 26, ../sass/template/_utilities.scss */
.no-effect a:before {
    content: none !important;
}

/*------------------------------------*\
    Clear List Style
\*------------------------------------*/
/* line 38, ../sass/template/_utilities.scss */
.clear-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

/*-------------------------------------------
    Text Transform
-------------------------------------------*/
/* line 44, ../sass/template/_utilities.scss */
.text-uppercase {
    text-transform: uppercase !important;
}

/*-------------------------------------------
    Align
-------------------------------------------*/
/* line 50, ../sass/template/_utilities.scss */
.separator_align_center {
    text-align: center !important;
}

/* line 53, ../sass/template/_utilities.scss */
.vc_align_right,
.separator_align_right {
    text-align: right !important;
}

/* line 57, ../sass/template/_utilities.scss */
.separator_align_left {
    text-align: left !important;
}

/*------------------------------------*\
    Font size heading title
\*------------------------------------*/
/* line 63, ../sass/template/_utilities.scss */
.font-size-lg {
    font-size: 48px;
}

/* line 66, ../sass/template/_utilities.scss */
.font-size-md {
    font-size: 30px;
}

/* line 69, ../sass/template/_utilities.scss */
.font-size-sm {
    font-size: 20px;
}

/* line 72, ../sass/template/_utilities.scss */
.font-size-xs {
    font-size: 16px;
}

/*------------------------------------*\
    Border
\*------------------------------------*/
/* line 78, ../sass/template/_utilities.scss */
.no-border {
    border: 0px !important;
}

/*------------------------------------*\
    No background
\*------------------------------------*/
/* line 84, ../sass/template/_utilities.scss */
.bg-transparent {
    background: transparent !important;
}

/* 10. widgets layout */
/* block */
/* line 2, ../sass/template/_widgets-layout.scss */
.widget {
    margin-bottom: 70px;
    position: relative;
    padding: 0px;
    background: transparent;
    clear: both;
}

@media (max-width: 1200px) {
    /* line 2, ../sass/template/_widgets-layout.scss */
    .widget {
        margin-bottom: 60px;
    }
}

/* line 11, ../sass/template/_widgets-layout.scss */
.widget .widget-title, .widget .widgettitle, .widget .widget-heading {
    font-size: 32px;
    margin: 0 0 30px 0;
    padding: 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat", cursive, sans-serif;
}

@media (max-width: 1200px) {
    /* line 11, ../sass/template/_widgets-layout.scss */
    .widget .widget-title, .widget .widgettitle, .widget .widget-heading {
        margin-bottom: 25px;
    }
}

/* line 22, ../sass/template/_widgets-layout.scss */
.widget .widget-title:after, .widget .widgettitle:after, .widget .widget-heading:after {
    content: "\e909";
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 40px;
    left: 0;
    right: 0;
    color: #c4c4c4;
    margin: 0 auto;
    font-family: "univero" !important;
}

/* line 34, ../sass/template/_widgets-layout.scss */
.widget .widget-title span, .widget .widgettitle span, .widget .widget-heading span {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0 0 50px 0;
}

/* line 39, ../sass/template/_widgets-layout.scss */
.widget .widget-title span:before, .widget .widgettitle span:before, .widget .widget-heading span:before {
    left: -14px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .widget .widget-title span:before, .rtl .widget .widgettitle span:before, .rtl .widget .widget-heading span:before {
    right: -14px;
    left: auto;
}

/* line 42, ../sass/template/_widgets-layout.scss */
.widget .widget-title span:after, .widget .widgettitle span:after, .widget .widget-heading span:after {
    right: -14px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget .widget-title span:after, .rtl .widget .widgettitle span:after, .rtl .widget .widget-heading span:after {
    left: -14px;
    right: auto;
}

/* line 45, ../sass/template/_widgets-layout.scss */
.widget .widget-title span:before, .widget .widget-title span:after, .widget .widgettitle span:before, .widget .widgettitle span:after, .widget .widget-heading span:before, .widget .widget-heading span:after {
    background: #DDDDDD;
    width: 139px;
    height: 3px;
    bottom: 0;
    content: "";
    position: absolute;
}

/* line 56, ../sass/template/_widgets-layout.scss */
.widget.widget_nav_menu {
    margin-bottom: 0;
}

/* line 60, ../sass/template/_widgets-layout.scss */
.widget.widget-brands .item {
    min-height: 124px;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

/* line 65, ../sass/template/_widgets-layout.scss */
.widget.widget-brands .item a {
    width: 100%;
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    align-self: center;
}

/* line 69, ../sass/template/_widgets-layout.scss */
.widget.widget-brands .item:before {
    content: "";
    background: #e0e0e0;
    height: 100%;
    width: 1px;
    position: absolute;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget.widget-brands .item:before {
    left: 0;
    right: auto;
}

@media only screen and (max-width: 767px) {
    /* line 69, ../sass/template/_widgets-layout.scss */
    .widget.widget-brands .item:before {
        display: none;
    }
}

@media (max-width: 640px) {
    /* line 69, ../sass/template/_widgets-layout.scss */
    .widget.widget-brands .item:before {
        display: none;
    }
}

/* line 84, ../sass/template/_widgets-layout.scss */
.widget.widget-brands .item:last-child:before {
    left: -99999px;
    top: -99999px;
}

/* line 91, ../sass/template/_widgets-layout.scss */
.widget.widget-membership {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    /* line 91, ../sass/template/_widgets-layout.scss */
    .widget.widget-membership {
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    /* line 91, ../sass/template/_widgets-layout.scss */
    .widget.widget-membership {
        margin-bottom: 30px;
    }
}

/* line 101, ../sass/template/_widgets-layout.scss */
.widget.widget-courses.carousel {
    margin-bottom: 50px;
}

/* line 104, ../sass/template/_widgets-layout.scss */
.widget.widget-courses .edr-course-grid {
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 108, ../sass/template/_widgets-layout.scss */
    .widget.widget-courses .owl-carousel .owl-controls {
        margin: 0;
    }
}

@media (max-width: 640px) {
    /* line 108, ../sass/template/_widgets-layout.scss */
    .widget.widget-courses .owl-carousel .owl-controls {
        margin: 0;
    }
}

/* line 119, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.carousel {
    margin-bottom: 0;
}

/* line 122, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.carousel .owl-carousel .owl-item {
    padding-left: 5px;
    padding-right: 5px;
}

/* line 127, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.carousel .gallery-content {
    overflow: hidden;
}

/* line 130, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.carousel .gallery-item-image {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    display: block;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 136, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.carousel .gallery-item-image img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
    position: relative;
}

/* line 139, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.carousel .gallery-item-image img:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 158, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.carousel .gallery-item-image:hover:before, .widget.widget-gallery.carousel .gallery-item-image:focus:before, .widget.widget-gallery.carousel .gallery-item-image:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 1;
}

/* line 166, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory-special .gallery-item {
    overflow: hidden;
    margin: 0 5px 5px 0;
}

/* line 169, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory-special .gallery-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 182, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory-special .gallery-item .gallery-item-image {
    position: relative;
    background: transparent;
    overflow: hidden;
    margin: 0;
    display: block;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 191, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory-special .gallery-item .gallery-item-image img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

/* line 198, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory-special .gallery-item:hover:before, .widget.widget-gallery.mansory-special .gallery-item:focus:before, .widget.widget-gallery.mansory-special .gallery-item:active:before {
    z-index: 1;
    -webkit-transform: scale(2);
    transform: scale(2);
}

/* line 206, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory .isotope-item {
    padding: 0;
}

/* line 209, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory .gallery-item {
    position: relative;
}

/* line 211, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory .gallery-item .gallery-item-image {
    position: relative;
}

/* line 213, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory .gallery-item .gallery-item-image:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 232, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory .gallery-item:hover .gallery-item-image:before, .widget.widget-gallery.mansory .gallery-item:focus .gallery-item-image:before, .widget.widget-gallery.mansory .gallery-item:active .gallery-item-image:before {
    z-index: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* line 238, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory .gallery-item.style1 {
    margin-bottom: 12px;
    margin-right: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget.widget-gallery.mansory .gallery-item.style1 {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 241, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image {
    display: block;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 247, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    /* line 241, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image {
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 241, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image {
        text-align: center;
    }

    /* line 255, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    /* line 241, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image {
        text-align: center;
    }

    /* line 261, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    /* line 241, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image {
        text-align: center;
    }

    /* line 267, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.mansory .gallery-item.style1 .gallery-item-image img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

/* line 277, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style1 {
    border: 0;
    margin-bottom: 20px;
    background: transparent;
}

/* line 281, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image {
    position: relative;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    height: 100%;
    display: block;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 293, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image img {
    position: relative;
}

@media (max-width: 1200px) {
    /* line 293, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 293, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    /* line 293, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    /* line 293, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image img {
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

/* line 309, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 328, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style1:hover .gallery-item-image:before, .widget.widget-gallery.grid .gallery-item.style1:focus .gallery-item-image:before, .widget.widget-gallery.grid .gallery-item.style1:active .gallery-item-image:before {
    z-index: 1;
    -webkit-transform: scale(2);
    transform: scale(2);
}

/* line 335, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style2 {
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

/* line 339, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style2 .gallery-item-image {
    position: relative;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    height: 100%;
    display: block;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* line 351, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style2 .gallery-item-image img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

/* line 354, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style2 .gallery-item-image:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 370, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style2 .gallery-item-title {
    border: 0;
    margin: 0;
    padding: 25px 15px;
    font-size: 14px;
    color: #777777;
    text-transform: uppercase;
    background: transparent;
    letter-spacing: 2px;
    font-weight: 500;
    line-height: 17px;
    text-align: center;
    display: block;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* line 390, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style2:hover .gallery-item-title, .widget.widget-gallery.grid .gallery-item.style2:focus .gallery-item-title, .widget.widget-gallery.grid .gallery-item.style2:active .gallery-item-title {
    color: #ffffff !important;
    background: #b5a473;
    border-color: #b5a473;
}

/* line 396, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery.grid .gallery-item.style2:hover .gallery-item-image:before, .widget.widget-gallery.grid .gallery-item.style2:focus .gallery-item-image:before, .widget.widget-gallery.grid .gallery-item.style2:active .gallery-item-image:before {
    z-index: 1;
    -webkit-transform: scale(2);
    transform: scale(2);
}

/* line 405, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .widget-title {
    margin-bottom: 70px;
}

/* line 408, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .isotope-filter {
    text-align: center;
    margin-bottom: 60px;
}

/* line 412, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .isotope-items {
    margin: 0 80px;
}

@media (max-width: 1200px) {
    /* line 412, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery .isotope-items {
        margin: 0 85px;
        overflow: hidden;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 412, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery .isotope-items {
        margin: 0 20px;
        overflow: hidden;
    }
}

@media only screen and (max-width: 767px) {
    /* line 412, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery .isotope-items {
        margin: 0 20px;
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    /* line 412, ../sass/template/_widgets-layout.scss */
    .widget.widget-gallery .isotope-items {
        margin: 0 20px;
        overflow: hidden;
    }
}

/* line 431, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .isotope-item {
    padding: 0;
}

/* line 434, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-button {
    text-align: center;
    margin: 53px 0 0 0;
}

/* line 438, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-item {
    position: relative;
    background: transparent;
    margin-bottom: 0px;
    overflow: hidden;
}

/* line 443, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-item .gallery-item-image {
    position: relative;
}

/* line 445, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-item .gallery-item-image:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* line 463, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-item:hover .gallery-item-image:before, .widget.widget-gallery .gallery-item:active .gallery-item-image:before, .widget.widget-gallery .gallery-item:focus .gallery-item-image:before {
    visibility: visible;
    z-index: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* line 470, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-item:hover .gallery-item-content, .widget.widget-gallery .gallery-item:active .gallery-item-content, .widget.widget-gallery .gallery-item:focus .gallery-item-content {
    visibility: visible;
    z-index: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 474, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-item:hover .gallery-item-content a, .widget.widget-gallery .gallery-item:active .gallery-item-content a, .widget.widget-gallery .gallery-item:focus .gallery-item-content a {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* line 480, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-item-content {
    position: absolute;
    left: 50%;
    top: 50%;
    visibility: hidden;
    background: transparent;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* line 489, ../sass/template/_widgets-layout.scss */
.widget.widget-gallery .gallery-item-content a {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

/* line 496, ../sass/template/_widgets-layout.scss */
.widget.under-line .widget-title, .widget.under-line .widgettitle, .widget.under-line .widget-heading {
    font-size: 25px;
    padding: 0 0 12px;
    position: relative;
}

/* line 500, ../sass/template/_widgets-layout.scss */
.widget.under-line .widget-title:before, .widget.under-line .widgettitle:before, .widget.under-line .widget-heading:before {
    content: '';
    width: 52px;
    height: 1px;
    background: #b5a473;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .widget.under-line .widget-title:before, .rtl .widget.under-line .widgettitle:before, .rtl .widget.under-line .widget-heading:before {
    right: 0;
    left: auto;
}

/* line 512, ../sass/template/_widgets-layout.scss */
.title-md {
    font-size: 36px !important;
    font-weight: 700 !important;
}

/* line 516, ../sass/template/_widgets-layout.scss */
.wpb_video_widget .video-description {
    padding: 10px;
}

/* line 522, ../sass/template/_widgets-layout.scss */
.sidebar .widget,
.ninzio-sidebar .widget {
    margin: 0 0 40px;
    overflow: hidden;
}

/* line 525, ../sass/template/_widgets-layout.scss */
.sidebar .widget .widget-title,
.ninzio-sidebar .widget .widget-title {
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding: 0 0 10px 0;
    border: 0;
    color: #999999;
    display: block;
    text-transform: none;
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .sidebar .widget .widget-title, .rtl
.ninzio-sidebar .widget .widget-title {
    text-align: right;
}

/* line 536, ../sass/template/_widgets-layout.scss */
.sidebar .widget .widget-title:after,
.ninzio-sidebar .widget .widget-title:after {
    content: '';
    background: #b5a473;
    position: absolute;
    bottom: 0;
    margin: 0;
    z-index: 1;
    font-family: "Montserrat";
    left: 0;
    width: 44px;
    height: 2px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .sidebar .widget .widget-title:after, .rtl
.ninzio-sidebar .widget .widget-title:after {
    right: 0;
    left: auto;
}

/* line 547, ../sass/template/_widgets-layout.scss */
.sidebar .widget .widget-title span,
.ninzio-sidebar .widget .widget-title span {
    padding: 0;
    margin: 0;
    display: inline;
}

/* line 551, ../sass/template/_widgets-layout.scss */
.sidebar .widget .widget-title span:before, .sidebar .widget .widget-title span:after,
.ninzio-sidebar .widget .widget-title span:before,
.ninzio-sidebar .widget .widget-title span:after {
    left: -99999px;
    top: -99999px;
}

/* line 561, ../sass/template/_widgets-layout.scss */
.sidebar .widget-testimonials .widget-title,
.sidebar .widget-list.widget-products .widget-title,
.ninzio-sidebar .widget-testimonials .widget-title,
.ninzio-sidebar .widget-list.widget-products .widget-title {
    margin: 0;
    background: #1e2022;
    color: #fff;
    font-size: 14px;
    padding: 15px 30px;
    border: none;
}

/* line 568, ../sass/template/_widgets-layout.scss */
.sidebar .widget-testimonials .widget-title > span,
.sidebar .widget-list.widget-products .widget-title > span,
.ninzio-sidebar .widget-testimonials .widget-title > span,
.ninzio-sidebar .widget-list.widget-products .widget-title > span {
    border: none;
    padding: 0;
    margin: 0;
}

/* line 575, ../sass/template/_widgets-layout.scss */
.sidebar .testimonials-v1,
.ninzio-sidebar .testimonials-v1 {
    padding: 30px;
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 0 1px 1px;
}

/* line 582, ../sass/template/_widgets-layout.scss */
.sidebar .ninzio-products-list,
.ninzio-sidebar .ninzio-products-list {
    border-style: solid;
    border-color: #e0e0e0;
    border-width: 0 1px 1px;
}

/* line 586, ../sass/template/_widgets-layout.scss */
.sidebar .ninzio-products-list .product-block,
.ninzio-sidebar .ninzio-products-list .product-block {
    padding: 20px;
    margin: 0;
}

/* line 594, ../sass/template/_widgets-layout.scss */
#ninzio-topbar .woocommerce-currency-switcher-form .dd-select {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.6);
}

/* line 598, ../sass/template/_widgets-layout.scss */
#ninzio-topbar .woocommerce-currency-switcher-form a {
    color: rgba(255, 255, 255, 0.6);
}

/* line 600, ../sass/template/_widgets-layout.scss */
#ninzio-topbar .woocommerce-currency-switcher-form a:hover {
    color: #999999;
}

/* line 605, ../sass/template/_widgets-layout.scss */
#ninzio-topbar .widget-woocommerce-currency-switcher .dd-option {
    border: none;
}

/* line 609, ../sass/template/_widgets-layout.scss */
#ninzio-topbar .woocommerce-currency-switcher-form .dd-selected {
    padding: 0 10px !important;
}

/* line 615, ../sass/template/_widgets-layout.scss */
#ninzio-topbar .info-topbar .textwidget > span {
    padding-right: 10px;
    margin-right: 10px;
    float: left;
    border-right: 1px solid #e0e0e0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #ninzio-topbar .info-topbar .textwidget > span {
    padding-left: 10px;
    padding-right: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #ninzio-topbar .info-topbar .textwidget > span {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl #ninzio-topbar .info-topbar .textwidget > span {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #ninzio-topbar .info-topbar .textwidget > span {
    border-left: 1px solid #e0e0e0;
    border-right: inherit;
}

/* line 620, ../sass/template/_widgets-layout.scss */
#ninzio-topbar .info-topbar .textwidget > span:last-child {
    border: 0;
}

/* line 625, ../sass/template/_widgets-layout.scss */
#ninzio-topbar .info-topbar .fa {
    margin-right: 8px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #ninzio-topbar .info-topbar .fa {
    margin-left: 8px;
    margin-right: inherit;
}

/* line 632, ../sass/template/_widgets-layout.scss */
.header-setting > div {
    margin-left: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-setting > div {
    margin-right: 20px;
    margin-left: inherit;
}

/* line 635, ../sass/template/_widgets-layout.scss */
.header-setting button {
    background: transparent;
    border: none;
}

/* line 639, ../sass/template/_widgets-layout.scss */
.header-setting .button-setting,
.header-setting .mini-cart {
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    line-height: 50px;
}

/* line 648, ../sass/template/_widgets-layout.scss */
.ninzio-search-form .select-category {
    display: inline-block;
    float: left;
    overflow: hidden;
    position: relative;
    min-width: 240px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-search-form .select-category {
    float: right;
}

/* line 654, ../sass/template/_widgets-layout.scss */
.ninzio-search-form .select-category:before {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .ninzio-search-form .select-category:before {
    left: 30px;
    right: auto;
}

/* line 663, ../sass/template/_widgets-layout.scss */
.ninzio-search-form .select-category .dropdown_product_cat {
    border: 1px solid #e0e0e0;
    width: 115%;
    height: 47px;
    padding: 10px 20px;
}

/* line 675, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget .widget-title, .ninzio-footer .widget .widgettitle, .ninzio-footer .widget .widget-heading {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0 0 30px 0;
    padding: 0 0 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: left;
    font-family: "Montserrat";
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-footer .widget .widget-title, .rtl .ninzio-footer .widget .widgettitle, .rtl .ninzio-footer .widget .widget-heading {
    text-align: right;
}

/* line 684, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget .widget-title:before, .ninzio-footer .widget .widgettitle:before, .ninzio-footer .widget .widget-heading:before {
    left: -99999px;
    top: -99999px;
}

/* line 688, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget .widget-title:after, .ninzio-footer .widget .widgettitle:after, .ninzio-footer .widget .widget-heading:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: #515358;
    width: 44px;
    height: 2px;
    margin: 0;
}

/* line 698, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget .widget-title span, .ninzio-footer .widget .widgettitle span, .ninzio-footer .widget .widget-heading span {
    margin: 0;
    padding: 0;
    display: inline;
    overflow: visible;
}

/* line 703, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget .widget-title span:before, .ninzio-footer .widget .widget-title span:after, .ninzio-footer .widget .widgettitle span:before, .ninzio-footer .widget .widgettitle span:after, .ninzio-footer .widget .widget-heading span:before, .ninzio-footer .widget .widget-heading span:after {
    left: -99999px;
    top: -99999px;
}

/* line 712, ../sass/template/_widgets-layout.scss */
.ninzio-footer .ninzio_custom_menu .menu {
    text-align: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .ninzio-footer .ninzio_custom_menu .menu {
    text-align: left;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 712, ../sass/template/_widgets-layout.scss */
    .ninzio-footer .ninzio_custom_menu .menu {
        text-align: center !important;
    }
}

@media (max-width: 640px) {
    /* line 712, ../sass/template/_widgets-layout.scss */
    .ninzio-footer .ninzio_custom_menu .menu {
        text-align: center;
    }
}

/* line 721, ../sass/template/_widgets-layout.scss */
.ninzio-footer .ninzio_custom_menu .menu > li > a {
    font-size: 12px;
    font-weight: 500;
    padding: 0 10px;
    text-transform: uppercase;
    color: #aaaaaa;
    position: relative;
    font-weight: 500;
}

/* line 729, ../sass/template/_widgets-layout.scss */
.ninzio-footer .ninzio_custom_menu .menu > li > a:after {
    position: absolute;
    content: "";
    top: 50%;
    width: 1px;
    background: #aaaaaa;
    display: block;
    height: 13px;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .ninzio-footer .ninzio_custom_menu .menu > li > a:after {
    left: 0;
    right: auto;
}

/* line 740, ../sass/template/_widgets-layout.scss */
.ninzio-footer .ninzio_custom_menu .menu > li > a:hover, .ninzio-footer .ninzio_custom_menu .menu > li > a:active, .ninzio-footer .ninzio_custom_menu .menu > li > a:focus {
    color: #b5a473;
}

/* line 747, ../sass/template/_widgets-layout.scss */
.ninzio-footer .ninzio_custom_menu .menu > li:first-child > a {
    padding-left: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-footer .ninzio_custom_menu .menu > li:first-child > a {
    padding-right: 0;
    padding-left: inherit;
}

/* line 752, ../sass/template/_widgets-layout.scss */
.ninzio-footer .ninzio_custom_menu .menu > li:last-child > a {
    padding-right: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-footer .ninzio_custom_menu .menu > li:last-child > a {
    padding-left: 0;
    padding-right: inherit;
}

/* line 754, ../sass/template/_widgets-layout.scss */
.ninzio-footer .ninzio_custom_menu .menu > li:last-child > a:after {
    left: -99999px;
    top: -99999px;
}

/* line 763, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget-courses.list .edr-course__title {
    margin-top: -4px;
}

/* line 769, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image:before, .ninzio-footer .widget.widget-gallery.grid .gallery-item.style1 .gallery-item-image:after {
    background-color: rgba(0, 0, 0, 0.3);
}

/* line 778, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget-blog.list .post-author,
.ninzio-footer .widget-blog.list .entry-description,
.ninzio-footer .widget-blog.list .btn,
.ninzio-footer .widget-blog.list .edr-membership .edr-buy-widget__link,
.edr-membership .ninzio-footer .widget-blog.list .edr-buy-widget__link,
.ninzio-footer .widget-blog.list .edr-membership .edr-membership-buy-link,
.edr-membership .ninzio-footer .widget-blog.list .edr-membership-buy-link,
.ninzio-footer .widget-blog.list .edr_membership .edr-buy-widget__link,
.edr_membership .ninzio-footer .widget-blog.list .edr-buy-widget__link,
.ninzio-footer .widget-blog.list .edr_membership .edr-membership-buy-link,
.edr_membership .ninzio-footer .widget-blog.list .edr-membership-buy-link {
    display: none;
}

@media (min-width: 768px) {
    /* line 784, ../sass/template/_widgets-layout.scss */
    .ninzio-footer .widget-blog.list .infor-content {
        padding-left: 0;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .ninzio-footer .widget-blog.list .infor-content {
        padding-right: 0;
        padding-left: inherit;
    }
}

@media (max-width: 767px) {
    /* line 789, ../sass/template/_widgets-layout.scss */
    .ninzio-footer .widget-blog.list .entry-title {
        margin: 10px 0;
    }
}

/* line 793, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget-blog.list .posts-list li {
    margin: 0 0 20px;
}

/* line 796, ../sass/template/_widgets-layout.scss */
.ninzio-footer .widget-blog.list .type-post {
    margin-bottom: 0px;
}

/* line 800, ../sass/template/_widgets-layout.scss */
.ninzio-footer .menu {
    margin: 0;
    padding: 0;
}

/* line 803, ../sass/template/_widgets-layout.scss */
.ninzio-footer .menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

/* line 810, ../sass/template/_widgets-layout.scss */
.ninzio-footer .tagcloud a {
    color: #aaaaaa;
    border-color: #aaaaaa;
}

/* line 817, ../sass/template/_widgets-layout.scss */
.ninzio-footer .list-courses > li.last-child .edr-course-list-simple {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* line 822, ../sass/template/_widgets-layout.scss */
.ninzio-footer .list-courses > li .edr-course__image {
    width: auto;
}

/* line 825, ../sass/template/_widgets-layout.scss */
.ninzio-footer .list-courses > li .edr-course__image:hover img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* line 830, ../sass/template/_widgets-layout.scss */
.ninzio-footer .list-courses > li .edr-course-list-simple {
    padding-bottom: 14px;
    border-color: #2c2f35;
    margin-bottom: 20px;
}

/* line 839, ../sass/template/_widgets-layout.scss */
.ninzio-footer .edr-course .edr-course__title a {
    color: #aaaaaa;
}

/* line 846, ../sass/template/_widgets-layout.scss */
.footer-top {
    border-bottom: 1px solid #353942;
    overflow: hidden;
}

/* line 849, ../sass/template/_widgets-layout.scss */
.footer-top .kc-elm {
    border-right: 1px solid #353942;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .footer-top .kc-elm {
    border-left: 1px solid #353942;
    border-right: inherit;
}

/* line 851, ../sass/template/_widgets-layout.scss */
.footer-top .kc-elm:last-child {
    border: none;
}

/* line 855, ../sass/template/_widgets-layout.scss */
.footer-top .widget {
    text-align: center;
}

/* line 861, ../sass/template/_widgets-layout.scss */
.ninzio-copyright {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

/* line 865, ../sass/template/_widgets-layout.scss */
.ninzio-copyright p,
.ninzio-copyright .wpb_content_element,
.ninzio-copyright .widget {
    margin: 0 !important;
}

/* line 871, ../sass/template/_widgets-layout.scss */
.ninzio-copyright .menu li {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}

/* line 875, ../sass/template/_widgets-layout.scss */
.ninzio-copyright .menu li:last-child {
    margin: 0;
}

/* 12. icons */
@font-face {
    font-family: 'univero-icons';
    src: url("../fonts/univero-icons.eot?5nrtr2");
    src: url("../fonts/univero-icons.eot?5nrtr2#iefix") format("embedded-opentype"), url("../fonts/univero-icons.ttf?5nrtr2") format("truetype"), url("../fonts/univero-icons.woff?5nrtr2") format("woff"), url("../fonts/univero-icons.svg?5nrtr2#univero-icons") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* line 12, ../sass/template/_icons.scss */
[class^="u-icons-"], [class*=" u-icons-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'univero-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 27, ../sass/template/_icons.scss */
.u-icons-bar-chart:before {
    content: "\e900";
}

/* line 30, ../sass/template/_icons.scss */
.u-icons-blocked:before {
    content: "\e901";
}

/* line 33, ../sass/template/_icons.scss */
.u-icons-book:before {
    content: "\e902";
}

/* line 36, ../sass/template/_icons.scss */
.u-icons-book-with-bookmark:before {
    content: "\e903";
}

/* line 39, ../sass/template/_icons.scss */
.u-icons-brightness:before {
    content: "\e904";
}

/* line 42, ../sass/template/_icons.scss */
.u-icons-broken-link:before {
    content: "\e905";
}

/* line 45, ../sass/template/_icons.scss */
.u-icons-car:before {
    content: "\e906";
}

/* line 48, ../sass/template/_icons.scss */
.u-icons-cardiogram:before {
    content: "\e907";
}

/* line 51, ../sass/template/_icons.scss */
.u-icons-charity:before {
    content: "\e908";
}

/* line 54, ../sass/template/_icons.scss */
.u-icons-cocktail:before {
    content: "\e909";
}

/* line 57, ../sass/template/_icons.scss */
.u-icons-coding:before {
    content: "\e90a";
}

/* line 60, ../sass/template/_icons.scss */
.u-icons-crop:before {
    content: "\e90b";
}

/* line 63, ../sass/template/_icons.scss */
.u-icons-customizable:before {
    content: "\e90c";
}

/* line 66, ../sass/template/_icons.scss */
.u-icons-disabled-sign:before {
    content: "\e90d";
}

/* line 69, ../sass/template/_icons.scss */
.u-icons-download:before {
    content: "\e90e";
}

/* line 72, ../sass/template/_icons.scss */
.u-icons-ebook:before {
    content: "\e90f";
}

/* line 75, ../sass/template/_icons.scss */
.u-icons-edit2:before {
    content: "\e910";
}

/* line 78, ../sass/template/_icons.scss */
.u-icons-energy:before {
    content: "\e911";
}

/* line 81, ../sass/template/_icons.scss */
.u-icons-fingerprint:before {
    content: "\e912";
}

/* line 84, ../sass/template/_icons.scss */
.u-icons-folder:before {
    content: "\e913";
}

/* line 87, ../sass/template/_icons.scss */
.u-icons-full-battery:before {
    content: "\e914";
}

/* line 90, ../sass/template/_icons.scss */
.u-icons-hand:before {
    content: "\e915";
}

/* line 93, ../sass/template/_icons.scss */
.u-icons-heart:before {
    content: "\e916";
}

/* line 96, ../sass/template/_icons.scss */
.u-icons-help:before {
    content: "\e917";
}

/* line 99, ../sass/template/_icons.scss */
.u-icons-idea:before {
    content: "\e918";
}

/* line 102, ../sass/template/_icons.scss */
.u-icons-image:before {
    content: "\e919";
}

/* line 105, ../sass/template/_icons.scss */
.u-icons-key:before {
    content: "\e91a";
}

/* line 108, ../sass/template/_icons.scss */
.u-icons-labyrinth:before {
    content: "\e91b";
}

/* line 111, ../sass/template/_icons.scss */
.u-icons-loading:before {
    content: "\e91c";
}

/* line 114, ../sass/template/_icons.scss */
.u-icons-locked:before {
    content: "\e91d";
}

/* line 117, ../sass/template/_icons.scss */
.u-icons-low-battery:before {
    content: "\e91e";
}

/* line 120, ../sass/template/_icons.scss */
.u-icons-magic-wand:before {
    content: "\e91f";
}

/* line 123, ../sass/template/_icons.scss */
.u-icons-man:before {
    content: "\e920";
}

/* line 126, ../sass/template/_icons.scss */
.u-icons-map:before {
    content: "\e921";
}

/* line 129, ../sass/template/_icons.scss */
.u-icons-medal:before {
    content: "\e922";
}

/* line 132, ../sass/template/_icons.scss */
.u-icons-microphone:before {
    content: "\e923";
}

/* line 135, ../sass/template/_icons.scss */
.u-icons-miscellaneus:before {
    content: "\e924";
}

/* line 138, ../sass/template/_icons.scss */
.u-icons-move:before {
    content: "\e925";
}

/* line 141, ../sass/template/_icons.scss */
.u-icons-musical-note:before {
    content: "\e926";
}

/* line 144, ../sass/template/_icons.scss */
.u-icons-newspaper:before {
    content: "\e927";
}

/* line 147, ../sass/template/_icons.scss */
.u-icons-notification:before {
    content: "\e928";
}

/* line 150, ../sass/template/_icons.scss */
.u-icons-paint-brush:before {
    content: "\e929";
}

/* line 153, ../sass/template/_icons.scss */
.u-icons-pause-circular:before {
    content: "\e92a";
}

/* line 156, ../sass/template/_icons.scss */
.u-icons-pen-tip:before {
    content: "\e92b";
}

/* line 159, ../sass/template/_icons.scss */
.u-icons-play-circular:before {
    content: "\e92c";
}

/* line 162, ../sass/template/_icons.scss */
.u-icons-power:before {
    content: "\e92d";
}

/* line 165, ../sass/template/_icons.scss */
.u-icons-protection:before {
    content: "\e92e";
}

/* line 168, ../sass/template/_icons.scss */
.u-icons-quality:before {
    content: "\e92f";
}

/* line 171, ../sass/template/_icons.scss */
.u-icons-record-circular:before {
    content: "\e930";
}

/* line 174, ../sass/template/_icons.scss */
.u-icons-recycling-sign:before {
    content: "\e931";
}

/* line 177, ../sass/template/_icons.scss */
.u-icons-researcher:before {
    content: "\e932";
}

/* line 180, ../sass/template/_icons.scss */
.u-icons-research-work:before {
    content: "\e933";
}

/* line 183, ../sass/template/_icons.scss */
.u-icons-reuse:before {
    content: "\e934";
}

/* line 186, ../sass/template/_icons.scss */
.u-icons-savings:before {
    content: "\e935";
}

/* line 189, ../sass/template/_icons.scss */
.u-icons-schedule:before {
    content: "\e936";
}

/* line 192, ../sass/template/_icons.scss */
.u-icons-search:before {
    content: "\e937";
}

/* line 195, ../sass/template/_icons.scss */
.u-icons-settings:before {
    content: "\e938";
}

/* line 198, ../sass/template/_icons.scss */
.u-icons-share:before {
    content: "\e939";
}

/* line 201, ../sass/template/_icons.scss */
.u-icons-shirt:before {
    content: "\e93a";
}

/* line 204, ../sass/template/_icons.scss */
.u-icons-shopping-cart:before {
    content: "\e93b";
}

/* line 207, ../sass/template/_icons.scss */
.u-icons-sleep-mode:before {
    content: "\e93c";
}

/* line 210, ../sass/template/_icons.scss */
.u-icons-star:before {
    content: "\e93d";
}

/* line 213, ../sass/template/_icons.scss */
.u-icons-statistics:before {
    content: "\e93e";
}

/* line 216, ../sass/template/_icons.scss */
.u-icons-stethoscope:before {
    content: "\e93f";
}

/* line 219, ../sass/template/_icons.scss */
.u-icons-stop-circular:before {
    content: "\e940";
}

/* line 222, ../sass/template/_icons.scss */
.u-icons-telephone:before {
    content: "\e941";
}

/* line 225, ../sass/template/_icons.scss */
.u-icons-temperature:before {
    content: "\e942";
}

/* line 228, ../sass/template/_icons.scss */
.u-icons-thumb-up:before {
    content: "\e943";
}

/* line 231, ../sass/template/_icons.scss */
.u-icons-timer:before {
    content: "\e944";
}

/* line 234, ../sass/template/_icons.scss */
.u-icons-touch:before {
    content: "\e945";
}

/* line 237, ../sass/template/_icons.scss */
.u-icons-trash:before {
    content: "\e946";
}

/* line 240, ../sass/template/_icons.scss */
.u-icons-tree:before {
    content: "\e947";
}

/* line 243, ../sass/template/_icons.scss */
.u-icons-trophy:before {
    content: "\e948";
}

/* line 246, ../sass/template/_icons.scss */
.u-icons-unlock:before {
    content: "\e949";
}

/* line 249, ../sass/template/_icons.scss */
.u-icons-upload:before {
    content: "\e94a";
}

/* line 252, ../sass/template/_icons.scss */
.u-icons-video-player:before {
    content: "\e94b";
}

/* line 255, ../sass/template/_icons.scss */
.u-icons-vip:before {
    content: "\e94c";
}

/* line 258, ../sass/template/_icons.scss */
.u-icons-web-news:before {
    content: "\e94d";
}

/* line 261, ../sass/template/_icons.scss */
.u-icons-woman-with-skirt:before {
    content: "\e94e";
}

/* line 264, ../sass/template/_icons.scss */
.u-icons-notebook:before {
    content: "\e94f";
}

/* line 267, ../sass/template/_icons.scss */
.u-icons-chat:before {
    content: "\e950";
}

/* line 270, ../sass/template/_icons.scss */
.u-icons-bar-chart2:before {
    content: "\e951";
}

/* line 273, ../sass/template/_icons.scss */
.u-icons-avatar:before {
    content: "\e952";
}

/* line 276, ../sass/template/_icons.scss */
.u-icons-avatar-1:before {
    content: "\e953";
}

/* line 279, ../sass/template/_icons.scss */
.u-icons-book2:before {
    content: "\e954";
}

/* line 282, ../sass/template/_icons.scss */
.u-icons-chat2:before {
    content: "\e955";
}

/* line 285, ../sass/template/_icons.scss */
.u-icons-chat-1:before {
    content: "\e956";
}

/* line 288, ../sass/template/_icons.scss */
.u-icons-chat-2:before {
    content: "\e957";
}

/* line 291, ../sass/template/_icons.scss */
.u-icons-copy:before {
    content: "\e958";
}

/* line 294, ../sass/template/_icons.scss */
.u-icons-dislike:before {
    content: "\e959";
}

/* line 297, ../sass/template/_icons.scss */
.u-icons-download-1:before {
    content: "\e95a";
}

/* line 300, ../sass/template/_icons.scss */
.u-icons-edit:before {
    content: "\e95b";
}

/* line 303, ../sass/template/_icons.scss */
.u-icons-envelope:before {
    content: "\e95c";
}

/* line 306, ../sass/template/_icons.scss */
.u-icons-folder2:before {
    content: "\e95d";
}

/* line 309, ../sass/template/_icons.scss */
.u-icons-garbage:before {
    content: "\e95e";
}

/* line 312, ../sass/template/_icons.scss */
.u-icons-glasses:before {
    content: "\e95f";
}

/* line 315, ../sass/template/_icons.scss */
.u-icons-hand2:before {
    content: "\e960";
}

/* line 318, ../sass/template/_icons.scss */
.u-icons-headphones:before {
    content: "\e961";
}

/* line 321, ../sass/template/_icons.scss */
.u-icons-heart2:before {
    content: "\e962";
}

/* line 324, ../sass/template/_icons.scss */
.u-icons-house:before {
    content: "\e963";
}

/* line 327, ../sass/template/_icons.scss */
.u-icons-link:before {
    content: "\e964";
}

/* line 330, ../sass/template/_icons.scss */
.u-icons-magnifying-glass:before {
    content: "\e965";
}

/* line 333, ../sass/template/_icons.scss */
.u-icons-monitor:before {
    content: "\e966";
}

/* line 336, ../sass/template/_icons.scss */
.u-icons-musical-note2:before {
    content: "\e967";
}

/* line 339, ../sass/template/_icons.scss */
.u-icons-padlock:before {
    content: "\e968";
}

/* line 342, ../sass/template/_icons.scss */
.u-icons-paper-plane:before {
    content: "\e969";
}

/* line 345, ../sass/template/_icons.scss */
.u-icons-phone-call:before {
    content: "\e96a";
}

/* line 348, ../sass/template/_icons.scss */
.u-icons-pie-chart:before {
    content: "\e96b";
}

/* line 351, ../sass/template/_icons.scss */
.u-icons-piggy-bank:before {
    content: "\e96c";
}

/* line 354, ../sass/template/_icons.scss */
.u-icons-placeholder:before {
    content: "\e96d";
}

/* line 357, ../sass/template/_icons.scss */
.u-icons-printer:before {
    content: "\e96e";
}

/* line 360, ../sass/template/_icons.scss */
.u-icons-reload:before {
    content: "\e96f";
}

/* line 363, ../sass/template/_icons.scss */
.u-icons-settings2:before {
    content: "\e970";
}

/* line 366, ../sass/template/_icons.scss */
.u-icons-settings-1:before {
    content: "\e971";
}

/* line 369, ../sass/template/_icons.scss */
.u-icons-share2:before {
    content: "\e972";
}

/* line 372, ../sass/template/_icons.scss */
.u-icons-shopping-bag:before {
    content: "\e973";
}

/* line 375, ../sass/template/_icons.scss */
.u-icons-shopping-cart2:before {
    content: "\e974";
}

/* line 378, ../sass/template/_icons.scss */
.u-icons-shuffle:before {
    content: "\e975";
}

/* line 381, ../sass/template/_icons.scss */
.u-icons-speaker:before {
    content: "\e976";
}

/* line 384, ../sass/template/_icons.scss */
.u-icons-star2:before {
    content: "\e977";
}

/* line 387, ../sass/template/_icons.scss */
.u-icons-tag:before {
    content: "\e978";
}

/* line 390, ../sass/template/_icons.scss */
.u-icons-upload2:before {
    content: "\e979";
}

/* line 393, ../sass/template/_icons.scss */
.u-icons-upload-1:before {
    content: "\e97a";
}

/* 11. widgets */
/*------------------------------------*\
    Widget
\*------------------------------------*/
/* line 5, ../sass/template/_widgets.scss */
.widget label {
    font-weight: 400;
}

/* line 8, ../sass/template/_widgets.scss */
.widget.widget_revslider {
    margin: 0;
}

/* line 13, ../sass/template/_widgets.scss */
.widget.widget_text img {
    margin: 15px 0;
    height: auto;
}

/* line 20, ../sass/template/_widgets.scss */
.widget .post-widget .image {
    width: 70px;
    margin-top: 5px;
}

/* line 23, ../sass/template/_widgets.scss */
.widget .post-widget .image img {
    width: 100%;
    height: auto;
}

/* line 29, ../sass/template/_widgets.scss */
.widget.related {
    margin-bottom: 0;
}

/* line 34, ../sass/template/_widgets.scss */
.widget.products .widget-title {
    color: #999999;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.5px;
    margin: 0 0 54px;
    padding: 30px 0 0;
    font-weight: 400;
    border-top: 1px solid #e0e0e0;
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget.products .widget-title {
    text-align: right;
}

/* line 44, ../sass/template/_widgets.scss */
.widget.products .widget-title:before, .widget.products .widget-title:after {
    display: none;
}

/* line 48, ../sass/template/_widgets.scss */
.widget.products .widget-title span {
    padding: 0;
    margin: 0;
    display: inline;
}

/* line 52, ../sass/template/_widgets.scss */
.widget.products .widget-title span:before, .widget.products .widget-title span:after {
    display: none;
}

/* line 59, ../sass/template/_widgets.scss */
.widget.products .owl-controls .owl-nav {
    position: absolute;
    top: -80px;
    right: 43px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget.products .owl-controls .owl-nav {
    left: 43px;
    right: auto;
}

/* line 63, ../sass/template/_widgets.scss */
.widget.products .owl-controls .owl-nav .owl-prev {
    right: 0;
    left: auto;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget.products .owl-controls .owl-nav .owl-prev {
    left: 0;
    right: auto;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .widget.products .owl-controls .owl-nav .owl-prev {
    right: auto;
    left: auto;
}

/* line 68, ../sass/template/_widgets.scss */
.widget.products .owl-controls .owl-nav .owl-next {
    left: 0;
    right: auto;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .widget.products .owl-controls .owl-nav .owl-next {
    right: 0;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget.products .owl-controls .owl-nav .owl-next {
    left: auto;
    right: auto;
}

/* line 73, ../sass/template/_widgets.scss */
.widget.products .owl-controls .owl-nav .owl-prev, .widget.products .owl-controls .owl-nav .owl-next {
    border-color: #e0e0e0;
    width: 25px;
    height: 25px;
    color: #999999;
    font-size: 10px;
    line-height: 25px;
    padding: 0;
    margin: 0 3px;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 82, ../sass/template/_widgets.scss */
.widget.products .owl-controls .owl-nav .owl-prev:hover, .widget.products .owl-controls .owl-nav .owl-prev:focus, .widget.products .owl-controls .owl-nav .owl-prev:active, .widget.products .owl-controls .owl-nav .owl-next:hover, .widget.products .owl-controls .owl-nav .owl-next:focus, .widget.products .owl-controls .owl-nav .owl-next:active {
    border-color: #b5a473;
    color: #b5a473;
}

/* line 388, ../sass/mixins/_template-mixins.scss */
.widget.widget_rss ul, .widget.widget_rss ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* line 394, ../sass/mixins/_template-mixins.scss */
.widget.widget_rss ul li:last-child, .widget.widget_rss ol li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

/* line 400, ../sass/mixins/_template-mixins.scss */
.widget.widget_rss ul li .children > li:before, .widget.widget_rss ol li .children > li:before {
    top: 24px;
}

/* line 407, ../sass/mixins/_template-mixins.scss */
.widget.widget_rss ul ul li:first-child, .widget.widget_rss ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px;
}

/* line 96, ../sass/template/_widgets.scss */
.widget.widget_rss ul li {
    background: none;
}

/* line 98, ../sass/template/_widgets.scss */
.widget.widget_rss ul li a {
    padding: 0;
}

/* line 388, ../sass/mixins/_template-mixins.scss */
.widget.widget_recent_comments ul, .widget.widget_recent_comments ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* line 394, ../sass/mixins/_template-mixins.scss */
.widget.widget_recent_comments ul li:last-child, .widget.widget_recent_comments ol li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

/* line 400, ../sass/mixins/_template-mixins.scss */
.widget.widget_recent_comments ul li .children > li:before, .widget.widget_recent_comments ol li .children > li:before {
    top: 24px;
}

/* line 407, ../sass/mixins/_template-mixins.scss */
.widget.widget_recent_comments ul ul li:first-child, .widget.widget_recent_comments ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px;
}

/* line 106, ../sass/template/_widgets.scss */
.widget.widget_recent_comments ul li {
    background: none;
}

/* line 388, ../sass/mixins/_template-mixins.scss */
.widget.widget_rss ul, .widget.widget_rss ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* line 394, ../sass/mixins/_template-mixins.scss */
.widget.widget_rss ul li:last-child, .widget.widget_rss ol li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

/* line 400, ../sass/mixins/_template-mixins.scss */
.widget.widget_rss ul li .children > li:before, .widget.widget_rss ol li .children > li:before {
    top: 24px;
}

/* line 407, ../sass/mixins/_template-mixins.scss */
.widget.widget_rss ul ul li:first-child, .widget.widget_rss ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px;
}

/* line 113, ../sass/template/_widgets.scss */
.widget.widget_rss ul li {
    background: none;
}

/* line 115, ../sass/template/_widgets.scss */
.widget.widget_rss ul li a {
    padding: 0;
}

/* line 118, ../sass/template/_widgets.scss */
.widget.widget_rss ul li:before {
    display: none;
}

/* line 126, ../sass/template/_widgets.scss */
.widget.widget-gallery.carousel .main-gallery {
    overflow-y: hidden;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    /* line 126, ../sass/template/_widgets.scss */
    .widget.widget-gallery.carousel .main-gallery {
        height: auto;
    }
}

@media (max-width: 640px) {
    /* line 126, ../sass/template/_widgets.scss */
    .widget.widget-gallery.carousel .main-gallery {
        height: auto;
    }
}

/* line 137, ../sass/template/_widgets.scss */
.widget.widget-gallery.carousel .thumbs-gallery .owl-stage-outer {
    margin: 0;
}

/* line 141, ../sass/template/_widgets.scss */
.widget.widget-gallery.carousel .gallery-thumb-image {
    height: 79px;
    overflow: hidden;
    margin-bottom: 10px;
}

@media (max-width: 640px) {
    /* line 141, ../sass/template/_widgets.scss */
    .widget.widget-gallery.carousel .gallery-thumb-image {
        height: auto;
        overflow: visible;
    }
}

/* line 149, ../sass/template/_widgets.scss */
.widget.widget-gallery.carousel .gallery-thumb-image img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

/* line 157, ../sass/template/_widgets.scss */
.widget.widget-google-map {
    margin: 0;
}

/* line 162, ../sass/template/_widgets.scss */
.widget.widget_recent_reviews ul.product_list_widget {
    list-style: none;
}

/* line 164, ../sass/template/_widgets.scss */
.widget.widget_recent_reviews ul.product_list_widget li {
    padding: 0 0 15px;
    overflow: hidden;
}

/* line 167, ../sass/template/_widgets.scss */
.widget.widget_recent_reviews ul.product_list_widget li a img {
    float: left;
    margin-right: 10px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget.widget_recent_reviews ul.product_list_widget li a img {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget.widget_recent_reviews ul.product_list_widget li a img {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 176, ../sass/template/_widgets.scss */
.widget.widget_product_search .woocommerce-product-search {
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

/* line 180, ../sass/template/_widgets.scss */
.widget.widget_product_search .woocommerce-product-search label.screen-reader-text {
    display: none;
}

/* line 183, ../sass/template/_widgets.scss */
.widget.widget_product_search .woocommerce-product-search input[type="search"] {
    padding: 10px 15px;
    height: 45px;
    font-family: "Montserrat";
    font-size: 16px;
    color: #a4a4a4;
    max-width: 70%;
    border: 1px solid #e0e0e0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 0 0 70%;
    -moz-box-flex: 0 0 70%;
    -webkit-flex: 0 0 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* line 647, ../sass/mixins/_template-mixins.scss */
.widget.widget_product_search .woocommerce-product-search input[type="search"]:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
.widget.widget_product_search .woocommerce-product-search input[type="search"]:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
.widget.widget_product_search .woocommerce-product-search input[type="search"]::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
.widget.widget_product_search .woocommerce-product-search input[type="search"]:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 200, ../sass/template/_widgets.scss */
.widget.widget_product_search .woocommerce-product-search input[type="search"]:focus {
    border-color: #b5a473;
    -webkit-box-shadow: inset 0 0 0 1px #b5a473;
    box-shadow: inset 0 0 0 1px #b5a473;
}

/* line 205, ../sass/template/_widgets.scss */
.widget.widget_product_search .woocommerce-product-search input[type="submit"] {
    margin-bottom: 0;
    font-family: "Raleway", cursive, sans-serif;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 2px solid transparent;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    height: 45px;
    background-color: #b5a473;
    max-width: 30%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 0 0 30%;
    -moz-box-flex: 0 0 30%;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    padding: 5px 5px;
    font-size: 12px;
    line-height: 1.625;
    border-radius: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

/* line 233, ../sass/template/_widgets.scss */
.widget.yith-woocompare-widget .products-list {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* line 238, ../sass/template/_widgets.scss */
.widget.yith-woocompare-widget a.clear-all {
    margin-bottom: 20px;
    margin-left: 15px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget.yith-woocompare-widget a.clear-all {
    margin-right: 15px;
    margin-left: inherit;
}

/* line 242, ../sass/template/_widgets.scss */
.widget.yith-woocompare-widget a.compare {
    margin-bottom: 20px;
    margin-right: 15px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget.yith-woocompare-widget a.compare {
    margin-left: 15px;
    margin-right: inherit;
}

/* line 251, ../sass/template/_widgets.scss */
.widget.widget_shopping_cart .widget_shopping_cart_content {
    padding: 0;
    overflow: hidden;
}

/* line 254, ../sass/template/_widgets.scss */
.widget.widget_shopping_cart .widget_shopping_cart_content .name {
    margin-top: 0;
    font-weight: 500;
    font-size: 16px;
}

/* line 258, ../sass/template/_widgets.scss */
.widget.widget_shopping_cart .widget_shopping_cart_content .name a {
    color: #333;
}

/* line 260, ../sass/template/_widgets.scss */
.widget.widget_shopping_cart .widget_shopping_cart_content .name a:hover, .widget.widget_shopping_cart .widget_shopping_cart_content .name a:focus, .widget.widget_shopping_cart .widget_shopping_cart_content .name a:active {
    color: #b5a473;
}

/* line 271, ../sass/template/_widgets.scss */
.widget.widget_recent_entries ul li a {
    display: block;
}

/* line 278, ../sass/template/_widgets.scss */
.widget.widget_mc4wp_widget .mc4wp-form {
    padding: 20px;
}

/* line 283, ../sass/template/_widgets.scss */
.widget.widget-timework strong {
    color: #000;
    font-weight: 500;
}

/* line 290, ../sass/template/_widgets.scss */
.widget-compare-device .widget-content {
    overflow: auto;
}

/* line 296, ../sass/template/_widgets.scss */
.widget_recent_entries > ul {
    padding: 0;
    margin: 0;
    list-style: outside none none;
}

/* line 300, ../sass/template/_widgets.scss */
.widget_recent_entries > ul li {
    line-height: 26px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* line 305, ../sass/template/_widgets.scss */
.widget_recent_entries > ul li a {
    font-weight: 400;
}

/*------------------------------------*\
    Widget Contact Us
\*------------------------------------*/
/* line 315, ../sass/template/_widgets.scss */
.contact {
    margin: 0;
    padding: 0;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.contact:before, .contact:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.contact:after {
    clear: both;
}

/* line 319, ../sass/template/_widgets.scss */
.contact dt {
    float: left;
    width: 30px;
    height: auto;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .contact dt {
    float: right;
}

/* line 323, ../sass/template/_widgets.scss */
.contact dd {
    overflow: hidden;
    margin-bottom: 5px;
}

/* line 327, ../sass/template/_widgets.scss */
.contact .contact-icon {
    display: block;
    text-align: center;
    background: #b5a473;
    float: left;
    width: 22px;
    height: 22px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .contact .contact-icon {
    float: right;
}

/* line 334, ../sass/template/_widgets.scss */
.contact .contact-icon .fa {
    color: #fff;
    font-size: 16px;
    margin: 0 0 0 4px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .contact .contact-icon .fa {
    margin: 0 4px 0 0;
}

@media only screen and (max-width: 767px) {
    /* line 341, ../sass/template/_widgets.scss */
    .widget-video {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    /* line 341, ../sass/template/_widgets.scss */
    .widget-video {
        overflow: hidden;
    }
}

/* line 348, ../sass/template/_widgets.scss */
.widget-video .popup-video {
    position: relative;
    display: block;
}

/*------------------------------------*\
    Widget mailchip
\*------------------------------------*/
/* line 356, ../sass/template/_widgets.scss */
.mc4wp-form-basic, .mc4wp-form-basic input, .mc4wp-form-basic label, .mc4wp-form-theme, .mc4wp-form-theme input, .mc4wp-form-theme label {
    line-height: inherit;
}

/* line 360, ../sass/template/_widgets.scss */
.mc4wp-form-basic .form-control {
    max-width: 100% !important;
}

/* line 365, ../sass/template/_widgets.scss */
.widget-mail-form .input-group {
    width: 100%;
}

/* line 368, ../sass/template/_widgets.scss */
.widget-mail-form .desc {
    margin: 0 0 15px;
}

/* line 371, ../sass/template/_widgets.scss */
.widget-mail-form .form-control {
    height: 47px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 375, ../sass/template/_widgets.scss */
.widget-mail-form .btn, .widget-mail-form .edr-membership .edr-buy-widget__link, .edr-membership .widget-mail-form .edr-buy-widget__link,
.widget-mail-form .edr-membership .edr-membership-buy-link,
.edr-membership .widget-mail-form .edr-membership-buy-link,
.widget-mail-form .edr_membership .edr-buy-widget__link,
.edr_membership .widget-mail-form .edr-buy-widget__link,
.widget-mail-form .edr_membership .edr-membership-buy-link,
.edr_membership .widget-mail-form .edr-membership-buy-link {
    padding: 12px 17px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 380, ../sass/template/_widgets.scss */
.mc4wp-form-basic, .mc4wp-form-theme {
    margin: 0;
}

/* line 383, ../sass/template/_widgets.scss */
.widget-testimonials {
    text-align: center;
    max-width: 1105px;
    margin: auto;
    padding: 0;
}

/* line 388, ../sass/template/_widgets.scss */
.widget-testimonials .widget-title {
    font-size: 32px;
    margin: 0 0 20px;
}

/* line 392, ../sass/template/_widgets.scss */
.widget-testimonials .owl-dots {
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 392, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-dots {
        margin: 0;
    }
}

@media (max-width: 640px) {
    /* line 392, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-dots {
        margin: 0;
    }
}

/* line 401, ../sass/template/_widgets.scss */
.widget-testimonials .owl-stage-outer {
    margin: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 404, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-controls .owl-dots {
        margin: 0;
    }
}

@media (max-width: 640px) {
    /* line 404, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-controls .owl-dots {
        margin: 0;
    }
}

/* line 412, ../sass/template/_widgets.scss */
.widget-testimonials .owl-carousel .owl-controls {
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 412, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-carousel .owl-controls {
        position: absolute;
        height: 50px;
        line-height: 50px;
    }
}

@media (max-width: 640px) {
    /* line 412, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-carousel .owl-controls {
        position: absolute;
        top: 40px;
    }
}

/* line 424, ../sass/template/_widgets.scss */
.widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 50%;
    margin: 25px -80px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 1200px) {
    /* line 424, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-prev {
        margin: 25px 0 0 -140px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 424, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-prev {
        left: 50px;
        margin: 0;
        right: auto;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@media (max-width: 640px) {
    /* line 424, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-prev {
        left: 20px;
        margin: 0;
        right: auto;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

/* line 446, ../sass/template/_widgets.scss */
.widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-next {
    left: 50%;
    margin: 25px 80px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 446, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-next {
        right: 50px;
        margin: 0;
        left: auto;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@media (max-width: 640px) {
    /* line 446, ../sass/template/_widgets.scss */
    .widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-next {
        right: 20px;
        left: auto;
        top: 50%;
        margin: 0;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

/* line 465, ../sass/template/_widgets.scss */
.widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-prev,
.widget-testimonials .owl-carousel .owl-controls .owl-nav .owl-next {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 469, ../sass/template/_widgets.scss */
.widget-testimonials.style2 {
    color: #ffffff !important;
}

/* line 471, ../sass/template/_widgets.scss */
.widget-testimonials.style2 .info:after {
    content: "";
    position: absolute;
    background: #b5a473;
    width: 115px;
    height: 2px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* line 483, ../sass/template/_widgets.scss */
.widget-testimonials.style2 .testimonials-body .description {
    color: #ffffff !important;
}

/* line 487, ../sass/template/_widgets.scss */
.widget-testimonials.style2 .testimonials-body .name-client a {
    color: #ffffff !important;
}

/* line 491, ../sass/template/_widgets.scss */
.widget-testimonials.style2 .owl-carousel .owl-controls .owl-nav .owl-prev,
.widget-testimonials.style2 .owl-carousel .owl-controls .owl-nav .owl-next {
    border-color: transparent;
    color: #ffffff !important;
    border: 0;
    font-size: 18px;
}

/* line 497, ../sass/template/_widgets.scss */
.widget-testimonials.style2 .owl-carousel .owl-controls .owl-nav .owl-prev:hover, .widget-testimonials.style2 .owl-carousel .owl-controls .owl-nav .owl-prev:active,
.widget-testimonials.style2 .owl-carousel .owl-controls .owl-nav .owl-next:hover,
.widget-testimonials.style2 .owl-carousel .owl-controls .owl-nav .owl-next:active {
    color: #ffffff !important;
    border-color: #fff !important;
}

/* line 503, ../sass/template/_widgets.scss */
.widget-testimonials.style3 {
    text-align: left;
}

/* line 504, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .widget-title {
    margin-bottom: 30px !important;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget-testimonials.style3 {
    text-align: right;
}

/* line 508, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .testimonials-body .description {
    padding: 35px;
    border: 1px solid #e0e0e0;
}

/* line 512, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .testimonial-avatar {
    float: left;
    margin-right: 20px;
    position: relative;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget-testimonials.style3 .testimonial-avatar {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-testimonials.style3 .testimonial-avatar {
    margin-left: 20px;
    margin-right: inherit;
}

/* line 516, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .testimonial-avatar:before {
    content: '';
    position: absolute;
    top: -21px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 15px;
    height: 20px;
    border-color: #e0e0e0 transparent transparent;
    border-width: 10px 7.5px;
    border-style: solid;
    z-index: 2;
}

/* line 528, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .testimonial-avatar:after {
    content: '';
    position: absolute;
    top: -21px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 13px;
    height: 18px;
    border-color: #fff transparent transparent;
    border-width: 9px 6.5px;
    border-style: solid;
    z-index: 3;
}

/* line 541, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .testimonial-meta {
    overflow: hidden;
}

/* line 544, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .testimonials-body .info > * {
    display: block;
}

/* line 547, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .space {
    display: none;
}

/* line 550, ../sass/template/_widgets.scss */
.widget-testimonials.style3 .info-bottom {
    padding-left: 30px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-testimonials.style3 .info-bottom {
    padding-right: 30px;
    padding-left: inherit;
}

/* line 556, ../sass/template/_widgets.scss */
.testimonials-body .description {
    font-size: 20px;
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    /* line 556, ../sass/template/_widgets.scss */
    .testimonials-body .description {
        padding: 0;
        margin: 0 20px 30px 20px;
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 556, ../sass/template/_widgets.scss */
    .testimonials-body .description {
        padding: 0 50px;
        font-size: 18px;
    }
}

/* line 569, ../sass/template/_widgets.scss */
.testimonials-body .info {
    margin: 25px 0 15px;
    padding: 0 0 20px 0;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    font-family: "Montserrat";
}

/* line 576, ../sass/template/_widgets.scss */
.testimonials-body .info > * {
    display: inline-block;
    vertical-align: top;
}

/* line 581, ../sass/template/_widgets.scss */
.testimonials-body .name-client {
    color: #ffffff !important;
    font-size: 13px;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
}

/* line 589, ../sass/template/_widgets.scss */
.testimonials-body .testimonial-avatar img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* line 596, ../sass/template/_widgets.scss */
.widget-contact-info hr {
    margin-top: 0;
}

/* line 599, ../sass/template/_widgets.scss */
.widget-contact-info .image {
    float: left;
    padding-right: 20px;
    margin-top: 3px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget-contact-info .image {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-contact-info .image {
    padding-left: 20px;
    padding-right: inherit;
}

/* line 604, ../sass/template/_widgets.scss */
.widget-contact-info .media-info {
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    /* line 604, ../sass/template/_widgets.scss */
    .widget-contact-info .media-info {
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 604, ../sass/template/_widgets.scss */
    .widget-contact-info .media-info {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 604, ../sass/template/_widgets.scss */
    .widget-contact-info .media-info {
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    /* line 604, ../sass/template/_widgets.scss */
    .widget-contact-info .media-info {
        margin-bottom: 0px;
    }
}

/* line 619, ../sass/template/_widgets.scss */
.widget-contact-info .title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 25px;
    padding: 0 0 10px 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #e0e0e0;
}

/* line 630, ../sass/template/_widgets.scss */
.widget-newletter {
    padding: 85px 0;
}

@media (max-width: 640px) {
    /* line 630, ../sass/template/_widgets.scss */
    .widget-newletter {
        padding: 40px 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 630, ../sass/template/_widgets.scss */
    .widget-newletter {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    /* line 639, ../sass/template/_widgets.scss */
    .widget-newletter .info-left {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 639, ../sass/template/_widgets.scss */
    .widget-newletter .info-left {
        display: none;
    }
}

/* line 647, ../sass/template/_widgets.scss */
.widget-newletter input,
.widget-newletter .btn,
.widget-newletter .edr-membership .edr-buy-widget__link,
.edr-membership .widget-newletter .edr-buy-widget__link,
.widget-newletter .edr-membership .edr-membership-buy-link,
.edr-membership .widget-newletter .edr-membership-buy-link,
.widget-newletter .edr_membership .edr-buy-widget__link,
.edr_membership .widget-newletter .edr-buy-widget__link,
.widget-newletter .edr_membership .edr-membership-buy-link,
.edr_membership .widget-newletter .edr-membership-buy-link {
    height: 55px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 652, ../sass/template/_widgets.scss */
.widget-newletter input {
    border-color: #a2a2a2;
    padding: 15px 30px;
    color: #a4a4a4;
    font-size: 16px;
    font-family: "Montserrat";
}

/* line 647, ../sass/mixins/_template-mixins.scss */
.widget-newletter input:-webkit-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 648, ../sass/mixins/_template-mixins.scss */
.widget-newletter input:-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 649, ../sass/mixins/_template-mixins.scss */
.widget-newletter input::-moz-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 650, ../sass/mixins/_template-mixins.scss */
.widget-newletter input:-ms-input-placeholder {
    color: #a4a4a4;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 663, ../sass/template/_widgets.scss */
.widget-newletter .btn, .widget-newletter .edr-membership .edr-buy-widget__link, .edr-membership .widget-newletter .edr-buy-widget__link,
.widget-newletter .edr-membership .edr-membership-buy-link,
.edr-membership .widget-newletter .edr-membership-buy-link,
.widget-newletter .edr_membership .edr-buy-widget__link,
.edr_membership .widget-newletter .edr-buy-widget__link,
.widget-newletter .edr_membership .edr-membership-buy-link,
.edr_membership .widget-newletter .edr-membership-buy-link {
    border: 0;
    margin-left: 15px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-newletter .btn, .rtl .widget-newletter .edr-membership .edr-buy-widget__link, .edr-membership .rtl .widget-newletter .edr-buy-widget__link,
.rtl .widget-newletter .edr-membership .edr-membership-buy-link,
.edr-membership .rtl .widget-newletter .edr-membership-buy-link,
.rtl .widget-newletter .edr_membership .edr-buy-widget__link,
.edr_membership .rtl .widget-newletter .edr-buy-widget__link,
.rtl .widget-newletter .edr_membership .edr-membership-buy-link,
.edr_membership .rtl .widget-newletter .edr-membership-buy-link {
    margin-right: 15px;
    margin-left: inherit;
}

/* line 667, ../sass/template/_widgets.scss */
.widget-newletter .input-group-btn {
    vertical-align: top;
}

/* line 670, ../sass/template/_widgets.scss */
.widget-newletter .widget-title {
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: 1.5px;
    margin-top: -6px;
    font-weight: 500;
    text-transform: uppercase;
}

/* line 678, ../sass/template/_widgets.scss */
.widget-newletter .info-right {
    overflow: hidden;
}

/* line 681, ../sass/template/_widgets.scss */
.widget-newletter .mc4wp-form {
    margin-top: 15px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 681, ../sass/template/_widgets.scss */
    .widget-newletter .mc4wp-form {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    /* line 681, ../sass/template/_widgets.scss */
    .widget-newletter .mc4wp-form {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    /* line 691, ../sass/template/_widgets.scss */
    .widget-newletter .mc4wp-form {
        width: 485px;
        max-width: 100%;
        float: right;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .widget-newletter .mc4wp-form {
        float: left;
    }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
    /* line 691, ../sass/template/_widgets.scss */
    .widget-newletter .mc4wp-form {
        float: none;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 640px) {
    /* line 691, ../sass/template/_widgets.scss */
    .widget-newletter .mc4wp-form {
        float: none;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 640px) {
    /* line 704, ../sass/template/_widgets.scss */
    .widget-newletter .info-left {
        display: none;
    }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
    /* line 704, ../sass/template/_widgets.scss */
    .widget-newletter .info-left {
        display: none;
    }
}

@media (min-width: 768px) {
    /* line 712, ../sass/template/_widgets.scss */
    .widget-newletter .widget-content,
    .widget-newletter .info-left {
        float: left;
        width: 50%;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .widget-newletter .widget-content, .rtl
    .widget-newletter .info-left {
        float: right;
    }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
    /* line 712, ../sass/template/_widgets.scss */
    .widget-newletter .widget-content,
    .widget-newletter .info-left {
        width: 100%;
        float: none;
    }
}

@media (min-width: 768px) and (max-width: 640px) {
    /* line 712, ../sass/template/_widgets.scss */
    .widget-newletter .widget-content,
    .widget-newletter .info-left {
        width: 100%;
        float: none;
    }
}

/* line 726, ../sass/template/_widgets.scss */
.widget-newletter .des {
    font-size: 15px;
    font-weight: 600;
}

/* line 730, ../sass/template/_widgets.scss */
.widget-newletter .icon {
    overflow: hidden;
    line-height: 70px;
    text-align: center;
    border: 1px solid #a2a2a2;
    width: 75px;
    height: 75px;
    float: left;
    margin-right: 25px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget-newletter .icon {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-newletter .icon {
    margin-left: 25px;
    margin-right: inherit;
}

/* line 741, ../sass/template/_widgets.scss */
.address .des {
    margin: 0 0 20px;
}

/* line 744, ../sass/template/_widgets.scss */
.address .item {
    overflow: hidden;
    margin: 0 0 15px;
}

/* line 747, ../sass/template/_widgets.scss */
.address .item .left-item {
    float: left;
    padding-right: 10px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .address .item .left-item {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .address .item .left-item {
    padding-left: 10px;
    padding-right: inherit;
}

/* line 751, ../sass/template/_widgets.scss */
.address .item .right-content {
    overflow: hidden;
}

/* line 754, ../sass/template/_widgets.scss */
.address .item strong {
    font-weight: 400;
    color: #aaaaaa;
}

/*------------------------------------*\
    Widget Sidebar
\*------------------------------------*/
/* line 764, ../sass/template/_widgets.scss */
.ninzio-sidebar select, .ninzio-sidebar table {
    width: 100%;
}

/* line 768, ../sass/template/_widgets.scss */
.ninzio-sidebar .post-widget .blog-title, .ninzio-sidebar .post-widget h6 {
    margin: 0 0 5px;
    line-height: 1.4;
    font-weight: 400;
    font-size: 14px;
    height: 40px;
    overflow: hidden;
    font-family: "Lato", serif;
}

/*------------------------------------*\
    search
\*------------------------------------*/
/* line 785, ../sass/template/_widgets.scss */
.ninzio-search-form .input-group .ninzio-search {
    border-right: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-color: #a2a2a2;
    padding: 10px 15px;
    height: 46px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-search-form .input-group .ninzio-search {
    border-left: none;
    border-right: inherit;
}

/* line 791, ../sass/template/_widgets.scss */
.ninzio-search-form .input-group .ninzio-search:focus, .ninzio-search-form .input-group .ninzio-search:active {
    border-color: #a2a2a2;
}

/* line 795, ../sass/template/_widgets.scss */
.ninzio-search-form .input-group .btn, .ninzio-search-form .input-group .edr-membership .edr-buy-widget__link, .edr-membership .ninzio-search-form .input-group .edr-buy-widget__link,
.ninzio-search-form .input-group .edr-membership .edr-membership-buy-link,
.edr-membership .ninzio-search-form .input-group .edr-membership-buy-link,
.ninzio-search-form .input-group .edr_membership .edr-buy-widget__link,
.edr_membership .ninzio-search-form .input-group .edr-buy-widget__link,
.ninzio-search-form .input-group .edr_membership .edr-membership-buy-link,
.edr_membership .ninzio-search-form .input-group .edr-membership-buy-link {
    background: #fff;
    border-color: #a2a2a2;
    border-left: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .ninzio-search-form .input-group .btn, .rtl .ninzio-search-form .input-group .edr-membership .edr-buy-widget__link, .edr-membership .rtl .ninzio-search-form .input-group .edr-buy-widget__link,
.rtl .ninzio-search-form .input-group .edr-membership .edr-membership-buy-link,
.edr-membership .rtl .ninzio-search-form .input-group .edr-membership-buy-link,
.rtl .ninzio-search-form .input-group .edr_membership .edr-buy-widget__link,
.edr_membership .rtl .ninzio-search-form .input-group .edr-buy-widget__link,
.rtl .ninzio-search-form .input-group .edr_membership .edr-membership-buy-link,
.edr_membership .rtl .ninzio-search-form .input-group .edr-membership-buy-link {
    border-right: none;
    border-left: inherit;
}

/* line 805, ../sass/template/_widgets.scss */
.support1 {
    line-height: 1;
    padding: 0 15px;
}

/* line 808, ../sass/template/_widgets.scss */
.support1 i {
    font-size: 28px;
}

/* line 811, ../sass/template/_widgets.scss */
.support1 .media-left {
    vertical-align: middle;
}

@media (min-width: 992px) {
    /* line 815, ../sass/template/_widgets.scss */
    .support1 .media-left {
        padding-right: 20px;
        border-right: 1px solid #e0e0e0;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .support1 .media-left {
        padding-left: 20px;
        padding-right: inherit;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .support1 .media-left {
        border-left: 1px solid #e0e0e0;
        border-right: inherit;
    }

    /* line 819, ../sass/template/_widgets.scss */
    .support1 .media-body {
        padding-left: 20px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .support1 .media-body {
        padding-right: 20px;
        padding-left: inherit;
    }
}

/* line 823, ../sass/template/_widgets.scss */
.support1 .title {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 5px;
    line-height: 1;
}

/* line 829, ../sass/template/_widgets.scss */
.support1 p {
    margin: 0;
}

/*------------------------------------*\
    Tags Widget
\*------------------------------------*/
/* line 837, ../sass/template/_widgets.scss */
.tagcloud a {
    color: #999999 !important;
    font-size: 11px !important;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    font-family: "Montserrat";
    margin: 0 7px 9px 0;
    display: inline-block;
    padding: 4px 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .tagcloud a {
    margin: 0 0 9px 7px;
}

/* line 850, ../sass/template/_widgets.scss */
.tagcloud a:focus, .tagcloud a:hover {
    color: #b5a473 !important;
    border-color: #b5a473;
}

/* line 859, ../sass/template/_widgets.scss */
.widget-brand-logo {
    padding: 30px;
}

/* line 862, ../sass/template/_widgets.scss */
.widget-brand-logo .item-brand > a {
    display: block;
}

/* line 866, ../sass/template/_widgets.scss */
.widget-brand-logo .carousel-control {
    opacity: 0;
    filter: alpha(opacity=0);
}

/* line 870, ../sass/template/_widgets.scss */
.widget-brand-logo:hover .carousel-control {
    opacity: 1;
    filter: alpha(opacity=100);
}

/*-----------------------------*\
        Widget video
\*-----------------------------*/
/* line 880, ../sass/template/_widgets.scss */
.wpb_video_widget .video-description {
    text-transform: uppercase;
    font-weight: 400;
    line-height: 30px;
    font-size: 12px;
    color: #000;
}

/* line 887, ../sass/template/_widgets.scss */
.wpb_video_widget .wpb_wrapper .wpb_video_wrapper {
    padding-top: 60.7% !important;
}

/*-----------------------------*\
        Widget Vertical Menu
\*-----------------------------*/
/* line 894, ../sass/template/_widgets.scss */
.vertical-menu {
    display: none !important;
    padding: 0;
    background: #fff;
    z-index: 999;
}

/* line 899, ../sass/template/_widgets.scss */
.vertical-menu > .nav {
    position: relative;
    width: 100%;
    height: auto;
}

/* line 904, ../sass/template/_widgets.scss */
.vertical-menu > .nav .open > a, .vertical-menu > .nav .open > a:hover, .vertical-menu > .nav .open > a:focus,
.vertical-menu > .nav .active > a,
.vertical-menu > .nav .active > a:hover,
.vertical-menu > .nav .active > a:focus {
    color: #b5a473;
}

/* line 910, ../sass/template/_widgets.scss */
.vertical-menu > .nav > li {
    float: none;
    position: static;
    border-bottom: 1px solid #e0e0e0;
}

/* line 915, ../sass/template/_widgets.scss */
.vertical-menu > .nav > li.active > a {
    color: #b5a473;
    background: #fafafa;
}

/* line 920, ../sass/template/_widgets.scss */
.vertical-menu > .nav > li > a {
    color: #414141;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* line 927, ../sass/template/_widgets.scss */
.vertical-menu > .nav > li > a:hover {
    color: #b5a473;
    background: #fafafa;
}

/* line 931, ../sass/template/_widgets.scss */
.vertical-menu > .nav > li > a .fa {
    font-size: 15px;
    min-width: 15px;
    margin-right: 12px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .vertical-menu > .nav > li > a .fa {
    margin-left: 12px;
    margin-right: inherit;
}

/* line 937, ../sass/template/_widgets.scss */
.vertical-menu > .nav > li .dropdown-menu {
    min-width: 230px;
    min-height: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 943, ../sass/template/_widgets.scss */
.vertical-menu > .nav .product-block {
    padding: 0 !important;
    overflow: hidden;
    display: block;
}

/* line 950, ../sass/template/_widgets.scss */
.vertical-menu .dropdown-menu {
    margin: 0;
    padding: 30px;
    border: none;
    top: 0;
}

/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
.vertical-menu .dropdown-menu:before, .vertical-menu .dropdown-menu:after {
    content: " ";
    display: table;
}

/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
.vertical-menu .dropdown-menu:after {
    clear: both;
}

/* line 956, ../sass/template/_widgets.scss */
.vertical-menu .dropdown-menu ul {
    padding: 0;
    list-style: none;
}

/* line 959, ../sass/template/_widgets.scss */
.vertical-menu .dropdown-menu ul li {
    line-height: 34px;
}

/* line 961, ../sass/template/_widgets.scss */
.vertical-menu .dropdown-menu ul li a {
    color: #414141;
}

/* line 963, ../sass/template/_widgets.scss */
.vertical-menu .dropdown-menu ul li a:hover, .vertical-menu .dropdown-menu ul li a.active {
    color: #b5a473;
}

/* line 969, ../sass/template/_widgets.scss */
.vertical-menu .dropdown-menu ul ul {
    padding-left: 15px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .vertical-menu .dropdown-menu ul ul {
    padding-right: 15px;
    padding-left: inherit;
}

/* line 974, ../sass/template/_widgets.scss */
.vertical-menu .dropdown-menu .widget-title {
    border: none;
    font-size: 16px;
    padding: 0 0 15px;
    color: #333;
}

/* line 981, ../sass/template/_widgets.scss */
.vertical-menu .dropdown-menu .woocommerce .product-wrapper {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* line 987, ../sass/template/_widgets.scss */
.vertical-menu.menu-left .dropdown-menu {
    left: 100% !important;
    right: auto !important;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .vertical-menu.menu-left .dropdown-menu {
    right: 100% !important;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .vertical-menu.menu-left .dropdown-menu {
    left: auto !important;
    right: auto;
}

/* line 993, ../sass/template/_widgets.scss */
.vertical-menu.menu-right .dropdown-menu {
    left: auto !important;
    right: 100% !important;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .vertical-menu.menu-right .dropdown-menu {
    right: auto !important;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .vertical-menu.menu-right .dropdown-menu {
    left: 100% !important;
    right: auto;
}

/* line 999, ../sass/template/_widgets.scss */
.vertical-menu .icon-ver {
    margin-right: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .vertical-menu .icon-ver {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 1005, ../sass/template/_widgets.scss */
#recentcomments > li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

/* line 1009, ../sass/template/_widgets.scss */
#recentcomments > li:first-child {
    border-top: 0;
}

/* line 1012, ../sass/template/_widgets.scss */
#recentcomments > li:last-child {
    border-bottom: 0;
}

/* line 1015, ../sass/template/_widgets.scss */
#recentcomments > li a {
    font-weight: 500;
}

/* line 1023, ../sass/template/_widgets.scss */
.widget-quicklink-menu {
    background-color: #f6f6f6;
    line-height: 35px;
}

/* line 1026, ../sass/template/_widgets.scss */
.widget-quicklink-menu .quicklink-heading {
    background-color: #333333;
    color: #ffffff !important;
    display: inline-block;
    font-size: 10px;
    margin: 0 20px 0 0;
    padding: 12px 15px 12px 25px;
    position: relative;
    text-transform: uppercase;
    font-family: "Lato";
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .widget-quicklink-menu .quicklink-heading {
    margin: 0 0 0 20px;
}

/* line 1036, ../sass/template/_widgets.scss */
.widget-quicklink-menu .quicklink-heading:before {
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 10px solid #333;
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-quicklink-menu .quicklink-heading:before {
    border-right: 10px solid #333;
    border-left: inherit;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget-quicklink-menu .quicklink-heading:before {
    left: -10px;
    right: auto;
}

/* line 1046, ../sass/template/_widgets.scss */
.widget-quicklink-menu a {
    color: #999999;
    font-size: 12px;
    font-weight: 400;
}

/* line 1050, ../sass/template/_widgets.scss */
.widget-quicklink-menu a:hover {
    color: #b5a473;
}

/* line 1057, ../sass/template/_widgets.scss */
.woo-onsale .onsale {
    display: none;
}

/* line 1060, ../sass/template/_widgets.scss */
.woo-onsale .product-sale-label {
    position: absolute;
    width: 36px;
    height: 36px;
    background-color: #fb4949;
    color: #ffffff !important;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 36px;
    font-size: 12px;
    font-weight: 400;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .woo-onsale .product-sale-label {
    left: 10px;
    right: auto;
}

/* line 1075, ../sass/template/_widgets.scss */
.widget-tabs .widget-title {
    display: inline-block;
}

/* line 1078, ../sass/template/_widgets.scss */
.widget-tabs .nav-tabs {
    border: none;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 7px;
}

/* line 1083, ../sass/template/_widgets.scss */
.widget-tabs .nav-tabs.tabs-list-v2 {
    margin: 0 0 15px;
}

/* line 1087, ../sass/template/_widgets.scss */
.widget-tabs .carousel-controls {
    top: -42px;
}

/* line 1095, ../sass/template/_widgets.scss */
.widget-infor .media .fa, .widget-infor .media .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #b5a473;
    background: #252525;
}

/* line 1107, ../sass/template/_widgets.scss */
.contant-info .title {
    margin: 0 0 20px;
    font-size: 30px;
}

/* line 1111, ../sass/template/_widgets.scss */
.contant-info .info-description {
    margin: 0 0 30px;
}

/* line 1114, ../sass/template/_widgets.scss */
.contant-info .media-heading {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
}

/* line 1119, ../sass/template/_widgets.scss */
.contant-info .media {
    margin-top: 30px;
}

/* line 1122, ../sass/template/_widgets.scss */
.contant-info .media:hover .fa {
    border-color: #f65b47;
    color: #f65b47;
}

/* line 1128, ../sass/template/_widgets.scss */
.contant-info .media-left {
    padding-right: 20px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .contant-info .media-left {
    padding-left: 20px;
    padding-right: inherit;
}

/* line 1130, ../sass/template/_widgets.scss */
.contant-info .media-left .fa {
    border: 2px solid #252525;
    border-radius: 50%;
    color: #252525;
    font-size: 25px;
    height: 58px;
    line-height: 52px;
    text-align: center;
    width: 58px;
}

/* line 1145, ../sass/template/_widgets.scss */
.widget_meta > ul,
.widget_archive > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* line 1149, ../sass/template/_widgets.scss */
.widget_meta > ul li,
.widget_archive > ul li {
    line-height: 2;
}

/* line 1155, ../sass/template/_widgets.scss */
.textwidget select {
    max-width: 100%;
}

/* line 1161, ../sass/template/_widgets.scss */
.widget_categories select,
.widget_archive select {
    height: 43px;
    padding: 6px 23px;
    width: 100%;
}

/* line 1166, ../sass/template/_widgets.scss */
.widget_categories ul,
.widget_archive ul {
    margin: 0;
}

/* line 1168, ../sass/template/_widgets.scss */
.widget_categories ul li,
.widget_archive ul li {
    line-height: 33px;
    font-size: 14px;
}

/* line 1171, ../sass/template/_widgets.scss */
.widget_categories ul li a,
.widget_archive ul li a {
    display: inline-block;
    font-size: 16px;
}

/* line 1179, ../sass/template/_widgets.scss */
.widget_pages ul {
    list-style: none;
}

/* line 1181, ../sass/template/_widgets.scss */
.widget_pages ul li {
    line-height: 33px;
}

/* line 1185, ../sass/template/_widgets.scss */
.widget_pages > ul {
    padding: 0;
    margin: 0;
}

/* line 1193, ../sass/template/_widgets.scss */
.newletters-1 .widgettitle {
    font-size: 48px;
    font-weight: 700;
    padding-bottom: 20px;
    letter-spacing: 4px;
    font-family: "Montserrat", cursive, sans-serif;
}

/* line 1202, ../sass/template/_widgets.scss */
ul.socials {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* line 1206, ../sass/template/_widgets.scss */
ul.socials li {
    display: inline-block;
    width: 16%;
    text-align: center;
    padding: 15px 0;
    border-left: 1px solid #e0e0e0;
    font-weight: 700;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl ul.socials li {
    border-right: 1px solid #e0e0e0;
    border-left: inherit;
}

/* line 1212, ../sass/template/_widgets.scss */
ul.socials li:first-child {
    border-left: none;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl ul.socials li:first-child {
    border-right: none;
    border-left: inherit;
}

/* line 1216, ../sass/template/_widgets.scss */
ul.socials li a {
    color: #605959;
}

/* line 1225, ../sass/template/_widgets.scss */
.widget_ninzio_instagram .instagram-widget .row {
    margin: 0;
}

/* line 1227, ../sass/template/_widgets.scss */
.widget_ninzio_instagram .instagram-widget .row > div {
    padding: 0;
}

/* line 1230, ../sass/template/_widgets.scss */
.widget_ninzio_instagram .instagram-widget .row a {
    position: relative;
    display: block;
    line-height: 0;
    overflow: hidden;
}

/* line 1235, ../sass/template/_widgets.scss */
.widget_ninzio_instagram .instagram-widget .row a:before {
    content: "\ee81";
    font-family: "univero-icons" !important;
    position: absolute;
    color: #ffffff !important;
    top: -50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 24px;
    opacity: 0;
    filter: alpha(opacity=0);
}

/* line 1248, ../sass/template/_widgets.scss */
.widget_ninzio_instagram .instagram-widget .row a:hover:before {
    top: 50%;
    z-index: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 1253, ../sass/template/_widgets.scss */
.widget_ninzio_instagram .instagram-widget .row a:hover img {
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

/* line 1264, ../sass/template/_widgets.scss */
.kc_single_image {
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/* line 1267, ../sass/template/_widgets.scss */
.kc_single_image .scapt {
    margin: 0 auto;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff !important;
    position: absolute;
    top: 50%;
    text-align: center;
    left: 0;
    right: 0;
    line-height: 55px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Montserrat", cursive, sans-serif;
}

@media (max-width: 480px) {
    /* line 1267, ../sass/template/_widgets.scss */
    .kc_single_image .scapt {
        font-size: 30px;
        line-height: 40px;
    }
}

/* line 1287, ../sass/template/_widgets.scss */
.kc_single_image .kc-image-overlay i {
    display: none;
}

/* line 1291, ../sass/template/_widgets.scss */
.kc_single_image img {
    display: inline-block;
}

/* line 1298, ../sass/template/_widgets.scss */
.contact-topbar-1 .textwidget .media {
    display: inline-block;
    padding-right: 22px;
    margin: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .contact-topbar-1 .textwidget .media {
    padding-left: 22px;
    padding-right: inherit;
}

/* line 1302, ../sass/template/_widgets.scss */
.contact-topbar-1 .textwidget .media .media-body {
    vertical-align: middle;
}

/* line 1303, ../sass/template/_widgets.scss */
.contact-topbar-1 .textwidget .media .media-body p {
    margin: 0;
}

/* line 1306, ../sass/template/_widgets.scss */
.contact-topbar-1 .textwidget .media .media-body .phone-info {
    color: #b5a473;
}

/* line 1318, ../sass/template/_widgets.scss */
.widget_products_categories .title_products_categories {
    text-align: center;
    top: 0;
    left: 15px;
    right: 15px;
    height: 100%;
    position: absolute;
}

/* line 1325, ../sass/template/_widgets.scss */
.widget_products_categories .title_products_categories h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 5px;
    color: #ffffff !important;
}

/* line 1333, ../sass/template/_widgets.scss */
.widget_products_categories .title_products_categories > div {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 1340, ../sass/template/_widgets.scss */
.widget_products_categories .products-grid {
    margin: -30px 0 0;
}

/* line 1342, ../sass/template/_widgets.scss */
.widget_products_categories .products-grid .product-block.grid {
    margin: 30px 0 0;
}

/* line 1346, ../sass/template/_widgets.scss */
.widget_products_categories .layout-fix {
    margin: -30px 0 0;
}

/* line 1348, ../sass/template/_widgets.scss */
.widget_products_categories .layout-fix .product-block.grid {
    margin: 30px 0 0;
}

/* line 1352, ../sass/template/_widgets.scss */
.widget_products_categories .banner-images {
    padding: 30px 0 0;
}

/* line 1361, ../sass/template/_widgets.scss */
.widget-ground-banner .b-absolute-left {
    position: absolute;
    height: 100%;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget-ground-banner .b-absolute-left {
    left: 0;
    right: auto;
}

/* line 1366, ../sass/template/_widgets.scss */
.widget-ground-banner .b-absolute-right {
    position: absolute;
    height: 100%;
}

/* line 1370, ../sass/template/_widgets.scss */
.widget-ground-banner .banner-title {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    left: 0;
}

/* line 1382, ../sass/template/_widgets.scss */
.widget-ground-banner .banner-title span {
    color: #ffffff !important;
    position: relative;
    font-family: "Montserrat", cursive, sans-serif;
    display: inline-block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 1389, ../sass/template/_widgets.scss */
.widget-ground-banner .banner-title span:after {
    content: "";
    background: url("../images/iconline1.png") no-repeat;
    width: 40px;
    height: 4px;
    margin: 0 auto;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
}

/* line 1403, ../sass/template/_widgets.scss */
.widget-ground-banner .banner-title {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

/* line 1406, ../sass/template/_widgets.scss */
.widget-ground-banner .banner-title:hover span {
    color: rgba(255, 255, 255, 0.6);
}

/* line 1411, ../sass/template/_widgets.scss */
.widget-ground-banner .image-wrapper {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

/* line 1414, ../sass/template/_widgets.scss */
.widget-ground-banner .image-wrapper:hover img {
    opacity: 0.85;
    filter: alpha(opacity=85);
}

/* line 1422, ../sass/template/_widgets.scss */
.sidebar {
    padding-left: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .sidebar {
    padding-right: 10px;
    padding-left: inherit;
}

/* line 1425, ../sass/template/_widgets.scss */
.sidebar .edr-course .edr-course__image {
    width: auto;
}

/* line 1428, ../sass/template/_widgets.scss */
.sidebar .edr-course .edr-course__image:hover img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* line 1434, ../sass/template/_widgets.scss */
.sidebar ul {
    padding: 0;
    list-style: none;
}

/* line 1437, ../sass/template/_widgets.scss */
.sidebar ul ul {
    padding-left: 18px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .sidebar ul ul {
    padding-right: 18px;
    padding-left: inherit;
}

/* line 1441, ../sass/template/_widgets.scss */
.sidebar ul > li.current-cat, .sidebar ul > li.current {
    line-height: 35px;
}

/* line 1443, ../sass/template/_widgets.scss */
.sidebar ul > li.current-cat:before, .sidebar ul > li.current:before {
    content: "\f058";
    float: left;
    font-family: "FontAwesome";
    margin-right: 10px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .sidebar ul > li.current-cat:before, .rtl .sidebar ul > li.current:before {
    float: right;
}

/* line 1454, ../sass/template/_widgets.scss */
.widget_ninzio_custom_menu {
    margin: 0;
}

/* line 1456, ../sass/template/_widgets.scss */
.widget_ninzio_custom_menu .menu-categories-container {
    background: #b5a473;
    font-size: 20px;
    font-weight: 700;
}

/* line 1460, ../sass/template/_widgets.scss */
.widget_ninzio_custom_menu .menu-categories-container ul {
    padding: 0 30px;
}

/* line 1462, ../sass/template/_widgets.scss */
.widget_ninzio_custom_menu .menu-categories-container ul li {
    line-height: 59px;
    border-bottom: 1px solid rgba(221, 221, 221, 0.3);
}

/* line 1465, ../sass/template/_widgets.scss */
.widget_ninzio_custom_menu .menu-categories-container ul li:last-child {
    border: 0;
}

/* line 1468, ../sass/template/_widgets.scss */
.widget_ninzio_custom_menu .menu-categories-container ul li a {
    color: #ffffff !important;
}

/* line 1478, ../sass/template/_widgets.scss */
.popupnewsletter-wrapper .mfp-inline-holder .mfp-content, .popuppromotion-wrapper .mfp-inline-holder .mfp-content {
    padding: 0;
    background-color: #e8fff6;
    width: 700px;
}

/* line 1482, ../sass/template/_widgets.scss */
.popupnewsletter-wrapper .mfp-inline-holder .mfp-content .mfp-close, .popuppromotion-wrapper .mfp-inline-holder .mfp-content .mfp-close {
    background: url("../images/close.png") no-repeat;
    height: 50px;
    opacity: 1;
    right: -30px;
    top: -30px;
    width: 60px;
    line-height: 61px;
}

/* line 1490, ../sass/template/_widgets.scss */
.popupnewsletter-wrapper .mfp-inline-holder .mfp-content .mfp-close:hover, .popupnewsletter-wrapper .mfp-inline-holder .mfp-content .mfp-close:active, .popuppromotion-wrapper .mfp-inline-holder .mfp-content .mfp-close:hover, .popuppromotion-wrapper .mfp-inline-holder .mfp-content .mfp-close:active {
    background: url("../images/close.png") no-repeat;
    color: #b5a473;
}

/* line 1497, ../sass/template/_widgets.scss */
.popuppromotion-wrapper .mfp-inline-holder .mfp-content {
    width: 414px;
    background-color: #F6FEFA;
}

/* line 1503, ../sass/template/_widgets.scss */
.popupnewsletter-widget {
    text-align: center;
    padding: 26px 30px 0 10px;
}

/* line 1506, ../sass/template/_widgets.scss */
.popupnewsletter-widget h3 {
    font-size: 36px;
    text-transform: uppercase;
}

/* line 1509, ../sass/template/_widgets.scss */
.popupnewsletter-widget h3:after {
    background: url("../images/mail.png") no-repeat;
    content: "";
    width: 180px;
    height: 180px;
    top: 35px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* line 1520, ../sass/template/_widgets.scss */
.popupnewsletter-widget .description {
    font-size: 16px;
    margin-bottom: 33px;
    line-height: 1.6;
}

/* line 1526, ../sass/template/_widgets.scss */
.popupnewsletter-widget .mail-form .name {
    display: none;
}

/* line 1529, ../sass/template/_widgets.scss */
.popupnewsletter-widget .mail-form .input-group .form-control, .popupnewsletter-widget .mail-form .input-group-btn {
    display: inline;
}

/* line 1532, ../sass/template/_widgets.scss */
.popupnewsletter-widget .mail-form .input-group .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    padding: 6px;
}

/* line 1539, ../sass/template/_widgets.scss */
.popupnewsletter-widget .mail-form .input-group-btn button {
    margin-top: 20px;
    position: relative;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px;
}

/* line 1549, ../sass/template/_widgets.scss */
.popupnewsletter-widget .socials {
    margin-top: 44px;
}

/* line 1551, ../sass/template/_widgets.scss */
.popupnewsletter-widget .socials a {
    color: #111;
    font-size: 10px;
    font-weight: 700;
    padding: 0 9px;
    text-transform: uppercase;
}

/* line 1557, ../sass/template/_widgets.scss */
.popupnewsletter-widget .socials a:hover {
    color: #b5a473;
}

/* line 1563, ../sass/template/_widgets.scss */
.social {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* line 1567, ../sass/template/_widgets.scss */
.social li {
    vertical-align: middle;
    padding: 0;
    margin: 0 5px;
    display: inline-block;
    font-size: 18px;
}

/* line 1577, ../sass/template/_widgets.scss */
.information .left-item {
    float: left;
    padding-right: 14px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .information .left-item {
    float: right;
}

/* line 1579, ../sass/template/_widgets.scss */
.information .left-item i {
    font-size: 40px;
    color: #bbbbbb;
    line-height: 1.1;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .information .left-item {
    padding-left: 14px;
    padding-right: inherit;
}

/* line 1586, ../sass/template/_widgets.scss */
.information .right-item {
    overflow: hidden;
    font-size: 14px;
    color: #232323;
}

/* line 1590, ../sass/template/_widgets.scss */
.information .right-item .title {
    color: #888888;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

@media (min-width: 1200px) {
    /* line 1598, ../sass/template/_widgets.scss */
    .information .col-sm-4 {
        min-width: 250px;
    }
}

/* line 1604, ../sass/template/_widgets.scss */
.widget-search .btn, .widget-search .edr-membership .edr-buy-widget__link, .edr-membership .widget-search .edr-buy-widget__link,
.widget-search .edr-membership .edr-membership-buy-link,
.edr-membership .widget-search .edr-membership-buy-link,
.widget-search .edr_membership .edr-buy-widget__link,
.edr_membership .widget-search .edr-buy-widget__link,
.widget-search .edr_membership .edr-membership-buy-link,
.edr_membership .widget-search .edr-membership-buy-link {
    padding: 13px 15px;
    background: transparent !important;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 1609, ../sass/template/_widgets.scss */
.widget-search .input-group {
    border: 1px solid #e0e0e0;
}

/* line 1611, ../sass/template/_widgets.scss */
.widget-search .input-group input {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: none;
}

/* line 1617, ../sass/template/_widgets.scss */
.terms-list {
    font-family: "Lato";
    margin: 0;
}

/* line 1620, ../sass/template/_widgets.scss */
.terms-list a {
    color: #777777;
}

/* line 1622, ../sass/template/_widgets.scss */
.terms-list a:hover, .terms-list a:active {
    color: #999999;
}

/* line 1626, ../sass/template/_widgets.scss */
.terms-list li {
    margin-bottom: 9px;
}

/* line 1631, ../sass/template/_widgets.scss */
.contact-topbar {
    border-width: 0 1px;
    border-style: solid;
    border-color: #333333;
}

/* line 1635, ../sass/template/_widgets.scss */
.contact-topbar > span {
    padding: 17px 15px;
    display: inline-block;
}

/* line 1638, ../sass/template/_widgets.scss */
.contact-topbar > span + span {
    border-left: 1px solid #333333;
    display: inline-block;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .contact-topbar > span + span {
    border-right: 1px solid #333333;
    border-left: inherit;
}

/* line 1645, ../sass/template/_widgets.scss */
.widget-social {
    margin: 0;
}

/* line 1647, ../sass/template/_widgets.scss */
.widget-social .list-social {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* line 1652, ../sass/template/_widgets.scss */
.widget-social li {
    margin-right: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .widget-social li {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 1654, ../sass/template/_widgets.scss */
.widget-social li:last-child {
    margin: 0;
}

/* line 1658, ../sass/template/_widgets.scss */
.widget-social.right {
    text-align: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .widget-social.right {
    text-align: left;
}

/* line 1663, ../sass/template/_widgets.scss */
.header-top i {
    margin-right: 6px;
    font-size: 16px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-top i {
    margin-left: 6px;
    margin-right: inherit;
}

/* line 1667, ../sass/template/_widgets.scss */
.header-top > span {
    margin-right: 30px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .header-top > span {
    margin-left: 30px;
    margin-right: inherit;
}

/* line 1672, ../sass/template/_widgets.scss */
.widget-countdown-timmer {
    text-align: center;
}

/* line 1674, ../sass/template/_widgets.scss */
.widget-countdown-timmer .title {
    font-weight: 700;
    font-size: 72px;
    color: #b5a473;
    line-height: 1.1;
    letter-spacing: -0.25px;
}

/* line 1681, ../sass/template/_widgets.scss */
.widget-countdown-timmer .description {
    font-weight: 700;
    font-size: 24px;
    color: #ffffff !important;
    line-height: 1.1;
    margin: 0 0 30px;
}

/* line 1688, ../sass/template/_widgets.scss */
.widget-countdown-timmer .times {
    color: #ffffff !important;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

/* line 1693, ../sass/template/_widgets.scss */
.widget-countdown-timmer .times > div {
    height: 100px;
    padding: 16px;
    min-width: 100px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 14px;
    margin: 0 14px;
}

/* line 1702, ../sass/template/_widgets.scss */
.widget-countdown-timmer .times > div span {
    font-size: 40px;
    display: block;
    line-height: 1.05;
}

/* line 1711, ../sass/template/_widgets.scss */
.calendar_wrap caption {
    color: #fff;
    padding: 10px;
    background: #3d3d47;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Montserrat";
    text-transform: uppercase;
}

/* line 1721, ../sass/template/_widgets.scss */
.calendar_wrap #today {
    color: #b5a473;
    font-weight: 700;
}

/* line 1725, ../sass/template/_widgets.scss */
.calendar_wrap tfoot {
    display: none;
}

/* line 1730, ../sass/template/_widgets.scss */
.widget-blog .info-bottom {
    display: none;
}

/* line 1734, ../sass/template/_widgets.scss */
.widget-blog.carousel .type-post {
    margin: 0;
}

/* line 1738, ../sass/template/_widgets.scss */
.widget-blog .post-grid .entry-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* line 1746, ../sass/template/_widgets.scss */
.widget-blogs .owl-carousel .owl-stage-outer {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* line 1753, ../sass/template/_widgets.scss */
.widget-product-categories .category-item {
    text-align: center;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* line 1758, ../sass/template/_widgets.scss */
.widget-product-categories .category-item-content {
    margin: 0;
    padding: 30px;
    z-index: 1;
}

/* line 1763, ../sass/template/_widgets.scss */
.widget-product-categories h3 {
    margin: 0 0 13px 0;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    line-height: 32px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* line 1771, ../sass/template/_widgets.scss */
.widget-product-categories h3 a {
    color: #333;
}

/* line 1773, ../sass/template/_widgets.scss */
.widget-product-categories h3 a:hover {
    color: #b5a473;
}

/* line 1778, ../sass/template/_widgets.scss */
.widget-product-categories .product-count {
    text-transform: uppercase;
    font-size: 14px;
    color: #999999;
    letter-spacing: 1.5px;
    line-height: 22px;
    position: relative;
    padding-top: 20px;
}

/* line 1786, ../sass/template/_widgets.scss */
.widget-product-categories .product-count:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    background: #e0e0e0;
    width: 104px;
    height: 1px;
    margin: 0 auto;
}

/* line 1800, ../sass/template/_widgets.scss */
.widget-content {
    position: relative;
}

/* line 3, ../sass/template/_courses.scss */
.widget-search-form.layout1 select, .widget-search-form.layout1 input {
    width: 100%;
    background: #fff !important;
    border: none;
    height: 52px;
    line-height: 50px;
    padding: 10px;
    border: 1px solid #e0e0e0;
}

/* line 11, ../sass/template/_courses.scss */
.widget-search-form.layout1 select:focus, .widget-search-form.layout1 input:focus {
    outline: none;
}

/* line 15, ../sass/template/_courses.scss */
.widget-search-form.layout1 .row {
    margin-left: -5px;
    margin-right: -5px;
}

/* line 18, ../sass/template/_courses.scss */
.widget-search-form.layout1 .row > div {
    padding-right: 5px;
    padding-left: 5px;
}

/* line 23, ../sass/template/_courses.scss */
.widget-search-form.layout1 .inner-select {
    overflow: hidden;
    border: 1px solid #e0e0e0;
    position: relative;
    background: #fff !important;
}

/* line 28, ../sass/template/_courses.scss */
.widget-search-form.layout1 .inner-select:before {
    top: 0;
    right: 0;
    width: 40px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 20px;
    text-align: center;
    z-index: 1;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .widget-search-form.layout1 .inner-select:before {
    left: 0;
    right: auto;
}

/* line 40, ../sass/template/_courses.scss */
.widget-search-form.layout1 .inner-select select {
    width: calc(100% + 30px);
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 9;
    background: transparent;
}

/* line 49, ../sass/template/_courses.scss */
.widget-search-form.layout1 .btn, .widget-search-form.layout1 .edr-membership .edr-buy-widget__link, .edr-membership .widget-search-form.layout1 .edr-buy-widget__link,
.widget-search-form.layout1 .edr-membership .edr-membership-buy-link,
.edr-membership .widget-search-form.layout1 .edr-membership-buy-link,
.widget-search-form.layout1 .edr_membership .edr-buy-widget__link,
.edr_membership .widget-search-form.layout1 .edr-buy-widget__link,
.widget-search-form.layout1 .edr_membership .edr-membership-buy-link,
.edr_membership .widget-search-form.layout1 .edr-membership-buy-link {
    width: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 52px;
}

@media (min-width: 768px) {
    /* line 55, ../sass/template/_courses.scss */
    .widget-search-form.layout1 div.submit,
    .widget-search-form.layout1 .left-search {
        float: left;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .widget-search-form.layout1 div.submit, .rtl
    .widget-search-form.layout1 .left-search {
        float: right;
    }

    /* line 59, ../sass/template/_courses.scss */
    .widget-search-form.layout1 .left-search {
        width: 85%;
    }

    /* line 62, ../sass/template/_courses.scss */
    .widget-search-form.layout1 div.submit {
        width: 15%;
        padding-left: 10px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .widget-search-form.layout1 div.submit {
        padding-right: 10px;
        padding-left: inherit;
    }
}

/* line 68, ../sass/template/_courses.scss */
.widget-search-form.layout2 {
    margin: auto;
    max-width: 630px;
}

/* line 71, ../sass/template/_courses.scss */
.widget-search-form.layout2 input, .widget-search-form.layout2 .btn, .widget-search-form.layout2 .edr-membership .edr-buy-widget__link, .edr-membership .widget-search-form.layout2 .edr-buy-widget__link,
.widget-search-form.layout2 .edr-membership .edr-membership-buy-link,
.edr-membership .widget-search-form.layout2 .edr-membership-buy-link,
.widget-search-form.layout2 .edr_membership .edr-buy-widget__link,
.edr_membership .widget-search-form.layout2 .edr-buy-widget__link,
.widget-search-form.layout2 .edr_membership .edr-membership-buy-link,
.edr_membership .widget-search-form.layout2 .edr-membership-buy-link {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* line 74, ../sass/template/_courses.scss */
.widget-search-form.layout2 .btn, .widget-search-form.layout2 .edr-membership .edr-buy-widget__link, .edr-membership .widget-search-form.layout2 .edr-buy-widget__link,
.widget-search-form.layout2 .edr-membership .edr-membership-buy-link,
.edr-membership .widget-search-form.layout2 .edr-membership-buy-link,
.widget-search-form.layout2 .edr_membership .edr-buy-widget__link,
.edr_membership .widget-search-form.layout2 .edr-buy-widget__link,
.widget-search-form.layout2 .edr_membership .edr-membership-buy-link,
.edr_membership .widget-search-form.layout2 .edr-membership-buy-link {
    color: #1f2227;
    padding-left: 18px;
    padding-right: 18px;
}

/* line 82, ../sass/template/_courses.scss */
.edr-question .label {
    font-size: 16px;
    display: inline-block;
    margin: 0 0 10px;
    padding: 0;
}

/* line 90, ../sass/template/_courses.scss */
.widget-course-categories .category-wrapper a {
    z-index: 1000;
}

/* line 95, ../sass/template/_courses.scss */
.widget-course-categories.style1 {
    text-align: center;
}

/* line 97, ../sass/template/_courses.scss */
.widget-course-categories.style1 .category-wrapper a {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    padding: 43px 20px 36px;
    position: relative;
    z-index: 1000;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
    min-height: 165px;
}

/* line 106, ../sass/template/_courses.scss */
.widget-course-categories.style1 .category-wrapper a:before {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    background: #b5a473;
}

/* line 117, ../sass/template/_courses.scss */
.widget-course-categories.style1 .category-wrapper a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* line 122, ../sass/template/_courses.scss */
.widget-course-categories.style1 .icon {
    color: #fff !important;
    line-height: 45px;
    display: inline-block;
}

/* line 126, ../sass/template/_courses.scss */
.widget-course-categories.style1 .icon i {
    line-height: 1;
    font-size: 24px;
}

/* line 131, ../sass/template/_courses.scss */
.widget-course-categories.style1 h3 {
    margin: 17px 0 0;
    font-weight: 700;
    font-size: 15px;
    color: #fff !important;
}

/* line 143, ../sass/template/_courses.scss */
.edr-course {
    padding: 0;
    margin: 0;
}

/* line 146, ../sass/template/_courses.scss */
.edr-course.edr-course-grid {
    border: 1px solid #e0e0e0;
}

/* line 150, ../sass/template/_courses.scss */
.edr-course:hover .edr-course__image a:before {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 154, ../sass/template/_courses.scss */
.edr-course .edr-course__header {
    margin: 0;
}

/* line 157, ../sass/template/_courses.scss */
.edr-course .edr-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
}

/* line 160, ../sass/template/_courses.scss */
.edr-course .edr-thumbnail-wrapper .duration {
    position: absolute;
    z-index: 2;
    top: 4px;
    right: 5px;
    display: inline-block;
    background: #b5a473;
    color: #fff !important;
    font-size: 10px;
    font-weight: 500;
    padding: 3px 10px;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .edr-course .edr-thumbnail-wrapper .duration {
    left: 5px;
    right: auto;
}

/* line 171, ../sass/template/_courses.scss */
.edr-course .edr-thumbnail-wrapper .duration i {
    margin-right: 6px;
    font-size: 16px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course .edr-thumbnail-wrapper .duration i {
    margin-left: 6px;
    margin-right: inherit;
}

/* line 177, ../sass/template/_courses.scss */
.edr-course .edr-course__content {
    border: 0;
}

/* line 180, ../sass/template/_courses.scss */
.edr-course .edr-course__image {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 409px;
}

/* line 185, ../sass/template/_courses.scss */
.edr-course .edr-course__image img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* line 188, ../sass/template/_courses.scss */
.edr-course .edr-course__image a {
    display: block;
    position: relative;
}

/* line 192, ../sass/template/_courses.scss */
.edr-course .edr-course__image:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

/* line 196, ../sass/template/_courses.scss */
.edr-course .edr-teacher {
    text-transform: uppercase;
    font-family: "Montserrat";
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 24px;
    margin: 0 0 7px 0;
    font-weight: 500;
    color: #999999;
}

/* line 205, ../sass/template/_courses.scss */
.edr-course .edr-teacher .avatar-img {
    display: table-cell;
    overflow: hidden;
}

/* line 208, ../sass/template/_courses.scss */
.edr-course .edr-teacher .avatar-img img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 0;
}

/* line 214, ../sass/template/_courses.scss */
.edr-course .edr-teacher .description {
    padding-left: 7px;
    overflow: hidden;
    display: table-cell;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course .edr-teacher .description {
    padding-right: 7px;
    padding-left: inherit;
}

/* line 218, ../sass/template/_courses.scss */
.edr-course .edr-teacher .description .author-title {
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 400;
    font-family: "Lato", serif;
    margin: 5px 0;
}

/* line 224, ../sass/template/_courses.scss */
.edr-course .edr-teacher .description .author-title a {
    color: #777777;
}

/* line 226, ../sass/template/_courses.scss */
.edr-course .edr-teacher .description .author-title a:active, .edr-course .edr-teacher .description .author-title a:hover {
    color: #b5a473;
}

/* line 235, ../sass/template/_courses.scss */
.edr-course .edr-course__price {
    color: #fff !important;
    position: absolute;
    top: 23px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    right: 0;
    display: block;
    margin: 0;
    padding: 0;
    background: #b5a473;
    font-family: "Montserrat";
}

/* line 248, ../sass/template/_courses.scss */
.edr-course .edr-course__price .letter-0 {
    position: relative;
    padding: 5px 15px;
    display: block;
    height: 40px;
}

/* line 253, ../sass/template/_courses.scss */
.edr-course .edr-course__price .letter-0:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    top: 0;
    height: 0;
    left: 0;
    margin-left: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #b5a473;
}

/* line 266, ../sass/template/_courses.scss */
.edr-course .edr-course__price .letter-0:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 0;
    left: 0;
    margin-left: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #b5a473;
}

/* line 280, ../sass/template/_courses.scss */
.edr-course .edr-course__price i {
    margin-right: 2px;
    font-size: 16px;
    vertical-align: baseline;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course .edr-course__price i {
    margin-left: 2px;
    margin-right: inherit;
}

/* line 285, ../sass/template/_courses.scss */
.edr-course .edr-course__price.free-label {
    padding: 5px 15px;
    display: block;
    height: 40px;
}

/* line 289, ../sass/template/_courses.scss */
.edr-course .edr-course__price.free-label:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    top: 0;
    height: 0;
    left: 0;
    margin-left: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #b5a473;
}

/* line 302, ../sass/template/_courses.scss */
.edr-course .edr-course__price.free-label:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 0;
    left: 0;
    margin-left: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #b5a473;
}

/* line 317, ../sass/template/_courses.scss */
.edr-course .edr-course__title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 32px;
    font-weight: 500;
}

/* line 323, ../sass/template/_courses.scss */
.edr-course .edr-course__title a {
    color: #333;
}

/* line 325, ../sass/template/_courses.scss */
.edr-course .edr-course__title a:hover, .edr-course .edr-course__title a:focus, .edr-course .edr-course__title a:active {
    color: #b5a473;
}

/* line 330, ../sass/template/_courses.scss */
.edr-course .category a {
    font-size: 12px;
    font-weight: 500;
    color: #777777;
}

/* line 334, ../sass/template/_courses.scss */
.edr-course .category a:hover, .edr-course .category a:active {
    color: #8c8c8c;
}

/* line 340, ../sass/template/_courses.scss */
.edr-course .review-stars-rated > * {
    display: inline-block;
    vertical-align: middle;
}

/* line 343, ../sass/template/_courses.scss */
.edr-course .review-stars-rated > * + * {
    margin-left: 8px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course .review-stars-rated > * + * {
    margin-right: 8px;
    margin-left: inherit;
}

/* line 350, ../sass/template/_courses.scss */
.edr-course-grid {
    margin-bottom: 60px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 350, ../sass/template/_courses.scss */
    .edr-course-grid {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 350, ../sass/template/_courses.scss */
    .edr-course-grid {
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    /* line 350, ../sass/template/_courses.scss */
    .edr-course-grid {
        margin-bottom: 30px;
    }
}

/* line 361, ../sass/template/_courses.scss */
.edr-course-grid .edr-course__header {
    padding: 35px 40px 40px;
}

@media (max-width: 640px) {
    /* line 361, ../sass/template/_courses.scss */
    .edr-course-grid .edr-course__header {
        padding: 20px;
    }
}

/* line 367, ../sass/template/_courses.scss */
.edr-course-grid .meta-data {
    background: #f3f3f3;
    padding: 10px 30px 10px 45px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .edr-course-grid .meta-data {
    padding: 10px 45px 10px 30px;
}

/* line 372, ../sass/template/_courses.scss */
.edr-course-grid .header-meta .entry-info {
    color: #999999;
    background: transparent;
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* line 382, ../sass/template/_courses.scss */
.edr-course-grid .entry-info .edr-registered,
.edr-course-grid .entry-info .edr-comments {
    font-size: 12px;
    font-family: "Montserrat";
}

/* line 386, ../sass/template/_courses.scss */
.edr-course-grid .entry-info .edr-registered i,
.edr-course-grid .entry-info .edr-comments i {
    display: inline-block;
    font-size: 16px;
    margin: 5px 2px 0 0;
}

/* line 392, ../sass/template/_courses.scss */
.edr-course-grid .entry-info > div {
    display: inline-block;
    vertical-align: top;
}

/* line 395, ../sass/template/_courses.scss */
.edr-course-grid .entry-info > div + div {
    margin-left: 15px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-grid .entry-info > div + div {
    margin-right: 15px;
    margin-left: inherit;
}

/* line 399, ../sass/template/_courses.scss */
.edr-course-grid .entry-info .edr-comment i {
    vertical-align: middle;
}

/* line 403, ../sass/template/_courses.scss */
.edr-course-grid .course-review {
    line-height: 1.4;
}

/* line 405, ../sass/template/_courses.scss */
.edr-course-grid .course-review .rating-print-total {
    display: none;
}

/* line 410, ../sass/template/_courses.scss */
.edr-course-list {
    margin: 0 0 52px 0;
    padding: 0;
    border: 1px solid #e0e0e0;
}

@media (max-width: 1200px) {
    /* line 410, ../sass/template/_courses.scss */
    .edr-course-list {
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 410, ../sass/template/_courses.scss */
    .edr-course-list {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 410, ../sass/template/_courses.scss */
    .edr-course-list {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    /* line 410, ../sass/template/_courses.scss */
    .edr-course-list {
        margin-bottom: 20px;
    }
}

/* line 426, ../sass/template/_courses.scss */
.edr-course-list .edr-course__header {
    margin: 0 0 20px 0;
    padding: 30px 20px 0 5px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__header {
    padding: 30px 5px 0 20px;
}

@media (max-width: 1200px) {
    /* line 426, ../sass/template/_courses.scss */
    .edr-course-list .edr-course__header {
        padding: 20px 20px 0 0;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .edr-course-list .edr-course__header {
        padding: 20px 0 0 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 426, ../sass/template/_courses.scss */
    .edr-course-list .edr-course__header {
        padding: 20px 20px 0 0;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .edr-course-list .edr-course__header {
        padding: 20px 0 0 20px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 426, ../sass/template/_courses.scss */
    .edr-course-list .edr-course__header {
        padding: 20px 20px 0 20px;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .edr-course-list .edr-course__header {
        padding: 20px 20px 0 20px;
    }
}

@media (max-width: 640px) {
    /* line 426, ../sass/template/_courses.scss */
    .edr-course-list .edr-course__header {
        padding: 20px 20px 0 20px;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .edr-course-list .edr-course__header {
        padding: 20px 20px 0 20px;
    }
}

/* line 442, ../sass/template/_courses.scss */
.edr-course-list .meta-data {
    border-top: 1px solid #e0e0e0;
    padding: 20px 0 0;
    margin: 0 30px 0 0;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .meta-data {
    margin: 0 0 0 30px;
}

@media only screen and (max-width: 767px) {
    /* line 442, ../sass/template/_courses.scss */
    .edr-course-list .meta-data {
        margin: 0;
        text-align: center;
        padding: 15px 20px 0 20px;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .edr-course-list .meta-data {
        padding: 15px 20px 0 20px;
    }
}

@media (max-width: 640px) {
    /* line 442, ../sass/template/_courses.scss */
    .edr-course-list .meta-data {
        margin: 0;
        text-align: center;
        padding: 15px 20px 0 20px;
    }

    /* line 35, ../sass/rtl/_rtl.scss */
    .rtl .edr-course-list .meta-data {
        padding: 15px 20px 0 20px;
    }
}

/* line 457, ../sass/template/_courses.scss */
.edr-course-list .course-review {
    margin-left: 30px;
    margin-top: -2px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .course-review {
    margin-right: 30px;
    margin-left: inherit;
}

/* line 461, ../sass/template/_courses.scss */
.edr-course-list .entry-info {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
}

/* line 467, ../sass/template/_courses.scss */
.edr-course-list .entry-info li span {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

/* line 475, ../sass/template/_courses.scss */
.edr-course-list .edr-course__price {
    right: auto;
    left: 0;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price {
    right: 0;
    left: auto;
}

/* line 479, ../sass/template/_courses.scss */
.edr-course-list .edr-course__price .letter-0:after {
    left: auto;
    right: 0;
    margin-right: -20px;
    margin-left: 0px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price .letter-0:after {
    right: auto;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price .letter-0:after {
    left: 0;
    right: auto;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price .letter-0:after {
    margin-left: -20px;
    margin-right: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price .letter-0:after {
    margin-right: 0px;
    margin-left: inherit;
}

/* line 485, ../sass/template/_courses.scss */
.edr-course-list .edr-course__price .letter-0:before {
    left: auto;
    right: 0;
    margin-right: -20px;
    margin-left: 0px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price .letter-0:before {
    right: auto;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price .letter-0:before {
    left: 0;
    right: auto;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price .letter-0:before {
    margin-left: -20px;
    margin-right: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price .letter-0:before {
    margin-right: 0px;
    margin-left: inherit;
}

/* line 493, ../sass/template/_courses.scss */
.edr-course-list .edr-course__price.free-label:after {
    left: auto;
    right: 0;
    margin-right: -20px;
    margin-left: 0px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price.free-label:after {
    right: auto;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price.free-label:after {
    left: 0;
    right: auto;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price.free-label:after {
    margin-left: -20px;
    margin-right: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price.free-label:after {
    margin-right: 0px;
    margin-left: inherit;
}

/* line 499, ../sass/template/_courses.scss */
.edr-course-list .edr-course__price.free-label:before {
    left: auto;
    right: 0;
    margin-right: -20px;
    margin-left: 0px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price.free-label:before {
    right: auto;
    left: auto;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price.free-label:before {
    left: 0;
    right: auto;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price.free-label:before {
    margin-left: -20px;
    margin-right: inherit;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-course-list .edr-course__price.free-label:before {
    margin-right: 0px;
    margin-left: inherit;
}

/* line 507, ../sass/template/_courses.scss */
.edr-course-list .header-meta {
    padding: 0;
}

/* line 510, ../sass/template/_courses.scss */
.edr-course-list .edr-teacher {
    margin-bottom: 15px;
}

/* line 513, ../sass/template/_courses.scss */
.edr-course-list .edr-course__title {
    font-size: 26px;
    font-weight: 500;
    line-height: 38px;
    margin: 0px 0 10px;
}

/* line 519, ../sass/template/_courses.scss */
.edr-course-list .meta-excerpt {
    margin: 0;
    padding: 0;
}

/* line 525, ../sass/template/_courses.scss */
.edr-course-list-simple .edr-course__title {
    margin: 0 0 4px;
    font-size: 14px;
}

/* line 529, ../sass/template/_courses.scss */
.edr-course-list-simple .edr-course__price {
    font-size: 14px;
    font-weight: 500;
    font-family: "Lato";
    background: transparent !important;
    color: #b5a473;
    padding: 0;
    text-transform: uppercase;
}

/* line 537, ../sass/template/_courses.scss */
.edr-course-list-simple .edr-course__price.free-label {
    color: #54b551;
}

/* line 544, ../sass/template/_courses.scss */
.list-v1 .course-item:last-child .edr-course-list-v1 {
    margin: 0;
}

/* line 551, ../sass/template/_courses.scss */
.widget_ninzio_courses .course-item:last-child .edr-course {
    margin: 0;
}

/* line 556, ../sass/template/_courses.scss */
.edr-course-list-v1 {
    padding: 0 0 25px;
    border-bottom: 1px solid #e0e0e0;
}

/* line 559, ../sass/template/_courses.scss */
.edr-course-list-v1 .space {
    font-size: 17px;
    padding: 0 1px;
}

/* line 563, ../sass/template/_courses.scss */
.edr-course-list-v1 .edr-course__price {
    color: #b5a473;
    background: transparent;
    font-size: 17px;
    font-weight: 500;
    padding: 0;
    word-spacing: -2px;
}

/* line 570, ../sass/template/_courses.scss */
.edr-course-list-v1 .edr-course__price.free-label {
    color: #54b551;
    text-transform: capitalize;
}

/* line 575, ../sass/template/_courses.scss */
.edr-course-list-v1 .edr-course__title {
    margin: 0 0 10px;
}

/* line 579, ../sass/template/_courses.scss */
.ninzio-bookmark-remove {
    font-size: 16px;
    height: 35px;
    line-height: 31px;
    padding: 0;
    text-align: center;
    width: 35px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    display: inline-block;
    background: #f65b47;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    color: #fff !important;
}

/* line 592, ../sass/template/_courses.scss */
.ninzio-bookmark-remove:hover, .ninzio-bookmark-remove:active {
    color: #fff !important;
    background: #f5452f !important;
}

/* line 596, ../sass/template/_courses.scss */
.ninzio-bookmark-remove.loading {
    position: relative;
}

/* line 598, ../sass/template/_courses.scss */
.ninzio-bookmark-remove.loading:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, 0.5) url("../images/loading-quick.gif") no-repeat scroll center center/20px auto;
}

/* line 609, ../sass/template/_courses.scss */
.bookmark-item {
    overflow: hidden;
    padding: 30px 30px 0;
}

/* line 612, ../sass/template/_courses.scss */
.bookmark-item:nth-child(2n) {
    background: #f5f5f5;
}

/* line 616, ../sass/template/_courses.scss */
.widget-courses-bookmark {
    border: 1px solid #f5f5f5;
}

/* line 620, ../sass/template/_courses.scss */
.widget-courses.grid .edr-course {
    margin-bottom: 40px;
}

/* line 626, ../sass/template/_courses.scss */
.widget-courses .course-item:last-child .edr-course {
    margin: 0;
}

/* line 632, ../sass/template/_courses.scss */
.ninzio-teacher-inner {
    text-align: center;
}

/* line 634, ../sass/template/_courses.scss */
.ninzio-teacher-inner.style1 {
    margin-bottom: 1px;
}

/* line 637, ../sass/template/_courses.scss */
.ninzio-teacher-inner .author-avatar {
    position: relative;
    overflow: hidden;
}

/* line 640, ../sass/template/_courses.scss */
.ninzio-teacher-inner .author-avatar img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* line 643, ../sass/template/_courses.scss */
.ninzio-teacher-inner .author-avatar:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

/* line 646, ../sass/template/_courses.scss */
.ninzio-teacher-inner .author-avatar .avatar {
    width: 100%;
}

@media (max-width: 1200px) {
    /* line 646, ../sass/template/_courses.scss */
    .ninzio-teacher-inner .author-avatar .avatar {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    /* line 646, ../sass/template/_courses.scss */
    .ninzio-teacher-inner .author-avatar .avatar {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
        /* Here, Skeleton sets the rules for anything less than 960px
    and at least the size of the Ipad screen. */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 646, ../sass/template/_courses.scss */
    .ninzio-teacher-inner .author-avatar .avatar {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    /* line 646, ../sass/template/_courses.scss */
    .ninzio-teacher-inner .author-avatar .avatar {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    /* line 646, ../sass/template/_courses.scss */
    .ninzio-teacher-inner .author-avatar .avatar {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

/* line 670, ../sass/template/_courses.scss */
.ninzio-teacher-inner .infor {
    padding: 30px;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #e0e0e0;
}

/* line 677, ../sass/template/_courses.scss */
.ninzio-teacher-inner .socials a {
    position: relative;
    z-index: 9;
    text-align: center;
    margin: 0 3px;
    display: inline-block;
    font-size: 14px;
    color: #999999;
    line-height: 37px;
    width: 37px;
    height: 37px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #eaeaea;
}

/* line 689, ../sass/template/_courses.scss */
.ninzio-teacher-inner .socials a:hover, .ninzio-teacher-inner .socials a:focus, .ninzio-teacher-inner .socials a:active {
    color: #FFFFFF !important;
    background: #b5a473;
}

/* line 697, ../sass/template/_courses.scss */
.ninzio-teacher-inner .name {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px 0;
    padding: 0;
}

/* line 702, ../sass/template/_courses.scss */
.ninzio-teacher-inner .name a {
    color: #333;
}

/* line 704, ../sass/template/_courses.scss */
.ninzio-teacher-inner .name a:hover, .ninzio-teacher-inner .name a:active, .ninzio-teacher-inner .name a:focus {
    color: #b5a473;
}

/* line 709, ../sass/template/_courses.scss */
.ninzio-teacher-inner .job {
    text-transform: uppercase;
    font-family: "Montserrat";
    font-size: 13px;
    color: #999999;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 24px;
    margin-bottom: 15px;
}

/* line 719, ../sass/template/_courses.scss */
.ninzio-teacher-inner .description {
    margin: 0 0 20px;
}

/* line 722, ../sass/template/_courses.scss */
.ninzio-teacher-inner .btn, .ninzio-teacher-inner .edr-membership .edr-buy-widget__link, .edr-membership .ninzio-teacher-inner .edr-buy-widget__link,
.ninzio-teacher-inner .edr-membership .edr-membership-buy-link,
.edr-membership .ninzio-teacher-inner .edr-membership-buy-link,
.ninzio-teacher-inner .edr_membership .edr-buy-widget__link,
.edr_membership .ninzio-teacher-inner .edr-buy-widget__link,
.ninzio-teacher-inner .edr_membership .edr-membership-buy-link,
.edr_membership .ninzio-teacher-inner .edr-membership-buy-link {
    padding: 10px 25px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-weight: 500;
}

/* line 728, ../sass/template/_courses.scss */
.ninzio-teacher-inner:hover .socials {
    bottom: 20px;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 732, ../sass/template/_courses.scss */
.ninzio-teacher-inner:hover .author-avatar:before {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* line 738, ../sass/template/_courses.scss */
.rating-print-wrapper .review-stars.filled:before {
    display: none;
}

/* line 741, ../sass/template/_courses.scss */
.rating-print-wrapper {
    height: 16px;
    line-height: 16px;
    position: relative;
    cursor: pointer;
    letter-spacing: -2px;
}

/* line 747, ../sass/template/_courses.scss */
.rating-print-wrapper .review-stars {
    color: #fdb900;
    display: inline-block;
    height: 16px;
    line-height: 16px;
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

/* line 755, ../sass/template/_courses.scss */
.rating-print-wrapper .review-stars > li {
    display: inline-block;
    float: none;
    height: 16px;
    width: 13px;
    margin: 0 2px;
}

/* line 761, ../sass/template/_courses.scss */
.rating-print-wrapper .review-stars > li span {
    font-size: 16px;
    height: auto;
    text-decoration: none;
    width: auto;
}

/* line 766, ../sass/template/_courses.scss */
.rating-print-wrapper .review-stars > li span:before {
    height: auto;
    width: auto;
}

/* line 772, ../sass/template/_courses.scss */
.rating-print-wrapper .review-stars + .review-stars {
    color: #fdb900;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    white-space: nowrap;
    z-index: 10;
    height: 16px;
    font-family: inherit;
    font-size: 16px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .rating-print-wrapper .review-stars + .review-stars {
    right: 0;
    left: auto;
}

/* line 786, ../sass/template/_courses.scss */
.add-review {
    padding: 30px;
    background: #eeeeee;
}

/* line 789, ../sass/template/_courses.scss */
.add-review .title {
    margin: 0 0 20px;
    text-transform: uppercase;
    font-size: 18px;
}

/* line 794, ../sass/template/_courses.scss */
.add-review .des {
    margin: 0 0 20px;
}

/* line 798, ../sass/template/_courses.scss */
.add-review form label {
    display: block;
}

/* line 801, ../sass/template/_courses.scss */
.add-review form > div {
    margin: 0 0 15px;
}

/* line 804, ../sass/template/_courses.scss */
.add-review form textarea,
.add-review form input {
    min-width: 500px;
    border: 1px solid #e0e0e0;
    max-width: 100%;
    padding: 5px 10px;
}

/* line 811, ../sass/template/_courses.scss */
.add-review form textarea {
    width: 100%;
}

/* line 818, ../sass/template/_courses.scss */
#course-review .review-title {
    font-size: 16px;
    text-transform: uppercase;
    color: #999999;
    font-weight: 700;
    margin: 0 0 25px;
}

/* line 825, ../sass/template/_courses.scss */
#course-review .title-rating {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

/* line 830, ../sass/template/_courses.scss */
#course-review .average-rating {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
}

/* line 834, ../sass/template/_courses.scss */
#course-review .average-rating .rating-overall {
    width: 184px;
    height: 215px;
    border: 3px solid #fdb900;
    overflow: hidden;
    font-weight: 500;
    text-align: center;
    padding: 20px 10px;
    max-width: 22%;
    -webkit-flex-basis: 22%;
    -moz-flex-basis: 22%;
    -ms-flex-basis: 22%;
    flex-basis: 22%;
}

@media (max-width: 640px) {
    /* line 834, ../sass/template/_courses.scss */
    #course-review .average-rating .rating-overall {
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -moz-flex-basis: 100%;
        -ms-flex-basis: 100%;
        flex-basis: 100%;
        margin: 0 0 20px 0;
    }
}

/* line 848, ../sass/template/_courses.scss */
#course-review .average-rating .rating-overall .average-value {
    color: #333;
    line-height: normal;
    font-size: 100px;
    font-weight: 900;
}

/* line 854, ../sass/template/_courses.scss */
#course-review .average-rating .rating-overall .count-rating {
    font-size: 11px;
    text-transform: uppercase;
    color: #999999;
    font-weight: 600;
    letter-spacing: 1px;
}

/* line 861, ../sass/template/_courses.scss */
#course-review .average-rating .rating-overall .review-stars-rated {
    margin-top: -10px;
}

/* line 866, ../sass/template/_courses.scss */
#course-review .rating-detailed {
    max-width: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    -ms-flex-basis: 60%;
    flex-basis: 60%;
    margin: 0 0 0 75px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl #course-review .rating-detailed {
    margin: 0 75px 0 0;
}

@media (max-width: 640px) {
    /* line 866, ../sass/template/_courses.scss */
    #course-review .rating-detailed {
        -webkit-box-flex: 1 100%;
        -moz-box-flex: 1 100%;
        -webkit-flex: 1 100%;
        -ms-flex: 1 100%;
        flex: 1 100%;
        max-width: 100%;
        margin: 0;
    }
}

/* line 876, ../sass/template/_courses.scss */
#course-review .skill {
    overflow: hidden;
    margin: 0 0 18px;
    color: #999999;
}

/* line 880, ../sass/template/_courses.scss */
#course-review .skill > * {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}

/* line 885, ../sass/template/_courses.scss */
#course-review .skill .key {
    min-width: 50px;
    text-transform: uppercase;
    font-size: 13px;
    color: #999999;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* line 893, ../sass/template/_courses.scss */
#course-review .skill .progress {
    margin: 0 15px;
    min-width: 210px;
    height: 10px;
}

/* line 898, ../sass/template/_courses.scss */
#course-review .skill .value-percent {
    background-color: #e5e5e5;
    text-align: center;
    color: #e5e5e5;
    height: 10px;
}

/* line 904, ../sass/template/_courses.scss */
#course-review .skill .progress-bar {
    height: 10px;
    background-color: #b5a473;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

/* line 912, ../sass/template/_courses.scss */
#course-review .comment {
    margin: 0 0 30px;
    padding: 56px 46px;
    background: #f5f5f5;
}

@media (max-width: 640px) {
    /* line 912, ../sass/template/_courses.scss */
    #course-review .comment {
        padding: 20px;
    }
}

/* line 919, ../sass/template/_courses.scss */
#course-review .comment:last-child {
    border: none;
    margin: 0;
}

/* line 923, ../sass/template/_courses.scss */
#course-review .comment img.avatar {
    margin: 0;
}

/* line 926, ../sass/template/_courses.scss */
#course-review .comment div.ninzio-avatar {
    padding-right: 30px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #course-review .comment div.ninzio-avatar {
    padding-left: 30px;
    padding-right: inherit;
}

@media (max-width: 640px) {
    /* line 926, ../sass/template/_courses.scss */
    #course-review .comment div.ninzio-avatar {
        display: block;
        margin: 0 0 20px;
        padding-right: 0;
        width: 100%;
    }
}

/* line 935, ../sass/template/_courses.scss */
#course-review .comment .media {
    margin: 0;
}

/* line 938, ../sass/template/_courses.scss */
#course-review .comment .ninzio-author {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px 0;
    text-transform: capitalize;
    color: #333;
    font-family: "Montserrat";
}

/* line 946, ../sass/template/_courses.scss */
#course-review .comment time {
    font-size: 12px;
    font-weight: 500;
}

/* line 950, ../sass/template/_courses.scss */
#course-review .comment .star-rating {
    margin: 0;
}

/* line 953, ../sass/template/_courses.scss */
#course-review .comment .comment-text {
    padding: 0;
    margin: 0;
}

/* line 956, ../sass/template/_courses.scss */
#course-review .comment .comment-text p {
    margin-bottom: 0;
    display: table;
}

/* line 959, ../sass/template/_courses.scss */
#course-review .comment .comment-text p > * {
    display: table-cell;
    vertical-align: middle;
    padding-right: 7px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #course-review .comment .comment-text p > * {
    padding-left: 7px;
    padding-right: inherit;
}

/* line 966, ../sass/template/_courses.scss */
#course-review .comment .comment-text .comment-body div {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #999999;
    margin-bottom: 10px;
}

/* line 978, ../sass/template/_courses.scss */
.course-features {
    list-style: none;
    padding: 10px 30px;
    margin: 0;
    background: #f5f5f5;
    text-transform: uppercase;
    font-family: "Montserrat";
}

/* line 985, ../sass/template/_courses.scss */
.course-features .feature-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #b5a473;
    margin: 0 0 20px;
}

/* line 991, ../sass/template/_courses.scss */
.course-features li {
    padding: 14px 0;
    border-top: 1px solid #e0e0e0;
}

/* line 994, ../sass/template/_courses.scss */
.course-features li span {
    font-size: 11px;
    text-transform: uppercase;
    color: #999999;
    font-weight: 500;
}

/* line 999, ../sass/template/_courses.scss */
.course-features li span + span {
    color: #555555;
    font-size: 14px;
    text-transform: capitalize;
    margin-left: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .course-features li span + span {
    margin-right: 10px;
    margin-left: inherit;
}

/* line 1006, ../sass/template/_courses.scss */
.course-features li:first-child {
    border: 0;
}

/* line 1010, ../sass/template/_courses.scss */
.course-features i {
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    min-width: 14px;
    margin-right: 12px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .course-features i {
    margin-left: 12px;
    margin-right: inherit;
}

/* line 1019, ../sass/template/_courses.scss */
.widget-title-special .edr-buy-widget {
    margin: 0;
}

/* line 1022, ../sass/template/_courses.scss */
.widget-title-special .edr-buy-widget__price {
    display: none;
}

/* line 1025, ../sass/template/_courses.scss */
.widget-title-special .edr-buy-widget__link {
    background: #b5a473;
    font-size: 14px;
    font-weight: 500;
    font-family: "Lato";
    text-transform: uppercase;
    padding: 18px;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    color: #999999;
    display: block;
}

/* line 1036, ../sass/template/_courses.scss */
.widget-title-special .edr-buy-widget__link:hover, .widget-title-special .edr-buy-widget__link:active {
    background: #14b077;
}

/* line 1042, ../sass/template/_courses.scss */
.widget-special-features .widget-price {
    padding: 20px 0;
}

/* line 1044, ../sass/template/_courses.scss */
.widget-special-features .widget-price > * {
    display: inline-block;
    vertical-align: middle;
}

/* line 1048, ../sass/template/_courses.scss */
.widget-special-features .widget-price .edr-buy-widget__link {
    display: none;
}

/* line 1051, ../sass/template/_courses.scss */
.widget-special-features .widget-price .price-label {
    font-weight: 14px;
    font-weight: 500;
    font-family: "Lato";
    text-transform: uppercase;
}

/* line 1057, ../sass/template/_courses.scss */
.widget-special-features .widget-price .edr-buy-widget__price {
    font-size: 26px;
    font-weight: 500;
    color: #999999;
    font-family: "Lato";
}

/* line 1063, ../sass/template/_courses.scss */
.widget-special-features .widget-price .edr-buy-widget {
    margin: 0;
}

/* line 1067, ../sass/template/_courses.scss */
.widget-special-features .widget-content {
    padding: 0 30px 10px;
    border-style: solid;
    border-color: #e0e0e0;
    border-width: 0 1px 1px;
}

/* line 1074, ../sass/template/_courses.scss */
.single-lesson {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 767px) {
    /* line 1079, ../sass/template/_courses.scss */
    .single-lesson {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* line 1085, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-description {
    color: #777777;
}

/* line 1088, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-head {
    text-align: inherit;
}

/* line 1091, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-thumb {
    margin: 0;
}

/* line 1093, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-thumb .course-gallery {
    overflow: hidden;
}

/* line 1095, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-thumb .course-gallery .owl-carousel {
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
}

/* line 1099, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-thumb .course-gallery .owl-carousel.course-gallery-index {
    margin-bottom: 0;
}

/* line 1102, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-thumb .course-gallery .owl-carousel .owl-item {
    padding-left: 5px;
    padding-right: 5px;
}

/* line 1106, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-thumb .course-gallery .owl-carousel .thumb-link {
    overflow: hidden;
}

/* line 1112, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-thumb:hover img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* line 1118, ../sass/template/_courses.scss */
.detail-post .edr_course .meta > * {
    display: inline-block;
    vertical-align: middle;
}

/* line 1122, ../sass/template/_courses.scss */
.detail-post .edr_course .meta .edr-buy-widget {
    margin: 0;
}

/* line 1125, ../sass/template/_courses.scss */
.detail-post .edr_course .meta .price-label {
    font-size: 12px;
    font-weight: 500;
    color: #969696;
}

/* line 1130, ../sass/template/_courses.scss */
.detail-post .edr_course .meta .edr-buy-widget__price {
    font-size: 30px;
    color: #b5a473;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    word-spacing: -9px;
}

/* line 1139, ../sass/template/_courses.scss */
.detail-post .edr_course .meta .edr-buy-widget__link {
    background: #b5a473;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 30px;
    margin-left: 10px;
    display: inline-block;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .meta .edr-buy-widget__link {
    margin-right: 10px;
    margin-left: inherit;
}

/* line 1150, ../sass/template/_courses.scss */
.detail-post .edr_course .detail-content {
    border-top: 1px solid #e0e0e0;
    margin: 50px 0 0;
    padding-top: 40px;
}

/* line 1154, ../sass/template/_courses.scss */
.detail-post .edr_course .detail-content > * {
    overflow: hidden;
}

/* line 1158, ../sass/template/_courses.scss */
.detail-post .edr_course .detail-content .course-instructors .title-tab {
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
}

/* line 1165, ../sass/template/_courses.scss */
.detail-post .edr_course .title-tab {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #999999;
    margin: 0 0 30px;
    letter-spacing: 1.5px;
}

/* line 1173, ../sass/template/_courses.scss */
.detail-post .edr_course .course-rating {
    margin-bottom: 30px;
    margin-top: 20px;
}

/* line 1178, ../sass/template/_courses.scss */
.detail-post .edr_course #course-program .title-tab {
    margin: 25px 0;
    padding-top: 35px;
    border-top: 1px solid #e0e0e0;
}

/* line 1185, ../sass/template/_courses.scss */
.detail-post .edr_course .course-socials-bookmark {
    padding: 20px 0 35px;
    border-top: 1px solid #e0e0e0;
    margin-top: 50px;
}

/* line 1190, ../sass/template/_courses.scss */
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-add,
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-added,
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-not-login {
    color: #fff !important;
    background: #b5a473;
    padding: 12px 20px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    font-family: "Lato";
    text-transform: uppercase;
    display: inline-block;
}

/* line 1202, ../sass/template/_courses.scss */
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-add.loading,
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-added.loading,
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-not-login.loading {
    position: relative;
}

/* line 1204, ../sass/template/_courses.scss */
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-add.loading:before,
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-added.loading:before,
.detail-post .edr_course .course-socials-bookmark .course-bookmark .ninzio-bookmark-not-login.loading:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, 0.5) url("../images/loading-quick.gif") no-repeat scroll center center/25px auto;
}

/* line 1217, ../sass/template/_courses.scss */
.detail-post .edr_course .bookmark-not-login {
    display: none;
}

/* line 1220, ../sass/template/_courses.scss */
.detail-post .edr_course .course-socials {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* line 1224, ../sass/template/_courses.scss */
.detail-post .edr_course .entry-title {
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
    padding: 0 0 20px 0;
}

/* line 1230, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta {
    margin: 30px 0;
}

@media only screen and (max-width: 767px) {
    /* line 1233, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta > div {
        float: none !important;
        margin: 0 0 10px 0 !important;
        padding: 0 0 10px 0 !important;
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid #e0e0e0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
    }

    /* line 1243, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta > div:before, .detail-post .edr_course .info-meta > div:after {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1250, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta > div {
        float: none !important;
        margin: 0 0 10px 0 !important;
        padding: 0 0 10px 0 !important;
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid #e0e0e0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
    }

    /* line 1260, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta > div:before, .detail-post .edr_course .info-meta > div:after {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1267, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta > div {
        float: none !important;
        margin: 0 0 10px 0 !important;
        padding: 0 0 10px 0 !important;
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid #e0e0e0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
    }

    /* line 1277, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta > div:before, .detail-post .edr_course .info-meta > div:after {
        display: none;
    }
}

@media (max-width: 640px) {
    /* line 1284, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta > div {
        float: none !important;
        margin: 0 0 10px 0 !important;
        padding: 0 0 10px 0 !important;
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid #e0e0e0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-grow: 0;
        flex-grow: 0;
    }

    /* line 1294, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta > div:before, .detail-post .edr_course .info-meta > div:after {
        display: none;
    }
}

/* line 1300, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .category {
    margin: 0 17px 0 0;
    float: left;
    text-align: left;
    width: 15%;
    position: relative;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .category {
    float: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .category {
    text-align: right;
}

/* line 1306, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .category:after {
    top: 0;
    width: 1px;
    height: 40px;
    position: absolute;
    content: "";
    background: #e0e0e0;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .category:after {
    left: 0;
    right: auto;
}

/* line 1316, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .title {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    color: #999999;
    font-family: "Montserrat";
}

/* line 1327, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .author-title {
    font-size: 14px;
    color: #555555;
    margin: -5px 0 0 0;
    padding: 0;
    display: block;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* line 1337, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .edr-teacher {
    margin: 0;
    width: 16%;
    position: relative;
    float: left;
    text-align: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .edr-teacher {
    float: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .edr-teacher {
    text-align: right;
}

/* line 1343, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .edr-teacher:after {
    top: 0;
    width: 1px;
    height: 40px;
    position: absolute;
    content: "";
    background: #e0e0e0;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .edr-teacher:after {
    left: 0;
    right: auto;
}

/* line 1352, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .edr-teacher .description {
    display: block;
    padding: 0;
}

/* line 1357, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .course-price {
    width: 40%;
    float: right;
    text-align: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .course-price {
    float: left;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .course-price {
    text-align: left;
}

/* line 1361, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .course-price .edr-buy-widget {
    margin-bottom: 0;
}

/* line 1364, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .course-price .edr-buy-widget__price {
    margin-right: 16px;
    font-size: 32px;
    font-weight: 600;
    margin-top: -3px;
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    color: #b5a473;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .course-price .edr-buy-widget__price {
    margin-left: 16px;
    margin-right: inherit;
}

/* line 1375, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .course-review {
    width: 20%;
    margin-top: -2px;
    margin-left: 16px;
    float: left;
    text-align: left;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .course-review {
    margin-right: 16px;
    margin-left: inherit;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .course-review {
    float: right;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .course-review {
    text-align: right;
}

/* line 1381, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .course-review .rating-count {
    font-size: 11px;
    color: #999999;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Montserrat";
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1381, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta .course-review .rating-count {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1381, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta .course-review .rating-count {
        margin-left: 20px;
    }
}

@media (max-width: 640px) {
    /* line 1381, ../sass/template/_courses.scss */
    .detail-post .edr_course .info-meta .course-review .rating-count {
        margin-left: 10px;
    }
}

/* line 1399, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta a {
    font-size: 14px;
    color: #555555;
    margin: -1px 0 0 0;
    padding: 0;
    letter-spacing: .5px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}

/* line 1408, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta a:hover, .detail-post .edr_course .info-meta a:active {
    color: #b5a473;
}

/* line 1413, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .left-icon {
    padding-top: 5px;
    float: left;
    padding-right: 12px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .left-icon {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-post .edr_course .info-meta .left-icon {
    padding-left: 12px;
    padding-right: inherit;
}

/* line 1417, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .left-icon i {
    font-size: 32px;
    color: #999999;
}

/* line 1422, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .right-categor {
    overflow: hidden;
}

/* line 1425, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .edr-buy-widget__link {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
    font-family: "Raleway", cursive, sans-serif;
    font-weight: 700;
    background: #b5a473;
    color: #FFFFFF !important;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 2px solid transparent;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 40px;
    font-size: 12px;
    line-height: 1.625;
    border-radius: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

/* line 1448, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .edr-buy-widget__link:focus, .detail-post .edr_course .info-meta .edr-buy-widget__link:active:focus, .detail-post .edr_course .info-meta .edr-buy-widget__link.active:focus {
    outline: 0;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

/* line 1452, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .edr-buy-widget__link:hover, .detail-post .edr_course .info-meta .edr-buy-widget__link:focus {
    color: #FFFFFF !important;
    text-decoration: none;
}

/* line 1457, ../sass/template/_courses.scss */
.detail-post .edr_course .info-meta .edr-buy-widget__link:active, .detail-post .edr_course .info-meta .edr-buy-widget__link.active {
    outline: 0;
    background-image: none;
}

/* line 1464, ../sass/template/_courses.scss */
.detail-post .edr_course .review-stars-rated > * {
    display: inline-block;
    margin: 0;
    padding: 0;
}

/* line 1470, ../sass/template/_courses.scss */
.list-instructors {
    margin: 0 0 40px;
    padding: 56px;
    background: #f5f5f5;
    list-style: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1470, ../sass/template/_courses.scss */
    .list-instructors {
        padding: 40px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1470, ../sass/template/_courses.scss */
    .list-instructors {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    /* line 1470, ../sass/template/_courses.scss */
    .list-instructors {
        padding: 25px;
    }
}

/* line 1484, ../sass/template/_courses.scss */
.list-instructors .avatar {
    outline: none;
}

/* line 1487, ../sass/template/_courses.scss */
.list-instructors .avatar-img {
    padding-right: 25px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .list-instructors .avatar-img {
    padding-left: 25px;
    padding-right: inherit;
}

@media only screen and (max-width: 767px) {
    /* line 1487, ../sass/template/_courses.scss */
    .list-instructors .avatar-img {
        display: block;
        margin: 0 0 20px;
        padding-right: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    /* line 1487, ../sass/template/_courses.scss */
    .list-instructors .avatar-img {
        display: block;
        margin: 0 0 20px;
        padding-right: 0;
        width: 100%;
    }
}

/* line 1502, ../sass/template/_courses.scss */
.list-instructors .author-title {
    font-size: 20px;
    margin: 0;
    text-transform: capitalize;
    font-weight: 500;
    color: #333;
}

/* line 1509, ../sass/template/_courses.scss */
.list-instructors .description {
    margin: 10px 0 20px 0;
}

/* line 1512, ../sass/template/_courses.scss */
.list-instructors .description .socials a {
    margin: 0 3px 0 0;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .list-instructors .description .socials a {
    margin: 0 0 0 3px;
}

/* line 1517, ../sass/template/_courses.scss */
.list-instructors .redmore {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background: #eeeeee;
    font-weight: 600;
    font-size: 11px;
    font-family: "Lato";
    text-transform: uppercase;
    color: #555555;
}

/* line 1526, ../sass/template/_courses.scss */
.list-instructors .redmore:hover, .list-instructors .redmore:active {
    color: #000;
}

/* line 1530, ../sass/template/_courses.scss */
.list-instructors li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

/* line 1534, ../sass/template/_courses.scss */
.list-instructors li:last-child {
    margin: 0;
    border: 0;
    padding: 0;
}

/* line 1541, ../sass/template/_courses.scss */
.ninzio-tabs {
    background: #fff !important;
    z-index: 99;
    margin: 0 0 15px;
}

/* line 1545, ../sass/template/_courses.scss */
.ninzio-tabs.affix {
    -webkit-box-shadow: 0 0px 0px #b5a473;
    box-shadow: 0 0px 0px #b5a473;
    width: 100% !important;
    left: 0;
    text-align: center;
}

/* line 1552, ../sass/template/_courses.scss */
.ninzio-tabs .nav-tabs {
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #e9e9e9;
}

/* line 1556, ../sass/template/_courses.scss */
.ninzio-tabs .nav-tabs li {
    border: none !important;
    margin: 0 0 -2px;
    padding: 0;
    float: none;
}

/* line 1561, ../sass/template/_courses.scss */
.ninzio-tabs .nav-tabs li a {
    font-size: 14px;
    text-transform: uppercase;
    color: #969696;
    font-weight: 700;
    padding: 13px 18px;
    border-width: 0 0 2px !important;
    border-solid: solid;
    border-color: #e9e9e9;
    display: inline-block;
    background: transparent !important;
}

/* line 1572, ../sass/template/_courses.scss */
.ninzio-tabs .nav-tabs li a span {
    font-size: 10px;
    display: inline-block;
    padding: 2px 5px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: #f5f5f5;
    line-height: 1.3;
}

/* line 1585, ../sass/template/_courses.scss */
.ninzio-tabs .nav-tabs li:focus > a, .ninzio-tabs .nav-tabs li.active > a, .ninzio-tabs .nav-tabs li:hover > a {
    border-color: #b5a473;
    color: #b5a473;
}

/* line 1594, ../sass/template/_courses.scss */
#course-instructors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* line 1598, ../sass/template/_courses.scss */
#course-instructors ul li {
    margin: 0 0 30px;
    padding: 0 0 20px;
    border-bottom: 1px solid #e0e0e0;
}

/* line 1604, ../sass/template/_courses.scss */
#course-instructors .avatar-img {
    padding-right: 30px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #course-instructors .avatar-img {
    padding-left: 30px;
    padding-right: inherit;
}

/* line 1606, ../sass/template/_courses.scss */
#course-instructors .avatar-img img {
    width: 120px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0;
    max-width: none;
}

/* line 1613, ../sass/template/_courses.scss */
#course-instructors .author-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 4px;
}

/* line 1617, ../sass/template/_courses.scss */
#course-instructors .author-title a {
    color: #b5a473;
}

/* line 1621, ../sass/template/_courses.scss */
#course-instructors .job {
    font-size: 12px;
}

/* line 1624, ../sass/template/_courses.scss */
#course-instructors .description {
    margin: 15px 0 0;
}

/* line 1627, ../sass/template/_courses.scss */
#course-instructors .socials {
    margin: 8px 0 0;
}

/* line 1629, ../sass/template/_courses.scss */
#course-instructors .socials a {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 36px;
    font-size: 16px;
    text-align: center;
    color: #b5a473;
    border: 2px solid #b5a473;
    margin-right: 8px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #course-instructors .socials a {
    margin-left: 8px;
    margin-right: inherit;
}

/* line 1640, ../sass/template/_courses.scss */
#course-instructors .socials a i {
    line-height: inherit;
}

/* line 1643, ../sass/template/_courses.scss */
#course-instructors .socials a:last-child {
    margin: 0;
}

/* line 1647, ../sass/template/_courses.scss */
#course-instructors .socials .facebook {
    border-color: #3b5998;
    color: #3b5998;
}

/* line 1650, ../sass/template/_courses.scss */
#course-instructors .socials .facebook:hover, #course-instructors .socials .facebook:active {
    background: #3b5998;
    color: #fff !important;
}

/* line 1655, ../sass/template/_courses.scss */
#course-instructors .socials .twitter {
    border-color: #55acee;
    color: #55acee;
}

/* line 1658, ../sass/template/_courses.scss */
#course-instructors .socials .twitter:hover, #course-instructors .socials .twitter:active {
    background: #55acee;
    color: #fff !important;
}

/* line 1663, ../sass/template/_courses.scss */
#course-instructors .socials .google {
    border-color: #dd4b39;
    color: #dd4b39;
}

/* line 1666, ../sass/template/_courses.scss */
#course-instructors .socials .google:hover, #course-instructors .socials .google:active {
    background: #dd4b39;
    color: #fff !important;
}

/* line 1671, ../sass/template/_courses.scss */
#course-instructors .socials .linkedin {
    border-color: #117bb8;
    color: #117bb8;
}

/* line 1674, ../sass/template/_courses.scss */
#course-instructors .socials .linkedin:hover, #course-instructors .socials .linkedin:active {
    background: #117bb8;
    color: #fff !important;
}

/* line 1679, ../sass/template/_courses.scss */
#course-instructors .socials .instagram {
    border-color: #bd081c;
    color: #bd081c;
}

/* line 1682, ../sass/template/_courses.scss */
#course-instructors .socials .instagram:hover, #course-instructors .socials .instagram:active {
    background: #bd081c;
    color: #fff !important;
}

/* line 1687, ../sass/template/_courses.scss */
#course-instructors .socials .youtube {
    border-color: #e02a20;
    color: #e02a20;
}

/* line 1690, ../sass/template/_courses.scss */
#course-instructors .socials .youtube:hover, #course-instructors .socials .youtube:active {
    background: #e02a20;
    color: #fff !important;
}

/* line 1698, ../sass/template/_courses.scss */
#course-program .edr-lessons-title {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0;
    text-transform: capitalize;
}

/* line 1707, ../sass/template/_courses.scss */
.edr-syllabus .group + .group {
    margin-top: 35px;
}

/* line 1710, ../sass/template/_courses.scss */
.edr-syllabus .group .group-header {
    margin: 0;
}

/* line 1713, ../sass/template/_courses.scss */
.edr-syllabus .group .group-title {
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    margin: 0 0 5px 0;
    padding: 14px 20px;
    color: #333;
    background: #ececec;
}

/* line 1722, ../sass/template/_courses.scss */
.edr-syllabus .group .group-title i {
    margin-right: 14px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-syllabus .group .group-title i {
    margin-left: 14px;
    margin-right: inherit;
}

/* line 1726, ../sass/template/_courses.scss */
.edr-syllabus .group .group-body {
    border: 0;
}

/* line 1728, ../sass/template/_courses.scss */
.edr-syllabus .group .group-body .edr-lessons {
    outline: none;
}

/* line 1734, ../sass/template/_courses.scss */
#course-program .edr-lessons {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* line 1738, ../sass/template/_courses.scss */
#course-program .edr-lessons .label {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 10px;
    text-align: center;
    padding: 3px 5px !important;
    color: #FFFFFF !important;
    text-transform: uppercase;
    margin: 0 5px 0 0 !important;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl #course-program .edr-lessons .label {
    margin: 0 0 !important
    0 5px;
}

/* line 1746, ../sass/template/_courses.scss */
#course-program .edr-lessons .label.lesson {
    background: #e25192;
}

/* line 1749, ../sass/template/_courses.scss */
#course-program .edr-lessons .label.quiz {
    background: #d9841f;
}

/* line 1752, ../sass/template/_courses.scss */
#course-program .edr-lessons .label.new {
    background: #00aeef;
}

/* line 1756, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson {
    position: relative;
    overflow: hidden;
    padding: 14px 20px;
    margin-bottom: 5px;
    background: #f5f5f5;
}

/* line 1762, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson i {
    font-size: 18px;
    color: #999999;
}

/* line 1766, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson .lesson-meta {
    color: #999999;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 1766, ../sass/template/_courses.scss */
    #course-program .edr-lessons .lesson .lesson-meta {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        float: none;
    }
}

@media only screen and (max-width: 767px) {
    /* line 1766, ../sass/template/_courses.scss */
    #course-program .edr-lessons .lesson .lesson-meta {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        float: none;
    }
}

@media (max-width: 640px) {
    /* line 1766, ../sass/template/_courses.scss */
    #course-program .edr-lessons .lesson .lesson-meta {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        float: none;
    }
}

/* line 1787, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson .lesson-duration {
    margin-right: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #course-program .edr-lessons .lesson .lesson-duration {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 1790, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson:last-child {
    margin-bottom: 0;
}

/* line 1794, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson.active .lesson-title {
    color: #333;
}

/* line 1798, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson:last-child {
    border: none;
}

/* line 1802, ../sass/template/_courses.scss */
#course-program .edr-lessons .lessin-wrapper {
    overflow: hidden;
}

/* line 1805, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson-icon {
    float: left;
    font-size: 14px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl #course-program .edr-lessons .lesson-icon {
    float: right;
}

/* line 1808, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson-icon i {
    margin-right: 10px;
    color: #b5a473;
    font-size: 14px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #course-program .edr-lessons .lesson-icon i {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 1813, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson-icon .expand-lesson i {
    margin-right: 12px;
    color: #777777;
    cursor: pointer;
    font-size: 18px;
    padding: 0 1px;
    vertical-align: text-top;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #course-program .edr-lessons .lesson-icon .expand-lesson i {
    margin-left: 12px;
    margin-right: inherit;
}

/* line 1822, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson-header {
    float: left;
    color: #999999;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl #course-program .edr-lessons .lesson-header {
    float: right;
}

@media only screen and (max-width: 767px) {
    /* line 1822, ../sass/template/_courses.scss */
    #course-program .edr-lessons .lesson-header {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        float: none;
    }
}

@media (max-width: 640px) {
    /* line 1822, ../sass/template/_courses.scss */
    #course-program .edr-lessons .lesson-header {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        float: none;
    }
}

/* line 1839, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson-meta > * {
    display: inline-block;
    vertical-align: middle;
}

/* line 1844, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson-time {
    font-size: 12px;
    color: #777777;
    float: right;
    text-transform: uppercase;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl #course-program .edr-lessons .lesson-time {
    float: left;
}

/* line 1851, ../sass/template/_courses.scss */
#course-program .edr-lessons li a {
    color: #999999;
}

/* line 1853, ../sass/template/_courses.scss */
#course-program .edr-lessons li a:hover, #course-program .edr-lessons li a:active {
    color: #b5a473;
}

/* line 1858, ../sass/template/_courses.scss */
#course-program .edr-lessons .lesson-excerpt {
    display: none;
    margin: 15px 0 10px;
    padding-left: 33px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl #course-program .edr-lessons .lesson-excerpt {
    padding-right: 33px;
    padding-left: inherit;
}

/* line 1866, ../sass/template/_courses.scss */
.edr_lesson .tag-social {
    margin: 20px 0;
}

/* line 1868, ../sass/template/_courses.scss */
.edr_lesson .tag-social .social-share {
    width: 100%;
}

/* line 1876, ../sass/template/_courses.scss */
.edr-form .edr-payment-methods .edr-radio br {
    display: none;
}

/* line 1879, ../sass/template/_courses.scss */
.edr-form .edr-payment-methods [type="radio"] {
    margin-right: 5px;
    vertical-align: baseline;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-form .edr-payment-methods [type="radio"] {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 1884, ../sass/template/_courses.scss */
.edr-form .edr-button {
    padding: 12px 25px;
    border: none;
    background: #b5a473;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
}

/* line 1892, ../sass/template/_courses.scss */
.edr-form .edr-button:hover, .edr-form .edr-button:active {
    color: #fff !important;
    background: #129968;
}

/* line 1898, ../sass/template/_courses.scss */
.edr-payment-summary {
    margin-bottom: 15px !important;
    font-size: 16px;
}

/* line 1901, ../sass/template/_courses.scss */
.edr-payment-summary > * {
    display: inline-block;
    vertical-align: middle;
}

/* line 1905, ../sass/template/_courses.scss */
.edr-payment-summary dd {
    font-weight: 700;
    color: #b5a473;
    font-size: 22px;
    margin-left: 10px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .edr-payment-summary dd {
    margin-right: 10px;
    margin-left: inherit;
}

/* line 1913, ../sass/template/_courses.scss */
.edr-form__fields .edr-field__label {
    margin-bottom: 10px;
}

/* line 1917, ../sass/template/_courses.scss */
p.forward {
    margin: 20px 0 40px;
}

/* line 1921, ../sass/template/_courses.scss */
.edr-user-payments .actions-group a {
    font-weight: 700;
    color: #b5a473;
}

/* line 1924, ../sass/template/_courses.scss */
.edr-user-payments .actions-group a.cancel-payment {
    color: #f65b47;
}

/* line 1931, ../sass/template/_courses.scss */
.edr-membership .price-wrapper,
.edr_membership .price-wrapper {
    color: #000;
    font-weight: 700;
    font-size: 24px;
    word-spacing: -6px;
}

/* line 1937, ../sass/template/_courses.scss */
.edr-membership .edr-buy-widget__link,
.edr-membership .edr-membership-buy-link,
.edr_membership .edr-buy-widget__link,
.edr_membership .edr-membership-buy-link {
    padding: 10px 35px;
    color: #999999;
    text-transform: uppercase;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-family: "Montserrat";
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 2px solid #e0e0e0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

/* line 1950, ../sass/template/_courses.scss */
.edr-membership .edr-buy-widget__link:active, .edr-membership .edr-buy-widget__link:hover,
.edr-membership .edr-membership-buy-link:active,
.edr-membership .edr-membership-buy-link:hover,
.edr_membership .edr-buy-widget__link:active,
.edr_membership .edr-buy-widget__link:hover,
.edr_membership .edr-membership-buy-link:active,
.edr_membership .edr-membership-buy-link:hover {
    border-color: #b5a473;
    background: #b5a473;
    color: #fff !important;
}

/* line 1960, ../sass/template/_courses.scss */
.widget-membership.active .edr-membership-wrapper {
    margin: -12px 0;
    padding-bottom: 59px;
    border: 3px solid #b5a473;
}

/* line 1964, ../sass/template/_courses.scss */
.widget-membership.active .edr-membership-wrapper:hover {
    padding-bottom: 44px;
}

/* line 1966, ../sass/template/_courses.scss */
.widget-membership.active .edr-membership-wrapper:hover .edr-membership__footer {
    margin-top: 19px;
}

/* line 1970, ../sass/template/_courses.scss */
.widget-membership.active .edr-membership-wrapper .edr-buy-widget__link,
.widget-membership.active .edr-membership-wrapper .edr-membership-buy-link {
    background: #b5a473;
    border-color: #b5a473;
    color: #FFFFFF !important;
}

/* line 1980, ../sass/template/_courses.scss */
.edr-membership {
    margin-bottom: 0;
}

/* line 1983, ../sass/template/_courses.scss */
.edr-membership-wrapper {
    text-align: center;
    margin: 0;
    border: 1px solid #e0e0e0;
    padding-bottom: 40px;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* line 1990, ../sass/template/_courses.scss */
.edr-membership-wrapper:hover {
    border: 3px solid #b5a473;
    padding-bottom: 44px;
    margin: -12px 0;
}

/* line 1994, ../sass/template/_courses.scss */
.edr-membership-wrapper:hover .edr-membership__footer {
    margin: 30px 0 0;
}

/* line 1998, ../sass/template/_courses.scss */
.edr-membership-wrapper .edr-membership__header {
    margin: 0;
    padding: 0;
    background: #f2f2f2;
}

/* line 2003, ../sass/template/_courses.scss */
.edr-membership-wrapper .edr-membership__title {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    padding: 4px 50px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #FFFFFF !important;
    margin: -1px 0 0 0;
}

/* line 2014, ../sass/template/_courses.scss */
.edr-membership-wrapper .edr-membership__more {
    outline: none;
}

/* line 2017, ../sass/template/_courses.scss */
.edr-membership-wrapper .edr-membership__footer {
    margin: 15px 0 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* line 2021, ../sass/template/_courses.scss */
.edr-membership-wrapper .edr-membership__price {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 16px;
    color: #999999;
    text-transform: uppercase;
    margin: 0;
    padding: 30px 0;
}

/* line 2029, ../sass/template/_courses.scss */
.edr-membership-wrapper .edr-membership__price .price-wrapper {
    color: #333;
    font-size: 62px;
    font-weight: 500;
}

/* line 2035, ../sass/template/_courses.scss */
.edr-membership-wrapper .entry-description {
    margin: 0;
    padding: 10px 20px 0 20px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .edr-membership-wrapper .entry-description {
    padding: 10px 20px 0 20px;
}

/* line 2038, ../sass/template/_courses.scss */
.edr-membership-wrapper .entry-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 2;
}

/* line 2043, ../sass/template/_courses.scss */
.edr-membership-wrapper .entry-description ul > li {
    padding: 5px 0;
}

/* line 2045, ../sass/template/_courses.scss */
.edr-membership-wrapper .entry-description ul > li span {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

/* line 2049, ../sass/template/_courses.scss */
.edr-membership-wrapper .entry-description ul > li span:before {
    position: absolute;
    content: "\e96b";
    font-family: "univero" !important;
    color: #b5a473;
    top: 50%;
    font-size: 10px;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .edr-membership-wrapper .entry-description ul > li span:before {
    right: 0;
    left: auto;
}

/* line 2060, ../sass/template/_courses.scss */
.edr-membership-wrapper .entry-description ul > li:nth-of-type(odd) {
    background: #FFFFFF;
}

/* line 2063, ../sass/template/_courses.scss */
.edr-membership-wrapper .entry-description ul > li:nth-of-type(even) {
    background: #f5f5f5;
}

/* line 2070, ../sass/template/_courses.scss */
.edr-membership-wrapper:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* line 2073, ../sass/template/_courses.scss */
.edr-membership-wrapper:hover .edr-membership-buy-link {
    border-color: #b5a473;
    background: #b5a473;
    color: #fff !important;
}

/* line 2080, ../sass/template/_courses.scss */
.edr-user-membership {
    margin: 40px 0;
}

/* line 2083, ../sass/template/_courses.scss */
.choice-correct::before {
    color: #61c408;
}

/* line 2086, ../sass/template/_courses.scss */
.choice-wrong.choice-selected::before {
    color: #f65b47;
}

/* line 2089, ../sass/template/_courses.scss */
.archive-lecturer {
    margin: 30px 0 0;
}

/* line 2093, ../sass/template/_courses.scss */
.detail-lecturer {
    padding-top: 20px;
}

/* line 2095, ../sass/template/_courses.scss */
.detail-lecturer #course-description {
    padding: 5px 0;
}

/* line 2099, ../sass/template/_courses.scss */
.detail-lecturer .description .more-link {
    display: none;
}

/* line 2103, ../sass/template/_courses.scss */
.detail-lecturer .name {
    font-size: 24px;
    margin: 0;
}

/* line 2107, ../sass/template/_courses.scss */
.detail-lecturer .job {
    font-size: 12px;
    margin: 0 0 15px;
}

/* line 2111, ../sass/template/_courses.scss */
.detail-lecturer .socials {
    margin: 0;
}

/* line 2113, ../sass/template/_courses.scss */
.detail-lecturer .socials a {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 36px;
    font-size: 16px;
    text-align: center;
    color: #b5a473;
    border: 2px solid #b5a473;
    margin-right: 8px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-lecturer .socials a {
    margin-left: 8px;
    margin-right: inherit;
}

/* line 2124, ../sass/template/_courses.scss */
.detail-lecturer .socials a i {
    line-height: inherit;
}

/* line 2127, ../sass/template/_courses.scss */
.detail-lecturer .socials a:last-child {
    margin: 0;
}

/* line 2131, ../sass/template/_courses.scss */
.detail-lecturer .socials .facebook {
    border-color: #3b5998;
    color: #3b5998;
}

/* line 2134, ../sass/template/_courses.scss */
.detail-lecturer .socials .facebook:hover, .detail-lecturer .socials .facebook:active {
    background: #3b5998;
    color: #fff !important;
}

/* line 2139, ../sass/template/_courses.scss */
.detail-lecturer .socials .twitter {
    border-color: #55acee;
    color: #55acee;
}

/* line 2142, ../sass/template/_courses.scss */
.detail-lecturer .socials .twitter:hover, .detail-lecturer .socials .twitter:active {
    background: #55acee;
    color: #fff !important;
}

/* line 2147, ../sass/template/_courses.scss */
.detail-lecturer .socials .google {
    border-color: #dd4b39;
    color: #dd4b39;
}

/* line 2150, ../sass/template/_courses.scss */
.detail-lecturer .socials .google:hover, .detail-lecturer .socials .google:active {
    background: #dd4b39;
    color: #fff !important;
}

/* line 2155, ../sass/template/_courses.scss */
.detail-lecturer .socials .linkedin {
    border-color: #117bb8;
    color: #117bb8;
}

/* line 2158, ../sass/template/_courses.scss */
.detail-lecturer .socials .linkedin:hover, .detail-lecturer .socials .linkedin:active {
    background: #117bb8;
    color: #fff !important;
}

/* line 2163, ../sass/template/_courses.scss */
.detail-lecturer .socials .instagram {
    border-color: #bd081c;
    color: #bd081c;
}

/* line 2166, ../sass/template/_courses.scss */
.detail-lecturer .socials .instagram:hover, .detail-lecturer .socials .instagram:active {
    background: #bd081c;
    color: #fff !important;
}

/* line 2171, ../sass/template/_courses.scss */
.detail-lecturer .socials .youtube {
    border-color: #e02a20;
    color: #e02a20;
}

/* line 2174, ../sass/template/_courses.scss */
.detail-lecturer .socials .youtube:hover, .detail-lecturer .socials .youtube:active {
    background: #e02a20;
    color: #fff !important;
}

/* line 2180, ../sass/template/_courses.scss */
.detail-lecturer .course-info {
    margin: 15px 0;
}

/* line 2182, ../sass/template/_courses.scss */
.detail-lecturer .course-info > div {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    color: #999999;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    margin-right: 28px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-lecturer .course-info > div {
    margin-left: 28px;
    margin-right: inherit;
}

/* line 2191, ../sass/template/_courses.scss */
.detail-lecturer .course-info > div:last-child {
    margin: 0;
}

/* line 2194, ../sass/template/_courses.scss */
.detail-lecturer .course-info > div span {
    display: block;
    font-size: 12px;
    color: #999999;
}

/* line 2201, ../sass/template/_courses.scss */
.detail-lecturer .tabs-info {
    margin: 25px 0 0;
}

/* line 2204, ../sass/template/_courses.scss */
.detail-lecturer .list-info {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f8f8;
    border: 1px solid #eeeeee;
}

/* line 2210, ../sass/template/_courses.scss */
.detail-lecturer .list-info li {
    padding: 18px 15px;
    border-bottom: 1px solid #eeeeee;
    font-size: 16px;
    color: #777777;
    font-weight: 600;
}

/* line 2216, ../sass/template/_courses.scss */
.detail-lecturer .list-info li:last-child {
    border: 0;
}

/* line 2219, ../sass/template/_courses.scss */
.detail-lecturer .list-info li i {
    font-size: 24px;
    margin-right: 12px;
    vertical-align: middle;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .detail-lecturer .list-info li i {
    margin-left: 12px;
    margin-right: inherit;
}

/* line 2226, ../sass/template/_courses.scss */
.detail-lecturer .title {
    font-size: 24px;
    font-weight: 300;
    margin: 15px 0;
}

/* line 2238, ../sass/template/_courses.scss */
.course-lesson-sidebar .forward {
    font-size: 18px;
    background: #b5a473;
    text-align: center;
    margin: 0;
    font-weight: 500;
    padding: 20px;
    text-transform: uppercase;
}

/* line 2246, ../sass/template/_courses.scss */
.course-lesson-sidebar .forward i {
    font-size: 14px;
    margin-right: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .course-lesson-sidebar .forward i {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 2250, ../sass/template/_courses.scss */
.course-lesson-sidebar .forward a {
    color: #fff !important;
}

/* line 2254, ../sass/template/_courses.scss */
.course-lesson-sidebar .widget-content {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #e0e0e0;
}

/* line 2259, ../sass/template/_courses.scss */
.course-lesson-sidebar .group-body {
    padding: 0 !important;
}

/* line 2264, ../sass/template/_courses.scss */
.course-lesson-sidebar .group-body:last-child .edr-lessons > li:last-child {
    border-bottom: 0px;
}

/* line 2272, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-syllabus .group {
    border: none;
    margin: 0;
}

/* line 2277, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-syllabus .group-title {
    background: #f5f5f5;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 10px;
    text-transform: none;
}

/* line 2286, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* line 2290, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons li {
    background: #f5f5f5;
    margin: 0;
    color: #999999;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 10px 15px 20px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .course-lesson-sidebar .edr-lessons li {
    padding: 15px 20px 15px 10px;
}

/* line 2297, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons li a {
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    display: inline-block;
    color: #999999;
}

/* line 2301, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons li a:hover {
    color: #b5a473;
}

/* line 2305, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons li i {
    font-size: 14px;
}

/* line 2309, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons li .lesson-header div {
    margin: 10px 0;
}

/* line 2313, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons li:first-child {
    border-top: 1px solid #e0e0e0;
}

/* line 2317, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons li:hover, .course-lesson-sidebar .edr-lessons li.active {
    background: #fff !important;
}

/* line 2319, ../sass/template/_courses.scss */
.course-lesson-sidebar .edr-lessons li:hover a, .course-lesson-sidebar .edr-lessons li.active a {
    color: #b5a473;
    text-decoration: none;
}

/* line 2326, ../sass/template/_courses.scss */
.lesson-detail {
    position: relative;
    overflow: hidden;
}

/* line 2329, ../sass/template/_courses.scss */
.lesson-detail .course-lesson-sidebar {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 2331, ../sass/template/_courses.scss */
.lesson-detail .course-lesson-sidebar .show-lesson {
    color: #fff !important;
    border: none;
    display: inline-block;
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 100%;
    background: #b5a473;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .lesson-detail .course-lesson-sidebar .show-lesson {
    right: 100%;
    left: auto;
}

/* line 2340, ../sass/template/_courses.scss */
.lesson-detail .course-lesson-sidebar .show-lesson:hover, .lesson-detail .course-lesson-sidebar .show-lesson:active {
    background: #14b077;
}

/* line 2345, ../sass/template/_courses.scss */
.lesson-detail .sticky-v-wrapper {
    position: relative;
}

@media (min-width: 992px) {
    /* line 2348, ../sass/template/_courses.scss */
    .lesson-detail .sticky-v-wrapper .course-lesson-sidebar-wrapper {
        width: 25%;
        float: left;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .lesson-detail .sticky-v-wrapper .course-lesson-sidebar-wrapper {
        float: right;
    }

    /* line 2352, ../sass/template/_courses.scss */
    .lesson-detail .sticky-v-wrapper .course-lesson-content-wrapper {
        width: 75%;
        padding-left: 30px;
        float: right;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .lesson-detail .sticky-v-wrapper .course-lesson-content-wrapper {
        padding-right: 30px;
        padding-left: inherit;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .lesson-detail .sticky-v-wrapper .course-lesson-content-wrapper {
        float: left;
    }

    /* line 2356, ../sass/template/_courses.scss */
    .lesson-detail .sticky-v-wrapper .course-lesson-content-wrapper .entry-title {
        margin: 0;
    }

    /* line 2359, ../sass/template/_courses.scss */
    .lesson-detail .sticky-v-wrapper .course-lesson-content-wrapper .edr-breadcrumbs {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    /* line 2365, ../sass/template/_courses.scss */
    .lesson-detail .sticky-v-wrapper .course-lesson-sidebar-wrapper {
        -webkit-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        position: fixed;
        top: 70px;
        left: 0;
    }

    /* line 2371, ../sass/template/_courses.scss */
    .lesson-detail .sticky-v-wrapper .course-lesson-sidebar-wrapper.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 2377, ../sass/template/_courses.scss */
.lesson-detail .entry-info {
    margin: 0 0 15px;
    overflow: visible;
}

/* line 2381, ../sass/template/_courses.scss */
.lesson-detail .post-navigation {
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #e0e0e0;
    margin: 30px 0 0;
    padding-top: 30px;
}

/* line 2387, ../sass/template/_courses.scss */
.lesson-detail .post-navigation .navi {
    font-weight: 500px;
    color: #333;
}

/* line 2391, ../sass/template/_courses.scss */
.lesson-detail .post-navigation .post-title {
    font-size: 16px;
}

/* line 2396, ../sass/template/_courses.scss */
.author-photo-wrapper {
    background: #353535;
    color: #acacac;
}

/* line 2399, ../sass/template/_courses.scss */
.author-photo-wrapper .author-photo {
    background: #fff !important;
}

/* line 2402, ../sass/template/_courses.scss */
.author-photo-wrapper .author-meta {
    list-style: none;
    padding: 25px 30px;
    margin: 0;
}

/* line 2406, ../sass/template/_courses.scss */
.author-photo-wrapper .author-meta i {
    margin-right: 8px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .author-photo-wrapper .author-meta i {
    margin-left: 8px;
    margin-right: inherit;
}

/* line 2409, ../sass/template/_courses.scss */
.author-photo-wrapper .author-meta li {
    margin: 0 0 10px;
}

/* line 2411, ../sass/template/_courses.scss */
.author-photo-wrapper .author-meta li:last-child {
    margin: 0;
}

/* line 2416, ../sass/template/_courses.scss */
.author-photo-wrapper .socials {
    border-top: 1px solid #424242;
    padding: 23px 30px;
}

/* line 2419, ../sass/template/_courses.scss */
.author-photo-wrapper .socials a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    background: #b5a473;
    color: #fff !important;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

/* line 2427, ../sass/template/_courses.scss */
.author-photo-wrapper .socials a + a {
    margin-left: 3px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .author-photo-wrapper .socials a + a {
    margin-right: 3px;
    margin-left: inherit;
}

/* line 2430, ../sass/template/_courses.scss */
.author-photo-wrapper .socials a.facebook {
    background: #3b5998;
}

/* line 2433, ../sass/template/_courses.scss */
.author-photo-wrapper .socials a.twitter {
    background: #55acee;
}

/* line 2436, ../sass/template/_courses.scss */
.author-photo-wrapper .socials a.google {
    background: #dd4b39;
}

/* line 2439, ../sass/template/_courses.scss */
.author-photo-wrapper .socials a.linkedin {
    background: #007bb6;
}

/* line 2442, ../sass/template/_courses.scss */
.author-photo-wrapper .socials a.instagram {
    background: #bc2a8d;
}

/* line 2445, ../sass/template/_courses.scss */
.author-photo-wrapper .socials a.youtube {
    background: #bb0000;
}

/* line 2452, ../sass/template/_courses.scss */
.send-message-instructor-form .message-res {
    margin-bottom: 10px;
}

/* line 2455, ../sass/template/_courses.scss */
.send-message-instructor-form .title {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px;
}

/* line 2461, ../sass/template/_courses.scss */
.send-message-instructor-form .form-row {
    margin-bottom: 20px;
}

/* line 2464, ../sass/template/_courses.scss */
.send-message-instructor-form input:not(.btn), .send-message-instructor-form textarea {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-family: "Lato";
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    border: 1px solid #e0e0e0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* line 2472, ../sass/template/_courses.scss */
.send-message-instructor-form input:not(.btn):focus, .send-message-instructor-form textarea:focus {
    border-color: #b5a473;
}

/* line 2476, ../sass/template/_courses.scss */
.send-message-instructor-form textarea {
    resize: none;
    height: 130px;
}

/* line 2481, ../sass/template/_courses.scss */
.author-header {
    border: 1px solid #e0e0e0;
    padding: 28px 30px;
    margin-bottom: 35px;
}

/* line 2485, ../sass/template/_courses.scss */
.author-header h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

/* line 2490, ../sass/template/_courses.scss */
.author-header .author-more-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* line 2494, ../sass/template/_courses.scss */
.author-header .author-more-info li {
    position: relative;
    margin-bottom: 6px;
}

/* line 2497, ../sass/template/_courses.scss */
.author-header .author-more-info li:last-child {
    margin: 0;
}

/* line 2500, ../sass/template/_courses.scss */
.author-header .author-more-info li:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    background: #b5a473;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .author-header .author-more-info li:before {
    margin-left: 10px;
    margin-right: inherit;
}

/* line 2511, ../sass/template/_courses.scss */
.author-content {
    margin-bottom: 35px;
}

/* line 2513, ../sass/template/_courses.scss */
.author-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

/* line 2520, ../sass/template/_courses.scss */
.author-course h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

/* line 2526, ../sass/template/_courses.scss */
.author-course-wrapper {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #e0e0e0;
}

/* line 2531, ../sass/template/_courses.scss */
.author-course-wrapper .author-course-header {
    background: #b5a473;
    color: #333333;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

/* line 2538, ../sass/template/_courses.scss */
.author-course-wrapper li {
    display: table;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

/* line 2542, ../sass/template/_courses.scss */
.author-course-wrapper li:last-child {
    border: none;
}

/* line 2545, ../sass/template/_courses.scss */
.author-course-wrapper li:nth-child(2n) {
    background: #fcfcfc;
}

/* line 2548, ../sass/template/_courses.scss */
.author-course-wrapper li > * {
    display: table-cell;
    padding: 15px 25px;
    vertical-align: middle;
    width: 20%;
}

/* line 2554, ../sass/template/_courses.scss */
.author-course-wrapper li .name {
    width: 60%;
}

/* line 2557, ../sass/template/_courses.scss */
.author-course-wrapper li a {
    color: #777777;
}

/* line 2559, ../sass/template/_courses.scss */
.author-course-wrapper li a:hover, .author-course-wrapper li a:active {
    color: #999999;
}

@media (min-width: 768px) {
    /* line 2567, ../sass/template/_courses.scss */
    .edr-memberships_2 {
        overflow: hidden;
        margin-right: -15px;
        margin-left: -15px;
    }

    /* line 2571, ../sass/template/_courses.scss */
    .edr-memberships_2 > .edr-membership {
        padding-left: 15px;
        padding-right: 15px;
        float: left;
        width: 60%;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .edr-memberships_2 > .edr-membership {
        float: right;
    }

    /* line 2578, ../sass/template/_courses.scss */
    .edr-memberships_4 {
        overflow: hidden;
        margin-right: -15px;
        margin-left: -15px;
    }

    /* line 2582, ../sass/template/_courses.scss */
    .edr-memberships_4 > .edr-membership {
        padding-left: 15px;
        padding-right: 15px;
        float: left;
        width: 25%;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .edr-memberships_4 > .edr-membership {
        float: right;
    }

    /* line 2589, ../sass/template/_courses.scss */
    .edr-memberships_3 {
        overflow: hidden;
        margin-right: -15px;
        margin-left: -15px;
    }

    /* line 2593, ../sass/template/_courses.scss */
    .edr-memberships_3 > .edr-membership {
        padding-left: 15px;
        padding-right: 15px;
        float: left;
        width: 33%;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .edr-memberships_3 > .edr-membership {
        float: right;
    }
}

/* line 2602, ../sass/template/_courses.scss */
.edr-form__fields input[type="text"] {
    padding: 5px 10px;
    height: 45px;
    width: 100%;
    border: 1px solid #e0e0e0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* line 2609, ../sass/template/_courses.scss */
.edr-form__fields input[type="text"]:focus {
    border-color: #b5a473;
    -webkit-box-shadow: inset 0 0 0 1px #b5a473;
    box-shadow: inset 0 0 0 1px #b5a473;
}

/* line 2615, ../sass/template/_courses.scss */
.edr-message.error {
    color: #f65b47;
}

/* line 2622, ../sass/template/_courses.scss */
.list-courses > li:last-child .edr-course-list-simple {
    border: 0;
}

/* line 2628, ../sass/template/_courses.scss */
.edr-course-list-simple {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    margin-bottom: 30px;
}

/* line 2634, ../sass/template/_courses.scss */
.widget-courses.list .edr-course__title {
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0;
}

/* line 1, ../sass/template/_events.scss */
.events-list #tribe-events-footer, .tribe-events-day #tribe-events-footer, .tribe-events-map #tribe-events-footer {
    border: 0 none;
    margin: 0;
    padding: 0;
}

/* line 6, ../sass/template/_events.scss */
#tribe-events-content {
    margin: 0;
    padding: 0;
}

/* line 10, ../sass/template/_events.scss */
#tribe-events .tribe-events-button, #tribe-events .tribe-events-button:hover, #tribe_events_filters_wrapper input[type="submit"], .tribe-events-button, .tribe-events-button.tribe-active:hover, .tribe-events-button.tribe-inactive, .tribe-events-button:hover, .tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"], .tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"] > a {
    background: #b5a473;
}

/* line 13, ../sass/template/_events.scss */
#tribe-events .tribe-events-button, .tribe-events-button {
    margin: 0;
    display: inline-block;
    margin-bottom: 0;
    font-family: "Raleway", cursive, sans-serif;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 2px solid transparent;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 40px;
    font-size: 12px;
    line-height: 1.625;
    border-radius: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

/* line 34, ../sass/template/_events.scss */
#tribe-events .tribe-events-button:focus, #tribe-events .tribe-events-button:active:focus, #tribe-events .tribe-events-button.active:focus, .tribe-events-button:focus, .tribe-events-button:active:focus, .tribe-events-button.active:focus {
    outline: 0;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

/* line 39, ../sass/template/_events.scss */
#tribe-events .tribe-events-button:hover, #tribe-events .tribe-events-button:focus, .tribe-events-button:hover, .tribe-events-button:focus {
    color: #FFFFFF !important;
    text-decoration: none;
}

/* line 45, ../sass/template/_events.scss */
#tribe-events .tribe-events-button:active, #tribe-events .tribe-events-button.active, .tribe-events-button:active, .tribe-events-button.active {
    outline: 0;
    background-image: none;
}

/* line 51, ../sass/template/_events.scss */
.tribe-events-list .tribe-events-event-image {
    margin: 0;
    padding: 0;
    border: 0;
}

/* line 56, ../sass/template/_events.scss */
.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
    margin: 0;
    padding: 0;
    max-width: none;
}

/* line 61, ../sass/template/_events.scss */
.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
    max-width: none;
    margin: 0;
}

/* line 65, ../sass/template/_events.scss */
#tribe-events-content.tribe-events-list {
    margin: 0;
    border: 0;
}

/* line 69, ../sass/template/_events.scss */
.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-image {
    margin: 0;
}

/* line 72, ../sass/template/_events.scss */
.tribe-events-list .tribe-events-loop .tribe-event-featured {
    background: transparent;
    padding: 0;
    margin: 0 0 40px 0;
    border: 0;
}

/* line 78, ../sass/template/_events.scss */
.tribe-events-list .tribe-events-loop .tribe-events-event-image {
    width: auto;
    float: none;
    margin: 0;
}

/* line 83, ../sass/template/_events.scss */
.tribe-events-list .type-tribe_events:first-of-type {
    margin: 0 0 40px 0;
    padding: 0;
    border: 0;
}

@media only screen and (max-width: 767px) {
    /* line 83, ../sass/template/_events.scss */
    .tribe-events-list .type-tribe_events:first-of-type {
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    /* line 83, ../sass/template/_events.scss */
    .tribe-events-list .type-tribe_events:first-of-type {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 94, ../sass/template/_events.scss */
    #tribe-events-footer ~ a.tribe-events-ical.tribe-events-button {
        height: 48px;
        font-weight: 700;
        padding: 6px 10px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 94, ../sass/template/_events.scss */
    #tribe-events-footer ~ a.tribe-events-ical.tribe-events-button {
        height: 48px;
        font-weight: 700;
        padding: 6px 10px;
    }
}

@media (max-width: 640px) {
    /* line 94, ../sass/template/_events.scss */
    #tribe-events-footer ~ a.tribe-events-ical.tribe-events-button {
        height: 48px;
        font-weight: 700;
        padding: 6px 10px;
    }
}

/* line 111, ../sass/template/_events.scss */
.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
    max-width: inherit;
}

/* line 114, ../sass/template/_events.scss */
.tribe-events-event-image img {
    max-width: inherit;
}

/* line 117, ../sass/template/_events.scss */
.tribe-events-list .tribe-events-event-image img {
    width: 100%;
}

@media (max-width: 1200px) {
    /* line 117, ../sass/template/_events.scss */
    .tribe-events-list .tribe-events-event-image img {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 117, ../sass/template/_events.scss */
    .tribe-events-list .tribe-events-event-image img {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    /* line 117, ../sass/template/_events.scss */
    .tribe-events-list .tribe-events-event-image img {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    /* line 117, ../sass/template/_events.scss */
    .tribe-events-list .tribe-events-event-image img {
        width: auto;
        display: block;
        width: 100% \9;
        max-width: 100%;
        height: auto;
    }
}

/* line 136, ../sass/template/_events.scss */
.tribe-events-loop {
    margin: 0;
}

/* line 139, ../sass/template/_events.scss */
.single-tribe_events .tribe-events-content {
    border: 0;
    width: auto;
}

/* line 142, ../sass/template/_events.scss */
.single-tribe_events .tribe-events-content .image-event {
    display: block;
    margin-bottom: 60px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 142, ../sass/template/_events.scss */
    .single-tribe_events .tribe-events-content .image-event {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 142, ../sass/template/_events.scss */
    .single-tribe_events .tribe-events-content .image-event {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    /* line 142, ../sass/template/_events.scss */
    .single-tribe_events .tribe-events-content .image-event {
        margin-bottom: 20px;
    }
}

/* line 154, ../sass/template/_events.scss */
.single-tribe_events .tribe-events-content .image-event img {
    display: inline;
}

/* line 161, ../sass/template/_events.scss */
.widget-event .title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* line 166, ../sass/template/_events.scss */
.widget-event .widget-description {
    position: relative;
    font-size: 16px;
    padding: 0 0 15px;
    margin: 0 0 40px;
}

/* line 171, ../sass/template/_events.scss */
.widget-event .widget-description:before {
    content: '';
    width: 50px;
    height: 1px;
    background: #b5a473;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .widget-event .widget-description:before {
    right: 0;
    left: auto;
}

/* line 181, ../sass/template/_events.scss */
.widget-event .btn-more {
    margin-top: 20px;
}

/* line 185, ../sass/template/_events.scss */
.tribe-events-list-widget .tribe-list-widget {
    padding: 0;
    margin: 0;
}

/* line 188, ../sass/template/_events.scss */
.tribe-events-list-widget .tribe-list-widget .tribe-events-list-widget-events {
    padding: 0;
    margin: 0 0 25px;
}

/* line 192, ../sass/template/_events.scss */
.tribe-events-list-widget .tribe-list-widget .tribe-event-image {
    width: 100px;
    padding-right: 20px;
    float: left;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .tribe-events-list-widget .tribe-list-widget .tribe-event-image {
    padding-left: 20px;
    padding-right: inherit;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .tribe-events-list-widget .tribe-list-widget .tribe-event-image {
    float: right;
}

/* line 197, ../sass/template/_events.scss */
.tribe-events-list-widget .tribe-list-widget .tribe-event-title {
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 202, ../sass/template/_events.scss */
    #tribe-events div.tribe-events-single-event-description {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    /* line 202, ../sass/template/_events.scss */
    #tribe-events div.tribe-events-single-event-description {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    /* line 202, ../sass/template/_events.scss */
    #tribe-events div.tribe-events-single-event-description {
        margin-bottom: 30px;
    }
}

/* line 214, ../sass/template/_events.scss */
.single-tribe_events .tribe-events-single-event-title {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 20px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* line 214, ../sass/template/_events.scss */
    .single-tribe_events .tribe-events-single-event-title {
        font-size: 28px;
        line-height: 38px;
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    /* line 214, ../sass/template/_events.scss */
    .single-tribe_events .tribe-events-single-event-title {
        font-size: 24px;
        line-height: 34px;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    /* line 214, ../sass/template/_events.scss */
    .single-tribe_events .tribe-events-single-event-title {
        font-size: 18px;
        line-height: 28px;
        margin-top: 0;
    }
}

/* line 234, ../sass/template/_events.scss */
.single-tribe_events .social-share {
    margin: 30px 0;
}

/* line 236, ../sass/template/_events.scss */
.single-tribe_events .social-share .share-label {
    position: absolute;
    left: -99999px;
    top: -99999px;
}

/* line 242, ../sass/template/_events.scss */
.single-tribe_events .related-events {
    position: relative;
    overflow: hidden;
}

/* line 245, ../sass/template/_events.scss */
.single-tribe_events .related-events .tribe-events-list.event-list .tribe-events-image .tribe-events-title-wrapper,
.single-tribe_events .related-events .tribe-events-list.event-grid .tribe-events-image .tribe-events-title-wrapper {
    margin-left: 30px;
    margin-right: 30px;
}

/* line 250, ../sass/template/_events.scss */
.single-tribe_events .related-events .tribe-events-list.event-list .tribe-events-image .tribe-events-list-event-title,
.single-tribe_events .related-events .tribe-events-list.event-grid .tribe-events-image .tribe-events-list-event-title {
    font-size: 14px;
    line-height: 24px;
}

/* line 255, ../sass/template/_events.scss */
.single-tribe_events .related-events .related-events-content {
    position: static;
}

/* line 258, ../sass/template/_events.scss */
.single-tribe_events .related-events .owl-carousel {
    position: static;
}

/* line 260, ../sass/template/_events.scss */
.single-tribe_events .related-events .owl-carousel .owl-controls {
    position: absolute;
    top: 0;
    margin: 35px 0 0;
    right: 0;
}

/* line 115, ../sass/rtl/_rtl.scss */
.rtl .single-tribe_events .related-events .owl-carousel .owl-controls {
    left: 0;
    right: auto;
}

/* line 266, ../sass/template/_events.scss */
.single-tribe_events .related-events .owl-carousel .owl-controls .owl-nav .owl-prev,
.single-tribe_events .related-events .owl-carousel .owl-controls .owl-nav .owl-next {
    opacity: 1;
    filter: alpha(opacity=100);
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: 0;
    padding: 0;
    position: static;
}

/* line 275, ../sass/template/_events.scss */
.single-tribe_events .related-events .owl-carousel .owl-controls .owl-nav .owl-prev {
    margin-right: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .single-tribe_events .related-events .owl-carousel .owl-controls .owl-nav .owl-prev {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 280, ../sass/template/_events.scss */
.single-tribe_events .related-events .owl-carousel .owl-dots {
    position: absolute;
    left: -99999px;
    top: -99999px;
}

/* line 288, ../sass/template/_events.scss */
.single-tribe_events .ninzio-social-share strong {
    background: #f5f5f5;
    font-size: 11px;
    font-weight: 500;
    padding: 0 20px;
    line-height: 36px;
    color: #999999;
    text-transform: uppercase;
    margin: 0 10px 0 0;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .single-tribe_events .ninzio-social-share strong {
    margin: 0 0 0 10px;
}

/* line 299, ../sass/template/_events.scss */
.single-tribe_events .event-metas {
    margin-bottom: 30px;
}

/* line 302, ../sass/template/_events.scss */
.single-tribe_events .tribe-events-single-event-description ul {
    list-style: none;
    line-height: 32px;
}

/* line 306, ../sass/template/_events.scss */
.single-tribe_events .image-event {
    overflow: hidden;
    margin: 0 0 30px;
}

/* line 309, ../sass/template/_events.scss */
.single-tribe_events .image-event .event-meta {
    background: #b5a473;
}

@media (min-width: 1024px) {
    /* line 306, ../sass/template/_events.scss */
    .single-tribe_events .image-event {
        display: table;
        width: 100%;
    }

    /* line 315, ../sass/template/_events.scss */
    .single-tribe_events .image-event > * {
        display: table-cell;
        vertical-align: middle;
    }

    /* line 319, ../sass/template/_events.scss */
    .single-tribe_events .image-event > .image-thumbnail {
        width: calc(100% - 190px);
    }

    /* line 322, ../sass/template/_events.scss */
    .single-tribe_events .image-event .event-meta {
        width: 190px;
    }
}

/* line 327, ../sass/template/_events.scss */
.single-tribe_events .event-meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 15px 0 15px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

@media only screen and (max-width: 767px) {
    /* line 327, ../sass/template/_events.scss */
    .single-tribe_events .event-meta {
        display: block;
    }
}

@media (max-width: 640px) {
    /* line 327, ../sass/template/_events.scss */
    .single-tribe_events .event-meta {
        display: block;
    }
}

/* line 338, ../sass/template/_events.scss */
.single-tribe_events .event-meta address {
    margin: 0;
}

/* line 341, ../sass/template/_events.scss */
.single-tribe_events .event-meta h3 {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 5px;
    text-transform: uppercase;
    font-family: "Lato", serif;
}

/* line 348, ../sass/template/_events.scss */
.single-tribe_events .event-meta .media-content {
    display: block;
    overflow: hidden;
}

/* line 352, ../sass/template/_events.scss */
.single-tribe_events .event-meta > div {
    padding: 0;
    border: 0;
    margin: 0 10px 0 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .5px;
    color: #999999;
    font-weight: 500;
    -webkit-flex-basis: 16.666%;
    -moz-flex-basis: 16.666%;
    -ms-flex-basis: 16.666%;
    flex-basis: 16.666%;
    max-width: 16.666%;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .single-tribe_events .event-meta > div {
    margin: 0 0 0 10px;
}

@media (max-width: 640px) {
    /* line 352, ../sass/template/_events.scss */
    .single-tribe_events .event-meta > div {
        max-width: 100%;
        margin: 0 0 10px 0;
        -webkit-flex-grow: 1;
        -moz-flex-grow: 1;
        -ms-flex-grow: 1;
        flex-grow: 1;
        -webkit-flex-basis: 1%;
        -moz-flex-basis: 1%;
        -ms-flex-basis: 1%;
        flex-basis: 1%;
    }
}

/* line 369, ../sass/template/_events.scss */
.single-tribe_events .event-meta > div:first-child {
    border: none;
    margin-left: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .single-tribe_events .event-meta > div:first-child {
    margin-right: 0;
    margin-left: inherit;
}

/* line 373, ../sass/template/_events.scss */
.single-tribe_events .event-meta > div:last-child {
    border: none;
    margin-right: 0;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .single-tribe_events .event-meta > div:last-child {
    margin-left: 0;
    margin-right: inherit;
}

/* line 377, ../sass/template/_events.scss */
.single-tribe_events .event-meta > div .media-left {
    padding-top: 5px;
}

/* line 380, ../sass/template/_events.scss */
.single-tribe_events .event-meta > div i {
    display: block;
    float: left;
    margin: 5px 5px 0 0;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .single-tribe_events .event-meta > div i {
    float: right;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .single-tribe_events .event-meta > div i {
    margin: 5px 0 0 5px;
}

/* line 387, ../sass/template/_events.scss */
.single-tribe_events .title {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 15px;
    color: #999999;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    padding: 30px 0 0;
    border-top: 1px solid #e0e0e0;
}

/* line 397, ../sass/template/_events.scss */
.single-tribe_events .speakers {
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    padding: 30px;
    text-align: center;
}

/* line 405, ../sass/template/_events.scss */
.single-tribe_events div.avarta {
    margin: 0 0 10px;
}

/* line 407, ../sass/template/_events.scss */
.single-tribe_events div.avarta img.avatar {
    margin: 0;
    width: 110px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* line 413, ../sass/template/_events.scss */
.single-tribe_events .name-teacher {
    font-size: 12px;
    color: #777777;
    margin: 0;
    text-transform: inherit;
}

/* line 419, ../sass/template/_events.scss */
.single-tribe_events .job {
    font-weight: 700;
    color: #969696;
    font-size: 12px;
    text-transform: uppercase;
}

/* line 426, ../sass/template/_events.scss */
.single-tribe_events .times {
    margin: 20px 0 40px;
    padding: 20px;
    background: #353535;
    text-align: center;
}

/* line 431, ../sass/template/_events.scss */
.single-tribe_events .times > div {
    display: inline-block;
    margin: 0 25px;
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
    font-family: "Lato";
}

/* line 438, ../sass/template/_events.scss */
.single-tribe_events .times > div span {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #b5a473;
}

/* line 448, ../sass/template/_events.scss */
.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
    max-width: 100%;
}

/* line 451, ../sass/template/_events.scss */
.tribe-events-list .type-tribe_events {
    padding: 0 !important;
}

/* line 457, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image, .tribe-events-list.event-grid .tribe-events-image {
    position: relative;
}

/* line 459, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image .tribe-events-event-image, .tribe-events-list.event-grid .tribe-events-image .tribe-events-event-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* line 464, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image .tribe-events-event-image:before, .tribe-events-list.event-grid .tribe-events-image .tribe-events-event-image:before {
    background-position: 0 0;
    background-repeat: repeat;
    background: -webkit-gradient(linear, center top, center bottom, from(transparent), to(rgba(0, 0, 0, 0.6)));
    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: -moz-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: -ms-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    content: "";
    z-index: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* line 483, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image .tribe-events-event-image img, .tribe-events-list.event-grid .tribe-events-image .tribe-events-event-image img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* line 490, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image:hover .tribe-events-event-image:before, .tribe-events-list.event-grid .tribe-events-image:hover .tribe-events-event-image:before {
    z-index: 1;
}

/* line 493, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image:hover .tribe-events-event-image img, .tribe-events-list.event-grid .tribe-events-image:hover .tribe-events-event-image img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

/* line 498, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image .tribe-events-title-wrapper, .tribe-events-list.event-grid .tribe-events-image .tribe-events-title-wrapper {
    position: absolute;
    bottom: 0;
    z-index: 2;
    margin: 0 44px 13px 44px;
    left: 0px;
}

/* line 35, ../sass/rtl/_rtl.scss */
.rtl .tribe-events-list.event-list .tribe-events-image .tribe-events-title-wrapper, .rtl .tribe-events-list.event-grid .tribe-events-image .tribe-events-title-wrapper {
    margin: 0 44px 13px 44px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .tribe-events-list.event-list .tribe-events-image .tribe-events-title-wrapper, .rtl .tribe-events-list.event-grid .tribe-events-image .tribe-events-title-wrapper {
    right: 0px;
    left: auto;
}

/* line 505, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image .tribe-events-list-event-title, .tribe-events-list.event-grid .tribe-events-image .tribe-events-list-event-title {
    margin: 10px 0;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: .5px;
    position: relative;
    text-transform: uppercase;
}

/* line 514, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image .tribe-events-list-event-title a, .tribe-events-list.event-grid .tribe-events-image .tribe-events-list-event-title a {
    color: #FFFFFF !important;
}

/* line 516, ../sass/template/_events.scss */
.tribe-events-list.event-list .tribe-events-image .tribe-events-list-event-title a:hover, .tribe-events-list.event-grid .tribe-events-image .tribe-events-list-event-title a:hover {
    color: #FFFFFF !important;
}

/* line 522, ../sass/template/_events.scss */
.tribe-events-list.event-list .entry-date-wrapper, .tribe-events-list.event-grid .entry-date-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    display: table;
    color: #FFFFFF !important;
    font-family: "Montserrat";
    font-size: 26px;
    font-weight: 400;
    overflow: hidden;
    text-transform: uppercase;
    text-align: center;
    width: 60px;
    height: 70px;
}

/* line 108, ../sass/rtl/_rtl.scss */
.rtl .tribe-events-list.event-list .entry-date-wrapper, .rtl .tribe-events-list.event-grid .entry-date-wrapper {
    right: 15px;
    left: auto;
}

/* line 535, ../sass/template/_events.scss */
.tribe-events-list.event-list .entry-date-wrapper .entry-date, .tribe-events-list.event-grid .entry-date-wrapper .entry-date {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
}

/* line 539, ../sass/template/_events.scss */
.tribe-events-list.event-list .entry-date-wrapper .entry-date .day, .tribe-events-list.event-grid .entry-date-wrapper .entry-date .day {
    display: block;
    margin: 0;
    width: 100%;
    line-height: normal;
}

/* line 545, ../sass/template/_events.scss */
.tribe-events-list.event-list .entry-date-wrapper .entry-date .month-year, .tribe-events-list.event-grid .entry-date-wrapper .entry-date .month-year {
    display: block;
    font-size: 13px;
    margin: -5px 0 0;
    width: 100%;
    line-height: normal;
}

/* line 555, ../sass/template/_events.scss */
.tribe-events-list.event-list .entry-meta-wrapper .tribe-event-cost, .tribe-events-list.event-grid .entry-meta-wrapper .tribe-event-cost {
    color: #b5a473;
}

/* line 557, ../sass/template/_events.scss */
.tribe-events-list.event-list .entry-meta-wrapper .tribe-event-cost i, .tribe-events-list.event-grid .entry-meta-wrapper .tribe-event-cost i {
    color: #777777;
}

/* line 561, ../sass/template/_events.scss */
.tribe-events-list.event-list .entry-meta-wrapper i, .tribe-events-list.event-grid .entry-meta-wrapper i {
    margin-right: 5px;
    font-size: 14px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .tribe-events-list.event-list .entry-meta-wrapper i, .rtl .tribe-events-list.event-grid .entry-meta-wrapper i {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 565, ../sass/template/_events.scss */
.tribe-events-list.event-list .entry-meta-wrapper .tribe-events-venue-details, .tribe-events-list.event-grid .entry-meta-wrapper .tribe-events-venue-details {
    font-style: normal;
    font-weight: 500;
}

/* line 574, ../sass/template/_events.scss */
.event-grid-style1 .entry-date-wrapper,
.event-grid-style1 .tribe-events-event-cost,
.event-grid-style1 .info-time {
    display: none;
}

/* line 579, ../sass/template/_events.scss */
.event-grid-style1 .entry-date-wrapper {
    float: left;
    background: #b5a473;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    text-align: center;
    min-width: 70px;
    margin-right: 15px;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .event-grid-style1 .entry-date-wrapper {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .event-grid-style1 .entry-date-wrapper {
    margin-left: 15px;
    margin-right: inherit;
}

/* line 587, ../sass/template/_events.scss */
.event-grid-style1 .entry-date-wrapper .day {
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
    color: #fff !important;
    display: block;
}

/* line 595, ../sass/template/_events.scss */
.event-grid-style1 .entry-date-wrapper .month-year {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.05;
    color: #fff !important;
    display: block;
    padding: 5px;
    background: #b5a473;
}

/* line 606, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-list-event-title {
    font-size: 16px;
    margin: 0 0 7px;
    text-transform: uppercase;
}

/* line 611, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-inner {
    padding: 15px;
    background: #f5f5f5;
}

/* line 615, ../sass/template/_events.scss */
.event-grid-style1 i {
    margin-right: 5px;
    color: #777777;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .event-grid-style1 i {
    margin-left: 5px;
    margin-right: inherit;
}

/* line 619, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-event-cost {
    color: #b5a473;
}

/* line 622, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-image {
    position: relative;
}

/* line 624, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-image .tribe-events-event-image:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* line 633, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-image .tribe-events-timmer {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
}

/* line 642, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-image .times {
    text-align: center;
}

/* line 644, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-image .times > div {
    font-weight: 500;
    font-size: 12px;
    display: inline-block;
    margin: 0 10px;
    color: #999999;
}

/* line 650, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-image .times > div > span {
    color: #fff !important;
    font-size: 48px;
    font-weight: 700;
    display: block;
    line-height: 1.05;
}

/* line 660, ../sass/template/_events.scss */
.event-grid-style1 .tribe-events-image:hover .tribe-events-event-image:before,
.event-grid-style1 .tribe-events-image:hover .tribe-events-timmer {
    opacity: 0;
    filter: alpha(opacity=0);
}

/* line 667, ../sass/template/_events.scss */
.list-events {
    padding: 0 0 30px;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 0 30px;
    clear: both;
    overflow: hidden;
}

/* line 673, ../sass/template/_events.scss */
.list-events:last-child {
    margin: 0;
    border: none;
    padding: 0;
}

/* line 678, ../sass/template/_events.scss */
.list-events .top {
    line-height: 1;
    margin: 0 0 5px;
}

/* line 682, ../sass/template/_events.scss */
.list-events .day {
    font-size: 45px;
    letter-spacing: -0.7px;
}

/* line 686, ../sass/template/_events.scss */
.list-events .month {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    color: #444444;
}

/* line 692, ../sass/template/_events.scss */
.list-events .week {
    color: #aaaaaa;
    font-weight: 300;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
}

/* line 700, ../sass/template/_events.scss */
.list-events .meta-time {
    font-size: 15px;
    margin: 0 0 15px;
}

/* line 704, ../sass/template/_events.scss */
.list-events .tribe-events-list-event-title {
    font-size: 23px;
    margin: 0 0 8px;
}

/* line 709, ../sass/template/_events.scss */
.list-events .tribe-events-event-image img {
    width: 220px;
}

@media (min-width: 768px) {
    /* line 715, ../sass/template/_events.scss */
    .list-events .media .media-left {
        width: 20%;
    }

    /* line 718, ../sass/template/_events.scss */
    .list-events .media .media-body {
        width: 60%;
    }

    /* line 721, ../sass/template/_events.scss */
    .list-events .media .media-right {
        width: 20%;
    }
}

@media (max-width: 767px) {
    /* line 728, ../sass/template/_events.scss */
    .list-events .media > div {
        padding: 0;
        display: block;
        width: 100%;
        float: none;
    }
}

/* line 737, ../sass/template/_events.scss */
.event-list1 {
    font-size: 12px;
    font-weight: 500;
}

/* line 741, ../sass/template/_events.scss */
.event-list1:hover .left-image a:before {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

/* line 746, ../sass/template/_events.scss */
.event-list1 .entry-meta-wrapper > * {
    margin: 0 0 3px;
}

/* line 748, ../sass/template/_events.scss */
.event-list1 .entry-meta-wrapper > *:last-child {
    margin: 0;
}

/* line 753, ../sass/template/_events.scss */
.event-list1 .left-image {
    width: 135px;
    float: left;
    margin-right: 15px;
    position: relative;
}

/* line 11, ../sass/rtl/_rtl.scss */
.rtl .event-list1 .left-image {
    float: right;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .event-list1 .left-image {
    margin-left: 15px;
    margin-right: inherit;
}

/* line 758, ../sass/template/_events.scss */
.event-list1 .left-image a:before {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    content: '';
    width: 100%;
    height: 100%;
    background: #b5a473;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

/* line 770, ../sass/template/_events.scss */
.event-list1 .tribe-events-inner {
    overflow: hidden;
}

/* line 773, ../sass/template/_events.scss */
.event-list1 .tribe-events-list-event-title {
    margin: 8px 0;
    font-size: 16px;
    text-transform: uppercase;
}

/* line 778, ../sass/template/_events.scss */
.event-list1 .entry-meta-time {
    font-weight: 600;
    display: none;
}

/* line 782, ../sass/template/_events.scss */
.event-list1 .title-label {
    color: #b5a473;
}

/* line 787, ../sass/template/_events.scss */
.event-grid-style2 {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

/* line 788, ../sass/template/_events.scss */
.event-grid-style2 .tribe-events-image {
    max-height: 365px;
    overflow: hidden;
    position: relative;
}

/* line 792, ../sass/template/_events.scss */
.event-grid-style2 .tribe-events-image .tribe-events-title-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    z-index: 2;
}

/* line 800, ../sass/template/_events.scss */
.event-grid-style2 .tribe-events-image .tribe-events-event-image {
    max-height: 365px;
    overflow: hidden;
}

/* line 804, ../sass/template/_events.scss */
.event-grid-style2 .tribe-events-image .tribe-events-event-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: -3%;
    left: 0;
    z-index: 1;
    background: #b5a473;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 0.7) 70%);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 0.7) 70%);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 0.7) 70%);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 0.7) 70%);
    /* Standard syntax */
}

/* line 821, ../sass/template/_events.scss */
.event-grid-style2 .tribe-events-list-event-title {
    font-size: 24px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

/* line 825, ../sass/template/_events.scss */
.event-grid-style2 .tribe-events-list-event-title a {
    color: #fff !important;
}

/* line 829, ../sass/template/_events.scss */
.event-grid-style2 i {
    font-size: 14px;
    margin-right: 5px;
}

/* line 22, ../sass/rtl/_rtl.scss */
.rtl .event-grid-style2 i {
    margin-left: 5px;
    margin-right: inherit;
}

/* 12. responsive */
/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/
/*==========  Mobile First Method  ==========*/
/* Custom, iPhone Retina */
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
/*==========  Non-Mobile First Method  ==========*/
/* Large Devices, Wide Screens */
/* Medium Devices, Desktops */
/* Small Devices, Tablets */
/* Extra Small Devices, Phones */
/* Custom, iPhone Retina */
/*==========================================================*/
@media (max-width: 1200px) {
    /* line 63, ../sass/template/_responsive.scss */
    .header-v1 .header-meta {
        display: none;
    }

    /* line 69, ../sass/template/_responsive.scss */
    .header-v3 .header-inner-wrapper,
    .header-v4 .header-inner-wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    /* line 73, ../sass/template/_responsive.scss */
    .header-v3 .header-meta,
    .header-v4 .header-meta {
        float: none !important;
        -webkit-box-flex: 0 0 37%;
        -moz-box-flex: 0 0 37%;
        -webkit-flex: 0 0 37%;
        -ms-flex: 0 0 37%;
        flex: 0 0 37%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -ms-flex-pack: flex-start;
    }

    /* line 80, ../sass/template/_responsive.scss */
    .header-v3 .header-logo,
    .header-v4 .header-logo {
        height: 94px;
        -webkit-box-flex: 0 0 26%;
        -moz-box-flex: 0 0 26%;
        -webkit-flex: 0 0 26%;
        -ms-flex: 0 0 26%;
        flex: 0 0 26%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        position: static !important;
        float: none !important;
        margin: 0px 0 !important;
        -webkit-transform: translate(0) !important;
        -moz-transform: translate(0) !important;
        -ms-transform: translate(0) !important;
        -o-transform: translate(0) !important;
        transform: translate(0) !important;
    }

    /* line 92, ../sass/template/_responsive.scss */
    .header-v4 .navbar-nav > li {
        padding-right: 30px;
    }

    /* line 94, ../sass/template/_responsive.scss */
    .header-v4 .navbar-nav > li > a {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    /* line 99, ../sass/template/_responsive.scss */
    .ninzio-header.header-v3 .header-actions,
    .ninzio-header.header-v4 .header-actions {
        float: none !important;
        height: 94px;
        -webkit-box-flex: 0 0 37%;
        -moz-box-flex: 0 0 37%;
        -webkit-flex: 0 0 37%;
        -ms-flex: 0 0 37%;
        flex: 0 0 37%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
    }

    /* line 106, ../sass/template/_responsive.scss */
    .ninzio-header.header-v3 .header-actions .header-meta-2,
    .ninzio-header.header-v4 .header-actions .header-meta-2 {
        float: none !important;
        margin: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-end;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        justify-content: flex-end;
        -ms-flex-pack: flex-end;
        -webkit-box-flex: 0 0 80%;
        -moz-box-flex: 0 0 80%;
        -webkit-flex: 0 0 80%;
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
    }

    /* line 113, ../sass/template/_responsive.scss */
    .ninzio-header.header-v3 .header-actions .header-box-right,
    .ninzio-header.header-v4 .header-actions .header-box-right {
        float: none !important;
        margin: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-end;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        justify-content: flex-end;
        -ms-flex-pack: flex-end;
        -webkit-box-flex: 0 0 20%;
        -moz-box-flex: 0 0 20%;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }

    /* line 120, ../sass/template/_responsive.scss */
    .ninzio-header.header-v3 .header-actions .search-form,
    .ninzio-header.header-v4 .header-actions .search-form {
        display: inline-block;
        width: 40px;
        height: 40px;
    }

    /* line 124, ../sass/template/_responsive.scss */
    .ninzio-header.header-v3 .header-actions .top-cart,
    .ninzio-header.header-v4 .header-actions .top-cart {
        display: inline-block;
        width: 40px;
        height: 40px;
    }

    /* line 129, ../sass/template/_responsive.scss */
    .header-v4 .navbar-nav.megamenu > li > a {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    /* line 133, ../sass/template/_responsive.scss */
    .product-block.grid .groups-button > div {
        margin: 0;
    }
}

@media (min-width: 992px) {
    /* line 139, ../sass/template/_responsive.scss */
    .md-clearfix {
        clear: both;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* line 145, ../sass/template/_responsive.scss */
    .sm-clearfix {
        clear: both;
    }
}

@media (max-width: 1200px) {
    /* line 150, ../sass/template/_responsive.scss */
    .edr-course .edr-course__title,
    .widget-features-box.default .ourservice-heading {
        font-size: 16px;
        line-height: 28px;
    }

    /* line 158, ../sass/template/_responsive.scss */
    .banner-countdown-widget .times > div span {
        font-size: 30px;
        padding: 7px 10px;
    }

    /* line 165, ../sass/template/_responsive.scss */
    .banner-countdown-widget .title {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* line 170, ../sass/template/_responsive.scss */
    #main-mobile-menu .has-submenu > .sub-menu li > a {
        text-align: left;
    }

    /* line 173, ../sass/template/_responsive.scss */
    #main-mobile-menu .widget .widget-title, #main-mobile-menu .widget .widgettitle, #main-mobile-menu .widget .widget-heading {
        margin-top: 15px;
        text-align: left;
    }
}

@media (max-width: 1024px) {
    /* line 179, ../sass/template/_responsive.scss */
    #main-mobile-menu .widget .widget-title, #main-mobile-menu .widget .widgettitle, #main-mobile-menu .widget .widget-heading {
        margin-top: 15px;
    }

    /* line 182, ../sass/template/_responsive.scss */
    #main-mobile-menu .has-submenu > .sub-menu li > a {
        padding: 18px 0px;
        font-size: 11px;
    }

    /* line 186, ../sass/template/_responsive.scss */
    #wrapper-container {
        overflow-x: hidden;
    }

    /* line 189, ../sass/template/_responsive.scss */
    .hidden-1024 {
        display: none;
    }

    /* line 192, ../sass/template/_responsive.scss */
    .show-1024 {
        display: block !important;
    }
}

@media (max-width: 480px) {
    /* line 197, ../sass/template/_responsive.scss */
    .widget-social.right {
        text-align: inherit;
    }

    /* line 201, ../sass/template/_responsive.scss */
    .ninzio-footer .widget-social {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    /* line 210, ../sass/template/_responsive.scss */
    #main-mobile-menu .widget .widget-title, #main-mobile-menu .widget .widgettitle, #main-mobile-menu .widget .widget-heading {
        text-align: center;
    }

    /* line 213, ../sass/template/_responsive.scss */
    .navbar-nav .sub-menu .widget-title:before, .navbar-nav .sub-menu .widgettitle:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    /* line 217, ../sass/template/_responsive.scss */
    .comment-list ul.children > li {
        padding-left: 15px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .comment-list ul.children > li {
        padding-right: 15px;
        padding-left: inherit;
    }

    /* line 221, ../sass/template/_responsive.scss */
    .widget-features-box.default .row-item > div {
        margin-top: 15px;
    }

    /* line 225, ../sass/template/_responsive.scss */
    .widget-course-categories.style1 .category-wrapper {
        margin-bottom: 15px;
    }

    /* line 228, ../sass/template/_responsive.scss */
    .widget-search-form.layout1 .input_search,
    .widget-search-form.layout1 .inner-select {
        margin-bottom: 15px;
    }

    /* line 232, ../sass/template/_responsive.scss */
    .banner-countdown-widget {
        text-align: center;
    }

    /* line 234, ../sass/template/_responsive.scss */
    .banner-countdown-widget .times {
        text-align: center;
    }

    /* line 238, ../sass/template/_responsive.scss */
    .list-events .media > div {
        margin-bottom: 10px;
    }

    /* line 241, ../sass/template/_responsive.scss */
    .counters {
        text-align: center;
        margin-bottom: 20px;
    }

    /* line 245, ../sass/template/_responsive.scss */
    .counters .title::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    /* line 249, ../sass/template/_responsive.scss */
    .widget-event .widget-description {
        margin: 0;
    }

    /* line 252, ../sass/template/_responsive.scss */
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    /* line 259, ../sass/template/_responsive.scss */
    .widget-features-box.center .fbox-icon {
        margin-bottom: 15px;
    }

    /* line 262, ../sass/template/_responsive.scss */
    .widget-features-box.center .feature-box {
        margin-bottom: 20px;
    }

    /* line 265, ../sass/template/_responsive.scss */
    .widget-action.styledefault .action {
        float: left;
        margin-bottom: 30px;
    }

    /* line 11, ../sass/rtl/_rtl.scss */
    .rtl .widget-action.styledefault .action {
        float: right;
    }

    /* line 269, ../sass/template/_responsive.scss */
    .ninzio-breadscrumb .bread-title {
        font-size: 30px;
    }

    /* line 273, ../sass/template/_responsive.scss */
    .post-grid-v3 .entry-title {
        font-size: 20px;
    }

    /* line 276, ../sass/template/_responsive.scss */
    .layout-blog {
        padding-right: 0px;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
    /* line 292, ../sass/template/_responsive.scss */
    .header-mobile .header-mobile-top {
        padding: 10px;
    }

    /* line 295, ../sass/template/_responsive.scss */
    .header-mobile .logo-mobile-wrapper {
        max-width: 60%;
    }
}

@media (max-width: 1199px) {
    /* line 302, ../sass/template/_responsive.scss */
    .navbar-nav > li {
        padding-right: 32px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .navbar-nav > li {
        padding-left: 32px;
        padding-right: inherit;
    }

    /* line 304, ../sass/template/_responsive.scss */
    .navbar-nav > li:last-child {
        padding-right: 0px;
    }

    /* line 22, ../sass/rtl/_rtl.scss */
    .rtl .navbar-nav > li:last-child {
        padding-left: 0px;
        padding-right: inherit;
    }
}


.jv-reader-account {
    padding: 5px;
    text-align: center;
}

@media (min-width: 681px) {
    .jv-reader-account {
        display: none;
    }
}