@charset "UTF-8";body {
    -webkit-backface-visibility: hidden
}

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

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

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

    25%,75% {
        opacity: 0
    }
}

@-moz-keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

@-o-keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

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

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

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

@-moz-keyframes shake {
    0%,to {
        -moz-transform: translateX(0)
    }

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

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

@-o-keyframes shake {
    0%,to {
        -o-transform: translateX(0)
    }

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

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

@keyframes shake {
    0%,to {
        transform: translate(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate(-10px)
    }

    20%,40%,60%,80% {
        transform: translate(10px)
    }
}

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

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

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

@-moz-keyframes bounce {
    0%,20%,50%,80%,to {
        -moz-transform: translateY(0)
    }

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

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

@-o-keyframes bounce {
    0%,20%,50%,80%,to {
        -o-transform: translateY(0)
    }

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

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

@keyframes bounce {
    0%,20%,50%,80%,to {
        transform: translateY(0)
    }

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

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

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

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

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

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

    to {
        -webkit-transform: scale(1) rotate(0)
    }
}

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

    10%,20% {
        -moz-transform: scale(.9) rotate(-3deg)
    }

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

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

    to {
        -moz-transform: scale(1) rotate(0)
    }
}

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

    10%,20% {
        -o-transform: scale(.9) rotate(-3deg)
    }

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

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

    to {
        -o-transform: scale(1) rotate(0)
    }
}

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

    10%,20% {
        transform: scale(.9) rotate(-3deg)
    }

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

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

    to {
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes swing {
    20%,40%,60%,80%,to {
        -webkit-transform-origin: top center
    }

    20% {
        -webkit-transform: rotate(15deg)
    }

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

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

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

    to {
        -webkit-transform: rotate(0deg)
    }
}

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

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

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

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

    to {
        -moz-transform: rotate(0deg)
    }
}

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

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

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

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

    to {
        -o-transform: rotate(0deg)
    }
}

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

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

    60% {
        transform: rotate(5deg)
    }

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

    to {
        transform: rotate(0)
    }
}

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

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

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

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

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

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

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

    to {
        -webkit-transform: translateX(0%)
    }
}

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

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

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

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

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

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

    to {
        -moz-transform: translateX(0%)
    }
}

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

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

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

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

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

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

    to {
        -o-transform: translateX(0%)
    }
}

@keyframes wobble {
    0% {
        transform: translate(0)
    }

    15% {
        transform: translate(-25%) rotate(-5deg)
    }

    30% {
        transform: translate(20%) rotate(3deg)
    }

    45% {
        transform: translate(-15%) rotate(-3deg)
    }

    60% {
        transform: translate(10%) rotate(2deg)
    }

    75% {
        transform: translate(-5%) rotate(-1deg)
    }

    to {
        transform: translate(0)
    }
}

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

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

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

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1)
    }

    50% {
        -moz-transform: scale(1.1)
    }

    to {
        -moz-transform: scale(1)
    }
}

@-o-keyframes pulse {
    0% {
        -o-transform: scale(1)
    }

    50% {
        -o-transform: scale(1.1)
    }

    to {
        -o-transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flip {
    -webkit-backface-visibility: visible!important;
    -webkit-animation-name: flip;
    -moz-backface-visibility: visible!important;
    -moz-animation-name: flip;
    -o-backface-visibility: visible!important;
    -o-animation-name: flip;
    backface-visibility: visible!important;
    animation-name: flip
}

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

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

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

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

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

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

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

    to {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

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

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

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

    to {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

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

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

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

    to {
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
}

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

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

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

    to {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

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

    to {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

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

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

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

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

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

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

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

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

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

    to {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

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

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

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

    to {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

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

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

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

    to {
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
}

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

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

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

    to {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

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

    to {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

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

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

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

    to {
        opacity: 1
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

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

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

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

    to {
        opacity: 1;
        transform: translate(0)
    }
}

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate(20px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

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

    to {
        opacity: 1;
        transform: translate(0)
    }
}

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

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate(2000px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

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

    to {
        opacity: 0
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

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

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateY(-20px)
    }
}

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

    to {
        opacity: 0;
        -o-transform: translateY(-20px)
    }
}

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

    to {
        opacity: 0;
        transform: translateY(-20px)
    }
}

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateY(20px)
    }
}

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

    to {
        opacity: 0;
        -o-transform: translateY(20px)
    }
}

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

    to {
        opacity: 0;
        transform: translateY(20px)
    }
}

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateX(-20px)
    }
}

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

    to {
        opacity: 0;
        -o-transform: translateX(-20px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translate(0)
    }

    to {
        opacity: 0;
        transform: translate(-20px)
    }
}

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateX(20px)
    }
}

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

    to {
        opacity: 0;
        -o-transform: translateX(20px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translate(0)
    }

    to {
        opacity: 0;
        transform: translate(20px)
    }
}

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateY(-2000px)
    }
}

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

    to {
        opacity: 0;
        -o-transform: translateY(-2000px)
    }
}

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

    to {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateY(2000px)
    }
}

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

    to {
        opacity: 0;
        -o-transform: translateY(2000px)
    }
}

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

    to {
        opacity: 0;
        transform: translateY(2000px)
    }
}

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateX(-2000px)
    }
}

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

    to {
        opacity: 0;
        -o-transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translate(0)
    }

    to {
        opacity: 0;
        transform: translate(-2000px)
    }
}

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateX(2000px)
    }
}

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

    to {
        opacity: 0;
        -o-transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translate(0)
    }

    to {
        opacity: 0;
        transform: translate(2000px)
    }
}

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

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

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

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

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

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

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

    to {
        -moz-transform: scale(1)
    }
}

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

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

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

    to {
        -o-transform: scale(1)
    }
}

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

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

    70% {
        transform: scale(.9)
    }

    to {
        transform: scale(1)
    }
}

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

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

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

    to {
        -webkit-transform: translateY(0)
    }
}

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

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

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

    to {
        -moz-transform: translateY(0)
    }
}

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

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

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

    to {
        -o-transform: translateY(0)
    }
}

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

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

    80% {
        transform: translateY(10px)
    }

    to {
        transform: translateY(0)
    }
}

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

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

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

    to {
        -webkit-transform: translateY(0)
    }
}

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

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

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

    to {
        -moz-transform: translateY(0)
    }
}

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

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

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

    to {
        -o-transform: translateY(0)
    }
}

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

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

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

    to {
        transform: translateY(0)
    }
}

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

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

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

    to {
        -webkit-transform: translateX(0)
    }
}

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

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

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

    to {
        -moz-transform: translateX(0)
    }
}

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

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

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

    to {
        -o-transform: translateX(0)
    }
}

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

    60% {
        opacity: 1;
        transform: translate(30px)
    }

    80% {
        transform: translate(-10px)
    }

    to {
        transform: translate(0)
    }
}

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

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

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

    to {
        -webkit-transform: translateX(0)
    }
}

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

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

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

    to {
        -moz-transform: translateX(0)
    }
}

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

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

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

    to {
        -o-transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translate(2000px)
    }

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

    80% {
        transform: translate(10px)
    }

    to {
        transform: translate(0)
    }
}

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

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

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

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

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

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

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

    to {
        opacity: 0;
        -moz-transform: scale(.3)
    }
}

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

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

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

    to {
        opacity: 0;
        -o-transform: scale(.3)
    }
}

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

    25% {
        transform: scale(.95)
    }

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

    to {
        opacity: 0;
        transform: scale(.3)
    }
}

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

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

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateY(-2000px)
    }
}

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

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

    to {
        opacity: 0;
        -o-transform: translateY(-2000px)
    }
}

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

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

    to {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

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

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

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateY(2000px)
    }
}

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

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

    to {
        opacity: 0;
        -o-transform: translateY(2000px)
    }
}

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

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

    to {
        opacity: 0;
        transform: translateY(2000px)
    }
}

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

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

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateX(-2000px)
    }
}

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

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

    to {
        opacity: 0;
        -o-transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        transform: translate(0)
    }

    20% {
        opacity: 1;
        transform: translate(20px)
    }

    to {
        opacity: 0;
        transform: translate(-2000px)
    }
}

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

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

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

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

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

    to {
        opacity: 0;
        -moz-transform: translateX(2000px)
    }
}

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

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

    to {
        opacity: 0;
        -o-transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        transform: translate(0)
    }

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

    to {
        opacity: 0;
        transform: translate(2000px)
    }
}

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

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

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

    to {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1
    }
}

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

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

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

    to {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1
    }
}

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

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

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

    to {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1
    }
}

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

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

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

    to {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1
    }
}

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

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

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

    to {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
}

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

    to {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1
    }
}

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

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

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

    to {
        -moz-transform-origin: center center;
        -moz-transform: rotate(200deg);
        opacity: 0
    }
}

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

    to {
        -o-transform-origin: center center;
        -o-transform: rotate(200deg);
        opacity: 0
    }
}

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

    to {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0
    }
}

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

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

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

    to {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0
    }
}

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

    to {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0
    }
}

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

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

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

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

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

    to {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0
    }
}

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

    to {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0
    }
}

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

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

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

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

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

    to {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0
    }
}

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

    to {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0
    }
}

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

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

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

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

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

    to {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0
    }
}

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

    to {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

    20%,60% {
        -moz-transform: rotate(80deg);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out
    }

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

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

    to {
        -moz-transform: translateY(700px);
        opacity: 0
    }
}

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

    20%,60% {
        -o-transform: rotate(80deg);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out
    }

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

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

    to {
        -o-transform: translateY(700px);
        opacity: 0
    }
}

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

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

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

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

    to {
        transform: translateY(700px);
        opacity: 0
    }
}

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

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

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

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

    to {
        opacity: 1;
        -moz-transform: translateX(0px) rotate(0deg)
    }
}

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

    to {
        opacity: 1;
        -o-transform: translateX(0px) rotate(0deg)
    }
}

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

    to {
        opacity: 1;
        transform: translate(0) rotate(0)
    }
}

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

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

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

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

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

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

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translate(0) rotate(0)
    }

    to {
        opacity: 0;
        transform: translate(100%) rotate(120deg)
    }
}

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

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

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

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

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

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

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

    to {
        -moz-transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

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

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

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

    to {
        -o-transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translate(100%) skew(-30deg);
        opacity: 0
    }

    60% {
        transform: translate(-20%) skew(30deg);
        opacity: 1
    }

    80% {
        transform: translate(0) skew(-15deg);
        opacity: 1
    }

    to {
        transform: translate(0) skew(0);
        opacity: 1
    }
}

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

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

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

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

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

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

@keyframes lightSpeedOut {
    0% {
        transform: translate(0) skew(0);
        opacity: 1
    }

    to {
        transform: translate(100%) skew(-30deg);
        opacity: 0
    }
}

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg)
    }

    10% {
        -webkit-transform: skewX(-8deg)
    }

    20% {
        -webkit-transform: skewX(7deg)
    }

    30% {
        -webkit-transform: skewX(-6deg)
    }

    40% {
        -webkit-transform: skewX(5deg)
    }

    50% {
        -webkit-transform: skewX(-4deg)
    }

    60% {
        -webkit-transform: skewX(3deg)
    }

    70% {
        -webkit-transform: skewX(-2deg)
    }

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

    90% {
        -webkit-transform: skewX(0deg)
    }

    to {
        -webkit-transform: skewX(0deg)
    }
}

@-moz-keyframes wiggle {
    0% {
        -moz-transform: skewX(9deg)
    }

    10% {
        -moz-transform: skewX(-8deg)
    }

    20% {
        -moz-transform: skewX(7deg)
    }

    30% {
        -moz-transform: skewX(-6deg)
    }

    40% {
        -moz-transform: skewX(5deg)
    }

    50% {
        -moz-transform: skewX(-4deg)
    }

    60% {
        -moz-transform: skewX(3deg)
    }

    70% {
        -moz-transform: skewX(-2deg)
    }

    80% {
        -moz-transform: skewX(1deg)
    }

    90% {
        -moz-transform: skewX(0deg)
    }

    to {
        -moz-transform: skewX(0deg)
    }
}

@-o-keyframes wiggle {
    0% {
        -o-transform: skewX(9deg)
    }

    10% {
        -o-transform: skewX(-8deg)
    }

    20% {
        -o-transform: skewX(7deg)
    }

    30% {
        -o-transform: skewX(-6deg)
    }

    40% {
        -o-transform: skewX(5deg)
    }

    50% {
        -o-transform: skewX(-4deg)
    }

    60% {
        -o-transform: skewX(3deg)
    }

    70% {
        -o-transform: skewX(-2deg)
    }

    80% {
        -o-transform: skewX(1deg)
    }

    90% {
        -o-transform: skewX(0deg)
    }

    to {
        -o-transform: skewX(0deg)
    }
}

@keyframes wiggle {
    0% {
        transform: skew(9deg)
    }

    10% {
        transform: skew(-8deg)
    }

    20% {
        transform: skew(7deg)
    }

    30% {
        transform: skew(-6deg)
    }

    40% {
        transform: skew(5deg)
    }

    50% {
        transform: skew(-4deg)
    }

    60% {
        transform: skew(3deg)
    }

    70% {
        transform: skew(-2deg)
    }

    80% {
        transform: skew(1deg)
    }

    90% {
        transform: skew(0)
    }

    to {
        transform: skew(0)
    }
}

/* Overlay Background */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

/* Alert Box */
.custom-alert {
    background: white;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

/* Alert Close Button */
.custom-alert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #9E6A10;
}

/* Title */
.custom-alert-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Product Image */
.custom-alert-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.custom-alert-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Message */
.custom-alert-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

/* Buttons */
.custom-alert-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-alert-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.custom-alert-btn.primary {
    background: #9E6A10;
    color: white;
}

.custom-alert-btn.primary:hover {
    background: #9E6A10;
}

.custom-alert-btn.secondary {
    background: white;
    color: #9E6A10;
    border: 2px solid #9E6A10;
}

.custom-alert-btn.secondary:hover {
    background: #f0f0f0;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Cart Dropdown */
.header_wrap2.header_right .header_cart {
    position: relative;
}

.header_wrap2.header_right .cart_content_wrap {
    position: absolute;
    top: 20px;
    right: 0;
    /* width: 350px; */
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: none;
    z-index: 1000;
}

.header_wrap2.header_right .header_cart:hover .cart_content_wrap {
    display: block;
}

/* Cart Items List */
.header_wrap2.header_right .cart_items_list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
}

/* Cart Item */
.header_wrap2.header_right .cart_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.header_wrap2.header_right .cart_item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
}

.header_wrap2.header_right .cart_item_info {
    flex: 1;
    margin-left: 10px;
}

.header_wrap2.header_right .cart_item_name {
    font-size: 14px;
    font-weight: bold;
}

.header_wrap2.header_right .cart_item_price {
    font-size: 14px;
    color: #666;
}

.header_wrap2.header_right .cart_remove {
    color: red;
    font-size: 16px;
    cursor: pointer;
}

/* Cart Total Section */
.header_wrap2.header_right .cart_total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
}

.header_wrap2.header_right .cart_total p {
    margin: 0;
}

.header_wrap2.header_right .go_to_cart {
    background: #9E6A10;
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.theme-bg{
    background-color: #9E6A10;
}

.theme-bg a{
    background-color: #9E6A10;
}

a.theme-bg{
    color: #FFF;
    background-color: #9E6A10;
}

a.theme-bg:hover{
    color: #FFF;
    background-color: #000;
}

button.theme-bg{
    color: #FFF;
    background-color: #9E6A10;
}

button.theme-bg:hover{
    color: #FFF;
    background-color: #000;
}

.theme-border{
    border-color: #9E6A10;
}

.header_wrap2.header_right .go_to_cart:hover {
    background: #000;
}

.product_links.out-of-stock,
.button_block.out-of-stock,
.btn-group.out-of-stock {
    /* background-color: #9E6A10 !important; */
    border-color: #f57c00 !important;
    padding: 10px;
    border-radius: 4px;
}

.product_links.out-of-stock .btn-cart,
.button_block.out-of-stock .btn,
.btn-group.out-of-stock .theme-bg {
    background-color: #9E6A10 !important;
    border-color: #f57c00 !important;
    color: #fff !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.product_links.out-of-stock .btn-cart:hover,
.button_block.out-of-stock .btn:hover,
.btn-group.out-of-stock .theme-bg:hover {
    background-color: #9E6A10 !important;
    border-color: #f57c00 !important;
    color: #fff !important;
}

.product_links.out-of-stock .btn-cart:disabled,
.button_block.out-of-stock .btn:disabled,
.btn-group.out-of-stock .theme-bg:disabled {
    background-color: #9E6A10 !important;
    border-color: #f57c00 !important;
    color: #fff !important;
    opacity: 0.8;
}

.privacy-notice {
    position: fixed;
    z-index: 2147483645;
    background: white;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px 20px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: slideUp 0.3s ease-in-out;
}

.privacy-notice p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.privacy-notice p a {
    color: #9E6A10;
    font-family: 'semibold';
    text-decoration: underline;
}

.privacy-notice .privacy-accept-btn {
    padding: 8px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
    background: #9E6A10;
    color: white;
    white-space: nowrap;
    font-family: 'semibold';
}

.privacy-notice .privacy-accept-btn:hover {
    background: #9E6A10;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Add responsive styles for mobile devices */
@media screen and (max-width: 768px) {
    .privacy-notice {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
    }

    .privacy-notice p {
        font-size: 13px;
    }

    .privacy-notice .privacy-accept-btn {
        width: 100%;
        padding: 8px;
        font-size: 13px;
    }
}
@media (max-width: 1400px) {
    .color_scheme #back_top {
        margin:0 0 0 600px;
        right: auto;
        left: 50%
    }

    .color_scheme .section_slideshow_full_width .position_center .container .caption_text {
        width: 65%
    }
}

@media (max-width: 1300px) {
    .color_scheme #back_top {
        margin:0 0 0 535px
    }

    .color_scheme .section_map .map_wrapper__small {
        padding: 24.53% 0 0
    }

    .color_scheme .section_map .map_wrapper__medium {
        padding: 34.29% 0 0
    }

    .color_scheme .section_map .map_wrapper__large {
        padding: 44.06% 0 0
    }
}

@media (max-width: 1199px) {
    .color_scheme #back_top {
        margin:0 0 0 435px
    }

    .color_scheme .header_cart b {
        letter-spacing: 0
    }

    .color_scheme .megamenu_desktop .level_2 .container {
        margin: 0 0 0 -485px
    }

    .color_scheme .megamenu_desktop .level_1__link {
        letter-spacing: 0
    }


    .color_scheme .section_blog-with-carousel .layer_2 {
        left: 0%;
        padding: 15px
    }

    .color_scheme .section_blog-with-carousel .layer_2 .blog_article_content .article_content {
        width: 100%
    }

    .color_scheme .gallery_item .item_caption h3 {
        font-size: 16px
    }

    .color_scheme .section_image-with-text-overlay h2 {
        font-size: 38px;
        margin-bottom: 0
    }

    .color_scheme .section_image-with-text-overlay h4 {
        font-size: 22px;
        margin-bottom: 0
    }

    .color_scheme .section_image-with-text-overlay .btn {
        margin: 10px 0 0
    }

    .color_scheme .section_slideshow h2 {
        font-size: 46px
    }

    .color_scheme .section_slideshow .btn {
        margin-top: 15px
    }

    .color_scheme .section_slideshow_full_width .position_center .container .caption_text {
        width: 80%
    }

    .color_scheme .section_single-product .type_carousel .gallery_thumbs {
        height: 414px
    }

    .color_scheme .section_single-product .type_carousel .swiper_btn__next,.color_scheme .section_single-product .type_carousel .swiper_btn__prev {
        left: 70px
    }

    .color_scheme .section_single-product .size_product__options {
        padding: 15px 0 0
    }

    .color_scheme .section_single-product .single_product__price {
        margin-top: 15px
    }

    .color_scheme .section_single-product .single_product__quantity {
        margin: 10px 0
    }

    .color_scheme .lookbook_item__caption {
        width: 90px;
        text-align: center
    }

    .color_scheme .lookbook_item__caption img {
        margin: 0 0 5px;
        height: 75px
    }

    .color_scheme .lookbook_item__caption span {
        text-align: left;
        display: block
    }

    .color_scheme .lookbook_item__bullet {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 10px
    }

    .color_scheme .section_products-column .col-xs-3 .product_img {
        width: 70px
    }

    .color_scheme .section_products-column .col-xs-3 .product_info {
        margin-left: 80px
    }

    .color_scheme .section_template__collection .collection_img__overlay .img_wrapper__medium {
        padding: 22.53125% 0 0
    }

    .color_scheme .section_template__collection .collection_img__overlay .img_wrapper__large {
        padding: 32.296875% 0 0
    }

    .color_scheme .section_template__collection .collection_img__overlay .layer_1 {
        background-position: 50% 0;
        -webkit-background-size: cover;
        background-size: cover
    }

    .color_scheme .section_template__blog .blog_listing__grid .article_title {
        font-size: 18px
    }

    .color_scheme .section_template__article .img_wrapper__medium {
        padding: 36.623931% 0 0
    }

    .color_scheme .section_template__article .img_wrapper__large {
        padding: 47.136752% 0 0
    }

    .color_scheme .section_template__article .flexible_block__normal h1 {
        font-size: 20px
    }

    .color_scheme .account_section {
        padding: 15px
    }

    .color_scheme .account_section h4 {
        font-size: 20px
    }

    .color_scheme .account_section h4 a {
        margin: 0 0 0 10px
    }

    .color_scheme .account_section .note {
        font-size: 14px
    }

    .color_scheme .sidebar_widget__linklist {
        padding: 15px
    }
}

@media (max-width: 991px) {
    .color_scheme .btn {
        font-size:14px;
        padding: 8px 12px
    }

    .color_scheme .collection_listing__main .collection_item .collection_title {
        font-size: 14px;
        line-height: 1.2em
    }

    .color_scheme #back_top {
        margin: 0 0 0 325px
    }

    .color_scheme .linklist_menu_item .menu_trigger {
        display: block
    }

    .color_scheme .header_wrap2 {
        width: 100%;
    }

    .color_scheme .header_left {
        margin-right: 20px
    }

    .color_scheme footer {
        margin: 30px 0 0
    }

    .color_scheme footer .footer_item h3 {
        letter-spacing: .05em
    }

    .color_scheme footer .footer_item__about img {
        margin-top: 0
    }

    .color_scheme footer .footer_item__links ul {
        padding-top: 5px
    }

    .color_scheme .template-index footer {
        margin-top: 0
    }

    .color_scheme .section_homepage {
        margin: 15px 0;
    }

    .color_scheme .gallery_item {
        margin: 0
    }

    .color_scheme .gallery_item .img_placeholder__wrap {
        background-position: 50% 50%;
        -webkit-background-size: auto 100%;
        background-size: auto 100%
    }

    .color_scheme .section_gallery h2 {
        font-size: 60px
    }

    .color_scheme .section_image-with-text-overlay {
        margin: 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer,.color_scheme .section_image-with-text-overlay .parallax_layer_2 {
        transform: none!important
    }

    .color_scheme .section_image-with-text-overlay .caption_text {
        padding: 15px 20px
    }

    .color_scheme .section_slideshow .img_placeholder__wrap {
        background-position: 50% 50%;
        -webkit-background-size: cover;
        background-size: cover
    }

    .color_scheme .section_slideshow h2 {
        font-size: 36px
    }

    .color_scheme .section_slideshow p {
        font-size: 20px;
        margin-top: 0
    }

    .color_scheme .section_slideshow .slide_caption {
        padding: 15px 30px
    }

    .color_scheme .section_slideshow .slide_caption .caption_text {
        max-width: 290px;
        padding-top: 0
    }

    .color_scheme .section_slideshow_full_width {
        margin: 0
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__wrap {
        background-position: 50% 0;
        -webkit-background-size: auto 100%;
        background-size: auto 100%
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__small {
        padding: 24.53125% 0 0
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__medium {
        padding: 34.296875% 0 0
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__large {
        padding: 34.0625% 0 0;
    }

    .color_scheme .section_slideshow_full_width .position_center .container .caption_text {
        width: 100%
    }

    .color_scheme .section_slideshow_full_width h2 {
        font-size: 50px;
        line-height: 1.5em
    }

    .color_scheme .section_slideshow_full_width p {
        margin: 10px 0 0
    }

    .color_scheme .section_slideshow_full_width .slider_btn {
        margin: 0
    }

    .color_scheme .section_slideshow_full_width .slide_caption {
        padding: 40px 70px;
        top: 1%
    }

    .color_scheme .section_single-product .single_product__info.full {
        margin: 0
    }

    .color_scheme .section_single-product .type_carousel .gallery_thumbs {
        height: 310px
    }

    .color_scheme .section_single-product .type_carousel .swiper_btn__next,.color_scheme .section_single-product .type_carousel .swiper_btn__prev {
        left: 50px
    }

    .color_scheme .section_map .map_wrapper {
        padding: 35% 0 0
    }

    .color_scheme .section_map .map_container {
        right: -51%
    }

    .color_scheme .section_instagram {
        margin: 0
    }

    .color_scheme .section_instagram .container {
        padding: 25px 20px
    }

    .color_scheme .lookbook_item__caption img {
        display: none
    }

    .color_scheme .section_communication {
        margin: 0
    }

    .color_scheme .section_communication .container {
        padding: 15px 0
    }

    .color_scheme .section_divider .divider_item {
        display: none
    }

    .color_scheme .section_divider .tablet_show {
        display: block
    }

    .color_scheme .section_products-column .item_collection .product {
        margin-top: 15px
    }

    .color_scheme .section_products-column .item_collection .product_img {
        width: 80px
    }

    .color_scheme .section_products-column .item_collection .product_name {
        font-size: 12px;
        line-height: 1.2em
    }

    .color_scheme .section_products-column .item_collection .product_price {
        line-height: 1.2em;
        margin-top: 3px
    }

    .color_scheme .section_products-column .item_collection .product_price .money {
        font-size: 12px
    }

    .color_scheme .section_products-column .item_collection .product_links {
        margin-top: 0
    }

    .color_scheme .section_products-column .item_collection .btn-cart {
        font-size: 12px
    }

    .color_scheme .section_products-column .product_info {
        margin-left: 90px
    }

    .color_scheme .section_products-column .col-xs-3 .product_img {
        width: 60px
    }

    .color_scheme .section_products-column .col-xs-3 .product_info {
        margin-left: 65px
    }

    .color_scheme .section_template__collection .collection_img__overlay .layer_2 h1 {
        font-size: 22px
    }

    .color_scheme .section_template__blog .blog_listing__grid .item_2_1 {
        clear: left
    }

    .color_scheme .section_template__blog .blog_listing__grid .item_3_1 {
        clear: none
    }

    .color_scheme .section_template__blog .blog_listing__grid .article_title {
        font-size: 18px
    }

    .color_scheme .section_template__article .img_wrapper__medium {
        padding: 41.623931% 0 0
    }

    .color_scheme .section_template__article .img_wrapper__large {
        padding: 52.136752% 0 0
    }

    .color_scheme .account_section__wrapper {
        display: block;
        margin: 0
    }

    .color_scheme .account_section__wrapper .account_section {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-right: 0
    }

    .color_scheme .template_cart .cart_items th {
        display: block;
        float: left;
        padding: 10px 0
    }

    .color_scheme .template_cart .cart_items td {
        display: block;
        float: left;
        padding: 0
    }

    .color_scheme .template_cart .cart_items .quantity_box {
        margin: 0
    }

    .color_scheme .template_cart .cart_items tfoot td {
        width: 100%;
        padding: 15px 0
    }

    .color_scheme .wishlist_page .item_3_1 {
        clear: none
    }

    .color_scheme .wishlist_page .item_2_1 {
        clear: left
    }

    .color_scheme .wishlist_page .quick_view_btn {
        display: none
    }

    .color_scheme .sidebar_widget__products .product_img {
        width: 100%;
        float: none
    }

    .color_scheme .sidebar_widget__products .product_img img {
        width: 100px
    }

    .color_scheme .sidebar_widget__products .product_info {
        margin-left: 0
    }

    .color_scheme .sidebar_widget__banner .img_placeholder__small {
        padding: 91.52% 0 0
    }

    .color_scheme .sidebar_widget__link-list,.color_scheme .sidebar_widget__tags {
        padding: 15px
    }
}

@media (max-width: 767px) {
    .color_scheme .collection_listing__main .collection_item .layer_1 {
        margin:0 0 10px
    }

    .color_scheme .collection_listing__main .collection_item .collection_title {
        font-size: 14px
    }

    .color_scheme .collection_listing__main .collection_item .collection_products {
        padding: 5px 0 0;
        font-size: 12px
    }

    .color_scheme #back_top {
        display: none!important
    }

    .color_scheme .header_search #search_result_container {
        width: 300px
    }

    .color_scheme footer .footer_main {
        flex-wrap: wrap
    }

    .color_scheme footer .footer_block {
        width: 50%;
        float: left
    }

    .color_scheme footer .footer_block__2_1 {
        clear: left
    }

    .color_scheme footer .clearfix {
        display: none
    }

    .color_scheme .section_blog-with-carousel .swiper_btn__prev {
        left: 90%
    }

    .color_scheme .section_gallery .col-xs-3 {
        width: 50%;
        border-right: none
    }

    .color_scheme .section_gallery .container {
        max-width: 600px
    }

    .color_scheme .section_gallery .container .gallery_item {
        margin-bottom: 30px
    }

    .color_scheme .section_gallery h2 {
        font-size: 35px;
    }

    .color_scheme .gallery_item .item_caption {
        font-size: 14px
    }

    .color_scheme .section_image-with-text-overlay h2 {
        font-size: 28px
    }

    .color_scheme .section_image-with-text-overlay h4 {
        font-size: 18px
    }

    .color_scheme .section_image-with-text-overlay h5 {
        font-size: 16px
    }

    .color_scheme .section_slideshow .container {
        display: block
    }

    .color_scheme .section_slideshow .section_slider {
        float: none;
        width: 100%
    }

    .color_scheme .section_slideshow .banner_big {
        width: 50%;
        float: left;
        margin-top: 15px;
        padding-right: 7px
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__small {
        padding: 29.53125% 0 0
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__medium {
        padding: 39.296875% 0 0
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__large {
        padding: 34.0625% 0 0;
    }

    .color_scheme .section_slideshow_full_width h2 {
        font-size: 40px
    }

    .color_scheme .section_single-product .single_product__img {
        max-width: 600px;
        margin: 0 auto;
        overflow: hidden
    }

    .color_scheme .section_single-product .single_product__info {
        max-width: 600px;
        margin: 15px auto 0
    }

    .color_scheme .section_single-product .type_carousel .gallery_thumbs {
        height: 427px
    }

    .color_scheme .section_single-product .type_carousel .swiper_btn__next,.color_scheme .section_single-product .type_carousel .swiper_btn__prev {
        left: 70px
    }

    .color_scheme .section_single-product .price_and_quantity {
        padding-top: 0
    }

    .color_scheme .section_map {
        margin: 0
    }

    .color_scheme .section_map .map_wrapper {
        padding: 50% 0 0
    }

    .color_scheme .section_instagram .instagram_feed {
        max-width: 570px
    }

    .color_scheme .lookbook_wrap {
        padding: 0
    }

    .color_scheme .section_communication .container {
        max-width: 370px;
        margin: 0 auto
    }

    .color_scheme .section_communication .col-sm-4 {
        margin-top: 40px
    }

    .color_scheme .section_communication .col-sm-4:first-child {
        margin-top: 0
    }

    .color_scheme .section_products-column .column_trigger {
        display: block
    }

    .color_scheme .section_products-column .item_collection h3 {
        padding-right: 25px
    }

    .color_scheme .section_products-column .item_collection .product_img {
        width: 118px
    }

    .color_scheme .section_products-column .item_collection .product_name {
        font-size: 16px
    }

    .color_scheme .section_products-column .item_collection .product_price {
        margin-top: 10px
    }

    .color_scheme .section_products-column .item_collection .product_price .money {
        font-size: 14px
    }

    .color_scheme .section_products-column .item_collection .product_links {
        margin-top: 10px
    }

    .color_scheme .section_products-column .item_collection .btn-cart {
        font-size: 14px
    }

    .color_scheme .section_products-column .product_info {
        margin-left: 135px;
        max-width: none
    }

    .color_scheme .section_products-column .col-xs-3 .product_info {
        margin-left: 135px
    }

    .color_scheme .section_template__collection .collection_img__overlay .img_wrapper__medium {
        padding: 25.53125% 0 0
    }

    .color_scheme .section_template__collection .collection_img__overlay .img_wrapper__large {
        padding: 35.296875% 0 0
    }

    .color_scheme .section_template__collection .product_options .product_options__sort {
        margin: 10px 10px 0
    }

    .color_scheme .section_template__blog .blog_listing__grid .img_wrapper__medium,.color_scheme .section_template__blog .blog_listing__grid .img_wrapper__large {
        padding: 40% 0 0
    }

    .color_scheme .section_template__blog .blog_listing__grid .article_title {
        font-size: 18px
    }

    .color_scheme .section_template__article .img_wrapper__medium,.color_scheme .section_template__article .img_wrapper__large {
        padding: 40% 0 0
    }

    .color_scheme .sidebar_small {
        margin-top: 50px
    }

    .color_scheme .sidebar_widget__products .product_img {
        width: 150px;
        float: left
    }

    .color_scheme .sidebar_widget__products .product_img img {
        width: auto
    }

    .color_scheme .sidebar_widget__products .product_info {
        margin-left: 160px
    }

    .color_scheme .sidebar_widget__products .product_name {
        font-size: 16px
    }

    .color_scheme .sidebar_widget__banner {
        max-width: 270px
    }

    .color_scheme .sidebar_widget__banner .img_placeholder__small {
        padding: 55.93% 0 0
    }

    .color_scheme .sidebar_widget__banner .img_placeholder__medium {
        padding: 100% 0 0
    }

    .color_scheme .sidebar_widget__banner .img_placeholder__large {
        padding: 133.333333% 0 0
    }
}

@media (max-width: 639px) {
    .color_scheme .page_heading {
        margin:30px 0 0;
        font-size: 20px
    }

    .color_scheme .collection_listing__main .col-xs-3 {
        width: 50%
    }

    .color_scheme .collection_listing__main .item_2_1 {
        clear: left
    }

    .color_scheme .pagination {
        text-align: center
    }

    .color_scheme .pagination p {
        float: none;
        padding: 10px 0 0
    }

    .color_scheme .pagination ul {
        float: none;
        margin: 10px 0 0;
        padding: 10px 0 0;
        border-top: 1px solid rgba(0,0,0,.1)
    }

    .color_scheme .top_pannel .container {
        flex-wrap: wrap
    }

    .color_scheme .top_pannel_text {
        padding: 5px 0;
        text-align: center;
        width: 100%

    }

    .color_scheme .top_pannel_menu {
        display: flex;
        align-items: center;
        width: 100%
    }

    /* .color_scheme .header_search {
        order: 1;
        flex-grow: 2;
        text-align: right;
        margin-left: 15px;
        margin-right: 0
    } */

    .color_scheme .header_search #search_result_container {
        text-align: left
    }

    .color_scheme .header_search .search_form {
        z-index: 131
    }

    .color_scheme .header_cart #cart_content_box {
        width: 350px
    }

    .color_scheme .megamenu_mobile #megamenu_level__1 {
        width: 85%
    }

    .color_scheme .megamenu_mobile #megamenu_mobile_close {
        width: 15%
    }

    .color_scheme .megamenu_mobile .level_1 {
        padding: 15px
    }

    .color_scheme .megamenu_mobile .level_1__link,.color_scheme .megamenu_mobile .level_2__links h3 {
        padding: 15px 35px 15px 0;
        font-size: 16px
    }

    .color_scheme .megamenu_mobile .level_2__products .product_img {
        width: 120px
    }

    .color_scheme .section_blog-with-carousel .swiper_btn {
        top: 13%
    }

    .color_scheme .section_blog-with-carousel .swiper_btn__prev {
        left: 86%
    }

    .color_scheme .section_image-with-text-overlay .img_placeholder__small {
        padding: 34.414062% 0 0
    }

    .color_scheme .section_image-with-text-overlay .img_placeholder__medium {
        padding: 42.715% 0 0
    }

    .color_scheme .section_image-with-text-overlay .img_placeholder__large {
        padding: 49.063% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer.img_placeholder__small {
        padding: 53% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer.img_placeholder__medium {
        padding: 63.711% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer.img_placeholder__large {
        padding: 70% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer_2.img_placeholder__small {
        padding: 53% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer_2.img_placeholder__medium {
        padding: 63.711% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer_2.img_placeholder__large {
        padding: 70% 0 0
    }

    .color_scheme .section_image-with-text-overlay h4 {
        font-size: 14px
    }

    .color_scheme .section_image-with-text-overlay h2 {
        font-size: 18px
    }

    .color_scheme .section_image-with-text-overlay h5 {
        font-size: 12px
    }

    .color_scheme .section_image-with-text-overlay p {
        font-size: 10px;
        line-height: 1.2em;
        margin-top: 3px
    }

    .color_scheme .section_slideshow_full_width h2 {
        font-size: 30px;
        letter-spacing: .2em
    }

    .color_scheme .section_slideshow_full_width .swiper_pagination span {
        padding: 15px
    }

    .color_scheme .section_single-product .single_product__img {
        max-width: 460px;
        float: none;
        margin: 0 auto
    }

    .color_scheme .section_single-product .single_product__info {
        width: 100%;
        float: none;
        margin: 30px 0 0!important
    }

    .color_scheme .section_single-product .single_product__title {
        font-size: 20px
    }

    .color_scheme .section_single-product .type_carousel .gallery_thumbs {
        height: 330px
    }

    .color_scheme .section_single-product .type_carousel .swiper_btn {
        opacity: 1;
        left: 55px
    }

    .color_scheme .section_single-product .type_carousel .gallery_big {
        padding-left: 15px
    }

    .color_scheme .section_template__collection .collection_img__overlay .img_wrapper__medium {
        padding: 28.53125% 0 0
    }

    .color_scheme .section_template__collection .collection_img__overlay .img_wrapper__large {
        padding: 38.296875% 0 0
    }

    .color_scheme .section_template__collection h1 {
        font-size: 20px
    }

    .color_scheme .section_template__collection .product_options .product_options__sort {
        margin: 0;
        padding: 10px 10px 0 0
    }

    .color_scheme .section_template__blog article {
        padding: 15px
    }

    .color_scheme .section_template__blog .article_info {
        padding: 0
    }

    .color_scheme .section_template__blog .article_info span {
        display: block;
        margin: 0;
        padding: 0;
        border: none
    }

    .color_scheme .section_template__blog .article_info span~span {
        display: block;
        margin: 0;
        padding: 10px 0 0;
        border: none
    }

    .color_scheme .blog_listing__main .col-md-4 {
        display: block
    }

    .color_scheme .section_template__article .article_info {
        padding: 0 0 10px
    }

    .color_scheme .section_template__article .article_info span,.color_scheme .section_template__article .article_info span~span {
        display: block;
        margin: 0;
        padding: 10px 0 0;
        border: none
    }
}

@media (max-width: 479px) {
    .color_scheme .btn {
        font-size:12px;
        padding: 6px 8px
    }

    .color_scheme .cart_added__1 {
        display: none
    }

    .color_scheme .cart_added__2 {
        width: 100%
    }

    .color_scheme .cart_added__2 .product_name {
        font-size: 14px;
        line-height: 1.3em
    }

    .color_scheme .cart_added__2 #cart_added__quantity {
        font-size: 12px;
        margin-top: 5px
    }

    .color_scheme .cart_added__2 .btn {
        margin: 10px 10px 0 0;
        font-size: 10px
    }

    .color_scheme .collection_listing__main>div {
        padding: 0 15px 0 7px
    }

    .color_scheme .collection_listing__main .item_2_1 {
        padding: 0 8px 0 15px
    }

    .color_scheme .collection_listing__main .collection_item {
        margin: 15px 0 0
    }

    .color_scheme .header_account {
        margin-right: 15px
    }

    .color_scheme .header_wishlist {
        margin-right: 7px
    }

    .color_scheme .header_wishlist span {
        display: none
    }

    .color_scheme .header_search input,.color_scheme .header_search #search_result_container {
        width: 260px
    }

    .color_scheme .header_search .search_toggle b {
        display: none
    }

    .color_scheme .header_wrap1 {
        padding: 10px 0
    }

    .color_scheme .header_wrap1 .header_main_wrap {
        /* flex-wrap: wrap */
    }

    /* .color_scheme .header_left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center
    } */

    .color_scheme .header_cart #cart_content_box {
        width: 290px;
        padding: 10px
    }

    .color_scheme .header_cart #cart_content_box .cart_items {
        padding: 15px 0
    }

    .color_scheme .header_cart #cart_content_box .cart_total .money {
        font-size: 16px
    }

    .color_scheme .header_cart b {
        font-size: 11px
    }

    .color_scheme .header_cart .cart_url {
        font-size: 10px
    }

    .color_scheme .header_account a+a {
        margin-left: 3px
    }

    .color_scheme .header_right {
        margin-left: 5%
    }

    .color_scheme footer .footer_block {
        width: 100%;
        float: none;
        clear: both
    }

    .color_scheme footer .footer_wrap_1 {
        display: block;
        padding: 15px 0
    }

    .color_scheme footer .footer_wrap_2 {
        width: 100%
    }

    .color_scheme .section_blog-with-carousel .swiper-slide .layer_2 .blog_article_content h3 {
        font-size: 30px
    }

    .color_scheme .section_blog-with-carousel .swiper-slide .layer_2 .blog_article_content .article_content {
        margin-top: 30px
    }

    .color_scheme .section_blog-with-carousel .swiper_btn {
        top: 12%
    }

    .color_scheme .section_blog-with-carousel .swiper_btn__prev {
        left: 78%
    }

    .color_scheme .section_gallery .row>* {
        width: 100%;
        float: none
    }

    .color_scheme .section_gallery .container {
        max-width: 300px
    }

    .color_scheme .section_gallery h2 {
        font-size: 30px;
        letter-spacing: .3em
    }

    .color_scheme .section_gallery h4 {
        font-size: 16px;
        letter-spacing: .3em
    }

    .color_scheme .section_image-with-text-overlay .img_placeholder__small {
        padding: 44.414062% 0 0
    }

    .color_scheme .section_image-with-text-overlay .img_placeholder__medium {
        padding: 52.715% 0 0
    }

    .color_scheme .section_image-with-text-overlay .img_placeholder__large {
        padding: 59.063% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer.img_placeholder__small {
        padding: 63% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer.img_placeholder__medium {
        padding: 73.711% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer.img_placeholder__large {
        padding: 80% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer_2.img_placeholder__small {
        padding: 63% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer_2.img_placeholder__medium {
        padding: 73.711% 0 0
    }

    .color_scheme .section_image-with-text-overlay .parallax_layer_2.img_placeholder__large {
        padding: 80% 0 0
    }

    .color_scheme .section_image-with-text-overlay .container {
        padding: 0
    }

    .color_scheme .section_image-with-text-overlay .caption_text {
        padding: 10px 15px
    }

    .color_scheme .section_image-with-text-overlay h2 {
        font-size: 18px
    }

    .color_scheme .section_image-with-text-overlay h4 {
        font-size: 10px;
        letter-spacing: 0
    }

    .color_scheme .section_image-with-text-overlay h5 {
        font-size: 8px;
        letter-spacing: 0
    }

    .color_scheme .section_image-with-text-overlay p {
        display: none
    }

    .color_scheme .section_image-with-text-overlay .btn {
        margin-top: 6px
    }

    .color_scheme .section_slideshow .swiper_pagination {
        bottom: 8px;
        padding: 0 10px
    }

    .color_scheme .section_slideshow h2 {
        font-size: 18px
    }

    .color_scheme .section_slideshow p {
        font-size: 14px;
        letter-spacing: 0
    }

    .color_scheme .section_slideshow .btn {
        margin-top: 5px
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__small {
        padding: 39.53125% 0 0
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__medium {
        padding: 49.296875% 0 0
    }

    .color_scheme .section_slideshow_full_width .img_placeholder__large {
        padding: 34.0625% 0 0;
    }

    .color_scheme .section_slideshow_full_width .position_center .container .caption_text {
        height: 70%
    }

    .color_scheme .section_slideshow_full_width h2 {
        font-size: 20px
    }

    .color_scheme .section_slideshow_full_width p {
        font-size: 12px
    }

    .color_scheme .section_slideshow_full_width .slider_btn {
        margin: 0
    }

    .color_scheme .section_slideshow_full_width .slide_caption {
        padding: 15px
    }

    .color_scheme .section_slideshow_full_width .swiper_pagination {
        bottom: 10px
    }

    .color_scheme .section_slideshow_full_width .swiper_pagination span {
        padding: 10px;
        margin: 0 10px
    }

    .color_scheme .section_slideshow_full_width .swiper_pagination span~span {
        margin: 0 10px
    }

    .color_scheme .section_single-product .single_product__img {
        max-width: 300px
    }

    .color_scheme .section_single-product .type_carousel .gallery_thumbs {
        height: 200px
    }

    .color_scheme .section_single-product .type_carousel .swiper_btn {
        left: 35px
    }

    .color_scheme .section_single-product .price_and_quantity {
        padding-top: 20px
    }

    .color_scheme .section_single-product .price_and_quantity .money_sale_percent {
        top: 0
    }

    .color_scheme .section_map {
        margin: 0
    }

    .color_scheme .section_map .map_wrapper {
        padding: 125% 0 0
    }

    .color_scheme .section_map .map_container {
        right: 0;
        top: -36%
    }

    .color_scheme .section_instagram .swiper_btn {
        opacity: 1
    }

    .color_scheme .section_communication .container {
        padding: 15px
    }

    .color_scheme .section_banners_custom .banner_caption {
        top: 10%
    }

    .color_scheme .section_banners_custom .position_center .caption_text {
        height: 80%
    }

    .color_scheme .section_banners_custom .banner_big h3 {
        font-size: 30px
    }

    .color_scheme .section_banners_custom .banner_big .btn {
        margin-top: 10px
    }

    .color_scheme .section_template__collection .collection_img__overlay .layer_2 h1 {
        font-size: 18px
    }

    .color_scheme .section_template__blog .blog_listing__grid .img_wrapper__medium,.color_scheme .section_template__blog .blog_listing__grid .img_wrapper__large {
        padding: 55% 0 0
    }

    .color_scheme .section_template__blog .blog_listing__grid .article_title {
        font-size: 16px
    }

    .color_scheme .section_template__blog .article_item.flexible_block__normal .layer_1 {
        float: none;
        width: auto;
        margin-bottom: 15px;
        text-align: center
    }

    .color_scheme .section_template__blog .article_item.flexible_block__normal .layer_2 {
        float: none;
        padding-left: 0
    }

    .color_scheme .section_template__blog .article_info span~span {
        padding: 3px 0 0
    }

    .color_scheme .section_template__blog .article_info span {
        font-size: 10px
    }

    .color_scheme .section_template__blog article {
        padding: 15px
    }

    .color_scheme .template_cart .cart_items tfoot .cart_total {
        font-size: 16px
    }

    .color_scheme .template_cart .cart_items tfoot td {
        padding-top: 0
    }

    .color_scheme .template_cart .cart_items tfoot .btn {
        float: none;
        margin: 15px 0 0
    }

    .color_scheme .wishlist_page .product {
        width: 100%
    }

    .color_scheme .sidebar_widget__products .product_img {
        width: 100px
    }

    .color_scheme .sidebar_widget__products .product_info {
        margin-left: 110px
    }
}

@media (max-width: 1199px) {

    .product_listing__main .product_links .btn_options,.product_listing__main .product_links .btn-cart {
        letter-spacing: .1em
    }

    .product_listing__list .product_name {
        margin-top: 8px
    }

    .product_listing__list .product_price {
        padding-top: 0
    }
}

@media (max-width: 991px) {
    .product_listing__main .product_name {
        padding-top:5px
    }

    .product_listing__main .product_prop {
        display: block
    }

    .product_listing__main .product_links .btn_options,.product_listing__main .product_links .btn-cart {
        letter-spacing: .01em
    }

    .product_listing__list .product_price {
        padding-top: 0
    }

    .product_listing__list .product_desc__short {
        display: block
    }
}

@media (max-width: 767px) {
    .product_listing__main>div {
        padding-bottom:10px
    }

    .product_listing__main .product_links form {
        order: 1
    }

    .product_listing__main .product_links .wishlist_btn {
        order: 2
    }

    .product_listing__main .product_name {
        padding: 0;
        font-size: 14px;
        /* margin-top: 30px */
    }

    .product_listing__main .quick_view_btn {
        display: none!important
    }
}

@media (max-width: 639px) {
    .product_listing__main .product_name {
        letter-spacing:.1em;
        margin-top: 10px
    }

    .product_listing__main .product_links {
        padding: 5px 7px;
        bottom: 18%
    }
}

@media (max-width: 479px) {
    .product_listing__main .product_name {
        font-size:12px;
        letter-spacing: .1em;
        margin-top: 0
    }

    .product_listing__main .product_desc__short {
        display: none
    }

    .product_listing__list .product_prop {
        margin-top: 0
    }

    .product_listing__list .product_desc__short {
        display: block;
        font-size: 10px;
        margin-bottom: 5px
    }

    .product_listing__list .product_price .money {
        letter-spacing: .01em
    }

    .product_listing__main_featured>div {
        width: 100%
    }
}

h1,h2,h3,h4,h5,h6,p {
    margin: 0
}

input,button {
    margin: 0;
    padding: 0;
    background: none;
    border: none
}

button {
    cursor: pointer
}

button:focus {
    outline: 0!important
}

a,span {
    vertical-align: baseline
}

img {
    max-width: 100%
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

body {
    margin: 0
}

article,footer,header,nav,section {
    display: block
}

main {
    display: block
}

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

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

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

b,strong {
    font-weight: inherit
}

b,strong {
    font-weight: bolder
}

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

small {
    font-size: 80%
}

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

sub {
    bottom: -.25em
}

video {
    display: inline-block
}

img {
    border-style: none
}

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

button,input,optgroup,select,textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

button,html [type=button],[type=reset],[type=submit] {
    -webkit-appearance: button
}

button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText
}

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

legend {
    max-width: 100%;
    display: table;
    box-sizing: border-box;
    white-space: normal;
    color: inherit;
    padding: 0
}

progress {
    display: inline-block;
    vertical-align: baseline
}

textarea {
    overflow: auto
}

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

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

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

menu {
    display: block
}

canvas {
    display: inline-block
}

template {
    display: none
}

[hidden] {
    display: none
}

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

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

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

    thead {
        display: table-header-group
    }

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

    img {
        max-width: 100%!important
    }

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

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

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse!important
    }

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

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

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

*:before,*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

body {
    font: 14px/1.42857143 Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #333
}

img {
    vertical-align: middle
}

.clearfix:before,.clearfix:after {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

@media (max-width: 479px) {
    .col-12 {
        width:100%!important;
        float: none!important
    }
}

fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0
}

legend {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 21px;
    line-height: inherit;
    color: #333
}

label {
    display: inline-block;
    max-width: 100%
}

input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type=radio] {
    margin: 3px 0 0;
    margin-top: 1px \ ;
    line-height: normal
}

input[type=checkbox] {
    margin: 4px 0 0;
    margin-top: 1px \ ;
    line-height: normal
}

input[type=file] {
    display: block
}

select[multiple],select[size] {
    height: auto
}

input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

select,textarea,input[type=tel],input[type=text],input[type=email],input[type=search],input[type=password],.form-control {
    width: 100%;
    height: 34px;
    display: block;
    vertical-align: top;
    padding: 6px 10px;
    background-image: none;
    border-width: 1px;
    border-style: solid;
    line-height: 1.42857143
}

.form-control::-moz-placeholder {
    color: #000000bf;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #000000bf
}

.form-control::-webkit-input-placeholder {
    color: #000000bf
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled],fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    height: auto
}

input[type=search] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type=date].form-control,input[type=time].form-control,input[type=month].form-control {
        line-height:34px
    }
}

.form-group {
    margin-top: 15px
}

.form-group:after {
    content: "";
    display: table;
    clear: both
}

.radio,.checkbox {
    min-height: 20px;
    display: block;
    position: relative
}

.radio~.radio,.checkbox~.checkbox {
    margin: 7px 0 0
}

.radio label,.checkbox label {
    min-height: 20px;
    margin-bottom: 0;
    padding-left: 20px;
    font-weight: 400;
    cursor: pointer
}

.radio input[type=radio],.checkbox input[type=checkbox] {
    margin-top: 4px \ ;
    margin-left: -20px;
    position: absolute
}

input[type=radio][disabled],input[type=checkbox][disabled],input[type=radio].disabled,input[type=checkbox].disabled,fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox],.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

@media (min-width: 768px) {
    .form-horizontal label {
        margin-bottom:0;
        line-height: 34px;
        text-align: right
    }
}

.btn {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-weight: 700;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    /* /* /* text-transform: uppercase; */; */ */
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn:active,.btn.active {
    background-image: none;
    outline: 0
}

.btn.disabled,.btn[disabled],fieldset[disabled] .btn {
    cursor: default;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

a.btn.disabled,fieldset[disabled] a.btn {
    pointer-events: none
}

table {
    background-color: transparent;
    border-collapse: collapse
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td {
    vertical-align: top;
    padding: 8px;
    border-top: 1px solid #dddddd;
    line-height: 1.42857143
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #dddddd
}

.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td {
    border-top: 0
}

.table>tbody+tbody {
    border-top: 2px solid #dddddd
}

.table .table {
    background-color: #fff
}

.table-bordered {
    border: 1px solid #dddddd
}

.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td {
    border: 1px solid #dddddd
}

.table-bordered>thead>tr>th,.table-bordered>thead>tr>td {
    border-bottom-width: 2px
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width:100%;
        overflow-y: hidden;
        margin-bottom: 15px;
        border: 1px solid #dddddd;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .table-responsive>.table {
        margin-bottom: 0;
        text-align: center;
    }

    .table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td {
        white-space: nowrap
    }

    .table-responsive>.table-bordered {
        border: 0
    }

    .table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child {
        border-left: 0
    }

    .table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child {
        border-right: 0
    }

    .table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td {
        border-bottom: 0
    }
}

.alert {
    padding: 10px 15px;
    margin-top: 15px;
    border: 1px solid transparent
}

.alert a {
    display: inline-block;
    color: inherit;
    text-decoration: underline
}

.alert a:hover {
    color: inherit;
    text-decoration: none
}

.alert>* {
    margin: 0!important
}

.alert>*~* {
    margin: 5px 0 0!important
}

.alert-success {
    background-color: #d0f6b9;
    border-color: #a7e183
}

.alert-info {
    background-color: #fff;
    border-color: #9bd6f5
}

.alert-warning {
    background-color: #fff5c3;
    border-color: #edd870
}

.alert-danger {
    background-color: #ffcfcf;
    border-color: #ffa3a3
}

.hidden {
    display: none
}

html,body {
    font: 14px/1.5em Montserrat;
    color: #000;
    background: #fff
}

a {
    color: #000;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: background .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
    -moz-transition: background .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
    transition: background .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out
}

a:hover,a:focus {
    color: #000
}

h1,h2,h3,h4,h5,h6 {
    font: 18px/1.1em Montserrat;
    color: #000
}

h1 {
    font-size: 18px
}

h2 {
    font-size: 16px
}

h3 {
    font-size: 14px
}

h4 {
    font-size: 13px
}

h5 {
    font-size: 12px
}

h6 {
    font-size: 11px
}

.page_heading {
    margin: 15px 0 0;
    padding-bottom: 10px;
    font-size: 18px;
    text-align: center;
    /* /* text-transform: uppercase; */; */
    font-weight: 700;
    letter-spacing: .1em
}

label {
    font-size: 14px;
    color: #555
}

select,textarea,input[type=tel],input[type=text],input[type=email],input[type=search],input[type=password],.form-control {
    background-color: #fff;
    border-color: #a7a7a7;
    font-size: 14px;
    color: #000;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out
}

select:focus,textarea:focus,input[type=tel]:focus,input[type=text]:focus,input[type=email]:focus,input[type=search]:focus,input[type=password]:focus,.form-control:focus {
    border-color: #999;
    outline: 0
}

p.alert-inline {
    padding: 7px 0 0;
    font-size: 12px;
    line-height: 1em;
    color: red
}

input.alert-inline {
    border-color: red;
    color: red
}

.btn {
    padding: 6px 12px;
    border: 1px solid transparent;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: background .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out;
    -moz-transition: background .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out;
    transition: background .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out
}

.btn:active,.btn:focus,.btn:hover {
    text-decoration: none
}

table caption {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    color: #777;
    text-align: left
}

.table-bordered,.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td {
    border-color: #a7a7a7
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #a7a7a733
}

.rte h1 {
    font-size: 32px
}

.rte h2 {
    font-size: 29px
}

.rte h3 {
    font-size: 26px
}

.rte h4 {
    font-size: 23px
}

.rte h5 {
    font-size: 20px
}

.rte h6 {
    font-size: 17px
}

.rte h1,.rte h2,.rte h3 {
    margin-top: 25px;
    margin-bottom: 15px
}

.rte h4,.rte h5,.rte h6 {
    margin-top: 20px;
    margin-bottom: 15px
}

.rte p {
    margin: 15px 0 0
}

.rte ul {
    margin: 15px 0 0;
    padding: 0 0 0 30px;
    list-style-type: disc
}

.rte ul ul {
    margin-top: 0
}

.rte a {
    text-decoration: underline
}

.rte a:hover {
    text-decoration: none
}

.rte q {
    font-style: italic
}

.rte table {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    background-color: transparent;
    border-collapse: collapse
}

.rte table th,.rte table td {
    vertical-align: middle;
    padding: 7px 10px;
    border: 1px solid #a7a7a7
}

.rte .rte_youtube_wrapper {
    overflow: hidden;
    padding: 56.25% 0 0;
    position: relative
}

.rte .rte_youtube_wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    left: 0;
    top: 0
}

.product_name {
    font-size: 12px;
    color: #000;
    font-weight: 600
}

.product_name a {
    font-size: inherit;
    color: inherit
}

.product_name a:hover {
    color: #9E6A10
}

.money {
    font-size: 14px;
    color: #000
}

.money_sale {
    text-decoration: line-through;
    margin-right: 5px;
    color: #bdbdbd
}

.money_sale_percent {
    background: #000
}

#quick_view__wrap .fancybox-skin {
    padding: 40px!important
}

#product_quick_view {
    width: 817px
}

#product_quick_view .swiper_btn {
    color: #9E6A10
}

#product_quick_view .swiper_btn:hover {
    color: #fff;
    background: #0000004d
}

#product_quick_view .btn_prev {
    left: 100px
}

#product_quick_view .btn_prev:after {
    content: "\f104";
    font: 24px/1em FontAwesome;
    color: inherit;
    line-height: 28px
}

#product_quick_view .btn_next {
    right: 17px
}

#product_quick_view .btn_next:after {
    content: "\f105";
    font: 24px/1em FontAwesome;
    color: inherit;
    line-height: 28px
}

#quick_view__close {
    top: 10px;
    right: 10px
}

.product_quick_wrapper {
    width: 100%;
    display: table
}

.quick_view__left {
    width: 425px;
    display: flex;
    align-items: flex-start;
    padding: 0 15px 0 0;
    position: relative
}

.quick_view__left #img_big {
    width: 308px
}

.quick_view__left #img_big img {
    background: #0000000d
}

.quick_view__left .swiper-wrapper {
    height: 390px
}

.quick_view__left .swiper-slide {
    display: inline-block
}

.quick_view__left .product_images {
    width: 90px;
    margin-right: 10px;
    height: 390px
}

.quick_view__right {
    height: 100%;
    display: table-cell;
    overflow: hidden;
    padding: 0 0 0 15px;
    vertical-align: top
}

.quick_view__right p {
    margin: 5px 0 0;
    font-size: 14px
}

.quick_view__right label {
    font-weight: 400;
    font-size: 14px;
    color: #000
}

#quick_view__name {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    /* text-transform: uppercase; */
}

#quick_view__variants {
    overflow: hidden;
    margin: 0 -10px
}

#quick_view__variants label {
    display: block;
    padding: 0 10px
}

#quick_view__variants .selector-wrapper {
    width: 33.33333333333333%;
    float: left;
    padding: 5px 10px 0
}

#quick_view__variants .selector-wrapper label {
    display: none!important
}

#quick_view__variants .selector-wrapper select {
    width: 100%;
    display: block
}

#quick_view__price {
    margin: 15px 0 0;
    position: relative
}

#quick_view__price .price {
    margin: 0;
    padding: 0 60px 0 0
}

#quick_view__price .money {
    margin: 0 7px 0 0;
    font-size: 24px;
    color: #000
}

#quick_view__price .money_sale {
    font-size: 16px
}

#quick_view__price .money_sale_percent {
    width: 52px;
    height: 26px;
    display: block;
    margin: -13px 0 0;
    background: #000;
    font: 700 14px/26px Arial;
    color: #fff;
    text-align: center;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

#quick_view__availability {
    margin: 20px 0 0
}

#quick_view__description {
    margin: 15px 0
}

#quick_view__form {
    margin: 15px 0 0
}

#quick_view__form label {
    margin-right: 6px
}

#quick_view__form #quick_view__add {
    height: 50px;
    margin: 25px 10px 0 0;
    padding: 0 20px;
    font-size: 18px
}

#quick_view_colors {
    display: flex;
    flex-wrap: wrap
}

#quick_view_colors label {
    margin-right: 3px;
    margin-top: 5px
}

#quick_view_colors .color_item {
    display: inline-block;
    vertical-align: top;
    width: 21px;
    height: 21px;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 1px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 5px 3px 0
}

#quick_view_colors .color_item span {
    background-color: #474747;
    border: 1px solid #ccc;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

#quick_view_colors .color_item.current {
    border-color: #9E6A10
}

#quick_view_size {
    display: flex;
    flex-wrap: wrap
}

#quick_view_size label {
    margin-right: 3px;
    margin-top: 5px
}

#quick_view_size .size_item {
    display: inline-block;
    vertical-align: baseline;
    margin: 5px 3px 0;
    background: #fff;
    border: 1px solid #a7a7a7;
    text-align: center;
    line-height: 21px;
    min-width: 23px;
    padding: 0 2px;
    cursor: pointer
}

#quick_view_size .current {
    border-color: #9E6A10
}

#product_info_link {
    margin-top: 15px;
    font-weight: 700
}

.fancybox-image,.fancybox-inner,.fancybox-nav,.fancybox-nav span,.fancybox-outer,.fancybox-skin,.fancybox-tmp,.fancybox-wrap,.fancybox-wrap iframe,.fancybox-wrap object {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    vertical-align: top
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020
}

.fancybox-inner,.fancybox-outer,.fancybox-skin {
    position: relative
}

.fancybox-skin {
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.fancybox-opened {
    z-index: 8030
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0,0,0,.5);
    -moz-box-shadow: 0 10px 25px rgba(0,0,0,.5);
    box-shadow: 0 10px 25px #00000080
}

.fancybox-inner {
    overflow: hidden
}

.fancybox-error {
    color: #444;
    font: 14px/20px Helvetica Neue,Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap
}

.fancybox-iframe,.fancybox-image {
    display: block;
    width: 100%;
    height: 100%
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMhJREFUeNrs2TEKwkAUhOEXBSurQM5jo2AbyG2EgIfyCkKqXEDiGYI2QkBn5aXYYBqb7MAM/Ft/LNutWbwtqtEVDei9UIMbajf93A51CyLn6twWrUwQOq0csTl6EICDMV/jOKG9pb+Nv21rCW53rM1wvFzPsD5zOc1WRjaBBRZYYIEFFlhggQUWWGCBBRZYYIEFFvh/cE/kfQbwnQh8C+ALEfhrLYznU6YY5RUBuJpe98HS/Vg8zr2R8E16Rk0C0MYt0dftR4ABAFfva4h/thfHAAAAAElFTkSuQmCC);
    opacity: .8;
    cursor: pointer;
    z-index: 8060
}

.fancybox-close,.fancybox-nav,.fancybox-nav span {
    cursor: pointer;
    z-index: 8040;
    position: absolute
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url(fancybox_loading.gif) center center no-repeat
}

.fancybox-close {
    top: 0;
    right: 0;
    width: 36px;
    height: 36px
}

.fancybox-nav {
    top: 0;
    width: 40%;
    height: 100%;
    text-decoration: none;
    background: url(blank.html);
    -webkit-tap-highlight-color: transparent
}

.fancybox-prev {
    left: 0
}

.fancybox-next {
    right: 0
}

.fancybox-nav span {
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px
}

.fancybox-prev span {
    left: 5px
}

.fancybox-next span {
    right: 5px
}

.fancybox-nav:hover span {
    visibility: visible
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible!important
}

.fancybox-lock,.fancybox-lock body {
    overflow: hidden!important
}

.fancybox-lock {
    width: auto
}

.fancybox-lock-test {
    overflow-y: hidden!important
}

.fancybox-overlay {
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: #000000b3
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll
}

.fancybox-title {
    visibility: hidden;
    font: 400 13px/20px Helvetica Neue,Helvetica,Arial,sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050
}

.fancybox-opened .fancybox-title {
    visibility: visible
}

.fancybox-skin {
    padding: 15px;
    background: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.fancybox-close {
    width: 36px;
    height: 36px;
    display: block;
    border: none
}

.fancybox-close:before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #9E6A10;
    position: absolute;
    top: 17px;
    right: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.fancybox-close:after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #9E6A10;
    position: absolute;
    top: 17px;
    right: 3px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.fancybox-close:hover:before,.fancybox-close:hover:after {
    background: #000
}

.fancybox-nav span {
    width: 36px;
    height: 36px;
    display: block;
    margin: -18px 0 0;
    background: #444;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.6);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.6);
    box-shadow: 0 0 10px #0009;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: background .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
    -moz-transition: background .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
    transition: background .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out
}

.fancybox-nav span:before {
    display: block;
    font: 12px/36px FontAwesome;
    color: #000;
    text-align: center
}

.fancybox-nav:hover>span {
    background: #666
}

.fancybox-prev span:before {
    content: "\f053";
    padding: 0 2px 0 0
}

.fancybox-next span:before {
    content: "\f054";
    padding: 0 0 0 2px
}

.fancybox_alert {
    padding: 0!important;
    text-align: center
}

.fancybox_alert .alert {
    margin: 0;
    padding: 40px;
    font-size: 14px
}

.fancybox_alert .btn {
    margin: 15px 0 0;
    text-decoration: none
}

.fancybox_alert .btn~.btn {
    margin-left: 15px!important
}

#cart_added {
    max-width: 420px
}

#cart_added .cart_added__row {
    height: 120px;
    display: table
}

#cart_added h4 {
    margin: 15px 0;
    text-align: center;
    font-size: 20px
}

#cart_added.cart_error {
    max-width: 420px
}

.cart_added__1 {
    width: 120px;
    height: 100%;
    display: table-cell;
    text-align: center;
    vertical-align: top
}

.cart_added__1 img {
    height: 120px;
    padding: 10px;
    border: 1px solid #a7a7a7
}

.cart_added__2 {
    width: 300px;
    height: 100%;
    display: table-cell;
    padding: 0 0 0 15px
}

.cart_added__2 .product_name {
    display: block
}

.cart_added__2 #cart_added__quantity {
    margin: 15px 0 0;
    font-size: 16px
}

.cart_added__2 .btn {
    margin: 15px 10px 0 0
}

@font-face {
    font-family: FontAwesome;
    src: url(fontawesome/fontawesome-webfont.eot);
    src: url(fontawesome/fontawesome-webfont5888.eot) format("embedded-opentype"),url(fontawesome/fontawesome-webfont17c1.woff2) format("woff2"),url(fontawesome/fontawesome-webfontd20d.woff) format("woff"),url(fontawesome/fontawesome-webfont8002.ttf) format("truetype"),url(fontawesome/fontawesome-webfontc12c.svg) format("svg");
    font-weight: 400;
    font-style: normal
}

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

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

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

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

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.fa-edit:before {
    content: "\f044"
}

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

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

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

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

.fa-user-o:before {
    content: "\f2c0"
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-map:before {
    content: "\f279"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.swiper-container {
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 1
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-wrapper {
    -webkit-transform: translate3d(0px,0,0);
    -moz-transform: translate3d(0px,0,0);
    -o-transform: translate(0px,0px);
    -ms-transform: translate3d(0px,0,0);
    transform: translateZ(0)
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1000;
    pointer-events: none;
    opacity: 0
}

.swiper_btn {
    width: 30px;
    height: 30px;
    margin: -15px 0 0;
    text-align: center;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.swiper_btn:before {
    display: block;
    font: 20px/28px FontAwesome;
    color: inherit
}

.swiper_btn:hover {
    color: #000
}

.swiper_btn__prev {
    padding: 0 1px 0 0;
    left: 0
}

.swiper_btn__prev:before {
    content: "\f104"
}

.swiper_btn__next {
    padding: 0 0 0 1px;
    right: 0
}

.swiper_btn__next:before {
    content: "\f105"
}

.swiper_pagination {
    font-size: 0;
    line-height: 0;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23px;
    z-index: 10;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0)
}

.swiper_pagination span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #00000080;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out
}

.swiper_pagination span~span {
    margin: 0 0 0 5px
}

.swiper_pagination span:hover,.swiper_pagination .swiper-pagination-bullet-active {
    background: #9E6A10
}

.swiper-pagination-hidden {
    opacity: 0
}

.btn {
    background: #9E6A10;
    border: 1px solid #9E6A10;
    color: #fff
}

.btn:active,.btn:focus,.btn:hover {
    background: #000;
    border-color: #000;
    color: #fff
}

.btn[disabled] {
    background: #0003;
    border-color: transparent;
    color: #333
}

.page_wrapper {
    overflow: hidden
}

.page_container {
    max-width: 2048px;
    margin: 0 auto
}

.product_listing__main:not(.swiper-wrapper) {
    display: flex;
    flex-wrap: wrap
}

.product_listing__main.layout__medium_sb .product_badge {
    min-width: 40px;
    font-size: 10px;
    top: 7px
}

.product_listing__main.layout__medium_sb .product_badge.new {
    left: 10px
}

.product_listing__main:not(.product_listing__list) .product_item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: center
}

.product_listing__main .product_item {
    margin: 15px 0;
    /* background: #f7f7f7; */
    float: none
}

.product_listing__main .product_item {
    box-shadow: 0 0 10px 2px #0000001a
}
.product_listing__main .product_item:hover {
    box-shadow: none;
}

.product_listing__main .product_img {
    position: relative;
    text-align: center
}

.product_listing__main .product_img .img_change {
    display: block;
    position: relative
}

.product_listing__main .product_img .img__2 {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 0;
    z-index: 2;
    opacity: 0
}

.product_listing__main .product_img .quick_view_btn {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.product_listing__main .product_badge {
    position: absolute;
    top: 10px;
    color: #fff;
    padding: 4px 3px;
    min-width: 50px;
    text-align: center;
    z-index: 3;
    font-size: 11px;
    line-height: 1.2
}

.product_listing__main .product_badge.new {
    left: 10px;
    background: #9E6A10
}

.product_listing__main .product_info {
    padding: 15px 0
}

.product_listing__main .product_name {
    letter-spacing: .3em;
    text-align: center;
    /* text-transform: uppercase; */
}

@media (max-width: 1199px) {
    .product_listing__main .product_name {
        min-height: 60px;
        max-height: 60px;
    }
    .product_item .product_name {
        min-height: 60px;
        max-height: 60px;
    }
}

@media (max-width: 507px) {
    .product_listing__main .product_name {
        min-height: 82px;
        max-height: 82px;
    }
}

@media (max-width: 479px) {
    .product_listing__main .product_name {
        min-height: 30px;
        max-height: 30px;
    }
}
.product_listing__main .product_desc {
    padding: 15px 0 0;
    display: none
}

.product_listing__main .product_prop {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.product_listing__main .product_price {
    padding-top: 10px;
    padding-bottom: 0px;
    line-height: 0px;
}

.product_listing__main .product_price .money {
    font-size: 15px;
    letter-spacing: .05em;
    font-weight: 600
}

.product_listing__main .product_links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: #9E6A10;
    padding: 14px 5px
}

.product_listing__main .product_links.out-of-stock {
    background: #e26464;
}

.product_listing__main .product_links>form,.product_listing__main .product_links>a {
    margin-right: 10px
}

.product_listing__main .product_links form {
    display: inline-block
}

.product_listing__main .product_links .wishlist_btn,.product_listing__main .product_links .quick_view_btn {
    color: #fff;
    font-size: 14px
}

.product_listing__main .product_links .wishlist_btn:hover,.product_listing__main .product_links .quick_view_btn:hover {
    color: #000
}

.product_listing__main .product_links .quick_view_btn {
    order: 3
}

.product_listing__main .product_links .wishlist_btn {
    order: 1
}

.product_listing__main .product_links .btn_options,.product_listing__main .product_links .btn-cart {
    transition: .3s;
    color: #fff;
    /* letter-spacing: .3em; */
    font-weight: 500;
    font-family: Montserrat;
    /* /* text-transform: uppercase; */; */
    font-size: 10px
}

.product_listing__main .product_links .btn_options i,.product_listing__main .product_links .btn-cart i {
    margin-right: 10px;
    font-size: 14px
}

@media (min-width: 992px) {
    .product_listing__main .product_links .btn_options,.product_listing__main .product_links .btn-cart {
        font-size:14px
    }
}

.product_listing__main .product_links .btn_options:hover,.product_listing__main .product_links .btn-cart:hover {
    color: #000
}

.product_listing__main .product_links .btn-cart {
    line-height: 17px
}

.product_listing__main .product_links .btn-cart[disabled] {
    cursor: auto;
    background-color: #e26464 !important;
}

.product_listing__main .product_links .btn-cart[disabled]:hover {
    color: #fff;
    background: #000
}

@media (max-width: 479px) {
    .product_listing__main>div {
        padding-left:8px;
        padding-right: 8px
    }

    .product_listing__main:not(.product_listing__list) .product_links {
        justify-content: center
    }
}

.product_listing__list>div {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.product_listing__list .product_item {
    margin: 30px 0 0;
    padding-bottom: 20px
}

.product_listing__list .product_img {
    width: 40%;
    float: right;
    padding: 0;
    margin-top: 15px
}

.product_listing__list .product_info {
    width: 60%;
    float: right;
    padding: 15px
}

@media (min-width: 768px) {
    .product_listing__list .product_img {
        width:26%
    }

    .product_listing__list .product_info {
        width: 74%;
        padding: 15px 30px;
        margin-bottom: 20px
    }
}

.product_listing__list .product_links {
    clear: both;
    background: none;
    justify-content: center;
    margin: 5px 15px
}

@media (min-width: 768px) {
    .product_listing__list .product_links {
        justify-content:flex-end;
        margin: 15px
    }
}

.product_listing__list .product_links .btn_options,.product_listing__list .product_links .btn-cart,.product_listing__list .product_links .wishlist_btn,.product_listing__list .product_links .quick_view_btn {
    color: #000;
    transition: .3s;
    margin-right: 7px
}

.product_listing__list .product_links .quick_view_btn,.product_listing__list .product_links .wishlist_btn {
    order: 1
}

.product_listing__list .product_links .wishlist_btn,.product_listing__list .product_links .quick_view_btn {
    border: 1px solid black;
    width: 46px;
    height: 43px;
    line-height: 43px;
    display: inline-block;
    text-align: center
}

.product_listing__list .product_links .wishlist_btn:hover,.product_listing__list .product_links .quick_view_btn:hover {
    color: #fff;
    background: #000
}

.product_listing__list .product_links .btn_options,.product_listing__list .product_links .btn-cart {
    border: 1px solid black;
    padding: 12px
}

.product_listing__list .product_links .btn_options:hover,.product_listing__list .product_links .btn-cart:hover {
    color: #fff;
    background: #000
}

.product_listing__list .product_links form {
    margin-right: 0
}

.product_listing__list .product_links .btn-cart[disabled] {
    cursor: auto
}

.product_listing__list .product_links .btn-cart[disabled]:hover {
    color: #000;
    background: #fff
}

.product_listing__list .product_links form {
    order: 1
}

.product_listing__list .product_name {
    padding: 0;
    font-size: 18px;
    margin-top: 35px;
    text-align: left
}

.product_listing__list .product_price .money {
    font-size: 15px
}

.product_listing__list .product_prop {
    justify-content: flex-start;
    margin-top: 15px;
    text-align: left
}

.mobile .product_listing__main .quick_view_btn,.tablet .product_listing__main .quick_view_btn {
    display: none!important
}

#product_listing__sorted {
    position: relative
}

#product_listing__sorted.loader_on:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 20;
    text-align: center
}

.collection_listing__main .collection_item {
    margin: 30px 0 0
}

.collection_listing__main .collection_item .layer_1 {
    margin: 0 0 20px
}

.collection_listing__main .collection_item .img_placeholder__wrap {
    background-color: #0000000a;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: background-color .4s ease-in-out;
    -moz-transition: background-color .4s ease-in-out;
    transition: background-color .4s ease-in-out
}

.collection_listing__main .collection_item .collection_title {
    display: block;
    font-size: 18px;
    color: #000;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: color .4s ease-in-out;
    -moz-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out;
    /* /* text-transform: uppercase; */; */
    font-weight: 700
}

.collection_listing__main .collection_item .collection_products {
    display: block;
    padding: 10px 0 0;
    color: #000
}

.collection_listing__main .second .collection_title {
    color: #9E6A10
}

.collection_listing__main .flexible_block__normal:hover .collection_title {
    color: #9E6A10
}

.collection_listing__main .flexible_block__normal:hover .img_placeholder__wrap {
    background-color: #0000001a
}

.breadcrumbs {
    padding: 0 0 26px
}

.breadcrumbs ul {
    font-size: 0;
    line-height: 0
}

.breadcrumbs li {
    display: inline-block;
    padding: 27px 10px 0 0
}

.breadcrumbs li~li:before {
    content: "\f105";
    margin: 0 10px 0 0;
    font: 14px/1em FontAwesome
}

.breadcrumbs a,.breadcrumbs span {
    font-size: 14px;
    line-height: 1em;
    color: #9E6A10;
}
.breadcrumbs a:hover,.breadcrumbs span:hover {
    color: #000;
}

.breadcrumbs span {
    text-transform: capitalize
}

.button_filters {
    margin: 20px 0
}

.button_filters ul {
    font-size: 0
}

.button_filters li {
    display: inline-block;
    margin: 10px 10px 0 0
}

.button_filters a {
    display: block;
    padding: 3px 6px;
    background: #0000001a;
    font-size: 12px;
    text-transform: capitalize
}

.button_filters .active a {
    background: #000;
    color: #fff
}

.pagination {
    overflow: hidden;
    margin: 30px 0 0;
    padding: 0 10px
}

.pagination p {
    float: left;
    height: 40px;
    line-height: 40px
}

.pagination ul {
    float: right
}

.pagination li {
    display: inline-block;
    font-size: 0;
    line-height: 0
}

.pagination li~li {
    padding: 0 0 0 10px
}

.pagination a,.pagination span {
    font-size: 14px;
    height: 40px;
    line-height: 40px
}

.img_placeholder__wrap {
    overflow: hidden;
    background: #fff;
    position: relative
}

.flexible_block .img_placeholder__wrap {
    background-repeat: no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto
}

.flexible_block .img_placeholder__small {
    padding: 56.25% 0 0
}

.flexible_block .img_placeholder__medium {
    padding: 94.45% 0 0
}

.flexible_block .img_placeholder__large {
    padding: 133.333333% 0 0
}

.quantity_box {
    height: 20px;
    position: relative;
    width: 100px;
    display: inline-block
}

.quantity_box input {
    width: 26px;
    height: 24px;
    display: inline-block;
    padding: 0;
    background: none;
    border: 1px solid #a7a7a7!important;
    font-size: 15px;
    text-align: center;
    line-height: 21px;
    background: #fff;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    box-shadow: none!important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.quantity_box span {
    width: 26px;
    height: 24px;
    text-align: center;
    cursor: pointer;
    display: inline-block
}

.quantity_box span i {
    font-size: 12px;
    line-height: 25px
}

.quantity_box .quantity_down,.quantity_box .quantity_up {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.quantity_box .quantity_down:hover,.quantity_box .quantity_up:hover {
    color: #000
}

.quantity_box .btn {
    width: 100%;
    height: 50px;
    display: block;
    padding: 0 10px;
    line-height: 50px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

#back_top {
    width: 50px;
    height: 50px;
    display: block;
    background: #9E6A1080;
    font: 20px/47px FontAwesome;
    color: #fff;
    text-align: center;
    position: fixed;
    right: 60px;
    bottom: 60px;
    z-index: 999;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: none
}

#back_top:hover {
    background: #9E6A10
}

.linklist_menu_item .menu_trigger {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-top: -15px;
    cursor: pointer;
    display: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out
}

.linklist_menu_item.open .menu_trigger {
    transform: rotate(180deg)
}

.tab_content_wrapper .tab_content {
    position: relative
}

.tab_content_wrapper .tab_item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none
}

.tab_content_wrapper .tab_item.active {
    position: relative;
    display: block
}

header {
    background: #fff;
    position: relative;
    z-index: 99
}

header.megamenu_stuck {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    background: #f3f5f5
}

header.megamenu_stuck .header_wrap1 {
    padding-top: 5px;
    padding-bottom: 5px
}

header.megamenu_stuck .top_pannel {
    display: none
}

.top_pannel,.top_pannel a {
    color: #000
}

.top_pannel a:hover {
    color: #000
}

.top_pannel.inverted,.top_pannel.inverted a {
    color: #fff
}

.top_pannel.inverted a:hover {
    color: #000
}

.top_pannel.inverted #search_result_container a {
    color: #000
}

.top_pannel.inverted #search_result_container a:hover {
    color: #000
}

.top_pannel .container {
    display: flex;
    justify-content: space-between
}

.header_wrap1 {
    padding: 18px 0;
    color: #000
}

.header_wrap1 .header_main_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header_wrap1 a {
    color: #000
}

.header_wrap1 a:hover {
    color: #000
}

.header_wrap1.inverted,.header_wrap1.inverted .megamenu_desktop .level_1__link {
    color: #fff
}

.header_wrap1.inverted .header_cart .cart_link,.header_wrap1.inverted .header_cart b {
    color: #9E6A10
}

.header_wrap1.inverted #megamenu_mobile_toggle {
    color: #fff
}

.header_wrap1.inverted .megamenu_mobile a {
    color: #9E6A10
}

.header_wrap1.inverted .megamenu_mobile a:hover {
    color: #000
}

@media (min-width: 1199px) {
    .header_left {
        margin-right: 12%
    }
}

.header_center {
    flex-grow: 2
}

.header_right {
    text-align: right;
    margin-left: 7%
}

.header_right select {
    vertical-align: middle
}

.top_pannel_text {
    font-size: 14px;
    font-weight: 300;
    border-left: 10px dashed transparent;
    border-right: 10px dashed transparent;
    background-origin: border-box;
    border-radius: 12px;
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.2);
}

.header_logo {
    display: inline-block;
    font-size: 18px;
    /* text-transform: uppercase; */
}

.header_search {
    height: 39px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 0 0;
    position: relative
}

.header_search .search_toggle {
    line-height: 39px;
    cursor: pointer;
    /* /* text-transform: uppercase; */; */
    font-weight: 300;
    font-size: 20px;
    letter-spacing: .1em
}

.header_search .search_toggle .fa-search {
    margin-right: 5px
}

.header_search .search_toggle:hover {
    color: #000
}

.header_search .search_toggle.open .fa-times {
    display: inline-block
}

.header_search .fa-times {
    display: none;
    margin-left: 10px;
    color: red
}

.header_search .search_form {
    position: absolute;
    top: 0;
    /* right: 20px; */
    overflow: hidden;
    display: none
}

.header_search input {
    width: 300px;
    display: block;
    padding-right: 34px;
    height: 40px
}

.header_search button {
    width: 34px;
    height: 39px;
    color: #000;
    position: absolute;
    right: 0;
    top: 0
}

.header_search button:hover {
    color: #888
}

.header_search #search_result_container {
    position: absolute;
    right: 20px;
    top: 100%;
    border: 1px solid #a7a7a7;
    background: #fff;
    opacity: 0;
    width: 500px;
    z-index: 100;
    padding: 15px;
    visibility: hidden
}

.header_search #search_result_container.active {
    opacity: 1;
    visibility: visible
}

.header_search #search_result_container li {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #a7a7a7
}

.header_search #search_result_container li:last-child {
    border-bottom: none
}

.header_search #search_result_container li.centred a {
    margin: 0 auto
}

.header_account {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px
}

.header_account a {
    font-size: 20px;
    font-weight: 300;
    /* text-transform: uppercase; */
}

.header_account a+a {
    margin-left: 15px
}

.header_wishlist {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    /* /* text-transform: uppercase; */; */
    font-weight: 300;
    letter-spacing: .1em;
    margin-right: 5px
}

.header_wishlist i {
    margin-right: 5px
}

.header_cart {
    position: relative
}

.header_cart i {
    margin-right: 5px
}

.header_cart b {
    /* /* text-transform: uppercase; */; */
    color: #9E6A10;
    letter-spacing: .1em
}

.header_cart #cart_content_box {
    border: 1px solid #a7a7a7;
    padding: 10px 40px;
    background: #fff;
    z-index: 110;
    width: 500px;
    text-align: left;
    position: relative;
    color: #000
}

.header_cart #cart_content_box .cart_items {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    padding: 30px 0;
    border-bottom: 1px solid black;
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
}

.header_cart #cart_content_box .item_desc {
    flex-grow: 2;
    padding: 0 0 15px 15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    color: #000
}

.header_cart #cart_content_box .item_desc .product_title {
    display: block;
    width: 100%;
    color: #000
}

.header_cart #cart_content_box .item_desc .product_title:hover {
    color: #000
}

.header_cart #cart_content_box .item_desc .product_quantity {
    margin-left: 10px
}

.header_cart #cart_content_box .cart_total b {
    font-size: 14px;
    vertical-align: bottom;
    text-transform: none;
    color: #000;
    margin-right: 5px
}

.header_cart #cart_content_box .cart_total .money {
    font-weight: 700;
    font-size: 24px;
    color: #9E6A10
}

.header_cart #cart_content_box .box_footer {
    display: flex;
    padding: 10px 0;
    align-items: center
}

.header_cart #cart_content_box .box_footer .cart_clear {
    flex-grow: 2;
    text-align: right;
    padding: 0 10px
}

.header_cart #cart_content_box .cart_link,.header_cart #cart_content_box .cart_url {
    color: #fff
}

.header_cart #cart_content_box .item_remove_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
    color: #9E6A10
}

.header_cart #cart_content_box .item_remove_btn:hover {
    color: #000
}

.header_cart:hover .cart_content_wrap {
    display: block
}

.header_cart .cart_content_wrap {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    overflow-y: auto;
    max-height: 80vh;
    color: #000
}

.header_cart .cart_content_preloader {
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    right: 1px;
    opacity: 1;
    z-index: 111;
    background-color: #fff
}

.header_cart .cart_content_preloader .global_loader {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: url(cart_loader.gif) center center no-repeat
}

.header_cart .cart_content_preloader.off {
    opacity: 0;
    z-index: -1
}

.megamenu_desktop h5 {
    display: none
}

.megamenu_desktop ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.megamenu_desktop .level_1 {
    font-size: 0;
    display: flex;
    justify-content: space-around
}

.megamenu_desktop .level_1__item {
    display: inline-block;
    font-size: 14px
}

.megamenu_desktop .level_1__item~.level_1__item {
    margin: 0 0 0 20px
}

.megamenu_desktop .level_1__link {
    height: 34px;
    display: block;
    line-height: 34px;
    font-weight: 500;
    /* /* text-transform: uppercase; */; */
    letter-spacing: .1em
}

.megamenu_desktop .level_1__link:hover,.megamenu_desktop .level_1__link.active {
    color: #000
}

.megamenu_desktop .level_2 {
    text-align: left;
    position: absolute;
    left: 50%;
    right: 50%;
    top: 100%;
    z-index: 99;
    display: none
}

.megamenu_desktop .level_2 h3 {
    display: none;
    /* text-transform: uppercase; */
}

.megamenu_desktop .level_2 h3.visible {
    display: block
}

.megamenu_desktop .level_2 h4 {
    font-size: 14px;
    font-weight: 700;
    padding: 7px 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.megamenu_desktop .level_2 a:hover h4 {
    color: #9E6A10
}

.megamenu_desktop .level_2 .container {
    overflow: hidden;
    margin: 0 0 0 -585px;
    padding: 30px 15px;
    background: #fff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 15px #0000001a
}

.megamenu_desktop .level_2 .level_3 {
    text-align: left
}

.megamenu_desktop .level_2__small {
    position: relative
}

.megamenu_desktop .level_2__small .level_2 {
    left: 0;
    right: auto;
    top: 50px
}

.megamenu_desktop .level_2__small div {
    min-width: 170px;
    padding: 10px 20px 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 15px #0000001a
}

.megamenu_desktop .level_2__links h3 {
    margin: 0;
    font-size: 18px
}

.megamenu_desktop .level_2__links .level_3 {
    margin: 15px 0 0
}

.megamenu_desktop .level_2__products .product_info {
    position: absolute;
    bottom: -100%;
    left: 15px;
    right: 15px;
    padding: 10px;
    background: #fff;
    border: 1px solid #a7a7a7;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: bottom .4s ease-in-out;
    -moz-transition: bottom .4s ease-in-out;
    transition: bottom .4s ease-in-out
}

.megamenu_desktop .level_2__products .product_name {
    font-size: 14px
}

.megamenu_desktop .level_2__products .product_price {
    margin: 5px 0 0
}

.megamenu_desktop .level_2__products .money {
    margin: 0 5px 0 0;
    font-size: 16px
}

.megamenu_desktop .level_2__products .money_sale {
    font-size: 12px
}

.megamenu_desktop .level_2__products .product {
    position: relative;
    overflow: hidden
}

.megamenu_desktop .level_2__products .product:hover .product_info {
    bottom: 15px
}

.megamenu_mobile {
    text-align: left
}

.megamenu_mobile h2 {
    display: inline-block;
    overflow: hidden;
    margin: 0;
    font-size: 20px;
    cursor: pointer
}

.megamenu_mobile h2 i {
    margin: 0 5px 0 0
}

.megamenu_mobile .megamenu_trigger {
    width: 22px;
    height: 22px;
    display: block;
    margin: -11px 0 0;
    position: absolute;
    right: 0;
    top: 50%;
    cursor: pointer
}

.megamenu_mobile .megamenu_trigger:before {
    content: "";
    width: 100%;
    height: 4px;
    margin: -2px 0 0;
    background: #999;
    position: absolute;
    left: 0;
    top: 50%
}

.megamenu_mobile .megamenu_trigger:after {
    content: "";
    width: 4px;
    height: 100%;
    margin: 0 0 0 -2px;
    background: #999;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: height .2s ease-in-out,top .2s ease-in-out;
    -moz-transition: height .2s ease-in-out,top .2s ease-in-out;
    transition: height .2s ease-in-out,top .2s ease-in-out
}

.megamenu_mobile .megamenu_trigger.active:after {
    height: 0;
    top: 50%
}

.megamenu_mobile .container {
    width: 100%;
    padding: 0
}

.megamenu_mobile #megamenu_level__1 {
    width: 70%;
    overflow-y: scroll;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
}

.megamenu_mobile #megamenu_level__1.on {
    -webkit-transform: translate3d(0,0,0);
    transform: translateZ(0)
}

.megamenu_mobile #megamenu_mobile_close {
    width: 30%;
    background: #000000b3;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 150;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
}

.megamenu_mobile #megamenu_mobile_close .close_icon {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    position: absolute;
    top: 50%;
    left: 50%
}

.megamenu_mobile #megamenu_mobile_close .close_icon:before {
    content: "";
    width: 100%;
    height: 2px;
    margin: -1px 0 0;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.megamenu_mobile #megamenu_mobile_close .close_icon:after {
    content: "";
    width: 100%;
    height: 2px;
    margin: -1px 0 0;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.megamenu_mobile #megamenu_mobile_close.on {
    -webkit-transform: translate3d(0,0,0);
    transform: translateZ(0)
}

.megamenu_mobile .level_1 {
    padding: 30px;
    background: #fff
}

.megamenu_mobile .level_1__item~.level_1__item {
    border-top: 2px solid rgba(0,0,0,.15)
}

.megamenu_mobile .level_1__link {
    display: block;
    padding: 12px 35px 12px 0;
    font-size: 18px;
    line-height: 1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative
}

.megamenu_mobile .level_2 {
    display: none
}

.megamenu_mobile .level_2__small .level_3 li {
    border-top: 1px solid rgba(0,0,0,.1)
}

.megamenu_mobile .level_2__links h3 {
    padding: 12px 35px 12px 15px;
    font-size: 18px;
    line-height: 1em;
    position: relative
}

.megamenu_mobile .level_2__links h4 {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700
}

.megamenu_mobile .level_2__links img {
    margin-top: 10px;
    margin-bottom: 10px
}

.megamenu_mobile .level_2__links .level_3 {
    display: none
}

.megamenu_mobile .level_2__links a:hover h4 {
    color: #9E6A10
}

.megamenu_mobile .level_2__products .product_img {
    width: 140px;
    float: left;
    margin: 0 15px 0 0
}

.megamenu_mobile .level_2__products .product_name {
    line-height: 1em
}

.megamenu_mobile .level_2__products .product_price {
    margin: 10px 0 0
}

footer {
    margin: 50px 0 0;
    border-top: 1px solid #a7a7a7
}

footer.inverted .footer_row__1,footer.inverted .footer_row__2 {
    color: #fff;
    /* padding-bottom: 50px */
}

footer.inverted .footer_row__1 h3,footer.inverted .footer_row__1 .footer_wrap_1,footer.inverted .footer_row__2 h3,footer.inverted .footer_row__2 .footer_wrap_1 {
    color: #fff
}

footer.inverted .footer_row__1 a,footer.inverted .footer_row__2 a {
    color: #fff
}

footer.inverted .footer_row__1 a:hover,footer.inverted .footer_row__2 a:hover {
    color: #000
}

footer.inverted .footer_row__1 input,footer.inverted .footer_row__2 input {
    background: #fff3;
    border: none;
    color: #fff
}

footer.inverted .footer_row__1 .btn:hover,footer.inverted .footer_row__2 .btn:hover {
    color: #9E6A10;
    border-color: #9E6A10
}

footer .footer_row__1 {
    margin: 0 0 10px
}

footer .footer_main {
    display: flex
}

footer .footer_block {
    display: flex
}

footer .footer_item {
    margin: 60px 0 0;
    width: 100%
}

footer .footer_item h3 {
    margin: 0;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: .01em;
    color: #000;
    font-family: Montserrat
}

footer .footer_item__links ul {
    padding: 13px 0 0
}

footer .footer_item__links li {
    padding: 8px 0 0;
    font-size: 12px;
    /* text-transform: uppercase; */
}

footer .footer_item__about img {
    /* margin-top: 60px; */
    margin-bottom: 20px
}

footer .footer_row__2 {
    overflow: hidden;
    /* margin-top: 25px */
}

footer .footer_wrap_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000
}

footer .footer_wrap_2 {
    width: 50%
}

footer .footer_center {
    padding: 15px;
    text-align: center;
    width: 100%
}

.template-index footer {
    margin-top: 0;
    border-top: none
}

.section_homepage {
    margin: 30px 0
}

.section_homepage .section_heading {
    margin: 0;
    font-size: 18px;
    /* /* text-transform: uppercase; */; */
    padding: 10px 30px;
    font-weight: 800;
    letter-spacing: .4em;
    font-family: Montserrat;
    background-color: #0000;
    text-align: center
}

.color_scheme .section_blog-with-carousel .section_heading {
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 20px
}

.section_blog-with-carousel .swiper-slide {
    position: relative
}

.section_blog-with-carousel .swiper-slide .layer_2 {
    display: inline-block;
    position: relative;
    top: 0;
}


.section_blog-with-carousel .swiper-slide .layer_2 .blog_article_content h3 {
    font-size: 36px;
    margin-top: 5px;
    text-transform: capitalize;
    color: #9E6A10
}

.section_blog-with-carousel .swiper-slide .layer_2 .blog_article_content .article_content {
    margin-top: 46px;
    line-height: 1.5em;
    letter-spacing: .01em;
    width: 50%
}

.section_blog-with-carousel .swiper-slide .layer_2 .blog_article_content .btn {
    margin-top: 33px;
    background: transparent;
    color: #9E6A10;
    border: none;
    border-bottom: 3px solid #9E6A10;
    font-weight: 300;
    letter-spacing: .3em;
    padding: 7px 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.section_blog-with-carousel .swiper-slide .layer_2 .blog_article_content .btn:hover {
    color: #000;
    border-bottom: 3px solid black
}

.section_blog-with-carousel .swiper_btn {
    position: absolute;
    display: inline-block;
    top: 6%
}

.section_blog-with-carousel .swiper_btn__prev {
    left: 94%
}

.section_blog-with-carousel .swiper_btn__next {
    right: 0
}

.section_featured-products .section_heading {
    padding-bottom: 0
}

.section_gallery {
    margin: 20px 0 20px;
    overflow: hidden;
    position: relative
}

.section_gallery .galery_wrap {
    margin: 0 auto;
    max-width: 1440px
}

.section_gallery .galery_wrap>div {
    margin-top: 20px
}

.section_gallery .galery_wrap>div .gallery_item {
    border: 1px solid black
}

@media (min-width: 1200px) {
    .section_gallery .galery_wrap>div {
        padding:0;
        border-right: 1px solid black;
        margin-top: 0
    }

    .section_gallery .galery_wrap>div:last-child {
        border-right: none
    }

    .section_gallery .galery_wrap>div .gallery_item {
        border: none
    }
}

.section_gallery h4 {
    text-align: center;
    font-family: Montserrat;
    color: #9E6A10;
    font-size: 24px;
    /* /* text-transform: uppercase; */; */
    letter-spacing: .4em
}

.section_gallery h2 {
    text-align: center;
    font-family: Montserrat;
    font-size: 60px;
    /* /* text-transform: uppercase; */; */
    letter-spacing: .4em;
    line-height: 1.5em;
}

.section_gallery h2,.section_gallery h4 {
    transition: .3s
}

.section_gallery .style_4 .item_caption {
    text-align: center;
    align-items: center
}

.section_gallery .style_4 .caption_text {
    z-index: 1
}

.section_gallery .style_4 a:before {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    opacity: 0;
    background: #9E6A1099;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 0
}

.section_gallery .style_4 a:hover h2,.section_gallery .style_4 a:hover h4 {
    color: #fff
}

.section_gallery .style_4 a:hover:before {
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.gallery_item {
    position: relative
}

.gallery_item .img_placeholder__wrap {
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto
}

.gallery_item .item_caption {
    padding: 13px 10px;
    font-size: 20px;
    line-height: 1.5em;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    /* /* text-transform: uppercase; */; */
    font-weight: 700;
    display: flex;
    justify-content: center
}

.gallery_item .item_caption .caption_text {
    width: 100%
}

.gallery_item .item_caption h4 {
    color: #000;
    font-size: 18px;
    letter-spacing: .4em
}

.gallery_item .item_caption h3 {
    color: #fff;
    font-size: 20px;
    letter-spacing: .03em
}

.section_gallery__4 .img_placeholder__small {
    padding: 85.187% 0 0
}

.section_gallery__4 .img_placeholder__medium {
    padding: 122.225% 0 0
}

.section_gallery__4 .img_placeholder__large {
    padding: 189.63% 0 0
}

.section_gallery__4 .galery_wrap .img_placeholder__small {
    padding: 21.925% 0 0;
}
@media (max-width: 991px) {
    .section_gallery__4 .galery_wrap .img_placeholder__small {
        padding: 14.925% 0 0;
    }

.product_listing__main .product_price {
    padding-top: 0px;
}

.product_listing__main .product_price .money {
    font-size: 20px;
}
}

@media (min-width: 991px) {
    .header_wrap2.header_center{
        order: -1;
        flex-grow: 2;
        text-align: left;
        /* margin-left: 15px; */
        margin-right: 0;
    }
}

.section_gallery__4 .galery_wrap .img_placeholder__medium {
    padding: 64.455% 0 0
}

.section_gallery__4 .galery_wrap .img_placeholder__large {
    padding: 100% 0 0
}

.section_image-with-text-overlay {
    margin: 0;
    position: relative
}

.section_image-with-text-overlay .img_placeholder__small {
    padding: 24.414062% 0 0
}

.section_image-with-text-overlay .img_placeholder__medium {
    padding: 32.715% 0 0
}

.section_image-with-text-overlay .img_placeholder__large {
    padding: 39.063% 0 0
}

.section_image-with-text-overlay .parallax_layer.img_placeholder__small {
    padding: 43% 0 0
}

.section_image-with-text-overlay .parallax_layer.img_placeholder__medium {
    padding: 53.711% 0 0
}

.section_image-with-text-overlay .parallax_layer.img_placeholder__large {
    padding: 60% 0 0
}

.section_image-with-text-overlay .parallax_layer_2.img_placeholder__small {
    padding: 43% 0 0
}

.section_image-with-text-overlay .parallax_layer_2.img_placeholder__medium {
    padding: 53.711% 0 0
}

.section_image-with-text-overlay .parallax_layer_2.img_placeholder__large {
    padding: 60% 0 0
}

.section_image-with-text-overlay .parallax_layer_2 {
    background: none;
    background-repeat: no-repeat
}

.section_image-with-text-overlay .img_placeholder__wrap {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover
}

.section_image-with-text-overlay .caption_text {
    max-width: 65%;
    padding: 2% 7.5%
}

.section_image-with-text-overlay h2 {
    color: #9E6A10;
    font-size: 48px;
    /* /* text-transform: uppercase; */; */
    font-weight: 700;
    margin-bottom: 5px
}

.section_image-with-text-overlay h4 {
    font-size: 26px;
    /* /* text-transform: uppercase; */; */
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: .045em
}

.section_image-with-text-overlay h4+h4 {
    margin-bottom: 5px
}

.section_image-with-text-overlay h5 {
    font-size: 18px;
    /* /* text-transform: uppercase; */; */
    font-weight: 700;
    letter-spacing: .1em
}

.section_image-with-text-overlay p {
    margin: 10px 0 0
}

.section_image-with-text-overlay .btn {
    margin: 25px 0 5px;
    font-size: 18px;
    padding: 10px 19px
}

.section_image-with-text-overlay .inverted h4,.section_image-with-text-overlay .inverted h5,.section_image-with-text-overlay .inverted p {
    color: #fff
}

.section_slideshow {
    margin: 30px 0
}

.section_slideshow .container {
    display: flex
}

.section_slideshow .section_slider {
    width: 74.36%;
    float: left
}

.section_slideshow .img_placeholder__wrap {
    background-position: 50% 50%;
    padding: 66.323% 0 0;
    -webkit-background-size: cover;
    background-size: cover
}

.section_slideshow .img_placeholder__small {
    padding: 19.53125% 0 0
}

.section_slideshow .img_placeholder__medium {
    padding: 29.296875% 0 0
}

.section_slideshow .img_placeholder__large {
    padding: 39.0625% 0 0
}

.section_slideshow h2 {
    font-size: 64px;
    font-weight: lighter;
    /* /* text-transform: uppercase; */; */
    line-height: 1.2em
}

.section_slideshow p {
    color: #9E6A10;
    font-size: 24px;
    font-weight: 700;
    /* /* text-transform: uppercase; */; */
    margin-top: 10px;
    letter-spacing: .1em;
    line-height: 1.2em
}

.section_slideshow .btn {
    margin-top: 23px;
    font-size: 18px;
    padding: 10px 19px
}

.section_slideshow .slide_caption {
    display: block;
    padding: 25px 30px;
    color: inherit;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center
}

.section_slideshow .slide_caption .caption_text {
    max-width: 380px;
    padding-top: 28px
}

.section_slideshow .banner_big {
    position: relative
}

.section_slideshow .banner_big .img_placeholder__wrap {
    padding: 122.445% 0 0;
    background-size: cover
}

.section_slideshow .swiper_pagination {
    padding: 0 23px
}

.section_slideshow .swiper_btn {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: opacity .4s ease-in-out;
    -moz-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out
}

.section_slideshow:hover .swiper_btn {
    opacity: 1
}

.section_slideshow_full_width {
    margin: 0;
    background: #fff
}

.section_slideshow_full_width .img_placeholder__wrap {
    background-position: 0 0;
    -webkit-background-size: 100% auto;
    background-size: 100% auto
}

.section_slideshow_full_width .img_placeholder__small {
    padding: 19.53125% 0 0
}

.section_slideshow_full_width .img_placeholder__medium {
    padding: 29.296875% 0 0
}

.section_slideshow_full_width .img_placeholder__large {
    padding: 33.278% 0 0;
}

.section_slideshow_full_width .caption_text {
    max-width: 700px
}

.section_slideshow_full_width h2 {
    color: #000;
    font-size: 72px;
    /* /* text-transform: uppercase; */; */
    line-height: 1.2
}

.section_slideshow_full_width p {
    margin: 20px 0 0;
    color: #000
}

.section_slideshow_full_width .slider_btn {
    margin: 20px 0 0;
    background: transparent;
    color: #000;
    border: none;
    border-bottom: 3px solid black;
    font-weight: 500;
    letter-spacing: .3em;
    padding: 7px 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.section_slideshow_full_width .slider_btn:hover {
    color: #9E6A10;
    border-bottom: 3px solid #9E6A10
}

.section_slideshow_full_width .slide_caption {
    display: block;
    padding: 40px 80px;
    color: inherit;
    text-align: center;
    position: absolute;
    top: 25%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center
}

.section_slideshow_full_width .position_left {
    justify-content: flex-start;
    text-align: left
}

.section_slideshow_full_width .position_center {
    justify-content: center
}

.section_slideshow_full_width .position_center .container {
    height: 100%
}

.section_slideshow_full_width .position_center .container .caption_text {
    width: 56%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 90%
}

.section_slideshow_full_width .swiper_pagination {
    position: absolute;
    bottom: 1%;
    padding: 0 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row
}

.section_slideshow_full_width .swiper-pagination-bullet {
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    color: #000;
    background: none
}

.section_slideshow_full_width .swiper-pagination-bullet-active {
    background: transparent;
    font-weight: 700;
    color: #9E6A10
}

.section_slideshow_full_width .swiper_pagination span~span {
    margin: 0 30px
}

.section_slideshow_full_width .swiper_pagination span {
    display: block;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 0 30px;
    padding: 30px
}

.section_slideshow_full_width .swiper_pagination span:hover {
    background: none;
    color: #9E6A10;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.section_single-product .type_carousel .gallery_thumbs {
    float: left;
    width: 25.5%;
    height: 509px
}

.section_single-product .type_carousel .gallery_big {
    padding-left: 30px;
    float: left;
    width: 74.5%
}

.section_single-product .type_carousel .gallery_big .swiper-slide img {
    opacity: 0
}

.section_single-product .type_carousel .gallery_big .swiper-slide-active img {
    opacity: 1
}

.section_single-product .type_carousel .swiper_btn {
    right: auto;
    left: 90px;
    background: #0000004d;
    color: #fff;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: opacity .4s ease-in-out;
    -moz-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out
}

.section_single-product .type_carousel .swiper_btn:hover {
    color: #9E6A10
}

.section_single-product .type_carousel .swiper_btn__next {
    bottom: 0;
    top: auto
}

.section_single-product .type_carousel .swiper_btn__next:before {
    content: "\f107"
}

.section_single-product .type_carousel .swiper_btn__prev {
    top: 15px
}

.section_single-product .type_carousel .swiper_btn__prev:before {
    content: "\f106"
}

.section_single-product .single_product__img:hover .swiper_btn {
    opacity: 1
}

.section_single-product .swiper-slide {
    background: #0000000a
}

.section_single-product .gallery_big .swiper-slide {
    text-align: center
}

.section_single-product .gallery_thumbs .swiper-slide {
    opacity: .4;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.section_single-product .gallery_thumbs .swiper-slide:hover,.section_single-product .gallery_thumbs .swiper-slide-active {
    opacity: 1
}

.section_single-product .single_product__title {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: inherit
}

.section_single-product .single_product__details p {
    font-size: 14px;
    margin-bottom: 5px
}

.section_single-product .single_product__availability {
    margin-bottom: 15px
}

.section_single-product .single_product__availability .notify_success {
    color: #118502
}

.section_single-product .single_product__availability .notify_danger {
    color: #ca0000
}

.section_single-product .color_product__options .color_toggle {
    padding: 15px 0;
    clear: both
}

.section_single-product .color_product__options .color_item {
    display: inline-block;
    vertical-align: top;
    width: 21px;
    height: 21px;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 1px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 3px
}

.section_single-product .color_product__options .color_item span {
    background-color: #474747;
    border: 1px solid #ccc;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.section_single-product .color_product__options .color_item.current {
    border-color: #9E6A10
}

.section_single-product .size_product__options {
    padding: 20px 0 0
}

.section_single-product .size_product__options label {
    display: none
}

.section_single-product .size_product__options .size_item {
    display: inline-block;
    vertical-align: baseline;
    margin: 0 15px 0 0;
    background: #fff;
    border: 1px solid #a7a7a7;
    text-align: center;
    line-height: 21px;
    min-width: 45px;
    padding: 10px;
    cursor: pointer
}

.section_single-product .size_product__options .current {
    border-color: #9E6A10
}

.section_single-product .single_product__price {
    margin: 20px 0 0;
    font-size: 24px;
    display: inline-block;
    vertical-align: baseline;
    font-weight: 700
}

.section_single-product .single_product__price span {
    line-height: 1em
}

.section_single-product .single_product__price .money {
    font-size: 24px;
    color: #000
}

.section_single-product .single_product__price .money_sale {
    margin: 0 0 0 7px;
    font-size: 14px;
    color: #000
}

.section_single-product .single_product__price .money_sale_percent {
    height: 24px;
    display: block;
    margin: 0 0 0 10px;
    padding: 0 5px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    position: relative;
    display: inline-block;
    cursor: default;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

.section_single-product .price_and_quantity {
    position: relative;
    max-width: 450px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column
}

.section_single-product .single_product__quantity {
    margin: 12px 0;
    display: inline-block;
    vertical-align: baseline
}

.section_single-product .single_product__quantity label {
    font-size: 14px;
    color: #000;
    display: none
}

.section_single-product .single_product__quantity .quantity_box {
    width: 150px
}

.section_single-product .single_product__quantity .quantity_box input {
    display: inline-block;
    vertical-align: baseline;
    margin: 0;
    background: #fff;
    text-align: center;
    line-height: 21px;
    min-width: 45px;
    padding: 20px 10px;
    cursor: pointer
}

.section_single-product .button_block {
    margin-top: 15px
}

.section_single-product .button_block button {
    color:#FFF;
    margin: 0 15px 0 0;
    font-size: 18px;
    letter-spacing: .01em;
    padding: 8px 16px;
    font-weight: 500;
    /* /* text-transform: uppercase; */; */
    font-family: Montserrat;
    background-color: #9E6A10;
}

.section_single-product .button_block button i {
    margin-right: 10px
}

.section_single-product .single_product__info.full {
    margin: 30px 0 0
}

.section_single-product .product_notify {
    margin-top: 15px
}

.section_single-product .product_notify .alert-success,.section_single-product .product_notify .notify_form {
    display: none
}

.section_single-product .product_notify .notify_form {
    width: 300px;
    background: #fff;
    padding: 10px
}

.section_single-product .product_notify textarea,.section_single-product .product_notify input,.section_single-product .product_notify button {
    margin-top: 10px
}

.section_single-product .product_description,.section_single-product .tab_item {
    margin: 0;
    background: #fff
}

.section_single-product .tab_navigation {
    margin-top: 40px
}

.section_single-product .tab_navigation .tab_nav {
    display: inline-block;
    vertical-align: baseline;
    padding: 6px 30px;
    /* /* text-transform: uppercase; */; */
    margin: 0 10px 10px 0;
    color: #000;
    font-weight: 700;
    background: #fff;
    cursor: pointer;
    border: 2px solid white;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.section_single-product .tab_navigation .tab_nav.active,.section_single-product .tab_navigation .tab_nav:hover {
    color: #fff;
    background: #9E6A10
}

.section_map .container {
    height: 100%;
    position: relative
}

.section_testimonials .swiper_pagination {
    bottom: 0
}

.section_instagram {
    margin: 0;
    position: relative
}

.section_instagram .container {
    padding: 30px
}

.section_instagram .inverted h2 {
    color: #fff
}

.section_instagram .inverted .swiper_btn:after {
    color: #fff
}

.section_instagram .instafeed_wrap:after {
    content: "";
    display: block;
    clear: both
}

.section_instagram .section_heading {
    padding: 0 50px 3px
}

.section_instagram .section_heading i {
    color: #9E6A10;
    font-style: normal
}

.section_instagram .col-xs-2 {
    margin: 22px 0 0;
    padding: 0;
    width: 16.66%
}

.section_instagram a {
    display: block;
    background-position: 0 0;
    background-repeat: no-repeat;
    opacity: 1;
    position: relative;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.section_instagram a img {
    width: 100%;
    display: block
}

.section_instagram a .info {
    text-align: center;
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    opacity: 0;
    margin-bottom: -7px
}

.section_instagram a span {
    color: #9E6A10
}

.section_instagram a span i {
    margin-right: 3px
}

.section_instagram a span+span {
    margin-left: 15px
}

.section_instagram a:hover {
    opacity: .7
}

.section_instagram a:hover:after {
    opacity: 1
}

.section_instagram a:hover .info {
    opacity: 1
}

.section_instagram .swiper_btn {
    top: 10px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: opacity .6s ease-in-out;
    -moz-transition: opacity .6s ease-in-out;
    transition: opacity .6s ease-in-out;
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.section_instagram:hover .swiper_btn {
    opacity: 1
}

.section_lookbook {
    padding: 0
}

.lookbook_wrap {
    position: relative;
    z-index: 1
}

.lookbook_wrap .img_placeholder__wrap {
    background-position: 50% 50%;
    padding: 46.753% 0 0;
    background-repeat: no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto
}

.lookbook_container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.lookbook_item {
    width: 15px;
    height: 15px;
    margin: 0;
    position: absolute;
    z-index: 0
}

.lookbook_item__bullet {
    width: 84px;
    height: 84px;
    line-height: 84px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #9E6A1080;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -webkit-transition: box-shadow .3s ease-in-out;
    -moz-transition: box-shadow .3s ease-in-out;
    transition: box-shadow .3s ease-in-out;
    -webkit-transform: translate3d(0,0,0);
    transform: translateZ(0)
}

.lookbook_item__caption {
    width: 110px;
    display: block;
    background: #fff;
    position: absolute;
    top: 80%;
    left: 80%;
    z-index: -1;
    opacity: 0;
    display: none;
    padding: 5px;
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.25);
    -moz-box-shadow: 0 0 12px 0 rgba(0,0,0,.25);
    box-shadow: 0 0 12px #00000040;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: box-shadow .3s ease-in-out,opacity .3s ease-in-out;
    -moz-transition: box-shadow .3s ease-in-out,opacity .3s ease-in-out;
    transition: box-shadow .3s ease-in-out,opacity .3s ease-in-out
}

.lookbook_item__caption img {
    margin: 10px 10px 5px
}

.lookbook_item__caption .product_name {
    display: block;
    font-size: 10px;
    line-height: 1.2em
}

.lookbook_item__caption .money {
    font-size: 12px;
    color: #000
}

.caption_left.caption_top .lookbook_item__caption {
    left: auto;
    right: 80%;
    top: auto;
    bottom: 80%
}

.caption_left.caption_bottom .lookbook_item__caption {
    left: auto;
    right: 80%
}

.caption_right.caption_top .lookbook_item__caption {
    top: auto;
    bottom: 80%
}

.lookbook_item:hover {
    z-index: 10
}

.lookbook_item:hover .lookbook_item__bullet {
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.25),0 0 0 5px rgba(95,172,0,.4);
    -moz-box-shadow: 0 0 12px 0 rgba(0,0,0,.25),0 0 0 5px rgba(95,172,0,.4);
    box-shadow: 0 0 12px #00000040,0 0 0 5px #9E6A1066
}

.lookbook_item:hover .lookbook_item__caption {
    opacity: 1;
    display: block
}

.section_communication {
    margin: 0
}

.section_communication .row {
    overflow: visible
}

.section_communication .row:after {
    content: "";
    display: block;
    clear: both
}

.section_communication .container {
    padding: 28px 0
}

.section_communication .section_heading {
    margin-bottom: 25px
}

.section_communication h4 {
    margin-bottom: 10px
}

.section_banners_custom {
    margin-bottom: 67px
}

.section_banners_custom .row {
    margin-right: 0;
    margin-left: 0
}

.section_banners_custom .col-sm-6 {
    padding: 0
}

.section_banners_custom .img_placeholder__wrap {
    background-size: cover
}

.section_banners_custom .banner_caption {
    position: absolute;
    top: 8%;
    left: 5%;
    right: 5%;
    bottom: 8%;
    display: flex;
    align-items: center;
    padding: 15px;
    z-index: 2
}

.section_banners_custom .banner_caption .caption_text {
    position: relative;
    z-index: 1
}

.section_banners_custom .banner_caption:before {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    opacity: 0;
    background: #9E6A1099;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 0
}

.section_banners_custom .banner_caption h4,.section_banners_custom .banner_caption h3,.section_banners_custom .banner_caption p,.section_banners_custom .banner_caption .btn {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.section_banners_custom .banner_caption:hover:before {
    opacity: 1
}

.section_banners_custom .banner_caption:hover h4,.section_banners_custom .banner_caption:hover h3,.section_banners_custom .banner_caption:hover p,.section_banners_custom .banner_caption:hover .btn {
    color: #fff
}

.section_banners_custom .position_center {
    justify-content: center;
    align-items: center;
    text-align: center
}

.section_banners_custom .position_center .caption_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 53%
}

.section_banners_custom .position_left .caption_text {
    max-width: 50%
}

.section_banners_custom .banner_big .img_placeholder__small {
    padding: 55.177% 0 0
}

.section_banners_custom .banner_big .img_placeholder__medium {
    padding: 94.923% 0 0
}

.section_banners_custom .banner_big .img_placeholder__large {
    padding: 101.368% 0 0
}

.section_banners_custom .banner_big h4 {
    font-size: 14px;
    font-weight: 900;
    /* /* text-transform: uppercase; */; */
    color: #000
}

.section_banners_custom .banner_big h3 {
    font-size: 32px;
    font-weight: 300;
    text-transform: inherit;
    color: #000;
    max-width: 380px
}

@media (min-width: 1400px) {
    .section_banners_custom .banner_big h3 {
        font-size:48px
    }
}

.section_banners_custom .banner_big p {
    font-size: 24px;
    font-weight: 300
}

.section_banners_custom .banner_big .btn {
    margin-top: 30px;
    background: transparent;
    color: #9E6A10;
    border: none;
    border-bottom: 3px solid #9E6A10;
    font-weight: 300;
    letter-spacing: .3em;
    padding: 7px 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.section_banners_custom .banner_big .btn:hover {
    color: #fff;
    border-bottom: 3px solid white
}

.section_banners_custom .banner_big .position_left .caption_text {
    padding-top: 8%
}

.section_banners_custom .banner_big .position_left h4 {
    margin-bottom: 14px;
    letter-spacing: .1em
}

.section_banners_custom .banner_big .position_left h3 {
    margin-bottom: 22px
}

.section_banners_custom .banner_big .position_center .btn {
    margin-top: 23px
}

.section_banners_custom .banner_big .position_center h4 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .09em;
    margin-bottom: 20px
}

@media (max-width: 767px) {
    .section_banners_custom .banner_big {
        margin-top: 15px;
    }
}

.section_divider .tablet_show {
    display: none
}

.section_products-column .product_info {
    margin-left: 138px;
    max-width: 150px
}

.section_products-column .item_collection h3 {
    font-size: 18px;
    /* /* text-transform: uppercase; */; */
    font-weight: 700;
    letter-spacing: .1em;
    position: relative
}

.section_products-column .item_collection .column_trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    display: none
}

.section_products-column .item_collection .column_trigger.active {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.section_products-column .item_collection .product_img {
    float: left;
    background: #fff
}

.section_products-column .item_collection .product {
    margin-top: 26px;
    overflow: hidden
}

.section_products-column .item_collection .product_price,.section_products-column .item_collection .product_links {
    margin-top: 8px
}

.section_products-column .item_collection .product_links i {
    margin-right: 7px
}

.section_products-column .item_collection .product_links .btn-cart {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: color .4s ease-in-out;
    -moz-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out
}

.section_products-column .item_collection .product_links .btn-cart:hover {
    color: #000
}

.section_products-column .item_collection .product_links .btn-cart {
    font-weight: 400
}

.section_template__collection .collection_img__overlay {
    overflow: hidden;
    position: relative
}

.section_template__collection .collection_img__overlay .img_wrapper__medium {
    padding: 38.506% 0 0;
    background-size: cover
}

.section_template__collection .collection_img__overlay .img_wrapper__large {
    padding: 51.265% 0 0;
    background-size: cover
}

.section_template__collection .collection_img__overlay .layer_1 {
    background-repeat: no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto
}

.section_template__collection .collection_img__overlay .img_center {
    background-position: 0 50%
}

.section_template__collection .collection_img__overlay .layer_2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-flex-direction: column
}

.section_template__collection .collection_img__overlay .layer_2 h1 {
    margin: 0;
    padding: 0;
    border: none;
    color: #fff;
    /* /* text-transform: uppercase; */; */
    font-size: 30px;
    text-shadow: 1px 1px 0 rgba(0,0,0,.6)
}

.section_template__collection .collection_desc {
    margin: 30px 0 0
}

.section_template__collection .product_options {
    margin: 30px 0 0;
    padding: 0 10px 10px
}

.section_template__collection .product_options label {
    font-size: 10px;
    line-height: 34px
}

@media (min-width: 1200px) {
    .section_template__collection .product_options label {
        font-size:14px
    }
}

.section_template__collection .product_options select {
    width: auto;
    display: inline-block;
    vertical-align: top
}

.section_template__collection .product_options .product_options__sort {
    float: left;
    margin: 10px 29px 0 3px
}

.section_template__collection .product_options .product_count {
    float: right;
    margin: 15px 10px 0 0
}

.section_template__collection .load_more_wrap {
    padding: 40px 0;
    text-align: center
}

.section_template__collection .load_more_wrap .btn {
    border: none;
    border-bottom: 2px solid black;
    background: transparent;
    color: #000;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.section_template__collection .load_more_wrap .btn:hover {
    background: transparent;
    color: #9E6A10;
    border-bottom: 2px solid #9E6A10
}

.section_template__collection .pagination {
    border: 1px solid rgba(167,167,167,.5)
}

.section_template__collection #page_navigation {
    padding-top: 60px
}

.section_template__collection #page_navigation .page_navigation_arrow {
    font-size: 20px;
    display: inline-block;
    vertical-align: baseline;
    margin: 0 3px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    line-height: 20px
}

.section_template__collection #page_navigation .page_navigation_arrow:hover {
    color: #000
}

.section_template__collection #page_navigation .hidden {
    display: none
}

.section_template__collection #page_navigation #page_navigation_current {
    width: 30px;
    height: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    vertical-align: baseline
}

.section_template__product {
    margin: 0
}

.article_item .article_info {
    font-size: 0;
    line-height: 0
}

.article_item .article_info span {
    display: inline-block;
    font-size: 12px;
    line-height: 1.5em
}

.article_item .article_info span~span {
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
    border-left: 1px solid #a7a7a7
}

.article_item .article_tags {
    font-size: 0;
    line-height: 0
}

.article_item .article_tags a {
    display: inline-block;
    margin: 15px 15px 0 0;
    font-size: 12px;
    line-height: 1.5em
}

.article_item .article_tags a:before {
    content: "\f02b";
    margin: 0 4px 0 0;
    font: 12px FontAwesome
}

.blog_listing__main .row {
    display: flex;
    flex-wrap: wrap
}

.blog_listing__main .col-md-4 {
    display: flex
}

.blog_listing__main .article_item {
    width: 100%
}

.section_template__blog .page_heading {
    padding-right: 30px;
    position: relative
}

.section_template__blog .page_heading a {
    vertical-align: top;
    margin: -12px 0 0;
    font-size: 21px;
    line-height: 1em;
    color: #0000004d;
    position: absolute;
    right: 0;
    top: 50%
}

.section_template__blog .page_heading a:hover {
    color: #000
}

.section_template__blog article {
    overflow: hidden;
    margin: 0 0 30px;
    padding: 0;
    background: #fff
}

.section_template__blog article .article_info {
    /* /* text-transform: uppercase; */; */
    margin-top: 8px
}

.section_template__blog article .article_info span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-top: 10px
}

.section_template__blog article .article_title {
    padding: 15px 0 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6em
}

.section_template__blog article .article_title a {
    font-size: 18px;
    color: #9E6A10;
}

.article_title a {
    color: #9E6A10;
}

.article_title a:hover {
    color: #000
}

.section_template__blog article .article_title a:hover {
    color: #000
}

.section_template__blog article .article_content {
    padding: 4px 0 0;
    line-height: 1.8em;
    color: #000
}

.section_template__blog article .article_btn {
    margin: 20px 0 0;
    display: none
}

.section_template__blog .flexible_block__normal .layer_1 {
    margin: 0 0 14px
}

.section_template__blog .layer_1 {
    background-repeat: no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto
}

.section_template__blog .img_align__center {
    background-position: 0 50%
}

.section_template__blog .blog_listing__grid .article_info {
    display: flex;
    justify-content: space-between
}

.section_template__blog .blog_listing__grid .img_wrapper__medium {
    padding: 109.035% 0 0
}

.section_template__blog .blog_listing__grid .img_wrapper__large {
    padding: 133.333333% 0 0
}

.section_template__blog .blog_listing__grid .article_title {
    font-size: 14px
}

.section_template__article article {
    overflow: hidden
}

.section_template__article .layer_1 {
    background-repeat: no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto
}

.section_template__article .img_wrapper__medium {
    padding: 31.623931% 0 0
}

.section_template__article .img_wrapper__large {
    padding: 42.136752% 0 0
}

.section_template__article .img_align__center {
    background-position: 0 50%
}

.section_template__article .article_info {
    padding: 10px 0;
    border-bottom: 1px solid #a7a7a7
}

.section_template__article .flexible_block__normal h1 {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #a7a7a7
}

.section_template__article .article_content {
    margin: 15px 0 0
}

.template_customer {
    min-height: 500px
}

.template_customer .page_heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline
}

.template_customer .page_heading a {
    font-size: 12px;
    line-height: 1em;
    /* text-transform: uppercase; */
}

.account_section {
    overflow: hidden;
    margin: 30px 0 0;
    padding: 30px;
    border: 1px solid #a7a7a7;
    border-top: 2px solid black
}

.account_section h4 a {
    float: right;
    margin: 0 0 0 15px;
    font-size: 12px;
    /* text-transform: uppercase; */
}

.account_section h4 a:before {
    margin: 0 4px 0 0;
    font: 14px FontAwesome
}

.account_section .link_close:before {
    content: "\f00d"
}

.account_section .link_delete:before {
    content: "\f1f8"
}

.account_section .link_edit:before {
    content: "\f040"
}

.account_section .note {
    padding: 15px 0 0;
    font-size: 16px
}

.account_section .btn {
    margin-right: 10px
}

.account_section__hidden {
    display: none
}

.account_section__wrapper {
    margin: 0 -15px;
    display: flex;
    justify-content: center;
    align-items: stretch
}

.account_section__wrapper .account_section {
    width: 50%;
    float: left;
    margin-left: 15px;
    margin-right: 15px
}

.account_section__welcome ul {
    padding: 10px 0 0
}

.account_section__welcome li {
    padding: 5px 0 0
}

.account_section__welcome li:before {
    content: "\f00c";
    margin: 0 4px 0 0;
    font: 14px FontAwesome;
    color: #000
}

.account_section__welcome .btn {
    margin: 20px 0 0
}

.template_cart {
    min-height: 400px
}

.template_cart .cart_items {
    border: none
}

.template_cart .cart_items tr {
    border-bottom: 1px solid #a7a7a7
}

.template_cart .cart_items thead tr {
    border-bottom: 2px solid #a7a7a7
}

.template_cart .cart_items th {
    padding: 10px 15px;
    border: none;
    color: #000
}

.template_cart .cart_items td {
    vertical-align: middle;
    padding: 15px;
    border: none
}

.template_cart .cart_items .quantity_box {
    width: 100px;
    height: auto;
    margin: 0 auto;
    padding: 32px 0 0
}

.template_cart .cart_items .quantity_box input {
    width: 30px;
    height: 30px;
    left: 28px;
    background: transparent
}

.template_cart .cart_items .quantity_box span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: 0
}

.template_cart .cart_items .quantity_box .quantity_down {
    left: 0;
    right: auto
}

.template_cart .cart_items .quantity_box .quantity_up {
    left: auto;
    right: 0
}

.template_cart .cart_items .quantity_box .btn {
    width: 100px;
    height: 30px;
    padding: 0;
    font-size: 12px;
    line-height: 1em;
    margin-top: 5px
}

.template_cart .cart_items tfoot td {
    padding-left: 0;
    padding-right: 0
}

.template_cart .cart_items tfoot .cart_total {
    font-size: 18px
}

.template_cart .cart_items tfoot .cart_total span {
    float: right;
    font-size: inherit
}

.template_cart .cart_items tfoot .btn {
    float: left
}

.wishlist_page .product {
    padding-bottom: 30px
}

.wishlist_page .product_wishlist {
    margin-top: 30px
}

.wishlist_page .product_links form {
    display: inline-block
}

.wishlist_page .product_name {
    font-family: Montserrat;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    margin: 10px 0
}

.wishlist_page .product_price {
    margin-bottom: 10px
}

.sidebar_widget .widget_header {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    /* /* text-transform: uppercase; */; */
    color: #000
}

.sidebar_widget .widget_content {
    margin: 15px 0 0
}

.sidebar_widget~.sidebar_widget {
    margin: 30px 0 0
}

.page_sidebar_sort .filter_content_main {
    padding: 14px;
    background: #fff
}

@media (min-width: 1200px) {
    .page_sidebar_sort .filter_content_main {
        padding:28px
    }
}

.page_sidebar_sort .section_filter_block {
    margin-bottom: 30px
}

.page_sidebar_sort .filter_content {
    margin-top: 15px
}

.page_sidebar_sort .select_wrap {
    margin-bottom: 15px
}

.page_sidebar_sort .select_wrap p {
    /* /* text-transform: uppercase; */; */
    margin-bottom: 5px
}

.list_links li {
    position: relative
}

.list_links li~li {
    margin: 1px 0 0
}

.list_links a {
    display: block;
    padding: 7px 35px 7px 0
}

.list_links a.active {
    font-weight: 700
}

.sidebar_widget__linklist {
    background: #fff;
    padding: 14px;
    margin-bottom: 30px
}

@media (min-width: 1200px) {
    .sidebar_widget__linklist {
        padding:20px 28px
    }
}

.sidebar_widget__linklist .widget_header {
    color: #000
}

.sidebar_widget__linklist .menu_trigger {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 0;
    right: -15px;
    cursor: pointer;
    z-index: 8;
    line-height: 35px;
    text-align: center
}

.sidebar_widget__linklist .menu_trigger.active {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.sidebar_widget__products .widget_header {
    color: #000
}

.list_products .product {
    overflow: hidden;
    padding: 15px 0
}

.list_products .product~.product {
    margin: 1px 0 0
}

.list_products .product_img {
    width: 100px;
    float: left
}

.list_products .product_img a {
    display: block
}

.list_products .product_info {
    margin: 0 0 0 115px
}

.list_products .product_name {
    font-size: 14px
}

.list_products .product_price .money {
    font-size: 14px;
    font-weight: 500
}

.list_products .product_price .compare-at-price {
    text-decoration: line-through
}

.list_products .product_links .btn {
    padding: 5px 12px;
    margin-top: 10px;
    font-size: 10px
}

.sidebar_widget__banner {
    position: relative
}

.sidebar_widget__banner .img_placeholder__small {
    padding: 55.93% 0 0
}

.sidebar_widget__banner .img_placeholder__medium {
    padding: 100% 0 0
}

.sidebar_widget__banner .img_placeholder__large {
    padding: 133.333333% 0 0
}

.sidebar_widget__banner .sidebar_banner_caption {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #9E6A1099
}

.sidebar_widget__banner .sidebar_banner_caption h3 {
    color: #fff;
    font-size: 22px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.sidebar_widget__banner .sidebar_banner_caption p {
    color: #fff;
    font-size: 18px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translateZ(0);
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.sidebar_widget__banner .sidebar_banner_caption a {
    display: block
}

.sidebar_widget__banner .sidebar_banner_caption a:hover h3,.sidebar_widget__banner .sidebar_banner_caption a:hover p {
    color: #000
}

.sidebar_widget__tags {
    background: #fff;
    padding: 25px
}

.sidebar_widget__tags .widget_content {
    margin: 15px 0 0
}

.sidebar_widget__tags .blog_tags a {
    margin: 6px 6px 0 0;
    padding: 2px 4px;
    display: inline-block;
    font-size: 12px
}

.sidebar_widget__tags .blog_tags a:before {
    content: "\f02b";
    margin: 0 4px 0 0;
    font: 12px FontAwesome
}

.sidebar_widget__link-list {
    background: #fff;
    padding: 30px 30px 18px
}

.sidebar_widget__link-list .widget_content {
    margin-top: 13px
}

