@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

/* Force wishlist/compare/quick-view icons onto the plugin's bundled Font Awesome 4.
   Themes that load Font Awesome 6 after this stylesheet redefine the shared
   .fa{font-family;font-weight} base rule, which silently blanks these glyphs
   (fa-heart-o, fa-toggle-on, fa-search) since FA6 doesn't map them the same way. */
.icon-color {
    font-family: 'FontAwesome' !important;
    font-weight: normal !important;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
    animation-duration: .75s
}

@keyframes bounce {
    0%, 20%, 53%, 80%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    40%, 43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%, 50%, to {
        opacity: 1
    }

    25%, 75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, .95, 1)
    }

    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%, to {
        transform: translateZ(0)
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translate3d(-10px, 0, 0)
    }

    20%, 40%, 60%, 80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%, 11.1%, to {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }

    75% {
        transform: translate3d(0, -10px, 0)
    }

    90% {
        transform: translate3d(0, 5px, 0)
    }

    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }

    75% {
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        transform: translate3d(5px, 0, 0)
    }

    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        transform: translate3d(10px, 0, 0)
    }

    90% {
        transform: translate3d(-5px, 0, 0)
    }

    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        transform: translate3d(0, 10px, 0)
    }

    90% {
        transform: translate3d(0, -5px, 0)
    }

    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }

    50%, 55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }

    40%, 45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }

    40%, 45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInY
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    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%, 80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

body{
    line-height: 1.5;
}
body .wplcs-slider a{
    text-decoration: none;
}
body h1, body h2, body h3, body h4, body h5, body h6{
    line-height: 1.5;
    margin: 0;
}

.wpcls-container {
    width: 100%;
}

.wplcs-slider {
    position: relative;
/*    margin: 0px 0 80px;*/
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
}

.woocommerce-page .woocommerce-pagination ul.page-numbers li {
    border-radius: 2px;
}

.container {
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}

.wplcs-slider a {
    box-shadow: none !important;
}
.slider-layout {
    border-radius:4px;
    position: relative;
}
/*.slider-layout.loading:after {
    content: '\f1ce';
    display: block;
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    font-size: 32px;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    line-height: 1;
    color: #222222;
}*/
.slider-layout.loading:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    font-family: 'FontAwesome';
    overflow: hidden;
    border-radius: 4px;
    animation: skeleton-loading 1s linear infinite alternate;
    max-height: 500px;
    background-image: url(https://webbydemo.in/wordpress/subhash/wplcs/wp-content/uploads/2023/09/single-skeletone.jpg);
    background-repeat: repeat;
    background-size: 33% 100%;
    background-position: center center;
}
@keyframes skeleton-loading {
  0% {
    background-color: hsl(0deg 0% 85.17%);
}
100% {
    background-color: hsl(0deg 0% 95.55%);
}
}
.wplcs-slider .slider-grid h3.title-product a{
    color: #000;
    font-weight: 500;
}
.price del {
    opacity: .5;
    display: inline-block;
}
.wishlist-link .yith-wcwl-add-to-wishlist {
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.wishlist-link .yith-wcwl-add-to-wishlist .yith-wcwl-add-button span{
    display: none !important;
}
.wishlist-link .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a,
.wishlist-link .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.wishlist-link .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse span.feedback,
.wishlist-link .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse span.feedback {
    font-size: 0;
}
.wishlist-link .yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon {
    margin: 0;
    font-size: 14px;
}
.wishlist-link .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .yith-wcwl-icon {
    margin: 0;
}
.product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.product-extra-link li .yith-wcwl-wishlistexistsbrowse {
    width: 100%;
    height: 100%;
}

.cmopare-link a.added {
    font-size: 8px !important;
    word-break: break-all;
}


  /*=============================================================================
==============================|| Slider 1 Css ||==============================
===============================================================================*/
.slider-one .product-thumb a {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-one .product-thumb a img {
    max-width: 100%;
    width: 100%;
}

.slider-one .product-thumb-one {
    display: block;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-one .product-thumb-two {
    left: 0;
    position: absolute;
    top: 100%;
    max-width: 100%;
    width: 100%;
    z-index: 1;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-one .product-thumb:hover .product-thumb-one,
.slider-one .product-thumb:hover .product-thumb-two {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
}

.slider-one .product-info-cart {
    z-index: 1;
    bottom: 0;
    left: 0;
    position: absolute;
    text-align: center;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    width: 100%;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-one .product-extra-link {
    background: rgba(0, 0, 0, .3) none repeat scroll 0 0;
    font-size: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    backdrop-filter: blur(5px);
    display: flex;
}
.slider-one .product-extra-link li {
    display: flex;
    width: 100%;
}
.slider-one .product-extra-link li:last-child{
    border: 0;
}
.slider-one .product-extra-link li:not(:last-child){
    border-right: 1px solid #eee;
}
.slider-one .product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.slider-one .product-extra-link li .yith-wcwl-wishlistexistsbrowse,
.slider-one .product-extra-link li a {
    color: #fff;
    display: inline-block;
    height: 34px;
    line-height: 34px;
    margin: 0;
    width: 100%;
    font-size: 15px;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    cursor: pointer;
}

.slider-one .product-extra-link li a:hover {
    color: #fe9c00;
}

.slider-one .product-thumb:hover .product-info-cart {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
}

.slider-one .addcart-link {
    position: relative;
    overflow: hidden;
}

.slider-one .addcart-link a {
    background:#000000;
    color: #fff;
    display: block;
    padding: 8px 14px;
    display: block;
    color: #fff;
    text-decoration: none;
}

.slider-one .addcart-link a i {
    margin-right: 10px;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-one .addcart-link a:hover i {
    margin-right: 20px;
}

.slider-one .product-rating .inner-rating {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.slider-one .product-rating .reviews-actions {
    display: inline-block;
    vertical-align: middle;
}
.slider-one .owl-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slider-one .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 3px;
}

.slider-one .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0px !important;
}

.slider-one .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background-color: #fe9c00;
}

.slider-one .owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    left: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-one .owl-nav .owl-prev:after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-one .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-one .owl-nav .owl-next:after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-one .owl-nav .owl-prev:hover:after,
.slider-one .owl-nav .owl-next:hover:after {
    color: #fe9c00;
}
  /*=============================================================================
==============================|| Slider 1 Css ||==============================
===============================================================================*/

  /*=============================================================================
==============================|| Slider 2 Css ||==============================
===============================================================================*/
.slider-two .product-item {
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
}

.slider-two .product-thumb {
    overflow: hidden;
    position: relative;
}

.slider-two .product-thumb a {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-two .product-thumb a img {
    max-width: 100%;
}

.slider-two .product-thumb-one {
    display: block;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-two .product-thumb-two {
    left: 0;
    position: absolute;
    top: 0;
    max-width: 100%;
    z-index: 1;
    transition: all .5s ease-in-out 0s;
    -webkit-transition: all .5s ease-in-out 0s;
    -moz-transition: all .5s ease-in-out 0s;
    -o-transition: all .5s ease-in-out 0s;
    opacity: 0;
}

.slider-two .product-thumb:hover .product-thumb-two {
    opacity: 1;
}

.slider-two .product-thumb:hover>a:after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
}

.slider-two .product-info-cart {
    position: absolute;
    z-index: 99;
    width: 100%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    top: 50%;
    text-align: center;
    padding: 0;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
    left: -110%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.slider-two .product-info-cart ul {
    list-style: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0px;
    padding: 10px 0;
    background: #fff;
    position: absolute;
    right: -300%;
    width: 100%;
}

.slider-two .product-info-cart ul li {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 35px;
    height: 35px;
    line-height: 32px;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.slider-two .product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.slider-two .product-extra-link li .yith-wcwl-wishlistexistsbrowse,
.slider-two .product-info-cart ul li a {
    color: #707070;
    font-size: 15px;
    display: block;
    text-decoration: none;
    box-shadow: 0 0 0;
    cursor: pointer;
}

.slider-two .product-thumb:hover .product-info-cart ul li a:hover {
    background: #fe9c00;
    color: #fff;
}

.product-info:after {
    content: "";
    display: table;
    clear: both;
}

.slider-two .product-thumb:hover .product-info-cart {
    left: 0;
}

.slider-two .product-thumb:hover .product-info-cart ul {
    right: 0;
}


.slider-two .title-product {
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0px;
}

.slider-two .title-product a {
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-two .title-product a:hover {
    color: #fe9c00;
}

.slider-two .info-price .price {
    color: #fe9c00;
    font-size: 18px;
    font-weight: 700;
}
.slider-two .product-rating .inner-rating {
    height: 11px;
    width: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.slider-two .product-rating .reviews-actions {
    display: inline-block;
    vertical-align: middle;
}

.slider-two .product-rating .reviews-actions a {
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
}

.slider-two .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}

.slider-two .owl-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slider-two .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 3px;
}

.slider-two .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0px !important;
}

.slider-two .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background-color: #fe9c00;
}

.slider-two .owl-nav {
    display: none;
}

.slider-two:hover .owl-nav {
    display: block;
}

.slider-two .owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    left: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-two .owl-nav .owl-prev:after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-two .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-two .owl-nav .owl-next:after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-two .owl-nav .owl-prev:hover:after,
.slider-two .owl-nav .owl-next:hover:after {
    color: #fe9c00;
}
  /*=============================================================================
==============================|| Slider 2 Css ||==============================
===============================================================================*/

  /*=============================================================================
==============================|| Slider 3 Css ||==============================
===============================================================================*/
.slider-three .product-item {
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
}

.slider-three .product-thumb {
    overflow: hidden;
    position: relative;
}

.slider-three .product-thumb a {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-three .product-thumb a img {
    max-width: 100%;
}

.slider-three .product-thumb-one {
    display: block;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-three .product-thumb-two {
    left: 0;
    position: absolute;
    top: 0;
    max-width: 100%;
    z-index: 1;
    transition: all .5s ease-in-out 0s;
    -webkit-transition: all .5s ease-in-out 0s;
    -moz-transition: all .5s ease-in-out 0s;
    -o-transition: all .5s ease-in-out 0s;
    opacity: 0;
}

.slider-three .product-thumb:hover .product-thumb-two {
    opacity: 1;
}

.slider-three .product-thumb:hover>a:after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
}

.slider-three .product-info-cart ul {
    padding-top: 1px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    z-index: 9;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slider-three .product-info-cart ul li.wishlist-link {
    margin-left: 50px;
    display: block;
    margin-bottom: 5px;
}

.slider-three .product-info-cart ul li.addtocart-link {
    vertical-align: middle;
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.slider-three .product-info-cart ul li.cmopare-link {
    margin-right: 50px;
    display: block;
    margin-bottom: 5px;
}

.slider-three .quick-link ul, .slider-three .quick-link ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.slider-three .product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.slider-three .product-extra-link li .yith-wcwl-wishlistexistsbrowse,
.slider-three .product-info-cart ul li a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0px;
    margin: 0px;
    color: #707070;
    font-size: 15px;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale3d(0, 0, 0);
    -moz-transform: scale3d(0, 0, 0);
    -ms-transform: scale3d(0, 0, 0);
    -o-transform: scale3d(0, 0, 0);
   /* -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;*/
}

.slider-three .product-info-cart ul li.addtocart-link a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    font-size: 25px;
}

.slider-three .product-thumb:hover .product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.slider-three .product-thumb:hover .product-extra-link li .yith-wcwl-wishlistexistsbrowse,
.slider-three .product-thumb:hover .product-info-cart ul li a {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
}

.slider-three .product-thumb:hover .product-info-cart ul li a:hover {
    background: #fe9c00;
    color: #fff;
}

.slider-three .product-thumb .quick-link {
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 0px solid #ffffff;
    position: absolute;
    bottom: -5px;
    right: 0;
    z-index: 99;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.slider-three .product-thumb:hover .quick-link {
    border-top: 60px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 60px solid #ffffff;
}

.slider-three .product-thumb .quick-link a {
    position: absolute;
    top: -33px;
    right: -53px;
    color: #707070;
}

.slider-three .product-thumb .quick-link a:hover {
    color: #fe9c00;
}

.product-info {
    margin: 15px 0 10px;
    text-align: center;
}

.product-info:after {
    content: "";
    display: table;
    clear: both;
}
.slider-three .title-product {
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0px;
}

.slider-three .title-product a {
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-three .title-product a:hover {
    color: #fe9c00;
}


.slider-three .info-price .price {
    color: #fe9c00;
    font-size: 18px;
    font-weight: 700;
}

.slider-three .product-rating .inner-rating {
    width: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.slider-three .product-rating .reviews-actions {
    display: inline-block;
    vertical-align: middle;
}

.slider-three .product-rating .reviews-actions a {
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
}
.slider-three .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}
.slider-three .owl-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slider-three .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 3px;
}

.slider-three .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0px !important;
}

.slider-three .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background-color: #fe9c00;
}

.slider-three .owl-nav {
    display: none;
}

.slider-three:hover .owl-nav {
    display: block;
}

.slider-three .owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    left: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-three .owl-nav .owl-prev:after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-three .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-three .owl-nav .owl-next:after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-three .owl-nav .owl-prev:hover:after,
.slider-three .owl-nav .owl-next:hover:after {
    color: #fe9c00;
}
  /*=============================================================================
==============================|| Slider 3 Css ||==============================
===============================================================================*/


  /*=============================================================================
==============================|| Slider 4 Css ||==============================
===============================================================================*/
.slider-four .product-thumb {
    overflow: hidden;
    position: relative;
}

.slider-four .product-thumb a {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-four .product-thumb a img {
    max-width: 100%;
    width: 100%;
}

.slider-four .product-thumb-one {
    display: block;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-four .product-thumb-two {
    left: 0;
    position: absolute;
    top: 0;
    max-width: 100%;
    width: 100%;
    z-index: 1;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-four .product-thumb:hover .product-thumb-two {
    left: -100%;
}

.slider-four .product-thumb:hover>a:after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
}

.slider-four .product-info-cart {
    left: 50%;
    position: absolute;
    z-index: 8;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
}

.slider-four .product-extra-link {
    font-size: 0;
    padding: 0;
    margin: 0px;
    background: #fff;
    width: 123px;
    display: flex;
    opacity: 0;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    z-index: 2;
}
.slider-four .wplcs-on-sale-product {
    right: 0;
    left: auto;
}

.slider-four .product-extra-link li{
    width: 100%;
}

.slider-four .product-thumb .product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.slider-four .product-thumb .product-extra-link li .yith-wcwl-wishlistexistsbrowse,
.slider-four .product-extra-link li a {
    color: #e5e5e5;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    flex-grow: 1;
    display: block;
    margin: 0;
    font-size: 14px;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-four .product-extra-link li a:hover {
    color: #fe9c00;
}
.slider-four .product-thumb:hover .product-extra-link {
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}

.slider-four .product-info {
    margin: 15px 0 10px;
}

.slider-four .product-info:after {
    content: "";
    display: table;
    clear: both;
}

.slider-four .addcart-link {
    float: right;
}

.slider-four .addcart-link a {
    background: #fe9c00;
    color: #fff;
    display: block;
    padding: 8px;
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.slider-four .addcart-link a:hover {
    background: #252525;
}

.slider-four .addcart-link a i {
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-four .title-product {
    font-size: 14px;
    font-weight: 700;
    margin: 5px 0 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-four .title-product a {
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-four .title-product a:hover {
    color: #fe9c00;
}

.slider-four .info-price {
    float: left;
    margin-top: 0px;
}

.slider-four .info-price .price {
    color: #fe9c00;
    font-size: 18px;
    font-weight: 700;
}

.slider-four .product-rating {}

.slider-four .product-rating .inner-rating {
    height: 11px;
    width: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.slider-four .product-rating .reviews-actions {
    display: inline-block;
    vertical-align: middle;
}

.slider-four .product-rating .reviews-actions a {
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
}

.slider-four .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}


.slider-four .owl-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slider-four .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 3px;
}

.slider-four .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0px !important;
}

.slider-four .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background-color: #fe9c00;
}

.slider-four .owl-nav {
    display: none;
}

.slider-four:hover .owl-nav {
    display: block;
}

.slider-four .owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    left: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-four .owl-nav .owl-prev:after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-four .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-four .owl-nav .owl-next:after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-four .owl-nav .owl-prev:hover:after,
.slider-four .owl-nav .owl-next:hover:after {
    color: #fe9c00;
}

.slider-four .addcart-link ul, .slider-three .addcart-link ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
  /*=============================================================================
==============================|| Slider 4 Css ||==============================
===============================================================================*/


  /*=============================================================================
==============================|| Slider 5 Css ||==============================
===============================================================================*/
.slider-five .product-item {
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
}

.slider-five .product-thumb {
    overflow: hidden;
    position: relative;
}

.slider-five .product-thumb a {
    display: block;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-five .product-thumb a img {
    max-width: 100%;
    width: 100%;
}

.slider-five .product-thumb-one {
    display: block;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-five .product-thumb-two {
    left: 0;
    position: absolute;
    top: 0;
    max-width: 100%;
    width: 100%;
    z-index: 1;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    opacity: 0;
}

.slider-five .product-thumb:hover .product-thumb-two {
    opacity: 1;
}

.slider-five .product-thumb:hover>a:after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
}
.slider-five .product-rating .inner-rating {
    height: 11px;
    width: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.slider-five .product-extra-link {
    font-size: 0;
    padding: 0;
    margin: 0;
}

.slider-five .product-extra-link li {
    background: #252525;
    height: 30px;
    line-height: 30px;
    width: 30px;
    display: block;
    text-align: center;
    position: absolute;
    top: 0;
    right: -70px;
    z-index: 9;
    transition: right .3s ease-in-out 0s;
    -webkit-transition: right .3s ease-in-out 0s;
    -moz-transition: right .3s ease-in-out 0s;
    -o-transition: right .3s ease-in-out 0s;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.slider-five .product-thumb .product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.slider-five .product-thumb .product-extra-link li .yith-wcwl-wishlistexistsbrowse{
    background: #252525;
    height: 30px;
    line-height: 30px;
    width: 30px;
    transition: right .3s ease-in-out 0s;
    -webkit-transition: right .3s ease-in-out 0s;
    -moz-transition: right .3s ease-in-out 0s;
    -o-transition: right .3s ease-in-out 0s;
}

.slider-five .product-thumb .product-extra-link li .yith-wcwl-wishlistaddedbrowse span.feedback,
.slider-five .product-thumb .product-extra-link li .yith-wcwl-wishlistexistsbrowse span.feedback{
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-five .product-extra-link li a {
    color: #fff;
    display: block;
    font-size: 14px;
}

.slider-five .product-extra-link li:nth-child(1) {
    top: 10px;
    -webkit-transition-delay: 0.15s;
    -moz-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.slider-five .product-extra-link li:nth-child(2) {
    top: 58px;
    -webkit-transition-delay: 0.25s;
    -moz-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.slider-five .product-extra-link li:nth-child(3) {
    top: 95px;
    -webkit-transition-delay: 0.35s;
    -moz-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.slider-five .product-extra-link li:nth-child(4) {
    top: 132px;
    -webkit-transition-delay: 0.45s;
    -moz-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.slider-five .product-extra-link li.addcart-link {
    height: 40px;
    line-height: 40px;
    width: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #fe9c00;
}

.slider-five .product-extra-link li.addcart-link a {
    color: #fff;
    display: block;
    font-size: 18px;
}

.slider-five .product-thumb:hover .product-extra-link li:nth-child(1) {
    right: 10px;
}

.slider-five .product-thumb:hover .product-extra-link li:nth-child(2),
.slider-five .product-thumb:hover .product-extra-link li:nth-child(3),
.slider-five .product-thumb:hover .product-extra-link li:nth-child(4) {
    right: 14px;
}
.slider-five .product-info {
    padding: 15px 0 10px;
}

.slider-five .title-product {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-five .title-product a {
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-five .title-product a:hover {
    color: #fe9c00;
}

.slider-five .info-price .price {
    color: #fe9c00;
    font-size: 18px;
    font-weight: 700;
}

.slider-five .product-rating {
    text-align: center;
}

.slider-five .product-rating .inner-rating {
    height: 11px;
    width: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.slider-five .product-rating .reviews-actions {
    display: inline-block;
    vertical-align: middle;
}

.slider-five .product-rating .reviews-actions a {
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
}

.slider-five .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}
.slider-five .owl-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slider-five .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 3px;
}

.slider-five .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0px !important;
}

.slider-five .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background-color: #fe9c00;
}

.slider-five .owl-nav {
    display: none;
}

.slider-five:hover .owl-nav {
    display: block;
}

.slider-five .owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    left: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-five .owl-nav .owl-prev:after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-five .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-five .owl-nav .owl-next:after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}

.slider-five .owl-nav .owl-prev:hover:after,
.slider-five .owl-nav .owl-next:hover:after {
    color: #fe9c00;
}

.slider-five .product-extra-link li.addtocart-link {
    height: 40px;
    line-height: 40px;
    width: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #fe9c00;
}
  /*=============================================================================
==============================|| Slider 5 Css ||==============================
===============================================================================*/

  /*=============================================================================
==============================|| Slider 6 Css ||==============================
===============================================================================*/
.slider-six .product-item {
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
}

.slider-six .product-thumb {
    overflow: hidden;
    position: relative;
}

.slider-six .product-thumb a {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-six .product-thumb a img {
    max-width: 100%;
}

.slider-six .product-thumb-one {
    display: block;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-six .product-thumb-two {
    left: 0;
    position: absolute;
    top: 0;
    max-width: 100%;
    z-index: 1;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    opacity: 0;
}

.slider-six .product-thumb:hover .product-thumb-two {
    opacity: 1;
}

.slider-six .product-thumb:hover a:after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
}

.slider-six .product-info-cart {
    z-index: 9;
    top: 0;
    right: -60px;
    position: absolute;
    text-align: center;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-six .product-extra-link {
    font-size: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.slider-six .product-extra-link li {
    display: block;
    background: rgba(0, 0, 0, .3);
    margin-bottom: 5px;
}
.slider-six .product-extra-link li:first-child{
    border-top-right-radius: 5px;
}

.slider-six .product-thumb .product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.slider-six .product-thumb .product-extra-link li .yith-wcwl-wishlistexistsbrowse,
.slider-six .product-extra-link li a {
    color: #fff;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    margin: 0;
    width: 32px;
    font-size: 15px;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-six .product-extra-link li a:hover {
    color: #fe9c00;
}


.slider-six .product-thumb:hover .product-info-cart {
    right: 0;
}

.slider-six .addcart-link {
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.slider-six .addcart-link a {
    background: #fe9c00;
    color: #fff;
    display: block;
    padding: 8px 14px;
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.slider-six .addcart-link a:hover {
    background: #252525;
}

.slider-six .addcart-link a i {
    margin-right: 10px;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-six .addcart-link a:hover i {
    margin-right: 20px;
}

.slider-six .product-info {
    padding: 15px 0 10px;
}

.slider-six .title-product {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-six .title-product a {
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-six .title-product a:hover {
    color: #fe9c00;
}
.slider-six .info-price .price {
    color: #fe9c00;
    font-size: 18px;
    font-weight: 700;
}

.slider-six .product-rating .inner-rating {
    height: 11px;
    width: 70px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.slider-six .product-rating .reviews-actions {
    display: inline-block;
    vertical-align: middle;
}

.slider-six .product-rating .reviews-actions a {
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
}
.slider-six .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}
.slider-six .owl-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slider-six .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 3px;
}

.slider-six .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0px !important;
}

.slider-six .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background-color: #fe9c00;
}

.slider-six .owl-nav, .wplcs-slider .added_to_cart {
    display: none;
}

.slider-six:hover .owl-nav {
    display: block;
}

.slider-six .owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    left: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}

.slider-six .owl-nav .owl-prev:after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}
.slider-six .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: 10px;
    height: 30px;
    width: 30px;
    background: rgba(0, 0, 0, .3);
    text-align: center;
}
.slider-six .owl-nav .owl-next:after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #fff;
}
.slider-six .owl-nav .owl-prev:hover:after,
.slider-six .owl-nav .owl-next:hover:after {
    color: #fe9c00;
}
.wplcs-slider .info-price ins {
    background: transparent;
    text-decoration: none;
}

.wplcs-slider .info-price ins .woocommerce-Price-amount {
    color: #fe9c00;
}

.wplcs-slider .star-rating, .wplcs_quick_view_popup .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: star;
}

.wplcs-slider .star-rating:before, .wplcs_quick_view_popup .star-rating:before {
    color: #fe9c00;
    content: '\73\73\73\73\73';
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.wplcs-slider .star-rating span, .wplcs_quick_view_popup .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.wplcs-slider .star-rating span:before, .wplcs_quick_view_popup .star-rating span:before {
    color: #fe9c00;
    content: '\53\53\53\53\53';
    top: 0;
    position: absolute;
    left: 0;
}
.wplcs-slider .owl-nav .owl-next:after, .wplcs-slider .owl-nav .owl-prev:after {
    line-height: 28px;
}
#wplcs_product_images .owl-prev {
    border: 1px solid #1e73be;
    color: #1e73be;
    position: absolute;
    top: 50%;
    left: 10px;
    height: 30px;
    width: 30px;
    transform: translateY(-50%);
    background: #ffffff;
    text-align: center;
}

#wplcs_product_images .owl-next {
    border: 1px solid #1e73be;
    color: #1e73be;
    position: absolute;
    top: 50%;
    right: 10px;
    height: 30px;
    transform: translateY(-50%);
    width: 30px;
    background: #ffffff;
    text-align: center;
}

.mfp-content .wplcs_product_content .price {
    margin-bottom: 5px;
}

.mfp-content .wplcs_product_content .cart .quantity, .wplcs_product_content .cart .single_add_to_cart_button {
    display: inline-block;
}

.mfp-content .wplcs_product_content .product_meta .posted_in, .mfp-content .wplcs_product_content .product_meta .tagged_as {
    font-size: 15px;
    padding-top: 10px;
    display: block;
}

.wplcs_sucess_message {
    position: fixed;
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.51);
    transform: translate(-50%, -50%);
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #211212;
    color: #fff;
}

.wplcs-slider.wplcs-row {
    clear: both;
}

.wplcs-slider .wplcs-product {
    list-style-type: none;
    margin: 0 !important;
}

/*<----------- Start-product-Popup ----------> */

.wplcs_quick_view_popup {
    background: #fff !important;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    border-radius: 10px;
}
/*.wplcs_quick_view_popup .has-post-thumbnail{
    display: flex;
}*/
.wplcs_quick_view_popup .type-product {
    display: flex;
    width: 100%;
    margin: auto;
    background: white;
    height: calc(100% - 5rem);
    border-radius: 10px;
    overflow: hidden;
}
.wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail td {
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 1;
}
.wplcs_quick_view_popup .slider-layout .wplcs-slider{
    margin:0;
}
.wplcs_quick_view_popup .wplcs_product_image #wplcs_product_images,
.wplcs_quick_view_popup .wplcs_product_image .item,
.wplcs_quick_view_popup .wplcs_product_image .item img{
    height: 100%;
    width: 100%;
    display: block;
}
.wplcs_quick_view_popup .wplcs_product_image {
    width: 50%;
    border: 0 !important;
}

.wplcs_quick_view_popup .wplcs_product_content .woocommerce-product-rating {
    display: none;
}

.wplcs_quick_view_popup .wplcs_product_content {
    padding: 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product  .wplcs_product_content .price .amount, .product .wplcs_quick_view_popup button.mfp-close{
    color: #000000 !important;
}
.product .wplcs_quick_view_popup .posted_in a {
    color: #fe9c00 !important;
}
.wplcs_quick_view_popup .wplcs_product_content h1.product_title{
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 600;
}
.wplcs_quick_view_popup .wplcs_product_content p.price {
    color: #000000;
    line-height: normal;
    border-right: 0;
    border-left: 0;
    padding: 0;
    margin: 10px 0;
}
.wplcs_quick_view_popup .wplcs_product_content .woocommerce-product-details__short-description {
    margin-bottom: 15px;
}
.wplcs_product_content .woocommerce-product-details__short-description p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #403d3d;
    margin-bottom: 0;
}
.wplcs_quick_view_popup .wplcs_product_content button.single_add_to_cart_button{
    font-weight: 400;
    background: #fe9c00 !important;
    font-size: 14px;
    padding: 10px 30px !important;
    line-height: 20px;
    vertical-align: middle;
    color: #000 !important;
    font-family: 'Open Sans', sans-serif;
    border-radius: 5px;
    border: 0;
}
.wplcs_quick_view_popup .wplcs_product_content button.single_add_to_cart_button:hover{
    background-color: #000 !important;
    color: #fff !important;
}

.wplcs_quick_view_popup button.mfp-close {
    background: #fe9c00 !important;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    top: 5px;
    right: 5px;
    line-height: 30px;
    font-size: 23px;
    opacity: inherit;
}
.wplcs_quick_view_popup button.mfp-close:hover {
    border: 1px solid #000;
    background-color: #fff !important;
}
.mfp-container .mfp-arrow-right:after {
    border-left: 15px solid #ffffff !important;
}
.mfp-container .mfp-arrow-right::before, .mfp-arrow-right .mfp-b {
    border-left: 25px solid #ffffff;
}
.mfp-container .mfp-arrow-left:after {
    border-right: 15px solid #ffffff !important;
}
.mfp-container .mfp-arrow-left::before, .mfp-arrow-left .mfp-b {
    border-right: 25px solid #ffffff;
}

.mfp-content .wplcs_product_content .cart .qty {
    max-width: 70px;
    height: 40px;
    padding: 9px;
    border-radius: 4px;
    border: 1px solid #c8c8c8;
    background: #fff;
    font-size: 15px;
    color: #000000;
    display: inline-block;
}
.mfp-content .wplcs_product_content 
.wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail td {
    padding: 0;
    border: 0;
}
.wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail td label a {
    color: #000 !important;
}
.wplcs_quick_view_popup .wplcs_product_content .product_meta .sku_wrapper {
    font-size: 15px;
}
.wplcs_quick_view_popup .wplcs_product_content .product_meta .posted_in{
    font-weight: 600;
}
.wplcs_quick_view_popup .wplcs_product_content .product_meta .posted_in a{
    color: #fe9c00;
    text-decoration: underline;
}
.wplcs_quick_view_popup .wplcs_product_content .product_meta .posted_in a:hover {
    text-decoration: none;
}
.wplcs_quick_view_popup .wplcs_product_content p.price del {
    margin-right: 10px;
    display: inline-flex;
}
.wplcs_quick_view_popup .wplcs_product_content .variations_form.cart table.variations{
    margin-bottom: 20px;
    width: 100%;
}
.wplcs_quick_view_popup .wplcs_product_content .variations_form.cart table.variations th.label {
    font-size: 15px;
    font-weight: 600;
    width: 18%;
}
.wplcs_quick_view_popup .wplcs_product_content .variations_form.cart table.variations select {
    background: #ebebeb;
    height: 40px;
    border-radius: 5px;
    width: 200px;
    border: 0;
    padding: 10px;
    font-family: 'Open Sans';
}
.wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail {
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
    display: flex;
    grid-gap: 10px;
}
.wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail td label a {
    font-size: 16px;
}
.wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail td span bdi {
    font-size: 16px;
    font-weight: 500;
}
.wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail .quantity input {
    max-width: 55px;
    height: 30px;
}
.wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail .quantity input:focus,
.mfp-content .wplcs_product_content .cart .qty:focus{
    outline: none;
}
.wplcs_quick_view_popup table.woocommerce-grouped-product-list {
    margin-bottom: 12px;
}
/*button.mfp-arrow.mfp-arrow-right.mfp-prevent-close {

}
button.mfp-arrow.mfp-arrow-right.mfp-prevent-close:after,
button.mfp-arrow.mfp-arrow-right.mfp-prevent-close:before{
    margin-left: 0;
    margin-right: 35px;
}*/
/*<----------- End-product-Popup ----------> */




/* Popup */

.wplcs_product_content h1.product_title {
    margin: 0px;
    padding: 0px;
    font-size: 22px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}

.wplcs_product_content .price .amount {
    color: #fe9c00;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
}
.wplcs_product_content .price ins{
    text-decoration: none;
}
.wplcs_product_content .product_meta {
 margin-top: 20px;
 border-top: 1px solid #ebebeb;
 padding-top: 15px;
}

.wplcs_product_content .product_meta .posted_in,
.wplcs_product_content .product_meta .tagged_as {
    font-size: 14px;
    padding-top: 20px;
    font-family: 'Open Sans', sans-serif;
}

.woocommerce .wplcs_product_content .button {
    border-radius: 0;
    font-weight: 400;
    font-size: 14px;
    padding: 14px 25px !important;
    vertical-align: middle;
    background: #1e73be !important;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

button.mfp-arrow {
    background: transparent !important;
    color: #fff !important;
}

.mfp-close {
    color: #000;
}

.mfp-close:hover {
    color: #fff;
}

.wplcs_product_content .quantity {
    vertical-align: middle;
}
.wplcs_quick_view_popup .wplcs_product_image .wt_swiper_button_main .swiper-button-next,
.wplcs_quick_view_popup .wplcs_product_image .wt_swiper_button_main .swiper-button-prev {
    width:25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    border-color: #0a0a0a;
}

.wplcs_quick_view_popup .wplcs_product_image .wt_swiper_button_main .swiper-button-next:after,
.wplcs_quick_view_popup .wplcs_product_image .wt_swiper_button_main .swiper-button-prev:after {
    font-size: 12px;
    color: #fff;
}
.woocommerce.woocommerce-page .wplcs-product-list.wplcs-slider .wplcs-product {
    margin-bottom: 15px !important;
}

.woocommerce div.product form.cart .variations label {
    font-weight: 600;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    text-transform: capitalize;
}

.woocommerce div.product form.cart .variations select {
    max-width: 100%;
    min-width: 75%;
    display: inline-block;
    margin-right: 1em;
    border: 1px solid #d1d1d1;
    height: 40px;
    font-size: 14px;
    color: #686868;
    font-family: 'Open Sans', sans-serif;
}

.woocommerce div.product form.cart .variations select {
    max-width: 100%;
    min-width: 75%;
    display: inline-block;
    margin-right: 1em;
    border: 1px solid #d1d1d1;
    height: 40px;
    font-size: 14px;
    color: #686868;
    font-family: 'Open Sans', sans-serif;
}

.woocommerce div.product form.cart .variations .reset_variations {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px !important;
}

.product_meta .sku_wrapper {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}


.product-thumb-one img,
.product-thumb-two img {
    display: block;
}


.resp-tabs-container h2:first-child {
    padding-top: 10px !important;
}


.owl-theme .owl-nav [class*="owl-"] {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}


@media only screen and (max-width: 991px) {
    .wplcs_quick_view_popup .wplcs_product_content,
    .wplcs_quick_view_popup .wplcs_product_image {
        width: 100%;
    }
    .wplcs_quick_view_popup>.type-product {
        flex-direction: column;
    }
    .wplcs_quick_view_popup {
        max-width: 70%;
    }

    .entry-content, .entry-summary {
        margin: 0 !important;
    }



}

@media only screen and (max-width: 767px) {
    .mfp-gallery .mfp-arrow {
        height: 80px !important;
        margin: -40px 0 0 !important;
        width: 46px !important;
    }

    .mfp-gallery .mfp-arrow:before,
    .mfp-gallery .mfp-arrow:after {
        margin-top: 19px !important;
    }

    .mfp-gallery .mfp-arrow-left:before {
        margin-left: 4px !important;
    }

    .mfp-gallery .mfp-arrow-left:after {
        margin-left: 10px !important;
    }

    .mfp-gallery .mfp-arrow-right:before {
        margin-left: 14px !important;
    }

    .mfp-gallery .mfp-arrow-right:after {
        margin-left: 18px !important;
    }

    .woocommerce .wplcs_product_content .button, .wplcs_product_content .button {
        padding: 14px 18px;
    }
    .wplcs_quick_view_popup .wplcs_product_content{
        width: unset;
    }
}


/**/
.slider-grid {
    border: 1px solid #E3E3E3;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: grid;
    align-content: space-between;
}

.social-logo {
    position: absolute;
    top: 7px;
    right: 10px;
    border-radius: 100%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    background: rgb(236 236 236 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #000;
}

.social-logo:hover {
    background: #fff;
}

.social-logo .fa-facebook-f {
    color: #0051CB;
    font-family: 'FontAwesome';
    font-style: initial;
}

.social-logo .fa-instagram {
    color: #CB004C;
}

.social-logo .fa-twitter {
    color: #00A8CB;
}

.slider-grid-img {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}

.slider-grid-img:before {
    content: '';
    display: block;
    padding-top: 69%;
}

.slider-grid-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.slider-grid-info {
    padding: 20px 25px;
}

.slider-grid-info p {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

a {
    text-decoration: none;
}

.user-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-info .user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    overflow: hidden;
}

.user-info .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name h3 {
    font-size: 14px;
    margin: 0 0 2px;
    font-weight: 700;
    line-height: 22px;
}

.user-name span {
    display: block;
    color: #000;
}

.slider-grid-footer {
    border-top: 1px solid #E3E3E3;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-grid-footer a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #A4A4A4;
}

.slider-grid-footer a:hover {
    color: #000;
}

.slider-grid-footer a span,
.slider-grid-footer a span svg {
    line-height: 0;
}

.slider-layout .slider-seven .swiper-slide {
    height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    transform: translateY(-50%);
    background: #587052;
    border-radius: 100%;
    border: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    width: 45px;
    height: 45px;
    margin: 0;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 22px;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.slider-grid.no-img {
    padding-top: 44px;
}

.slider-grid .info-category span.category {
    font-weight: 600;
}






/*<----------- 08/5/2023 ----------> */
.slider-one .swiper{
    padding: 0 15px;
}
.slider-one .product-item {
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.slider-one .product-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.slider-one.wplcs-slider .swiper-button-prev:focus-visible,
.slider-one.wplcs-slider .swiper-button-next:focus-visible {
    outline: none;
}

.slider-one .product-info {
    padding: 0;
    text-align: left;
}

.slider-one .title-product {
    font-size: 16px;
    margin: 0 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-one .title-product a {
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
}

.slider-one .title-product a:hover {
    color: #fe9c00;
}

.slider-one .info-price {
    margin-bottom: 10px;
}

.slider-one .info-price .price {
    color: #fe9c00;
    font-size: 15px;
    font-weight: 600;
}

.slider-one .product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-one .product-rating .reviews-actions a {
    box-shadow: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
    line-height: normal;
}

.slider-one .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}

.wplcs-slider .wplcs-on-sale-product {
    display: inline-block;
    z-index: 9;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    line-height: normal;
    padding: 10px 15px;
    background-color: #bd8484 ;
    margin-bottom: 0;
    text-align: center;
    min-width: 50px;
    position: absolute;
    top: 15px;
    left: 0;
    font-weight: 500;
}

.wplcs-slider .product-item {
    position: relative;
}

.wplcs-slider span.wplcs-on-sale-product:before {
    display: inline-block;
    content: "";
    position: absolute;
    right: -10px;
    top: 0px;
    border: 7px solid transparent;
    border-width: 20px 10px;
    border-color: #bd8484;
    border-right-color: transparent ;
}

/*<---------- Two layout ------------>*/
.slider-two .swiper{
    padding: 0 15px;
}
.slider-two .product-item {
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 10px;
    padding-bottom: 0;
}

.slider-two .product-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.slider-two .product-info {
    padding: 0;
    text-align: center;
}

.slider-two .title-product {
    font-size: 16px;
    margin: 0 0 4px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-two .title-product a {
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #f1f6f9;
}

.slider-two .title-product a:hover {
    color: #fff;
}

.slider-two .info-price {
    margin-bottom: 10px;
}

.slider-two .info-price .price {
    color: #fe9c00;
    font-size: 15px;
    font-weight: 400;
}

.slider-two .product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid #9d9d9d14;
}

.slider-two .product-rating .reviews-actions a {
    box-shadow: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
    line-height: normal;
}

.slider-two .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}

.slider-two .product-thumb {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}

.slider-two .product-thumb a span:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.slider-two .product-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

/*<---------- Three layout ------------>*/
.slider-three .swiper{
    padding: 0 15px;
}
.slider-three .product-item {
    border: 1px solid #e5e5e5;
    padding: 0px;
    border-radius: 10px;
}

.slider-three .product-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
}


.slider-three .product-info {
    padding: 0;
    text-align: left;
    margin: 20px 15px;
}

.slider-three .title-product {
    font-size: 16px;
    margin: 0 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-three .title-product a {
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-three .title-product a:hover {
    color: #fe9c00;
}


.slider-three .product-item .rate-price-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slider-three .info-price .price {
    color: #fe9c00;
    font-size: 15px;
    font-weight: 500;
}

.slider-three .product-rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slider-three .product-rating .reviews-actions a {
    box-shadow: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
    line-height: normal;
}

.slider-three .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}

.slider-three .product-thumb {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}

.slider-three .product-thumb a span:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.slider-three .product-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

/*<---------- Four layout ------------>*/
.slider-four .swiper{
    padding: 0 15px;
}
.slider-four .product-item {
    padding: 15px;
    border-radius: 10px;
}

.slider-four .product-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.slider-four .product-info {
    padding: 0;
    text-align: left;
}

.slider-four .title-product {
    font-size: 16px;
    margin: 0 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-four .title-product a {
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-four .title-product a:hover {
    color: #fe9c00;
}

.slider-four .info-price .price {
    color: #fe9c00;
    font-size: 16px;
    font-weight: 700;
}

.slider-four .product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.slider-four .product-rating .reviews-actions a {
    box-shadow: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
    line-height: normal;
}

.slider-four .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}

.slider-four .wplcs-on-sale-product {
    top: 45px;
}

.slider-four .wplcs-on-sale-product {
    display: inline-table;
}

.slider-four .product-item span.wplcs-on-sale-product {
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto;
    right: 14px;
    top: 8px;
    border-radius: 4px;
}


.slider-four span.wplcs-on-sale-product:before {
    display: none;
}
/*<---------- Five layout ------------>*/
.slider-five .swiper{
    padding: 0 15px;
}
.slider-five .product-item {
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 10px;
}

.slider-five .product-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.slider-five .product-info {
    padding: 0;
    text-align: left;
}

.slider-five .title-product {
    font-size: 16px;
    margin: 0 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-five .title-product a {
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-five .title-product a:hover {
    color: #fe9c00;
}

.slider-five .info-price {
    margin-bottom: 10px;
}

.slider-five .info-price .price {
    color: #fe9c00;
    font-size: 16px;
    font-weight: 700;
}

.slider-five .product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-five .product-rating .reviews-actions a {
    box-shadow: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
    line-height: normal;
}

.slider-five .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}

/*<---------- six layout ------------>*/
.slider-six .swiper{
    padding: 0 15px;
}
.slider-six .product-item {
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 10px;
}

.slider-six .product-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.slider-six .product-info {
    padding: 0;
    text-align: left;
}

.slider-six .title-product {
    font-size: 16px;
    margin: 0 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slider-six .title-product a {
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.slider-six .title-product a:hover {
    color: #fe9c00;
}

.slider-six .info-price {
    margin-bottom: 10px;
}

.slider-six .info-price .price {
    color: #fe9c00;
    font-size: 16px;
    font-weight: 700;
}

.slider-six .product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-six .product-rating .reviews-actions a {
    box-shadow: none;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    color: #333;
    margin-right: 5px;
    text-decoration: none;
    line-height: normal;
}

.slider-six .product-rating .reviews-actions a:hover {
    color: #fe9c00;
}

.slider-six .product-thumb {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}

.slider-six .product-thumb a span:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.slider-six .product-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

/*<---------- seven layout ----------->*/
.slider-seven .slider-grid-info {
    padding: 20px;
}

.slider-seven .slider-grid-info .user-info {
    justify-content: center;
}

.slider-seven .slider-grid-info .user-info .info-price span.price {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
}

.slider-seven .slider-grid-info .user-info .info-price span.price {
    display: flex;
    align-items: center;
}

.slider-seven .slider-grid-info .user-info .info-price bdi {
    display: flex;
}

.slider-seven .wt_swiper_button_main .swiper-button-next,
.slider-seven .wt_swiper_button_main .swiper-button-prev {
    transform:  none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: static;
}

.slider-seven .wt_swiper_button_main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-seven .wt_swiper_button_main .swiper-button-prev {
    order: 1;
}

.slider-seven .wt_swiper_button_main .swiper-button-next {
    order: 2;
}

.slider-seven .slider-grid-info .product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.slider-seven .slider-grid .slider-grid-footer {
    justify-content: center;
}

.slider-seven .user-name .info-category span.category,
.slider-seven .user-name h3.title-product {
    text-align: left;
}
.slider-seven .info-price {
    font-weight: 500;
}
.slider-seven .user-name {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.slider-seven .user-name span.category{
    border-radius: 50px;
    display: inline-block;
    width: auto;
    padding: 2px 12px 1px;
    font-size: 13px;
    font-weight: 400;
}
.slider-seven .user-name h3{
    margin: 5px 0 0;
}
.slider-seven .slider-grid-img:before{
    display: none;
}
.slider-seven .slider-grid-img > a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    min-height: 200px;
}
.slider-seven .slider-grid-img:hover a > .product-thumb-two img {
    object-fit: cover;
}
.slider-seven.wplcs-slider .wplcs-on-sale-product {
    z-index: 999;
    width: 35px;
    min-width: auto;
    word-break: break-all;
    padding: 10px;
    line-height: 1.2;
    left: auto;
    right: 20px;
    top: 0;
    border-radius: 0 0 20px 20px;
    font-weight: 500;
    font-size: 14px;
}
.slider-seven.wplcs-slider .wplcs-on-sale-product:before{
    display: none;
}
.slider-seven .slider-grid-img a img {
    width: 100%;
    object-fit: cover;
    position: unset;
    height: 270px;
}
.slider-seven .product-thumb-one img{
    z-index: 99;
    transition:  .5s linear;
    cursor: pointer;
}
.slider-seven .slider-grid-img:hover a > .product-thumb-one {
    opacity: 0;
}

.slider-seven .product-info-cart {
    z-index: 9;
    bottom: 20px;
    right: -60px;
    position: absolute;
    text-align: center;
    transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
}

.slider-seven .product-extra-link {
    font-size: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.slider-seven .product-extra-link li {
    display: block;
}

.slider-seven .product-extra-link li .yith-wcwl-wishlistaddedbrowse,
.slider-seven .product-extra-link li .yith-wcwl-wishlistexistsbrowse,
.slider-seven .product-extra-link li a {
    color: #fff;
    display: flex;
    height: 30px;
    line-height: 30px;
    margin: 0;
    width: 40px;
    align-items: center;
    font-size: 15px;
    justify-content: center;
    transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    background: #000;
    margin-bottom: 5px;
    border-radius:  30px 0 0 30px;
}

.slider-seven .product-extra-link li .yith-wcwl-wishlistaddedbrowse span.feedback,
.slider-seven .product-extra-link li .yith-wcwl-wishlistexistsbrowse span.feedback {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-seven .product-extra-link li a:hover {
    color: #fe9c00;
}
.slider-seven .slider-grid-img:hover .product-info-cart {
    right: 0px;
}
.slider-seven .slider-grid-img:hover>a:after {
    content: "";
    background: rgb(0 0 0 / 58%);
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
}
.slider-seven .slider-grid-img a {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
}
.slider-seven .slider-grid-img:hover .product-thumb-one{
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
}
.slider-seven .slider-grid-img:hover .product-thumb-two{
    transform: translateY(-100%) scale(1);
    -webkit-transform:translateY(-100%) scale(1);
    -moz-transform:translateY(-100%) scale(1);
    -o-transform:translateY(-100%) scale(1);
}
.slider-seven .slider-grid-img .product-thumb-two{
    transform: translateY(-100%) scale(0);
    -webkit-transform:translateY(-100%) scale(0);
    -moz-transform:translateY(-100%) scale(0);
    -o-transform:translateY(-100%) scale(0);
}
.slider-seven .slider-grid-img .product-thumb-one {
    display: block;
    position: relative;
    transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
}
.slider-seven .slider-grid-img .product-thumb-two {
    left: 0;
    position: absolute;
    top: 100%;
    max-width: 100%;
    width: 100%;
    z-index: 1;
    transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
}

/*<---------- Eight layout ----------->*/

.slider-eight .slider-layout .wplcs-slider {
    padding: 0 25px;
    margin: 0 -25px;
}

.slider-eight .slider-grid {
    background: #fff;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    border-radius: 5px;
}

.slider-eight .slider-grid-img {
    overflow: hidden;
    position: relative;
    display: block;
    width: 45%;
    flex-shrink: 0;
}
.slider-eight .slider-grid-img .product-thumb-one img{
    z-index: 99;
    transition: .5s linear;
    cursor: pointer;
}
.slider-eight .slider-grid-img img {
    width: 100%;
    height: 100%;
    position: unset;
    object-fit: cover;
    max-height: 300px;
}

.slider-eight .slider-grid-info {
    width: 100%;
    display: grid;
    padding: 0;
    grid-template-rows: 1fr 0fr;
}

.slider-eight .grid-contant {
    padding: 10px 25px;
    display: flex;
    align-items: center;
}

.slider-eight .slider-grid-info p {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

.slider-eight .user-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.slider-eight .user-info .user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    overflow: hidden;
}

.slider-eight .user-info .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider-eight span.wplcs-on-sale-product::before {
    border-width: 19px 10px;
}
.slider-eight .grid-footer-link {
    display: flex;
    align-items: center;
    gap: 18px;
}

.slider-eight .slider-grid-footer a {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 15px;
    color: #A4A4A4;
    text-decoration: none;
}

.slider-eight .slider-grid-footer a:hover {
    color: #000;
}

.slider-eight .slider-grid-footer a span,
.slider-eight .slider-grid-footer a span svg {
    line-height: 0;
}

.slider-eight .grid-social a {
    padding: 2px 6px;
    border-radius: 3px;
    background: rgb(236 236 236 / 50%);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    color: #fff;
    text-transform: uppercase;
    width: auto;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-eight .grid-social a:hover {
    opacity: 0.8;
    color: #fff;
}

.slider-eight .grid-social a.facebook {
    background: #0051CB;
}

.slider-eight .grid-social a.instagram {
    background: #CB004C;
}

.slider-eight .grid-social a.twitter {
    background: #00A8CB;
}

.slider-eight .slider-layout .swiper-slide {
    height: auto;
}

.slider-eight .grid-footer-link li .yith-wcwl-wishlistaddedbrowse,
.slider-eight .grid-footer-link li .yith-wcwl-wishlistexistsbrowse,
.slider-eight .slider-grid-footer li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.slider-eight .user-name span.price {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}
.slider-eight .user-name h3{
    font-size: 16px;
}
.slider-eight .slider-grid.no-img {
    padding-top: 44px;
}

.slider-eight .user-name .info-price span bdi {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.slider-eight .user-name .info-price span {
    font-size: 16px;
    font-weight: 500;
}

.slider-eight .swiper {
    padding: 0 15px;
}

.slider-eight {
    position: relative;
}

.slider-eight .wt_swiper_button_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
}
.slider-eight .user-name .title-product {
    font-size: 18px;
    margin: 10px 0;
}
.slider-eight .slider-grid .product-logo .info-category span {
    font-size: 13px;
    margin-bottom: 4px;
    border-radius: 4px;
    padding: 1px 10px 0;
    display: inline-block;
    font-weight: 400;
}
.slider-eight .slider-grid-img:before{
    display: none;
}
.slider-eight .slider-grid-img:hover a > .product-thumb-one {
    opacity: 0;
}

.slider-eight .slider-grid-img:hover a > .product-thumb-two img {
    object-fit: cover;
}
.slider-eight.wplcs-slider  .wplcs-on-sale-product {
    z-index: 999;
}   
.slider-eight .slider-grid-img a {
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: all .9s ease-out 0s;
    -webkit-transition: all .9s ease-out 0s;
    -moz-transition: all .9s ease-out 0s;
    -o-transition: all .9s ease-out 0s;
}
.slider-eight .slider-grid-img:hover .product-thumb-one{
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}
.slider-eight .slider-grid-img:hover .product-thumb-two{
    transform: translateY(-100%) rotate(360deg);
    -webkit-transform:translateY(-100%)  rotate(360deg);
    -moz-transform:translateY(-100%)  rotate(360deg);
    -o-transform:translateY(-100%)  rotate(360deg);
}
.slider-eight .slider-grid-img .product-thumb-two{
    transform: translateY(-100%) scale(0);
    -webkit-transform:translateY(-100%) scale(0);
    -moz-transform:translateY(-100%) scale(0);
    -o-transform:translateY(-100%) scale(0);
}
.slider-eight .slider-grid-img .product-thumb-one {
    display: block;
    height: 100%;
    position: relative;
    transition: all .9s ease-out 0s;
    -webkit-transition: all .9s ease-out 0s;
    -moz-transition: all .9s ease-out 0s;
    -o-transition: all .9s ease-out 0s;
}
.slider-eight .slider-grid-img .product-thumb-two {
    left: 0;
    position: absolute;
    top: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
    z-index: 1;
    transition: all .9s ease-out 0s;
    -webkit-transition: all .9s ease-out 0s;
    -moz-transition: all .9s ease-out 0s;
    -o-transition: all .9s ease-out 0s;
}




/*<---------- Nine layout ----------->*/
.slider-nine .swiper{
    padding: 0 15px;
}
.slider-nine .slider-grid {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.slider-nine .slider-grid-img {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}

.slider-nine .slider-grid-img:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.slider-nine .slider-grid-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.slider-nine .link-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.slider-nine .link-icon a {
    font-size: 15px;
    color: #fff;
}

.slider-nine .slider-grid:hover .slider-grid-info {
    opacity: 1;
    visibility: visible;
}

.slider-nine .slider-grid-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.66);
    display: grid;
    align-content: flex-end;
    transition: all 0.3s ease;
    padding: 0px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

.slider-nine .slider-grid-contant {
    padding: 15px;
}

.slider-nine .grid-social a {
    padding: 2px 6px;
    border-radius: 3px;
    background: rgb(236 236 236 / 50%);
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    right: 15px;
    text-decoration: none;
    width: auto;
    height: auto;
    border: 1px solid #585858;
}

.slider-nine .grid-social a:hover {
    opacity: 0.8;
    color: #fff;
}

.slider-nine .grid-social a.facebook {
    background: #0051CB;
}

.slider-nine .grid-social a.instagram {
    background: #CB004C;
}

.slider-nine .grid-social a.twitter {
    background: #00A8CB;
}

.slider-nine .slider-grid-info p {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    font-family: 'Montserrat';
    margin: 0;
}

.slider-nine .user-info {
    margin-top: 16px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.slider-nine .user-info .user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    overflow: hidden;
}

.slider-nine .user-info .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nine .info-price span.price bdi {
    display: flex;
    align-items: center;
}
.slider-nine .slider-grid-footer .yith-wcwl-wishlistaddedbrowse,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistexistsbrowse,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistaddedbrowse a:first-child,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistexistsbrowse a:first-child,
.slider-nine .slider-grid-footer a {
    display: flex;
    align-items: center;
    font-size: 17px;
    color: #E8E8E8;
    gap: 0;
    text-decoration: none;
}

.slider-nine .slider-grid-footer .yith-wcwl-wishlistaddedbrowse,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistexistsbrowse,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistaddedbrowse a:first-child,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistexistsbrowse a:first-child{
    opacity: 1;
}

.slider-nine .slider-grid-footer .yith-wcwl-wishlistaddedbrowse:hover,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistexistsbrowse:hover,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistaddedbrowse:hover a:first-child,
.slider-nine .slider-grid-footer .yith-wcwl-wishlistexistsbrowse:hover a:first-child,
.slider-nine .slider-grid-footer a:hover {
    color: #fff;
}

.slider-nine .slider-grid-footer a span,
.slider-nine .slider-grid-footer a span svg {
    line-height: 0;
}

.slider-nine .slider-layout .swiper-slide {
    height: auto;
}

.slider-nine .wt_swiper_button_main {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    margin-top: 20px;
}

.slider-nine .wt_swiper_button_main .swiper-button-prev,
.slider-nine .wt_swiper_button_main .swiper-button-next {

    transform: inherit;
    position: static;
    margin: 0;
    font-size: 0;
    background: transparent;
    border: 1px solid transparent;
}

.slider-nine .wt_swiper_button_main .swiper-button-prev {
    order: 1;
}

.slider-nine .wt_swiper_button_main .swiper-button-next {
    order: 2;
}

.slider-nine .wt_swiper_button_main .swiper-button-prev:after,
.slider-nine .wt_swiper_button_main .swiper-button-next:after {
    font-size: 15px;
}

.slider-nine .user-name span {
    color: #fff !important;
}

.slider-nine.wplcs-slider .slider-grid h3.title-product a {
    color: #fff;
}

.slider-nine .user-name span.price {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.slider-nine .wplcs-on-sale-product {
    padding: 11.5px 15px;
}


/*<---------- Ten layout ----------->*/
.slider-ten {
    position: relative;
}
.slider-ten .slider-grid-info .user-avatar-box a.social-logo {
    text-decoration: none;
}
.slider-ten.wplcs-slider .wplcs-on-sale-product::before {
    display: none;
}
.slider-ten.wplcs-slider .wplcs-on-sale-product{
    padding: 4px;
    border-radius: 4px;
    font-weight: 500;
    top: 37%;
    left: auto;
    right: 16px;
    box-shadow: 0 5px 6px #00000026;
}
.slider-ten .slider-grid-info .user-avatar-box {
    width: 40px;
    height: 40px;
}
.slider-ten .slider-grid-info .user-info .user-name h3.title-product a {
    text-decoration: none;
}
.slider-ten .slider-grid-info .user-info {
    margin-top: 0;
}
.slider-ten .slider-grid-info .user-info .info-price span.price bdi {
    display: flex;
    font-size: 14px;
    font-weight: 600;
}
.slider-ten .slider-grid-info .user-info .info-price span.price {
    display: flex;
    align-items: center;
    gap: 2px;
}
.slider-ten .slider-grid{
    border-radius: 6px;
}
.slider-ten .swiper {
    padding: 0 15px;
}
.slider-ten .slider-grid a.social-logo {
    text-decoration: none;
    top: 20px;
    background: transparent;
    border: 0;
    width: 25px;
    height: 25px;
}
.slider-ten .slider-grid .slider-grid-info {
    padding: 16px 25px;
}
.slider-ten .slider-grid .product-logo .info-category {
    background: #f8f8f8;
    text-align: center;
    padding: 5px 0;
    color: #878787;
    border-bottom: 1px solid #e7e7e7;
}
.slider-ten .slider-grid-img:before{
    display: none;
}
.slider-ten .slider-grid-img a span::before{
   padding-top: 100%;
   display: block;
   content: '';
}
.slider-ten .slider-grid-img > a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    min-height: 200px;
}
.slider-ten .slider-grid-img a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*position: unset;*/
    min-height: 250px;
    position: absolute;
    top: 0;
    left: 0;
}
.slider-ten .product-thumb-one img{
    z-index: 99;
    transition: .5s linear;
    cursor: pointer;
}
.slider-ten.wplcs-slider  .wplcs-on-sale-product {
    z-index: 999;
}
.slider-ten .slider-grid-img a {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}
.slider-ten .slider-grid-img .product-thumb-one {
    display: block;
    position: relative;
    transform: translateX(-100%);
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}
.slider-ten .slider-grid-img .product-thumb-two {
 right: 0;
 position: absolute;
 top: 0;
 max-width: 100%;
 width: 100%;
 z-index: 1;
 transition: all .3s ease-in-out 0s;
 -webkit-transition: all .3s ease-in-out 0s;
 -moz-transition: all .3s ease-in-out 0s;
 -o-transition: all .3s ease-in-out 0s;
}
.slider-ten .slider-grid:hover span.product-thumb-one{
    transform: translateX(0);
}
.slider-ten .slider-grid-img:hover .product-thumb-two {
 right: -100%;
}
.slider-ten .slider-grid .slider-grid-footer {
    top: 100%;
    height: fit-content;
    text-align: center;
    transition: all .6s ease-in-out 0s;
    -webkit-transition: all .6s ease-in-out 0s;
    -moz-transition: all .6s ease-in-out 0s;
    -o-transition: all .6s ease-in-out 0s;
    margin-bottom: -100px;
}
.slider-ten .slider-grid:hover .slider-grid-footer {
    margin-bottom: 0;
}
.slider-ten .product-info-cart {
    z-index: 1;
    bottom: 0;
    left: 0;
    position: absolute;
    text-align: center;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    width: 100%;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}
.slider-ten .product-extra-link {
    font-size: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
}
.slider-ten .product-extra-link li {
    display: inline-block;
}
.slider-ten .product-extra-link .yith-wcwl-wishlistaddedbrowse,
.slider-ten .product-extra-link .yith-wcwl-wishlistexistsbrowse,
.slider-ten .product-extra-link li a {
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 0;
    width: 45px;
    font-size: 16px;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}
.slider-ten .product-extra-link li a:hover {
    color: #fe9c00;
}
.slider-ten .slider-grid-img:hover .product-info-cart {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
}



/*<---------- eleven layout ----------->*/
.slider-eleven {
    position: relative;
}
.slider-eleven .swiper {
    padding: 0 10px;
}
.slider-eleven .slider-grid a.social-logo {
    text-decoration: none;
}
.slider-eleven .slider-grid .slider-grid-info {
    padding: 20px 20px;
}
.slider-eleven .user-info .user-name span.price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.slider-eleven .user-info .user-name span.price bdi {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.slider-eleven .slider-grid-footer a {
    text-decoration: none;
    text-decoration: none;
    font-size: 15px;
}
.slider-eleven .wt_swiper_button_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
}
.slider-eleven .slider-grid-img:before{
    display: none;
}
.slider-eleven .slider-grid-img a span::before{
   padding-top: 100%;
   display: block;
   content: '';
}
.slider-layout.loading  .swiper-wrapper{
    max-height: 450px;
    overflow: hidden;
}
.slider-eleven .slider-grid-img > a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    min-height: 200px;
}
.slider-eleven .slider-grid-img a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    position: absolute;
    top: 0;
    left: 0;
    max-height: 300px;
}
.slider-eleven .product-thumb-one img{
    z-index: 99;
    transition: .5s linear;
    cursor: pointer;
}
.slider-eleven.wplcs-slider  .wplcs-on-sale-product {
    z-index: 999;
}
.slider-eleven .slider-grid-img a {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}
.slider-eleven .slider-grid-img:hover .product-thumb-one,
.slider-eleven .slider-grid-img:hover .product-thumb-two {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
}
.slider-eleven .slider-grid-img .product-thumb-one {
    display: block;
    position: relative;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}
.slider-eleven .slider-grid-img .product-thumb-two {
    left: 0;
    position: absolute;
    top: 100%;
    max-width: 100%;
    width: 100%;
    z-index: 1;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}
.slider-eleven .slider-grid:hover span.product-thumb-one{
    transform: translateX(0);
}
.slider-eleven .slider-grid-img:hover a > .product-thumb-one {
    opacity: 0;
}
.slider-eleven .slider-grid-img:hover a > .product-thumb-two img {
    object-fit: cover;
}
.slider-eleven .slider-grid .slider-grid-footer {
    top: 100%;
    height: fit-content;
    text-align: center;
    transition: all .6s ease-in-out 0s;
    -webkit-transition: all .6s ease-in-out 0s;
    -moz-transition: all .6s ease-in-out 0s;
    -o-transition: all .6s ease-in-out 0s;
    margin-bottom: -100px;
}
.slider-eleven .slider-grid:hover .slider-grid-footer {
    margin-bottom: 0;
}
.slider-eleven .product-info-cart {
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 9;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slider-eleven .slider-grid .product-extra-link {
    font-size: 0;
    padding: 0;
    margin: 0px;
    display: flex;
    grid-gap: 10px;
    opacity: 0;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    overflow: hidden;
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    z-index: 2;

}
.slider-eleven .slider-grid:hover .product-extra-link {
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}

.slider-eleven .product-extra-link .yith-wcwl-wishlistaddedbrowse,
.slider-eleven .product-extra-link .yith-wcwl-wishlistexistsbrowse,
.slider-eleven .product-extra-link li a {
    color: #fff;
    margin: 0;
    font-size: 14px;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    margin-bottom: 5px;
    border-radius: 30px;
    height: 35px;
    line-height: normal;
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-eleven .product-extra-link li a:hover {
    color: #fe9c00;
}
.slider-eleven.wplcs-slider .wplcs-on-sale-product {
    z-index: 999;
    width: 55px;
    height: 55px;
    left: 10px;
    top: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.slider-eleven.wplcs-slider .wplcs-on-sale-product:before{
    display: none;
}
.slider-eleven .slider-grid-img:hover>a:after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
}
.slider-eleven .product-logo{
    position: relative;
    z-index: 99;
}
.slider-eleven .info-category span.category {
    background: #fff;
    font-weight: 500;
    padding: 3px 10px;
    margin-top: -34px;
    margin-bottom: 10px;
    z-index: 5;
    position: relative;
    max-width: fit-content;
    border-radius: 5px;
    margin-left: -10px;
}



/*============= responsive css ============*/
@media (max-width:1199px){
    .swiper-button-next, .swiper-button-prev{
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 1024px) {
    .wplcs_quick_view_popup{
        max-width: 85%;
    }
    .slider-three .product-item .rate-price-wrap{
        flex-wrap: wrap;  
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .slider-three .product-rating{
        justify-content: space-between;
        width: 100%;
    }
    .slider-eight .slider-grid{
        flex-wrap: wrap;
    }
    .slider-eight .slider-grid-img{
        width: 100%;
    }
    .slider-eight .grid-contant{
        padding:15px;
    }
    .slider-eight .user-name .title-product {
        font-size: 16px;
        margin: 7px 0;
    }
    .slider-eight .user-name .info-price span, .slider-eight .user-name .info-price span bdi {
        font-size: 14px;
    }
    .slider-eight .grid-footer-link{
        justify-content: space-between;
        width: 100%;
    }
}


@media (max-width: 991px) {
    .slider-twenty-four .slider-grid-info .title-review, .slider-twenty-four .slider-grid-info .addcart-price{
      flex-wrap: wrap;
      gap:3px;
      justify-content: center !important;
  }
  .slider-twenty-five .slider-grid .product-info-cart .product-extra-link a{
    width: 28px;
    height: 28px;
    margin: 6px 0;
}
.slider-twenty-five.wplcs-slider .slider-grid:hover .product-info-cart {
    left: 2%;
}
.slider-twenty-five .slider-grid:hover .slider-grid-img-box {
    transform: translateX(50px) !important;
}
.slider-twenty-five.wplcs-slider .slider-grid-info-bottom h3.title-product {
    font-size: 16px;
}
.slider-twenty-seven .slider-grid .slider-grid-info h3{
    font-size: 16px;
}
.slider-twenty-three .slider-grid .slider-grid-info{
    padding: 10px;
}
.slider-twenty-three .slider-grid .slider-grid-info h3{
    font-size: 16px;
}
.slider-twenty-eight .slider-grid .product-info-cart h3{
    font-size: 15px;
}
.slider-twenty-eight .product-info-cart .product-extra-link a{
    width: 26px;
    height: 26px;
    margin: 0 2px;
}
.slider-thirty-two .slider-grid .addcart-link a i{
    font-size: 15px;
}
.slider-thirty-two .slider-grid .addcart-link a{
    font-size: 0;
}
.slider-thirty-two  .slider-grid .slider-grid-img a img,
.slider-thirty-one  .slider-grid .slider-grid-img a img{
    max-height: auto;
    min-height: auto;
}
.slider-thirty-four  .slider-grid .product-info-cart .product-extra-link a.wplcs_add_to_cart {
    font-size: 0;
}
.slider-thirty-four   .slider-grid  .product-info-cart .product-extra-link .addcart-link a i {
 margin-right: 0;
 font-size: 13px;
}
.slider-thirty-four  .slider-grid .slider-grid-info-bottom h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0px 0 3px;
}
.slider-thirty-seven  .slider-grid .slider-grid-info-bottom h3{
    font-size: 16px;
}
.slider-thirty-seven .slider-grid  .slider-grid-info-bottom .star-rating {
    margin-top: 9px;
    font-size: 14px;
    margin-bottom: 10px;
}

.slider-thirty-seven.wplcs-slider .slider-grid{
    padding-top: 115px;
}
.slider-thirty-seven .slider-grid-info-bottom{

    padding-right: 10px;
}
}



@media (max-width: 767px) {
    .wplcs_quick_view_popup {
        max-width: 100% !important;
    }
    .wplcs_quick_view_popup .has-post-thumbnail{
        flex-direction: column;
        overflow: hidden;
        border-radius: 10px;
    }
    .wplcs_quick_view_popup .wplcs_product_image .item img{
        border-radius: 0;
    }
    .wplcs_quick_view_popup .product_cat-test{
        overflow: hidden;
    }
    .mfp-arrow-right:before,
    .mfp-arrow-right:after,
    .mfp-arrow-left:before,
    .mfp-arrow-left:after{
        border: 0 !important;
    }
    .wplcs_quick_view_popup table.woocommerce-grouped-product-list .has-post-thumbnail {
        flex-direction: unset;
    }
    .wplcs_quick_view_popup{
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .slider-seven .slider-grid-img a img{
        height: auto;
    }
    .slider-twenty .product-info-cart .product-extra-link a{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .slider-twenty-two .slider-grid{
        flex-direction: column-reverse;
        padding: 12px;
    }
    .slider-twenty-two .slider-grid .slider-grid-img{
        width: 100%;
    }
    .slider-twenty-two .slider-grid .slider-grid-info {
        padding: 0;
        width: 100%;
        text-align: center;
        margin-top: 12px;
    }
    .slider-thirty .slider-grid .slider-grid-info-bottom h3{
        font-size: 16px;
        margin-bottom: 8px;
    }
    .slider-thirty  .slider-grid  .product-info-cart .product-extra-link a{
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    .slider-thirty.wplcs-slider .slider-grid{
        padding: 10px;
    }
    .slider-thirty-three .slider-grid{
        flex-wrap: wrap;
        gap: 10px;
    }
    .slider-thirty-three .slider-grid  .slider-grid-img, .slider-thirty-three  .slider-grid  .slider-grid-info-bottom{
        width: 100%;
        padding-left: 0px;
    }
    .slider-thirty-five .slider-grid  .slider-grid-img a img{
        height: auto;
    }

    .slider-thirty-six .slider-grid  .slider-grid-img a img{
        min-height: auto;
        max-height: inherit;
    }
    .slider-thirty-seven .slider-grid  .carousel-twenty-six-price{
        height: auto;
        width: auto;
        padding: 6px 8px;
    }
    .slider-thirty-seven.wplcs-slider .slider-grid {
        padding-top: 100px;
    }
}

@media (max-width: 575px) {
    .wplcs_quick_view_popup .wplcs_product_content {
        padding: 15px 15PX 20PX;
    }
    .wplcs_quick_view_popup .wplcs_product_content p.price{
        margin: 10px 0;
    }
    .wplcs_quick_view_popup .wplcs_product_content h1.product_title{
        font-size: 18px;
        margin-bottom: 0;
    }
    .wplcs_product_content .price .amount{
        font-size: 16px;
    }
    .wplcs_quick_view_popup .wplcs_product_content .variations_form.cart table.variations select{
        width: 165px;
    }
    .slider-seven .user-name{
        flex-wrap: wrap;
        gap: 5px;
    }
    .slider-eight .grid-footer-link{
        gap: 10px;
    }
    .slider-eight .slider-grid-footer li a{
        width: 26px;
        height: 26px;
    }
    .slider-twenty-five .slider-grid .slider-grid-img-box:before{
        padding-top: 90%;
    }
    .slider-twenty-five.wplcs-slider .slider-grid{
        margin: 0 3px;
    }

    .slider-thirty-two .slider-grid .slider-grid-info-bottom h3,
    .slider-thirty-two .info-price span.price, .slider-thirty-two .info-price .woocommerce-Price-amount{
        font-size: 15px;
    }
    .slider-thirty-two .slider-grid-info-bottom{
        padding: 15px 15px 10px;
    }
    .slider-thirty-six .slider-grid .slider-grid-info-bottom{
        padding: 10px;
        bottom: -5px;
    }
    .slider-thirty-six .slider-grid .slider-grid-info-bottom h3{
        font-size: 16px;
        margin-bottom: 7px;
    }
    .slider-thirty-six .slider-grid  .product-info-cart{
        margin-top: 12px;
    }
}