﻿:root {
    --theme-color: #D49D67
}

@keyframes textNoise1 {
    0% {
        clip-path: inset(45% 0 63% 0)
    }

    10% {
        clip-path: inset(35% 0 47% 0)
    }

    20% {
        clip-path: inset(25% 0 5% 0)
    }

    30% {
        clip-path: inset(81% 0 22% 0)
    }

    40% {
        clip-path: inset(65% 0 60% 0)
    }

    50% {
        clip-path: inset(87% 0 55% 0)
    }

    60% {
        clip-path: inset(49% 0 55% 0)
    }

    70% {
        clip-path: inset(86% 0 10% 0)
    }

    80% {
        clip-path: inset(76% 0 29% 0)
    }

    90% {
        clip-path: inset(65% 0 59% 0)
    }

    100% {
        clip-path: inset(60% 0 20% 0)
    }
}

@keyframes textNoise2 {
    0% {
        clip-path: inset(39% 0 7% 0)
    }

    10% {
        clip-path: inset(28% 0 96% 0)
    }

    20% {
        clip-path: inset(92% 0 88% 0)
    }

    30% {
        clip-path: inset(29% 0 86% 0)
    }

    40% {
        clip-path: inset(5% 0 69% 0)
    }

    50% {
        clip-path: inset(67% 0 98% 0)
    }

    60% {
        clip-path: inset(99% 0 95% 0)
    }

    70% {
        clip-path: inset(48% 0 77% 0)
    }

    80% {
        clip-path: inset(32% 0 53% 0)
    }

    90% {
        clip-path: inset(87% 0 46% 0)
    }

    100% {
        clip-path: inset(24% 0 60% 0)
    }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {

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

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

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

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

@keyframes bounce {

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

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

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

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

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

@keyframes flash {

    50%,
    from,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes shake {

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

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

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

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

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

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes jello {

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

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

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

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

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

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

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

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

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

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

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@keyframes bounceIn {

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

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

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

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

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

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

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

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

@keyframes bounceInDown {

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

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

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

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

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

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

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

@keyframes bounceInLeft {

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

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

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

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

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

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

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

@keyframes bounceInRight {

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

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

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

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

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

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

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

@keyframes bounceInUp {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

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

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

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

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

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

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

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

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

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

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

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

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

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

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

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

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

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

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

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

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

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

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

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

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

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

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

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

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

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

    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

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

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

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

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

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

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

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

@keyframes rollOut {
    from {
        opacity: 1
    }

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

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

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

    50% {
        opacity: 1
    }
}

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

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

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

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

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

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

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

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

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

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

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

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

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

@keyframes zoomOut {
    from {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.animated.fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s
}

.animated.faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

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

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

@media(print), (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important
    }
}

body {
    font-family: "Montserrat", sans-serif;
    position: relative;
    background: #fff;
    font-size: 14px
}

body.christmas section {
    overflow: hidden
}

body.mulish-font {
    font-family: "Mulish", sans-serif
}

body.single-product {
    background-color: #0a0a16
}

h1 {
    font-size: 60px;
    color: #222;
    font-weight: 700;
    text-transform: uppercase
}

h1 span {
    font-size: 107px;
    font-weight: 700;
    color: var(--theme-color)
}

h2 {
    font-size: 36px;
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em
}

h3 {
    font-size: 24px;
    font-weight: 400;
    color: #777;
    letter-spacing: .03em
}

h4 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1
}

h5 {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    line-height: 24px
}

h6 {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    line-height: 24px
}

ul {
    padding-left: 0;
    margin-bottom: 0
}

li {
    display: inline-block
}

p {
    font-size: 14px;
    color: #777;
    line-height: 20px
}

a {
    transition: .5s ease;
    text-decoration: none;
    color: var(--theme-color)
}

a:hover {
    text-decoration: none;
    transition: .5s ease
}

a:focus {
    outline: none
}

button:focus {
    outline: none
}

.btn-close:focus {
    box-shadow: none
}

label {
    margin-bottom: .5rem
}

:focus {
    outline: none
}

.form-control:focus {
    box-shadow: none
}

.form-select:focus {
    box-shadow: none;
    border-color: #ced4da
}

.font-cormorant {
    font-family: Cormorant, sans-serif
}

.font-fraunces {
    font-family: "Fraunces", serif
}

.text-theme {
    color: var(--theme-color) !important
}

.form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.font-courgette {
    font-family: "Courgette", cursive;
    text-transform: capitalize !important
}

.section-t-space {
    padding-top: 70px
}

.section-b-space {
    padding-bottom: 70px
}

.large-section {
    padding-top: 120px;
    padding-bottom: 120px
}

hr.style1 {
    width: 75px;
    height: 3px;
    margin-top: 13px;
    background-color: var(--theme-color);
    border-top-color: var(--theme-color);
    text-align: center;
    margin-inline: auto;
    opacity: 1
}

.table thead th {
    border-bottom: 1px solid #eee !important
}

.form-control {
    border-radius: 0
}

.small-section {
    padding-top: 35px;
    padding-bottom: 35px
}

.banner-padding {
    padding-top: 24px
}

.input-group .btn {
    z-index: 0
}

.border-section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee
}

.border-b {
    border-bottom: 1px solid #38352f
}

.dark-layout {
    background-color: #2d2a25
}

.light-layout {
    background-color: #f9f9f9
}

.theme-color {
    color: var(--theme-color) !important
}

del {
    font-size: 14px;
    color: #aaa;
    font-weight: 400
}

.position-unset {
    position: unset !important
}

[data-notify=progressbar] {
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px
}

.progress-bar {
    background-color: #19a340
}

.bg-overlay {
    background-blend-mode: overlay;
    background-color: rgba(250, 250, 250, .98)
}

.bg-theme {
    background-color: var(--theme-color);
    background-color: var(--theme-color2)
}

.theme-color {
    color: var(--theme-color) !important
}

.blur-up {
    filter: blur(5px);
    transition: filter 400ms
}

.blur-up.lazyloaded {
    filter: blur(0)
}

.margin-default {
    margin-bottom: -30px
}

.margin-default>div {
    margin-bottom: 30px
}

.margin-default.no-slider>* {
    display: flex
}

.margin-default.no-slider .product-box {
    margin-bottom: 30px !important
}

.form-group {
    margin-bottom: 15px
}

.form-check-input:focus {
    box-shadow: none
}

input::-webkit-inner-spin-button {
    appearance: none
}

.media {
    display: flex;
    align-items: flex-start
}

.media .media-body {
    flex: 1
}

.form-check {
    display: flex
}

.input-group-prepend,
.input-group-append {
    display: flex
}

.breadcrumb {
    padding: .75rem 1rem
}

.form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center
}

.sticky-top-section {
    position: sticky;
    top: 110px;
    z-index: 1
}

.bg-size {
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    background-position: center
}

.bg-size>img {
    display: none !important
}

.product-detail-label {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
    flex-direction: column
}

.product-detail-label li {
    font-size: 13px;
    background-color: rgba(236, 137, 81, .11);
    color: var(--theme-color);
    padding: 4px 10px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    width: max-content;
    letter-spacing: .1em;
    word-spacing: 3px
}

.product-detail-label li.soldout {
    background-color: rgba(95, 95, 95, .13);
    color: #5f5f5f
}

.product-detail-label li.featured {
    background-color: #fff;
    color: var(--theme-color)
}

.future-box {
    display: none
}

.future-box.show {
    display: block
}

.invalid-feedback {
    display: block;
    font-size: 13px;
    font-weight: 500
}

@media(min-width: 992px) {
    .w-lg-50 {
        width: 50% !important
    }
}

a:not([href]):not([class]) {
    cursor: pointer
}

.row-empty-cls:empty {
    margin: 0
}

.bg_cls {
    background-color: #f8f8f8
}

@media(min-width: 1630px) {
    .large-container .container {
        max-width: 1610px
    }
}

.bg-grey {
    background-color: #f7f7f7
}

.gradient-text {
    background: linear-gradient(to right, var(--theme-color) 0%, var(--theme-color2) 100%);
    background-clip: text;    
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

@media(min-width: 1572px) {
    .md-container .container {
        max-width: 1514px
    }
}

#nprogress .bar {
    background: var(--theme-color) !important
}

#nprogress .spinner-icon {
    border-top-color: var(--theme-color) !important;
    border-left-color: var(--theme-color) !important
}

#nprogress .peg {
    box-shadow: unset !important
}

.alert {
    border-radius: 0
}

.empty-box {
    text-align: center
}

.empty-box img {
    width: 40px;
    opacity: 1
}

.empty-box h2 {
    font-size: 22px;
    color: #bfbfbf;
    font-weight: 500;
    text-align: center;
    padding: 14px 0 30px
}

table,
.table {
    margin-bottom: 0
}

.cursor-pointer>.form-select {
    cursor: pointer
}

.Toastify .Toastify__toast-container {
    width: 300px;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    padding: 0
}

.Toastify .Toastify__toast-container .Toastify__bounce-exit--top-right,
.Toastify .Toastify__toast-container .Toastify__bounce-exit--bottom-right {
    animation-name: Toastify__bounceOutUp
}

.Toastify .Toastify__toast-container .Toastify__bounce-enter--top-right,
.Toastify .Toastify__toast-container .Toastify__bounce-enter--bottom-right {
    animation-name: Toastify__bounceInDown
}

.Toastify .Toastify__toast-container .Toastify__toast {
    background-image: none;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    border-radius: 0;
    min-height: unset
}

.Toastify .Toastify__toast-container .Toastify__toast--success {
    color: #0d462c;
    background-color: #d1e7dd;
    border: 1px solid #bfddcf
}

.Toastify .Toastify__toast-container .Toastify__toast--success .Toastify__toast-body .Toastify__toast-icon:before {
    content: ""
}

.Toastify .Toastify__toast-container .Toastify__toast--error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb
}

.Toastify .Toastify__toast-container .Toastify__toast--error .Toastify__toast-body .Toastify__toast-icon:before {
    content: ""
}

.Toastify .Toastify__toast-container .Toastify__toast .Toastify__close-button {
    line-height: 1;
    opacity: 1;
    display: none
}

.Toastify .Toastify__toast-container .Toastify__toast-body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    padding: 0
}

.Toastify .Toastify__toast-container .Toastify__toast-body .Toastify__toast-icon {
    position: relative
}

.Toastify .Toastify__toast-container .Toastify__toast-body .Toastify__toast-icon:before {
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 19px;
    line-height: 1
}

.Toastify .Toastify__toast-container .Toastify__toast-body .Toastify__toast-icon svg {
    display: none
}

.Toastify .Toastify__toast-container .Toastify__toast-body>div {
    font-weight: 600
}

.Toastify .Toastify__toast-container .Toastify__progress-bar--wrp {
    opacity: 0
}

.custom-border-radius {
    border-radius: calc(7px + 11*(100vw - 320px)/1600)
}

.table>:not(caption)>*>* {
    background-color: rgba(0, 0, 0, 0)
}

@keyframes animate {
    from {
        background-position: 0 0
    }

    to {
        background-position: 0 500px
    }
}

@keyframes loading {
    0% {
        border-width: 0
    }

    20% {
        border-width: 8px;
        width: 0;
        height: 0
    }

    100% {
        border-width: 8px;
        width: 100%;
        height: 100%
    }
}

@keyframes skeleton-loader {
    0% {
        transform: translateZ(0);
        background-position: -468px 0
    }

    to {
        transform: translateZ(0);
        background-position: 468px 0
    }
}

@keyframes ring-rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes up-down {
    0% {
        transform: translateY(-10px)
    }

    50% {
        transform: translateY(0)
    }

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

@keyframes slideLeft {
    0% {
        transform: translate(50%)
    }

    100% {
        transform: translate(0.1%)
    }
}

@keyframes slideRight {
    0% {
        transform: translate(-50%);
        border-radius: 8px
    }

    100% {
        border-radius: 0;
        transform: translate(0)
    }
}

@keyframes float {
    0% {
        transform: translatey(0px)
    }

    50% {
        transform: translatey(-15px)
    }

    100% {
        transform: translatey(0px)
    }
}

@keyframes rotate360 {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes skeletonShine {
    to {
        background-position: 500px 0
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.confetti {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    left: 0;
    top: 0
}

.confetti .confetti-piece {
    position: absolute;
    width: 10px;
    height: 30px;
    background: #c2b07c;
    top: 0;
    opacity: 0
}

.confetti .confetti-piece:nth-child(1) {
    left: 7%;
    transform: rotate(-40deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 182ms;
    animation-duration: 1116ms
}

.confetti .confetti-piece:nth-child(2) {
    left: 14%;
    transform: rotate(4deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 161ms;
    animation-duration: 1076ms
}

.confetti .confetti-piece:nth-child(3) {
    left: 21%;
    transform: rotate(-51deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 481ms;
    animation-duration: 1103ms
}

.confetti .confetti-piece:nth-child(4) {
    left: 28%;
    transform: rotate(61deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 334ms;
    animation-duration: 708ms
}

.confetti .confetti-piece:nth-child(5) {
    left: 35%;
    transform: rotate(-52deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 302ms;
    animation-duration: 776ms
}

.confetti .confetti-piece:nth-child(6) {
    left: 42%;
    transform: rotate(38deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 180ms;
    animation-duration: 1168ms
}

.confetti .confetti-piece:nth-child(7) {
    left: 49%;
    transform: rotate(11deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 395ms;
    animation-duration: 1200ms
}

.confetti .confetti-piece:nth-child(8) {
    left: 56%;
    transform: rotate(49deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 14ms;
    animation-duration: 887ms
}

.confetti .confetti-piece:nth-child(9) {
    left: 63%;
    transform: rotate(-72deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 149ms;
    animation-duration: 805ms
}

.confetti .confetti-piece:nth-child(10) {
    left: 70%;
    transform: rotate(10deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 351ms;
    animation-duration: 1059ms
}

.confetti .confetti-piece:nth-child(11) {
    left: 77%;
    transform: rotate(4deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 307ms;
    animation-duration: 1132ms
}

.confetti .confetti-piece:nth-child(12) {
    left: 84%;
    transform: rotate(42deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 464ms;
    animation-duration: 776ms
}

.confetti .confetti-piece:nth-child(13) {
    left: 91%;
    transform: rotate(-72deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 429ms;
    animation-duration: 818ms
}

.confetti .confetti-piece:nth-child(odd) {
    background: #fff
}

.confetti .confetti-piece:nth-child(even) {
    z-index: 1
}

.confetti .confetti-piece:nth-child(4n) {
    width: 5px;
    height: 12px;
    animation-duration: 2000ms
}

.confetti .confetti-piece:nth-child(3n) {
    width: 3px;
    height: 10px;
    animation-duration: 2500ms;
    animation-delay: 1000ms
}

.confetti .confetti-piece:nth-child(4n-7) {
    background: #746336
}

@keyframes makeItRain {
    from {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        transform: translateY(350px)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes grow {

    0%,
    100% {
        transform: scale(0);
        opacity: 0
    }

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

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

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes checkmark {

    0%,
    100% {
        opacity: 0;
        transform: scale(0)
    }

    10%,
    50%,
    90% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes shiny-btn1 {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0
    }

    80% {
        transform: scale(0) rotate(45deg);
        opacity: .5
    }

    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0
    }
}

@keyframes ring {
    0% {
        transform: rotateZ(0)
    }

    1% {
        transform: rotateZ(15deg)
    }

    3% {
        transform: rotateZ(-14deg)
    }

    5% {
        transform: rotateZ(17deg)
    }

    7% {
        transform: rotateZ(-16deg)
    }

    9% {
        transform: rotateZ(15deg)
    }

    11% {
        transform: rotateZ(-14deg)
    }

    13% {
        transform: rotateZ(13deg)
    }

    15% {
        transform: rotateZ(-12deg)
    }

    17% {
        transform: rotateZ(12deg)
    }

    19% {
        transform: rotateZ(-10deg)
    }

    21% {
        transform: rotateZ(9deg)
    }

    23% {
        transform: rotateZ(-8deg)
    }

    25% {
        transform: rotateZ(7deg)
    }

    27% {
        transform: rotateZ(-5deg)
    }

    29% {
        transform: rotateZ(5deg)
    }

    31% {
        transform: rotateZ(-4deg)
    }

    33% {
        transform: rotateZ(3deg)
    }

    35% {
        transform: rotateZ(-2deg)
    }

    37% {
        transform: rotateZ(1deg)
    }

    39% {
        transform: rotateZ(-1deg)
    }

    41% {
        transform: rotateZ(1deg)
    }

    43% {
        transform: rotateZ(0)
    }

    100% {
        transform: rotateZ(0)
    }
}

@keyframes animatedBackground2 {
    from {
        background-position: 100% 0
    }

    to {
        background-position: 0 100%
    }
}

@keyframes buttons-shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0)
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0)
    }

    30%,
    50%,
    70% {
        transform: translate3d(-2px, 0, 0)
    }

    40%,
    60% {
        transform: translate3d(2px, 0, 0)
    }
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes clock {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes animName {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes marquee-discount {
    0% {
        left: 0
    }

    100% {
        left: -100%
    }
}

@keyframes slideLeft-2 {
    0% {
        transform: translate(-50%)
    }

    100% {
        transform: translate(0.1%)
    }
}

@keyframes slideRight-2 {
    0% {
        transform: translate(50%);
        border-radius: 8px
    }

    100% {
        border-radius: 0;
        transform: translate(0)
    }
}

@keyframes ring-rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes dance {
    0% {
        transform: rotate(10deg)
    }

    16.66%,
    49.98% {
        transform: rotate(-10deg)
    }

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

    66.64%,
    100% {
        transform: rotate(10deg)
    }

    83.8% {
        transform: rotate(5deg)
    }
}

.confetti {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    left: 0;
    top: 0
}

.confetti .confetti-piece {
    position: absolute;
    width: 10px;
    height: 30px;
    background: #c2b07c;
    top: 0;
    opacity: 0
}

.confetti .confetti-piece:nth-child(1) {
    left: 7%;
    transform: rotate(-40deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 182ms;
    animation-duration: 1116ms
}

.confetti .confetti-piece:nth-child(2) {
    left: 14%;
    transform: rotate(4deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 161ms;
    animation-duration: 1076ms
}

.confetti .confetti-piece:nth-child(3) {
    left: 21%;
    transform: rotate(-51deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 481ms;
    animation-duration: 1103ms
}

.confetti .confetti-piece:nth-child(4) {
    left: 28%;
    transform: rotate(61deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 334ms;
    animation-duration: 708ms
}

.confetti .confetti-piece:nth-child(5) {
    left: 35%;
    transform: rotate(-52deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 302ms;
    animation-duration: 776ms
}

.confetti .confetti-piece:nth-child(6) {
    left: 42%;
    transform: rotate(38deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 180ms;
    animation-duration: 1168ms
}

.confetti .confetti-piece:nth-child(7) {
    left: 49%;
    transform: rotate(11deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 395ms;
    animation-duration: 1200ms
}

.confetti .confetti-piece:nth-child(8) {
    left: 56%;
    transform: rotate(49deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 14ms;
    animation-duration: 887ms
}

.confetti .confetti-piece:nth-child(9) {
    left: 63%;
    transform: rotate(-72deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 149ms;
    animation-duration: 805ms
}

.confetti .confetti-piece:nth-child(10) {
    left: 70%;
    transform: rotate(10deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 351ms;
    animation-duration: 1059ms
}

.confetti .confetti-piece:nth-child(11) {
    left: 77%;
    transform: rotate(4deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 307ms;
    animation-duration: 1132ms
}

.confetti .confetti-piece:nth-child(12) {
    left: 84%;
    transform: rotate(42deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 464ms;
    animation-duration: 776ms
}

.confetti .confetti-piece:nth-child(13) {
    left: 91%;
    transform: rotate(-72deg);
    animation: makeItRain 1000ms infinite ease-out;
    animation-delay: 429ms;
    animation-duration: 818ms
}

.confetti .confetti-piece:nth-child(odd) {
    background: #fff
}

.confetti .confetti-piece:nth-child(even) {
    z-index: 1
}

.confetti .confetti-piece:nth-child(4n) {
    width: 5px;
    height: 12px;
    animation-duration: 2000ms
}

.confetti .confetti-piece:nth-child(3n) {
    width: 3px;
    height: 10px;
    animation-duration: 2500ms;
    animation-delay: 1000ms
}

.confetti .confetti-piece:nth-child(4n-7) {
    background: #746336
}

button {
    cursor: pointer
}

.btn {
    line-height: 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
    transition: .3s ease-in-out
}

.btn:hover {
    transition: .3s ease-in-out
}

.btn:focus {
    box-shadow: none
}

.btn.disabled,
.btn:disabled {
    border-color: rgba(0, 0, 0, 0)
}

.btn-solid {
    padding: 13px 29px;
    color: #fff;
    letter-spacing: .05em;
    border: 2px solid var(--theme-color);
    background-image: linear-gradient(30deg, var(--theme-color) 50%, transparent 50%);
    background-size: 850px;
    background-repeat: no-repeat;
    background-position: 0;
    transition: background 300ms ease-in-out
}

.btn-solid:active {
    border-color: var(--theme-color);
    color: var(--theme-color)
}

.btn-solid:hover {
    background-position: 100%;
    color: #000;
    background-color: #fff;
    border-color: var(--theme-color);
    color: var(--theme-color)
}

.btn-solid:hover:active,
.btn-solid:hover:focus {
    border-color: var(--theme-color);
    color: var(--theme-color)
}

.btn-solid.btn-sm {
    padding: 9px 16px
}

.btn-solid.btn-xs {
    padding: 5px 8px;
    text-transform: capitalize
}

.btn-solid.hover-solid {
    transition: none
}

.btn-solid.hover-solid:hover,
.btn-solid.hover-solid:focus {
    background-color: var(--theme-color);
    opacity: .92;
    color: #fff;
    transition: none
}

.btn-solid.disabled,
.btn-solid:disabled {
    background-color: var(--theme-color);
    color: #fff
}

.btn-outline {
    display: inline-block;
    padding: 13px 29px;
    letter-spacing: .05em;
    border: 2px solid var(--theme-color) !important;
    position: relative;
    color: var(--theme-color);
    background-color: rgba(0, 0, 0, 0)
}

.btn-outline:before {
    transition: .5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: var(--theme-color);
    z-index: -2
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--theme-color) !important;
    color: #fff !important
}

.btn-outline:hover i,
.btn-outline:focus i {
    color: #fff !important
}

.btn-outline:hover:before,
.btn-outline:focus:before {
    transition: .5s all ease;
    left: 0;
    right: 0;
    opacity: 1
}

.btn-outline.btn-sm {
    padding: 9px 16px;
    font-size: 12px
}

button.btn.btn-solid:active,
button.btn.btn-outline:active {
    background-image: linear-gradient(30deg, var(--theme-color) 50%, transparent 50%);
    color: #fff;
    background: var(--theme-color);
    border-color: var(--theme-color)
}

.btn-classic:hover {
    background-color: var(--theme-color)
}

.btn-theme {
    background-color: var(--theme-color);
    color: #fff
}

.btn-block {
    display: block;
    width: 100%
}

.btn-close {
    background: none
}

.btn-custom {
    padding: 6px 30px !important;
    border: none
}

.btn-animation {
    position: relative;
    overflow: hidden
}

.btn-animation svg {
    animation: ring 4s .7s ease-in-out infinite;
    font-size: 20px;
    width: unset;
    height: unset;
    margin-top: -7px
}

.btn-animation:before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 5s ease-in-out infinite
}

@keyframes shiny-btn1 {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0
    }

    80% {
        transform: scale(0) rotate(45deg);
        opacity: .5
    }

    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0
    }
}

@keyframes ring {
    0% {
        transform: rotateZ(0)
    }

    1% {
        transform: rotateZ(15deg)
    }

    3% {
        transform: rotateZ(-14deg)
    }

    5% {
        transform: rotateZ(17deg)
    }

    7% {
        transform: rotateZ(-16deg)
    }

    9% {
        transform: rotateZ(15deg)
    }

    11% {
        transform: rotateZ(-14deg)
    }

    13% {
        transform: rotateZ(13deg)
    }

    15% {
        transform: rotateZ(-12deg)
    }

    17% {
        transform: rotateZ(12deg)
    }

    19% {
        transform: rotateZ(-10deg)
    }

    21% {
        transform: rotateZ(9deg)
    }

    23% {
        transform: rotateZ(-8deg)
    }

    25% {
        transform: rotateZ(7deg)
    }

    27% {
        transform: rotateZ(-5deg)
    }

    29% {
        transform: rotateZ(5deg)
    }

    31% {
        transform: rotateZ(-4deg)
    }

    33% {
        transform: rotateZ(3deg)
    }

    35% {
        transform: rotateZ(-2deg)
    }

    37% {
        transform: rotateZ(1deg)
    }

    39% {
        transform: rotateZ(-1deg)
    }

    41% {
        transform: rotateZ(1deg)
    }

    43% {
        transform: rotateZ(0)
    }

    100% {
        transform: rotateZ(0)
    }
}

.gradient-btn {
    background: #854d9c;
    background: linear-gradient(90deg, rgb(133, 77, 156) 0%, rgb(208, 78, 214) 100%);
    padding: calc(11px + 4*(100vw - 320px)/1600) calc(19px + 13*(100vw - 320px)/1600);
    border-radius: calc(3px + 4*(100vw - 320px)/1600);
    position: relative;
    border: unset;
    color: #fff;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 600;
    z-index: 0;
    margin-top: calc(20px + 13*(100vw - 320px)/1600)
}

.gradient-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: calc(3px + 4*(100vw - 320px)/1600);
    padding: 1px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.5) 0%, rgba(153, 153, 153, 0.5) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1
}

.btn-check:checked+.gradient-btn,
:not(.btn-check)+.gradient-btn:active,
.gradient-btn:first-child:active,
.gradient-btn.active,
.gradient-btn.show {
    color: #fff
}

.gradient-btn:hover {
    color: #fff
}

.confetti-wrapper {
    position: fixed !important;
    top: 0;
    width: 100vw;
    height: 100vh;
    left: 0;
    z-index: 999;
    display: none
}

.confetti-wrapper.show {
    display: block
}

[class|=confetti] {
    position: absolute
}

.confetti-0 {
    width: 18px;
    height: 7.2px;
    background-color: #263672;
    top: -10%;
    left: 4%;
    opacity: 1.1318290772;
    transform: rotate(44.2967199295deg);
    animation: drop-0 8.0154093193s 0.1299015571s infinite
}

@keyframes drop-0 {
    100% {
        top: 110%;
        left: 7%
    }
}

.confetti-1 {
    width: 3px;
    height: 1.2px;
    background-color: #d13447;
    top: -10%;
    left: 100%;
    opacity: .954678537;
    transform: rotate(230.4365099515deg);
    animation: drop-1 8.3615840301s 0.959879598s infinite
}

@keyframes drop-1 {
    100% {
        top: 110%;
        left: 107%
    }
}

.confetti-2 {
    width: 12px;
    height: 4.8px;
    background-color: #d13447;
    top: -10%;
    left: 98%;
    opacity: 1.4776611052;
    transform: rotate(155.7266448681deg);
    animation: drop-2 8.1966158928s 0.6062506176s infinite
}

@keyframes drop-2 {
    100% {
        top: 110%;
        left: 104%
    }
}

.confetti-3 {
    width: 13px;
    height: 5.2px;
    background-color: #d13447;
    top: -10%;
    left: 21%;
    opacity: 1.0037577293;
    transform: rotate(258.3017597647deg);
    animation: drop-3 8.1080446453s 0.4419580536s infinite
}

@keyframes drop-3 {
    100% {
        top: 110%;
        left: 26%
    }
}

.confetti-4 {
    width: 6px;
    height: 2.4px;
    background-color: #d13447;
    top: -10%;
    left: 88%;
    opacity: 1.4442685501;
    transform: rotate(253.1127376594deg);
    animation: drop-4 8.5844406895s 0.5759713301s infinite
}

@keyframes drop-4 {
    100% {
        top: 110%;
        left: 94%
    }
}

.confetti-5 {
    width: 6px;
    height: 2.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 19%;
    opacity: .9769717321;
    transform: rotate(285.7139218838deg);
    animation: drop-5 8.4236395197s 0.5838864083s infinite
}

@keyframes drop-5 {
    100% {
        top: 110%;
        left: 24%
    }
}

.confetti-6 {
    width: 12px;
    height: 4.8px;
    background-color: #263672;
    top: -10%;
    left: 69%;
    opacity: .6965182579;
    transform: rotate(284.8721077266deg);
    animation: drop-6 8.951773172s 0.1726800301s infinite
}

@keyframes drop-6 {
    100% {
        top: 110%;
        left: 70%
    }
}

.confetti-7 {
    width: 9px;
    height: 3.6px;
    background-color: #263672;
    top: -10%;
    left: 8%;
    opacity: .6410378428;
    transform: rotate(92.9909791382deg);
    animation: drop-7 8.4683736646s 0.7049681552s infinite
}

@keyframes drop-7 {
    100% {
        top: 110%;
        left: 9%
    }
}

.confetti-8 {
    width: 14px;
    height: 5.6px;
    background-color: #263672;
    top: -10%;
    left: 36%;
    opacity: .5859618101;
    transform: rotate(247.0869433893deg);
    animation: drop-8 8.9938439465s 0.2577624396s infinite
}

@keyframes drop-8 {
    100% {
        top: 110%;
        left: 41%
    }
}

.confetti-9 {
    width: 10px;
    height: 4px;
    background-color: #d13447;
    top: -10%;
    left: 86%;
    opacity: .6992570693;
    transform: rotate(318.1918203378deg);
    animation: drop-9 8.3035761849s 0.0523906511s infinite
}

@keyframes drop-9 {
    100% {
        top: 110%;
        left: 92%
    }
}

.confetti-10 {
    width: 16px;
    height: 6.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 85%;
    opacity: .9849129704;
    transform: rotate(207.2950807009deg);
    animation: drop-10 8.6336740616s 0.4115412645s infinite
}

@keyframes drop-10 {
    100% {
        top: 110%;
        left: 89%
    }
}

.confetti-11 {
    width: 15px;
    height: 6px;
    background-color: #d13447;
    top: -10%;
    left: 71%;
    opacity: 1.2448124014;
    transform: rotate(28.2692800812deg);
    animation: drop-11 8.0020129281s 0.2321775183s infinite
}

@keyframes drop-11 {
    100% {
        top: 110%;
        left: 72%
    }
}

.confetti-12 {
    width: 5px;
    height: 2px;
    background-color: #263672;
    top: -10%;
    left: 65%;
    opacity: 1.2746669825;
    transform: rotate(62.6246909882deg);
    animation: drop-12 8.1844341485s 0.8053766254s infinite
}

@keyframes drop-12 {
    100% {
        top: 110%;
        left: 72%
    }
}

.confetti-13 {
    width: 6px;
    height: 2.4px;
    background-color: #d13447;
    top: -10%;
    left: 94%;
    opacity: .7974166049;
    transform: rotate(328.2747860357deg);
    animation: drop-13 8.3144041249s 0.4767955258s infinite
}

@keyframes drop-13 {
    100% {
        top: 110%;
        left: 96%
    }
}

.confetti-14 {
    width: 6px;
    height: 2.4px;
    background-color: #d13447;
    top: -10%;
    left: 71%;
    opacity: 1.0712393506;
    transform: rotate(39.1201513664deg);
    animation: drop-14 8.5773226144s 0.3922805695s infinite
}

@keyframes drop-14 {
    100% {
        top: 110%;
        left: 77%
    }
}

.confetti-15 {
    width: 6px;
    height: 2.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 70%;
    opacity: 1.3481507802;
    transform: rotate(209.3934524179deg);
    animation: drop-15 8.14773326s 0.9708657608s infinite
}

@keyframes drop-15 {
    100% {
        top: 110%;
        left: 72%
    }
}

.confetti-16 {
    width: 16px;
    height: 6.4px;
    background-color: #263672;
    top: -10%;
    left: 91%;
    opacity: 1.4993770607;
    transform: rotate(70.7598942087deg);
    animation: drop-16 8.5708597152s 0.0712132092s infinite
}

@keyframes drop-16 {
    100% {
        top: 110%;
        left: 98%
    }
}

.confetti-17 {
    width: 7px;
    height: 2.8px;
    background-color: #263672;
    top: -10%;
    left: 37%;
    opacity: .7456742357;
    transform: rotate(53.2648862064deg);
    animation: drop-17 8.4662077932s 0.5464860021s infinite
}

@keyframes drop-17 {
    100% {
        top: 110%;
        left: 45%
    }
}

.confetti-18 {
    width: 13px;
    height: 5.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 41%;
    opacity: 1.3037869591;
    transform: rotate(351.7474510084deg);
    animation: drop-18 8.1449683993s 0.6202199766s infinite
}

@keyframes drop-18 {
    100% {
        top: 110%;
        left: 46%
    }
}

.confetti-19 {
    width: 15px;
    height: 6px;
    background-color: #d13447;
    top: -10%;
    left: 61%;
    opacity: 1.2816645122;
    transform: rotate(182.6143770758deg);
    animation: drop-19 8.5088162178s 0.0192557608s infinite
}

@keyframes drop-19 {
    100% {
        top: 110%;
        left: 67%
    }
}

.confetti-20 {
    width: 6px;
    height: 2.4px;
    background-color: #d13447;
    top: -10%;
    left: 30%;
    opacity: .5748812699;
    transform: rotate(262.1825238179deg);
    animation: drop-20 8.9207264497s 0.3616588178s infinite
}

@keyframes drop-20 {
    100% {
        top: 110%;
        left: 34%
    }
}

.confetti-21 {
    width: 6px;
    height: 2.4px;
    background-color: #d13447;
    top: -10%;
    left: 30%;
    opacity: .9972508122;
    transform: rotate(83.385131414deg);
    animation: drop-21 8.6183597866s 0.9185305006s infinite
}

@keyframes drop-21 {
    100% {
        top: 110%;
        left: 33%
    }
}

.confetti-22 {
    width: 1px;
    height: 0.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 3%;
    opacity: 1.2706723703;
    transform: rotate(188.7290754969deg);
    animation: drop-22 8.0136200488s 0.2621991366s infinite
}

@keyframes drop-22 {
    100% {
        top: 110%;
        left: 11%
    }
}

.confetti-23 {
    width: 8px;
    height: 3.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 18%;
    opacity: .7717582933;
    transform: rotate(207.3319951562deg);
    animation: drop-23 8.9295418537s 0.6026189201s infinite
}

@keyframes drop-23 {
    100% {
        top: 110%;
        left: 25%
    }
}

.confetti-24 {
    width: 16px;
    height: 6.4px;
    background-color: #d13447;
    top: -10%;
    left: 77%;
    opacity: .9763339648;
    transform: rotate(144.6375117211deg);
    animation: drop-24 8.3208312155s 0.2674664783s infinite
}

@keyframes drop-24 {
    100% {
        top: 110%;
        left: 85%
    }
}

.confetti-25 {
    width: 1px;
    height: 0.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 41%;
    opacity: 1.1640317796;
    transform: rotate(123.7211780377deg);
    animation: drop-25 8.1271221482s 0.553992865s infinite
}

@keyframes drop-25 {
    100% {
        top: 110%;
        left: 44%
    }
}

.confetti-26 {
    width: 7px;
    height: 2.8px;
    background-color: #d13447;
    top: -10%;
    left: 76%;
    opacity: 1.3007290588;
    transform: rotate(131.7997925237deg);
    animation: drop-26 8.7589846044s 0.9629992738s infinite
}

@keyframes drop-26 {
    100% {
        top: 110%;
        left: 82%
    }
}

.confetti-27 {
    width: 11px;
    height: 4.4px;
    background-color: #263672;
    top: -10%;
    left: 50%;
    opacity: .8275957946;
    transform: rotate(13.512825817deg);
    animation: drop-27 8.7972334131s 0.7638402013s infinite
}

@keyframes drop-27 {
    100% {
        top: 110%;
        left: 54%
    }
}

.confetti-28 {
    width: 6px;
    height: 2.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 1%;
    opacity: .8809822173;
    transform: rotate(11.0715123649deg);
    animation: drop-28 8.6898865508s 0.8998461147s infinite
}

@keyframes drop-28 {
    100% {
        top: 110%;
        left: 8%
    }
}

.confetti-29 {
    width: 10px;
    height: 4px;
    background-color: #d13447;
    top: -10%;
    left: 88%;
    opacity: .9655039769;
    transform: rotate(252.8862441431deg);
    animation: drop-29 8.1033149802s 0.8446376853s infinite
}

@keyframes drop-29 {
    100% {
        top: 110%;
        left: 96%
    }
}

.confetti-30 {
    width: 12px;
    height: 4.8px;
    background-color: #263672;
    top: -10%;
    left: 61%;
    opacity: .5841961429;
    transform: rotate(31.6964488274deg);
    animation: drop-30 8.7536787707s 0.3951112867s infinite
}

@keyframes drop-30 {
    100% {
        top: 110%;
        left: 65%
    }
}

.confetti-31 {
    width: 16px;
    height: 6.4px;
    background-color: #d13447;
    top: -10%;
    left: 76%;
    opacity: 1.4307621608;
    transform: rotate(275.9304374828deg);
    animation: drop-31 8.8852528077s 0.1303017176s infinite
}

@keyframes drop-31 {
    100% {
        top: 110%;
        left: 84%
    }
}

.confetti-32 {
    width: 17px;
    height: 6.8px;
    background-color: #ffbf00;
    top: -10%;
    left: 100%;
    opacity: .8982575786;
    transform: rotate(111.5593266082deg);
    animation: drop-32 8.1274970817s 0.381040103s infinite
}

@keyframes drop-32 {
    100% {
        top: 110%;
        left: 108%
    }
}

.confetti-33 {
    width: 10px;
    height: 4px;
    background-color: #d13447;
    top: -10%;
    left: 97%;
    opacity: 1.449141004;
    transform: rotate(213.1823747561deg);
    animation: drop-33 8.199413177s 0.6343563395s infinite
}

@keyframes drop-33 {
    100% {
        top: 110%;
        left: 104%
    }
}

.confetti-34 {
    width: 15px;
    height: 6px;
    background-color: #ffbf00;
    top: -10%;
    left: 57%;
    opacity: .5212425754;
    transform: rotate(74.6982450255deg);
    animation: drop-34 8.1330822792s 0.1510527365s infinite
}

@keyframes drop-34 {
    100% {
        top: 110%;
        left: 61%
    }
}

.confetti-35 {
    width: 5px;
    height: 2px;
    background-color: #263672;
    top: -10%;
    left: 72%;
    opacity: .7292421158;
    transform: rotate(90.9731831019deg);
    animation: drop-35 8.3151664933s 0.8679504163s infinite
}

@keyframes drop-35 {
    100% {
        top: 110%;
        left: 76%
    }
}

.confetti-36 {
    width: 5px;
    height: 2px;
    background-color: #263672;
    top: -10%;
    left: 73%;
    opacity: .8879392444;
    transform: rotate(230.1342842038deg);
    animation: drop-36 8.1147720653s 0.7060452748s infinite
}

@keyframes drop-36 {
    100% {
        top: 110%;
        left: 75%
    }
}

.confetti-37 {
    width: 10px;
    height: 4px;
    background-color: #ffbf00;
    top: -10%;
    left: 85%;
    opacity: .8179312235;
    transform: rotate(210.7842381905deg);
    animation: drop-37 8.2742955101s 0.1524805971s infinite
}

@keyframes drop-37 {
    100% {
        top: 110%;
        left: 92%
    }
}

.confetti-38 {
    width: 12px;
    height: 4.8px;
    background-color: #263672;
    top: -10%;
    left: 69%;
    opacity: 1.4735441072;
    transform: rotate(326.79136534deg);
    animation: drop-38 8.8918424794s 0.8586345724s infinite
}

@keyframes drop-38 {
    100% {
        top: 110%;
        left: 73%
    }
}

.confetti-39 {
    width: 3px;
    height: 1.2px;
    background-color: #263672;
    top: -10%;
    left: 35%;
    opacity: 1.227299727;
    transform: rotate(33.1909030221deg);
    animation: drop-39 8.6637487431s 0.8123658232s infinite
}

@keyframes drop-39 {
    100% {
        top: 110%;
        left: 42%
    }
}

.confetti-40 {
    width: 3px;
    height: 1.2px;
    background-color: #263672;
    top: -10%;
    left: 6%;
    opacity: 1.4994600312;
    transform: rotate(353.3505670948deg);
    animation: drop-40 8.5480380695s 0.6867012795s infinite
}

@keyframes drop-40 {
    100% {
        top: 110%;
        left: 12%
    }
}

.confetti-41 {
    width: 6px;
    height: 2.4px;
    background-color: #263672;
    top: -10%;
    left: 32%;
    opacity: .9746680249;
    transform: rotate(179.1542127233deg);
    animation: drop-41 8.1744312245s 0.043049496s infinite
}

@keyframes drop-41 {
    100% {
        top: 110%;
        left: 34%
    }
}

.confetti-42 {
    width: 6px;
    height: 2.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 46%;
    opacity: 1.2751315528;
    transform: rotate(242.0566699255deg);
    animation: drop-42 8.1098456934s 0.3650551947s infinite
}

@keyframes drop-42 {
    100% {
        top: 110%;
        left: 53%
    }
}

.confetti-43 {
    width: 3px;
    height: 1.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 59%;
    opacity: 1.4493343464;
    transform: rotate(202.4175599198deg);
    animation: drop-43 8.7681806946s 0.8742852903s infinite
}

@keyframes drop-43 {
    100% {
        top: 110%;
        left: 60%
    }
}

.confetti-44 {
    width: 15px;
    height: 6px;
    background-color: #263672;
    top: -10%;
    left: 82%;
    opacity: 1.4299876425;
    transform: rotate(113.3284127735deg);
    animation: drop-44 8.0402457364s 0.1707406572s infinite
}

@keyframes drop-44 {
    100% {
        top: 110%;
        left: 83%
    }
}

.confetti-45 {
    width: 13px;
    height: 5.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 66%;
    opacity: .649018378;
    transform: rotate(238.0918875171deg);
    animation: drop-45 8.5753973854s 0.6550247211s infinite
}

@keyframes drop-45 {
    100% {
        top: 110%;
        left: 73%
    }
}

.confetti-46 {
    width: 4px;
    height: 1.6px;
    background-color: #d13447;
    top: -10%;
    left: 85%;
    opacity: 1.2500691937;
    transform: rotate(144.9605035502deg);
    animation: drop-46 8.4905664746s 0.5310862798s infinite
}

@keyframes drop-46 {
    100% {
        top: 110%;
        left: 87%
    }
}

.confetti-47 {
    width: 9px;
    height: 3.6px;
    background-color: #ffbf00;
    top: -10%;
    left: 1%;
    opacity: .6539193369;
    transform: rotate(265.0054253094deg);
    animation: drop-47 8.407980317s 0.9030089617s infinite
}

@keyframes drop-47 {
    100% {
        top: 110%;
        left: 6%
    }
}

.confetti-48 {
    width: 18px;
    height: 7.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 3%;
    opacity: .5672392089;
    transform: rotate(219.0589288167deg);
    animation: drop-48 8.6792615834s 0.3744445341s infinite
}

@keyframes drop-48 {
    100% {
        top: 110%;
        left: 4%
    }
}

.confetti-49 {
    width: 3px;
    height: 1.2px;
    background-color: #263672;
    top: -10%;
    left: 24%;
    opacity: 1.3231950889;
    transform: rotate(171.4266429916deg);
    animation: drop-49 8.4353962858s 0.9686590291s infinite
}

@keyframes drop-49 {
    100% {
        top: 110%;
        left: 27%
    }
}

.confetti-50 {
    width: 9px;
    height: 3.6px;
    background-color: #263672;
    top: -10%;
    left: 30%;
    opacity: .7465005321;
    transform: rotate(187.388063348deg);
    animation: drop-50 8.8356311841s 0.5481024817s infinite
}

@keyframes drop-50 {
    100% {
        top: 110%;
        left: 36%
    }
}

.confetti-51 {
    width: 17px;
    height: 6.8px;
    background-color: #d13447;
    top: -10%;
    left: 85%;
    opacity: 1.4132669073;
    transform: rotate(87.5995218825deg);
    animation: drop-51 8.9661871348s 0.1632553194s infinite
}

@keyframes drop-51 {
    100% {
        top: 110%;
        left: 86%
    }
}

.confetti-52 {
    width: 7px;
    height: 2.8px;
    background-color: #263672;
    top: -10%;
    left: 80%;
    opacity: .9177286397;
    transform: rotate(183.2171646699deg);
    animation: drop-52 8.816087749s 0.0264728462s infinite
}

@keyframes drop-52 {
    100% {
        top: 110%;
        left: 88%
    }
}

.confetti-53 {
    width: 1px;
    height: 0.4px;
    background-color: #d13447;
    top: -10%;
    left: 33%;
    opacity: 1.4761647042;
    transform: rotate(352.5457807749deg);
    animation: drop-53 8.2078807607s 0.2305588669s infinite
}

@keyframes drop-53 {
    100% {
        top: 110%;
        left: 39%
    }
}

.confetti-54 {
    width: 1px;
    height: 0.4px;
    background-color: #263672;
    top: -10%;
    left: 4%;
    opacity: 1.4192582319;
    transform: rotate(244.5874869122deg);
    animation: drop-54 8.9192567682s 0.26714337s infinite
}

@keyframes drop-54 {
    100% {
        top: 110%;
        left: 9%
    }
}

.confetti-55 {
    width: 11px;
    height: 4.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 91%;
    opacity: 1.3069526442;
    transform: rotate(181.2984866959deg);
    animation: drop-55 8.2989224209s 0.6344047105s infinite
}

@keyframes drop-55 {
    100% {
        top: 110%;
        left: 99%
    }
}

.confetti-56 {
    width: 17px;
    height: 6.8px;
    background-color: #d13447;
    top: -10%;
    left: 16%;
    opacity: 1.4981676812;
    transform: rotate(266.9385204748deg);
    animation: drop-56 8.0909167924s 0.3420413719s infinite
}

@keyframes drop-56 {
    100% {
        top: 110%;
        left: 24%
    }
}

.confetti-57 {
    width: 9px;
    height: 3.6px;
    background-color: #d13447;
    top: -10%;
    left: 52%;
    opacity: .6089827127;
    transform: rotate(184.9929771431deg);
    animation: drop-57 8.2430110752s 0.0891544425s infinite
}

@keyframes drop-57 {
    100% {
        top: 110%;
        left: 54%
    }
}

.confetti-58 {
    width: 18px;
    height: 7.2px;
    background-color: #263672;
    top: -10%;
    left: 22%;
    opacity: 1.1390069516;
    transform: rotate(61.2206390494deg);
    animation: drop-58 8.1370381913s 0.4957080439s infinite
}

@keyframes drop-58 {
    100% {
        top: 110%;
        left: 26%
    }
}

.confetti-59 {
    width: 8px;
    height: 3.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 60%;
    opacity: .9009662708;
    transform: rotate(110.8912009479deg);
    animation: drop-59 8.9541086984s 0.5410421119s infinite
}

@keyframes drop-59 {
    100% {
        top: 110%;
        left: 68%
    }
}

.confetti-60 {
    width: 14px;
    height: 5.6px;
    background-color: #263672;
    top: -10%;
    left: 32%;
    opacity: .6791071049;
    transform: rotate(255.2416026311deg);
    animation: drop-60 8.768308802s 0.3778562628s infinite
}

@keyframes drop-60 {
    100% {
        top: 110%;
        left: 40%
    }
}

.confetti-61 {
    width: 10px;
    height: 4px;
    background-color: #ffbf00;
    top: -10%;
    left: 1%;
    opacity: 1.3147085814;
    transform: rotate(61.3155784326deg);
    animation: drop-61 8.6313199227s 0.1166924945s infinite
}

@keyframes drop-61 {
    100% {
        top: 110%;
        left: 2%
    }
}

.confetti-62 {
    width: 10px;
    height: 4px;
    background-color: #d13447;
    top: -10%;
    left: 16%;
    opacity: .8981093538;
    transform: rotate(163.4202231938deg);
    animation: drop-62 8.4966258327s 0.8062092985s infinite
}

@keyframes drop-62 {
    100% {
        top: 110%;
        left: 19%
    }
}

.confetti-63 {
    width: 5px;
    height: 2px;
    background-color: #ffbf00;
    top: -10%;
    left: 84%;
    opacity: 1.4039292958;
    transform: rotate(5.7743244852deg);
    animation: drop-63 8.6047351927s 0.0017525696s infinite
}

@keyframes drop-63 {
    100% {
        top: 110%;
        left: 85%
    }
}

.confetti-64 {
    width: 1px;
    height: 0.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 42%;
    opacity: 1.0733723287;
    transform: rotate(248.8637340584deg);
    animation: drop-64 8.9611637389s 0.2346134758s infinite
}

@keyframes drop-64 {
    100% {
        top: 110%;
        left: 45%
    }
}

.confetti-65 {
    width: 15px;
    height: 6px;
    background-color: #ffbf00;
    top: -10%;
    left: 31%;
    opacity: 1.1615514911;
    transform: rotate(270.0100870893deg);
    animation: drop-65 8.3663374939s 0.1609583382s infinite
}

@keyframes drop-65 {
    100% {
        top: 110%;
        left: 35%
    }
}

.confetti-66 {
    width: 3px;
    height: 1.2px;
    background-color: #263672;
    top: -10%;
    left: 80%;
    opacity: .8494102008;
    transform: rotate(239.2320313143deg);
    animation: drop-66 8.7136395303s 0.058491477s infinite
}

@keyframes drop-66 {
    100% {
        top: 110%;
        left: 88%
    }
}

.confetti-67 {
    width: 10px;
    height: 4px;
    background-color: #263672;
    top: -10%;
    left: 8%;
    opacity: .5267079601;
    transform: rotate(193.5060356813deg);
    animation: drop-67 8.9770635913s 0.7051210139s infinite
}

@keyframes drop-67 {
    100% {
        top: 110%;
        left: 15%
    }
}

.confetti-68 {
    width: 6px;
    height: 2.4px;
    background-color: #263672;
    top: -10%;
    left: 31%;
    opacity: 1.3731875473;
    transform: rotate(147.8190896449deg);
    animation: drop-68 8.3195332174s 0.2019567543s infinite
}

@keyframes drop-68 {
    100% {
        top: 110%;
        left: 39%
    }
}

.confetti-69 {
    width: 17px;
    height: 6.8px;
    background-color: #ffbf00;
    top: -10%;
    left: 95%;
    opacity: 1.2851994118;
    transform: rotate(185.8886629483deg);
    animation: drop-69 8.9444267437s 0.4809647867s infinite
}

@keyframes drop-69 {
    100% {
        top: 110%;
        left: 100%
    }
}

.confetti-70 {
    width: 7px;
    height: 2.8px;
    background-color: #d13447;
    top: -10%;
    left: 49%;
    opacity: 1.4917805405;
    transform: rotate(217.2343121234deg);
    animation: drop-70 8.015225338s 0.1606057512s infinite
}

@keyframes drop-70 {
    100% {
        top: 110%;
        left: 57%
    }
}

.confetti-71 {
    width: 16px;
    height: 6.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 49%;
    opacity: 1.2367249821;
    transform: rotate(142.8922455027deg);
    animation: drop-71 8.9333919547s 0.4987051435s infinite
}

@keyframes drop-71 {
    100% {
        top: 110%;
        left: 57%
    }
}

.confetti-72 {
    width: 14px;
    height: 5.6px;
    background-color: #ffbf00;
    top: -10%;
    left: 72%;
    opacity: .7134507448;
    transform: rotate(41.0152384743deg);
    animation: drop-72 8.8270633184s 0.7072783092s infinite
}

@keyframes drop-72 {
    100% {
        top: 110%;
        left: 74%
    }
}

.confetti-73 {
    width: 8px;
    height: 3.2px;
    background-color: #d13447;
    top: -10%;
    left: 50%;
    opacity: 1.1540747052;
    transform: rotate(19.2022780399deg);
    animation: drop-73 8.2700887844s 0.0066885097s infinite
}

@keyframes drop-73 {
    100% {
        top: 110%;
        left: 56%
    }
}

.confetti-74 {
    width: 5px;
    height: 2px;
    background-color: #263672;
    top: -10%;
    left: 80%;
    opacity: .5824003539;
    transform: rotate(37.15960866deg);
    animation: drop-74 8.3032942129s 0.7537499178s infinite
}

@keyframes drop-74 {
    100% {
        top: 110%;
        left: 85%
    }
}

.confetti-75 {
    width: 5px;
    height: 2px;
    background-color: #263672;
    top: -10%;
    left: 2%;
    opacity: 1.4133965802;
    transform: rotate(245.1892626817deg);
    animation: drop-75 8.8345504488s 0.3595881648s infinite
}

@keyframes drop-75 {
    100% {
        top: 110%;
        left: 4%
    }
}

.confetti-76 {
    width: 14px;
    height: 5.6px;
    background-color: #d13447;
    top: -10%;
    left: 54%;
    opacity: 1.2423968752;
    transform: rotate(212.1452017872deg);
    animation: drop-76 8.5249772885s 0.491757563s infinite
}

@keyframes drop-76 {
    100% {
        top: 110%;
        left: 60%
    }
}

.confetti-77 {
    width: 14px;
    height: 5.6px;
    background-color: #d13447;
    top: -10%;
    left: 11%;
    opacity: .9168194439;
    transform: rotate(269.9064838577deg);
    animation: drop-77 8.0021135611s 0.9593975893s infinite
}

@keyframes drop-77 {
    100% {
        top: 110%;
        left: 13%
    }
}

.confetti-78 {
    width: 5px;
    height: 2px;
    background-color: #d13447;
    top: -10%;
    left: 37%;
    opacity: .8328960069;
    transform: rotate(168.5809161556deg);
    animation: drop-78 8.886945934s 0.6623295831s infinite
}

@keyframes drop-78 {
    100% {
        top: 110%;
        left: 39%
    }
}

.confetti-79 {
    width: 7px;
    height: 2.8px;
    background-color: #d13447;
    top: -10%;
    left: 69%;
    opacity: .65870053;
    transform: rotate(11.6359124361deg);
    animation: drop-79 8.0943678882s 0.7587749745s infinite
}

@keyframes drop-79 {
    100% {
        top: 110%;
        left: 71%
    }
}

.confetti-80 {
    width: 10px;
    height: 4px;
    background-color: #d13447;
    top: -10%;
    left: 94%;
    opacity: .909400334;
    transform: rotate(3.3895934799deg);
    animation: drop-80 8.6046266483s 0.6945995285s infinite
}

@keyframes drop-80 {
    100% {
        top: 110%;
        left: 97%
    }
}

.confetti-81 {
    width: 15px;
    height: 6px;
    background-color: #ffbf00;
    top: -10%;
    left: 47%;
    opacity: .804124193;
    transform: rotate(309.8528144342deg);
    animation: drop-81 8.1148456991s 0.1064122739s infinite
}

@keyframes drop-81 {
    100% {
        top: 110%;
        left: 48%
    }
}

.confetti-82 {
    width: 16px;
    height: 6.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 71%;
    opacity: 1.2118794537;
    transform: rotate(198.6093520299deg);
    animation: drop-82 8.7741249787s 0.65221583s infinite
}

@keyframes drop-82 {
    100% {
        top: 110%;
        left: 75%
    }
}

.confetti-83 {
    width: 7px;
    height: 2.8px;
    background-color: #d13447;
    top: -10%;
    left: 43%;
    opacity: .7887404238;
    transform: rotate(57.3763327491deg);
    animation: drop-83 8.4888202082s 0.7966932795s infinite
}

@keyframes drop-83 {
    100% {
        top: 110%;
        left: 50%
    }
}

.confetti-84 {
    width: 8px;
    height: 3.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 82%;
    opacity: .969865751;
    transform: rotate(257.3575577286deg);
    animation: drop-84 8.2821615373s 0.8006178382s infinite
}

@keyframes drop-84 {
    100% {
        top: 110%;
        left: 87%
    }
}

.confetti-85 {
    width: 18px;
    height: 7.2px;
    background-color: #263672;
    top: -10%;
    left: 49%;
    opacity: 1.43787183;
    transform: rotate(257.1388556974deg);
    animation: drop-85 8.4018470198s 0.122577287s infinite
}

@keyframes drop-85 {
    100% {
        top: 110%;
        left: 57%
    }
}

.confetti-86 {
    width: 17px;
    height: 6.8px;
    background-color: #d13447;
    top: -10%;
    left: 5%;
    opacity: .6320155015;
    transform: rotate(38.2767733871deg);
    animation: drop-86 8.6435479663s 0.1513797759s infinite
}

@keyframes drop-86 {
    100% {
        top: 110%;
        left: 11%
    }
}

.confetti-87 {
    width: 9px;
    height: 3.6px;
    background-color: #d13447;
    top: -10%;
    left: 66%;
    opacity: .5375087037;
    transform: rotate(234.6802244891deg);
    animation: drop-87 8.4965210931s 0.75125314s infinite
}

@keyframes drop-87 {
    100% {
        top: 110%;
        left: 69%
    }
}

.confetti-88 {
    width: 11px;
    height: 4.4px;
    background-color: #263672;
    top: -10%;
    left: 12%;
    opacity: 1.4692615119;
    transform: rotate(349.0933192456deg);
    animation: drop-88 8.4134127394s 0.7344162678s infinite
}

@keyframes drop-88 {
    100% {
        top: 110%;
        left: 18%
    }
}

.confetti-89 {
    width: 5px;
    height: 2px;
    background-color: #d13447;
    top: -10%;
    left: 54%;
    opacity: .7402259824;
    transform: rotate(56.221250684deg);
    animation: drop-89 8.9220352129s 0.6179168624s infinite
}

@keyframes drop-89 {
    100% {
        top: 110%;
        left: 58%
    }
}

.confetti-90 {
    width: 10px;
    height: 4px;
    background-color: #ffbf00;
    top: -10%;
    left: 66%;
    opacity: .5351326403;
    transform: rotate(234.6229950073deg);
    animation: drop-90 8.1128446696s 0.8269976869s infinite
}

@keyframes drop-90 {
    100% {
        top: 110%;
        left: 72%
    }
}

.confetti-91 {
    width: 14px;
    height: 5.6px;
    background-color: #263672;
    top: -10%;
    left: 39%;
    opacity: 1.3937020328;
    transform: rotate(255.0972898187deg);
    animation: drop-91 8.3921081078s 0.5702152555s infinite
}

@keyframes drop-91 {
    100% {
        top: 110%;
        left: 46%
    }
}

.confetti-92 {
    width: 14px;
    height: 5.6px;
    background-color: #ffbf00;
    top: -10%;
    left: 25%;
    opacity: .8906006989;
    transform: rotate(302.0905142276deg);
    animation: drop-92 8.0332882095s 0.7634207146s infinite
}

@keyframes drop-92 {
    100% {
        top: 110%;
        left: 28%
    }
}

.confetti-93 {
    width: 18px;
    height: 7.2px;
    background-color: #263672;
    top: -10%;
    left: 24%;
    opacity: .6999771606;
    transform: rotate(119.0882232757deg);
    animation: drop-93 8.6802050815s 0.5947953923s infinite
}

@keyframes drop-93 {
    100% {
        top: 110%;
        left: 27%
    }
}

.confetti-94 {
    width: 16px;
    height: 6.4px;
    background-color: #d13447;
    top: -10%;
    left: 60%;
    opacity: .7834437891;
    transform: rotate(204.8379417436deg);
    animation: drop-94 8.1141619403s 0.0681975623s infinite
}

@keyframes drop-94 {
    100% {
        top: 110%;
        left: 61%
    }
}

.confetti-95 {
    width: 8px;
    height: 3.2px;
    background-color: #263672;
    top: -10%;
    left: 38%;
    opacity: 1.007044191;
    transform: rotate(323.4938306872deg);
    animation: drop-95 8.108908115s 0.0456676438s infinite
}

@keyframes drop-95 {
    100% {
        top: 110%;
        left: 40%
    }
}

.confetti-96 {
    width: 7px;
    height: 2.8px;
    background-color: #d13447;
    top: -10%;
    left: 29%;
    opacity: 1.000654934;
    transform: rotate(346.855639807deg);
    animation: drop-96 8.8009971061s 0.8143098261s infinite
}

@keyframes drop-96 {
    100% {
        top: 110%;
        left: 37%
    }
}

.confetti-97 {
    width: 3px;
    height: 1.2px;
    background-color: #263672;
    top: -10%;
    left: 42%;
    opacity: .5563296475;
    transform: rotate(315.4844009904deg);
    animation: drop-97 8.3066125036s 0.3844538031s infinite
}

@keyframes drop-97 {
    100% {
        top: 110%;
        left: 48%
    }
}

.confetti-98 {
    width: 10px;
    height: 4px;
    background-color: #263672;
    top: -10%;
    left: 3%;
    opacity: 1.3736133086;
    transform: rotate(190.3684711132deg);
    animation: drop-98 8.3996382052s 0.8814866546s infinite
}

@keyframes drop-98 {
    100% {
        top: 110%;
        left: 8%
    }
}

.confetti-99 {
    width: 16px;
    height: 6.4px;
    background-color: #d13447;
    top: -10%;
    left: 14%;
    opacity: 1.1262232306;
    transform: rotate(292.1757084913deg);
    animation: drop-99 8.9790962437s 0.7086552978s infinite
}

@keyframes drop-99 {
    100% {
        top: 110%;
        left: 18%
    }
}

.confetti-100 {
    width: 9px;
    height: 3.6px;
    background-color: #263672;
    top: -10%;
    left: 87%;
    opacity: .8006274385;
    transform: rotate(227.6886937487deg);
    animation: drop-100 8.7863493135s 0.3609425075s infinite
}

@keyframes drop-100 {
    100% {
        top: 110%;
        left: 94%
    }
}

.confetti-101 {
    width: 18px;
    height: 7.2px;
    background-color: #263672;
    top: -10%;
    left: 82%;
    opacity: 1.3597771578;
    transform: rotate(352.4625611986deg);
    animation: drop-101 8.5182628194s 0.3589096246s infinite
}

@keyframes drop-101 {
    100% {
        top: 110%;
        left: 90%
    }
}

.confetti-102 {
    width: 7px;
    height: 2.8px;
    background-color: #d13447;
    top: -10%;
    left: 95%;
    opacity: 1.343374904;
    transform: rotate(35.2433493042deg);
    animation: drop-102 8.2898443364s 0.1550568885s infinite
}

@keyframes drop-102 {
    100% {
        top: 110%;
        left: 99%
    }
}

.confetti-103 {
    width: 16px;
    height: 6.4px;
    background-color: #d13447;
    top: -10%;
    left: 81%;
    opacity: 1.043975444;
    transform: rotate(319.5442738081deg);
    animation: drop-103 8.6030096943s 0.5798845203s infinite
}

@keyframes drop-103 {
    100% {
        top: 110%;
        left: 87%
    }
}

.confetti-104 {
    width: 8px;
    height: 3.2px;
    background-color: #d13447;
    top: -10%;
    left: 94%;
    opacity: .6104957102;
    transform: rotate(106.0203561823deg);
    animation: drop-104 8.4697057228s 0.947701306s infinite
}

@keyframes drop-104 {
    100% {
        top: 110%;
        left: 102%
    }
}

.confetti-105 {
    width: 4px;
    height: 1.6px;
    background-color: #263672;
    top: -10%;
    left: 72%;
    opacity: 1.0765986416;
    transform: rotate(241.1565938807deg);
    animation: drop-105 8.0608064195s 0.1649841735s infinite
}

@keyframes drop-105 {
    100% {
        top: 110%;
        left: 73%
    }
}

.confetti-106 {
    width: 13px;
    height: 5.2px;
    background-color: #d13447;
    top: -10%;
    left: 8%;
    opacity: .5741716813;
    transform: rotate(100.2618055307deg);
    animation: drop-106 8.8297261604s 0.8897675801s infinite
}

@keyframes drop-106 {
    100% {
        top: 110%;
        left: 13%
    }
}

.confetti-107 {
    width: 18px;
    height: 7.2px;
    background-color: #d13447;
    top: -10%;
    left: 9%;
    opacity: 1.2460632324;
    transform: rotate(171.1813225587deg);
    animation: drop-107 8.0331228744s 0.7976233652s infinite
}

@keyframes drop-107 {
    100% {
        top: 110%;
        left: 13%
    }
}

.confetti-108 {
    width: 11px;
    height: 4.4px;
    background-color: #d13447;
    top: -10%;
    left: 55%;
    opacity: 1.0130933683;
    transform: rotate(98.468209481deg);
    animation: drop-108 8.7472080561s 0.0851584582s infinite
}

@keyframes drop-108 {
    100% {
        top: 110%;
        left: 56%
    }
}

.confetti-109 {
    width: 16px;
    height: 6.4px;
    background-color: #d13447;
    top: -10%;
    left: 18%;
    opacity: 1.3663849861;
    transform: rotate(23.7821763026deg);
    animation: drop-109 8.1845537285s 0.6088623572s infinite
}

@keyframes drop-109 {
    100% {
        top: 110%;
        left: 26%
    }
}

.confetti-110 {
    width: 10px;
    height: 4px;
    background-color: #d13447;
    top: -10%;
    left: 39%;
    opacity: 1.3845799335;
    transform: rotate(217.5269660253deg);
    animation: drop-110 8.9257811998s 0.0031035499s infinite
}

@keyframes drop-110 {
    100% {
        top: 110%;
        left: 41%
    }
}

.confetti-111 {
    width: 17px;
    height: 6.8px;
    background-color: #263672;
    top: -10%;
    left: 65%;
    opacity: .8964180496;
    transform: rotate(229.5715578619deg);
    animation: drop-111 8.8020942264s 0.3392372396s infinite
}

@keyframes drop-111 {
    100% {
        top: 110%;
        left: 68%
    }
}

.confetti-112 {
    width: 3px;
    height: 1.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 33%;
    opacity: 1.3018420929;
    transform: rotate(223.46741674deg);
    animation: drop-112 8.315757157s 0.1631129868s infinite
}

@keyframes drop-112 {
    100% {
        top: 110%;
        left: 40%
    }
}

.confetti-113 {
    width: 14px;
    height: 5.6px;
    background-color: #d13447;
    top: -10%;
    left: 79%;
    opacity: 1.06084563;
    transform: rotate(46.275517444deg);
    animation: drop-113 8.9407767503s 0.8584948834s infinite
}

@keyframes drop-113 {
    100% {
        top: 110%;
        left: 85%
    }
}

.confetti-114 {
    width: 14px;
    height: 5.6px;
    background-color: #d13447;
    top: -10%;
    left: 67%;
    opacity: .5909781253;
    transform: rotate(327.9551499005deg);
    animation: drop-114 8.1275838459s 0.1631306263s infinite
}

@keyframes drop-114 {
    100% {
        top: 110%;
        left: 69%
    }
}

.confetti-115 {
    width: 16px;
    height: 6.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 14%;
    opacity: 1.1171295004;
    transform: rotate(331.7704526243deg);
    animation: drop-115 8.9451642669s 0.1651581751s infinite
}

@keyframes drop-115 {
    100% {
        top: 110%;
        left: 19%
    }
}

.confetti-116 {
    width: 15px;
    height: 6px;
    background-color: #ffbf00;
    top: -10%;
    left: 74%;
    opacity: .7672433439;
    transform: rotate(209.0864613437deg);
    animation: drop-116 8.3471770921s 0.6341317213s infinite
}

@keyframes drop-116 {
    100% {
        top: 110%;
        left: 75%
    }
}

.confetti-117 {
    width: 18px;
    height: 7.2px;
    background-color: #263672;
    top: -10%;
    left: 100%;
    opacity: .7677314092;
    transform: rotate(165.470660447deg);
    animation: drop-117 8.5604073696s 0.7558353225s infinite
}

@keyframes drop-117 {
    100% {
        top: 110%;
        left: 104%
    }
}

.confetti-118 {
    width: 6px;
    height: 2.4px;
    background-color: #d13447;
    top: -10%;
    left: 21%;
    opacity: .9711821805;
    transform: rotate(324.0531146492deg);
    animation: drop-118 8.6950745802s 0.5107111732s infinite
}

@keyframes drop-118 {
    100% {
        top: 110%;
        left: 23%
    }
}

.confetti-119 {
    width: 16px;
    height: 6.4px;
    background-color: #d13447;
    top: -10%;
    left: 12%;
    opacity: .5605179295;
    transform: rotate(300.0333508236deg);
    animation: drop-119 8.9266848821s 0.5671388699s infinite
}

@keyframes drop-119 {
    100% {
        top: 110%;
        left: 16%
    }
}

.confetti-120 {
    width: 8px;
    height: 3.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 64%;
    opacity: 1.358882322;
    transform: rotate(80.0715092818deg);
    animation: drop-120 8.6209054579s 0.8401860525s infinite
}

@keyframes drop-120 {
    100% {
        top: 110%;
        left: 66%
    }
}

.confetti-121 {
    width: 3px;
    height: 1.2px;
    background-color: #263672;
    top: -10%;
    left: 60%;
    opacity: .7849581819;
    transform: rotate(346.2276530082deg);
    animation: drop-121 8.1890924641s 0.4611837493s infinite
}

@keyframes drop-121 {
    100% {
        top: 110%;
        left: 66%
    }
}

.confetti-122 {
    width: 18px;
    height: 7.2px;
    background-color: #ffbf00;
    top: -10%;
    left: 49%;
    opacity: 1.490404093;
    transform: rotate(158.2208892296deg);
    animation: drop-122 8.7739494197s 0.7659980593s infinite
}

@keyframes drop-122 {
    100% {
        top: 110%;
        left: 53%
    }
}

.confetti-123 {
    width: 18px;
    height: 7.2px;
    background-color: #d13447;
    top: -10%;
    left: 49%;
    opacity: .5663658078;
    transform: rotate(212.2512112975deg);
    animation: drop-123 8.8290572549s 0.0656230832s infinite
}

@keyframes drop-123 {
    100% {
        top: 110%;
        left: 53%
    }
}

.confetti-124 {
    width: 15px;
    height: 6px;
    background-color: #ffbf00;
    top: -10%;
    left: 94%;
    opacity: .9489375123;
    transform: rotate(62.7501637639deg);
    animation: drop-124 8.0953295557s 0.3418385254s infinite
}

@keyframes drop-124 {
    100% {
        top: 110%;
        left: 99%
    }
}

.confetti-125 {
    width: 12px;
    height: 4.8px;
    background-color: #263672;
    top: -10%;
    left: 1%;
    opacity: .5098456;
    transform: rotate(272.0701133503deg);
    animation: drop-125 8.9733575856s 0.6575045064s infinite
}

@keyframes drop-125 {
    100% {
        top: 110%;
        left: 4%
    }
}

.confetti-126 {
    width: 10px;
    height: 4px;
    background-color: #263672;
    top: -10%;
    left: 37%;
    opacity: .9326386301;
    transform: rotate(243.9700195011deg);
    animation: drop-126 8.8318195452s 0.9531011034s infinite
}

@keyframes drop-126 {
    100% {
        top: 110%;
        left: 40%
    }
}

.confetti-127 {
    width: 4px;
    height: 1.6px;
    background-color: #ffbf00;
    top: -10%;
    left: 56%;
    opacity: 1.2030401226;
    transform: rotate(242.910356158deg);
    animation: drop-127 8.6095829621s 0.5266308442s infinite
}

@keyframes drop-127 {
    100% {
        top: 110%;
        left: 64%
    }
}

.confetti-128 {
    width: 13px;
    height: 5.2px;
    background-color: #263672;
    top: -10%;
    left: 36%;
    opacity: 1.2974594768;
    transform: rotate(271.3447902058deg);
    animation: drop-128 8.1409130286s 0.8895578419s infinite
}

@keyframes drop-128 {
    100% {
        top: 110%;
        left: 41%
    }
}

.confetti-129 {
    width: 12px;
    height: 4.8px;
    background-color: #d13447;
    top: -10%;
    left: 6%;
    opacity: .9585733595;
    transform: rotate(229.8976215987deg);
    animation: drop-129 8.7529474352s 0.8319465479s infinite
}

@keyframes drop-129 {
    100% {
        top: 110%;
        left: 14%
    }
}

.confetti-130 {
    width: 8px;
    height: 3.2px;
    background-color: #d13447;
    top: -10%;
    left: 84%;
    opacity: 1.1292699654;
    transform: rotate(299.7147256718deg);
    animation: drop-130 8.4221088999s 0.4665539034s infinite
}

@keyframes drop-130 {
    100% {
        top: 110%;
        left: 88%
    }
}

.confetti-131 {
    width: 1px;
    height: 0.4px;
    background-color: #d13447;
    top: -10%;
    left: 38%;
    opacity: 1.36675637;
    transform: rotate(224.1671449895deg);
    animation: drop-131 8.9154523205s 0.907967283s infinite
}

@keyframes drop-131 {
    100% {
        top: 110%;
        left: 43%
    }
}

.confetti-132 {
    width: 17px;
    height: 6.8px;
    background-color: #263672;
    top: -10%;
    left: 68%;
    opacity: .5656345043;
    transform: rotate(254.8904127929deg);
    animation: drop-132 8.5202664289s 0.6762759226s infinite
}

@keyframes drop-132 {
    100% {
        top: 110%;
        left: 76%
    }
}

.confetti-133 {
    width: 7px;
    height: 2.8px;
    background-color: #ffbf00;
    top: -10%;
    left: 51%;
    opacity: 1.2530779077;
    transform: rotate(205.6960369926deg);
    animation: drop-133 8.9592859331s 0.8379423252s infinite
}

@keyframes drop-133 {
    100% {
        top: 110%;
        left: 54%
    }
}

.confetti-134 {
    width: 10px;
    height: 4px;
    background-color: #ffbf00;
    top: -10%;
    left: 14%;
    opacity: 1.1838981918;
    transform: rotate(157.3497797343deg);
    animation: drop-134 8.6497632743s 0.7784645627s infinite
}

@keyframes drop-134 {
    100% {
        top: 110%;
        left: 17%
    }
}

.confetti-135 {
    width: 18px;
    height: 7.2px;
    background-color: #d13447;
    top: -10%;
    left: 81%;
    opacity: 1.0709695966;
    transform: rotate(19.116020259deg);
    animation: drop-135 8.0820635011s 0.0779719406s infinite
}

@keyframes drop-135 {
    100% {
        top: 110%;
        left: 88%
    }
}

.confetti-136 {
    width: 6px;
    height: 2.4px;
    background-color: #d13447;
    top: -10%;
    left: 32%;
    opacity: 1.3609017416;
    transform: rotate(136.3938277067deg);
    animation: drop-136 8.4907711452s 0.5671649633s infinite
}

@keyframes drop-136 {
    100% {
        top: 110%;
        left: 34%
    }
}

.confetti-137 {
    width: 1px;
    height: 0.4px;
    background-color: #ffbf00;
    top: -10%;
    left: 56%;
    opacity: 1.2330010974;
    transform: rotate(227.7760853519deg);
    animation: drop-137 8.8273318752s 0.3661976082s infinite
}

@keyframes drop-137 {
    100% {
        top: 110%;
        left: 59%
    }
}

.confetti-138 {
    width: 7px;
    height: 2.8px;
    background-color: #ffbf00;
    top: -10%;
    left: 17%;
    opacity: .754998348;
    transform: rotate(157.923899deg);
    animation: drop-138 8.835185992s 0.5540381858s infinite
}

@keyframes drop-138 {
    100% {
        top: 110%;
        left: 21%
    }
}

.confetti-139 {
    width: 15px;
    height: 6px;
    background-color: #263672;
    top: -10%;
    left: 33%;
    opacity: .6954485995;
    transform: rotate(137.3357373592deg);
    animation: drop-139 8.4817153406s 0.7350104632s infinite
}

@keyframes drop-139 {
    100% {
        top: 110%;
        left: 37%
    }
}

.confetti-140 {
    width: 15px;
    height: 6px;
    background-color: #d13447;
    top: -10%;
    left: 19%;
    opacity: .7152772815;
    transform: rotate(165.2135773709deg);
    animation: drop-140 8.3596139096s 0.4612414089s infinite
}

@keyframes drop-140 {
    100% {
        top: 110%;
        left: 22%
    }
}

.confetti-141 {
    width: 15px;
    height: 6px;
    background-color: #d13447;
    top: -10%;
    left: 14%;
    opacity: .5124498419;
    transform: rotate(189.1599601655deg);
    animation: drop-141 8.1508175895s 0.8213612374s infinite
}

@keyframes drop-141 {
    100% {
        top: 110%;
        left: 17%
    }
}

.confetti-142 {
    width: 17px;
    height: 6.8px;
    background-color: #ffbf00;
    top: -10%;
    left: 77%;
    opacity: 1.2779656336;
    transform: rotate(315.3358377704deg);
    animation: drop-142 8.724204614s 0.6552419657s infinite
}

@keyframes drop-142 {
    100% {
        top: 110%;
        left: 81%
    }
}

.confetti-143 {
    width: 17px;
    height: 6.8px;
    background-color: #d13447;
    top: -10%;
    left: 22%;
    opacity: 1.1726328937;
    transform: rotate(246.9154567956deg);
    animation: drop-143 8.0392596767s 0.4126007316s infinite
}

@keyframes drop-143 {
    100% {
        top: 110%;
        left: 26%
    }
}

.confetti-144 {
    width: 5px;
    height: 2px;
    background-color: #263672;
    top: -10%;
    left: 9%;
    opacity: 1.3497934859;
    transform: rotate(178.4270016997deg);
    animation: drop-144 8.0392331692s 0.4580467947s infinite
}

@keyframes drop-144 {
    100% {
        top: 110%;
        left: 13%
    }
}

.confetti-145 {
    width: 8px;
    height: 3.2px;
    background-color: #d13447;
    top: -10%;
    left: 16%;
    opacity: .5069770991;
    transform: rotate(181.9813391598deg);
    animation: drop-145 8.4043648127s 0.2791397132s infinite
}

@keyframes drop-145 {
    100% {
        top: 110%;
        left: 24%
    }
}

.confetti-146 {
    width: 9px;
    height: 3.6px;
    background-color: #263672;
    top: -10%;
    left: 32%;
    opacity: 1.3620740232;
    transform: rotate(333.7720282042deg);
    animation: drop-146 8.9029599236s 0.0412191157s infinite
}

@keyframes drop-146 {
    100% {
        top: 110%;
        left: 35%
    }
}

.confetti-147 {
    width: 5px;
    height: 2px;
    background-color: #263672;
    top: -10%;
    left: 73%;
    opacity: 1.0985720257;
    transform: rotate(129.3525584827deg);
    animation: drop-147 8.6418753148s 0.4558242015s infinite
}

@keyframes drop-147 {
    100% {
        top: 110%;
        left: 76%
    }
}

.confetti-148 {
    width: 2px;
    height: 0.8px;
    background-color: #d13447;
    top: -10%;
    left: 64%;
    opacity: 1.2834017333;
    transform: rotate(99.8700452197deg);
    animation: drop-148 8.6272042017s 0.7736271776s infinite
}

@keyframes drop-148 {
    100% {
        top: 110%;
        left: 66%
    }
}

.confetti-149 {
    width: 17px;
    height: 6.8px;
    background-color: #ffbf00;
    top: -10%;
    left: 59%;
    opacity: .71189201;
    transform: rotate(65.5225727532deg);
    animation: drop-149 8.0139093526s 0.5000559898s infinite
}

@keyframes drop-149 {
    100% {
        top: 110%;
        left: 67%
    }
}

.confetti-150 {
    width: 12px;
    height: 4.8px;
    background-color: #263672;
    top: -10%;
    left: 85%;
    opacity: 1.2378346309;
    transform: rotate(359.1558794553deg);
    animation: drop-150 8.2803813239s 0.6367054108s infinite
}

@keyframes drop-150 {
    100% {
        top: 110%;
        left: 86%
    }
}

.intl-tel-input {
    position: relative;
    display: block
}

.intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box
}

.intl-tel-input .hide {
    display: none
}

.intl-tel-input .v-hide {
    visibility: hidden
}

.intl-tel-input input {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0
}

.intl-tel-input input [type=text],
.intl-tel-input input [type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0
}

.intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px
}

.intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 100%;
    padding: 0 8px 0 8px
}

.intl-tel-input .selected-flag .iti-flag {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto
}

.intl-tel-input .selected-flag .iti-arrow {
    position: relative;
    top: 0;
    margin-top: -2px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 3px solid rgba(0, 0, 0, 0);
    border-right: 3px solid rgba(0, 0, 0, 0);
    border-top: 4px solid #555
}

.intl-tel-input .selected-flag .iti-arrow.up {
    border-top: none;
    border-bottom: 4px solid #555
}

.intl-tel-input .flag-box {
    display: inline-block;
    width: 20px;
    vertical-align: middle;
    margin-right: 6px
}

.intl-tel-input .divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc
}

.intl-tel-input .country {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%
}

.intl-tel-input .country .dial-code {
    color: #999
}

.intl-tel-input .country.highlight {
    background-color: #efefe7
}

.intl-tel-input .country-name {
    vertical-align: middle;
    margin-right: 6px
}

.intl-tel-input .dial-code {
    vertical-align: middle
}

.intl-tel-input .country-listing {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
    background-color: #fff;
    border: 1px solid #ccc;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll
}

.intl-tel-input .country-listing.dropup {
    bottom: 100%;
    margin-bottom: -1px
}

.intl-tel-input.allow-dropdown input {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.intl-tel-input.allow-dropdown input[type=text] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.intl-tel-input.allow-dropdown input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.intl-tel-input.allow-dropdown .flag-container {
    right: auto;
    left: 0
}

.intl-tel-input.allow-dropdown .flag-container:hover {
    cursor: pointer
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
    background-color: #efefe7
}

.intl-tel-input.allow-dropdown .selected-flag {
    width: 46px
}

.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover {
    cursor: default
}

.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag {
    background-color: rgba(0, 0, 0, 0)
}

.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover {
    cursor: default
}

.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag {
    background-color: rgba(0, 0, 0, 0)
}

.intl-tel-input.separate-dial-code input {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.intl-tel-input.separate-dial-code input[type=text],
.intl-tel-input.separate-dial-code input[type=number] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.intl-tel-input.separate-dial-code input[type=text].flag-input,
.intl-tel-input.separate-dial-code input[type=number].flag-input {
    padding: 0 0 0 30px !important;
    box-shadow: none !important;
    border: 0 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    width: 70px !important
}

.intl-tel-input.separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 112px !important;
    margin-left: 0
}

.intl-tel-input.separate-dial-code .flag-container {
    right: auto;
    left: 0
}

.intl-tel-input.separate-dial-code .selected-flag {
    width: max-content;
    background-color: #efefe7;
    display: flex;
    align-items: center;
    gap: 10px
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 28px
}

.intl-tel-input.separate-dial-code.iti-sdc-2 input {
    padding-left: 66px
}

.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {
    padding-left: 66px
}

.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel] {
    padding-left: 66px
}

.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
    width: 60px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input {
    padding-left: 76px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {
    padding-left: 76px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
    padding-left: 76px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
    width: 70px
}

.intl-tel-input.separate-dial-code.iti-sdc-3 input {
    padding-left: 74px
}

.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {
    padding-left: 74px
}

.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel] {
    padding-left: 74px
}

.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
    width: 68px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input {
    padding-left: 84px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {
    padding-left: 84px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
    padding-left: 84px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    width: 78px
}

.intl-tel-input.separate-dial-code.iti-sdc-4 input {
    padding-left: 82px
}

.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {
    padding-left: 82px
}

.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel] {
    padding-left: 82px
}

.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
    width: 76px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input {
    padding-left: 92px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
    padding-left: 92px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
    padding-left: 92px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
    width: 86px
}

.intl-tel-input.separate-dial-code.iti-sdc-5 input {
    padding-left: 90px
}

.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {
    padding-left: 90px
}

.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel] {
    padding-left: 90px
}

.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
    width: 84px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input {
    padding-left: 100px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {
    padding-left: 100px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
    padding-left: 100px
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
    width: 94px
}

.intl-tel-input.iti-container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px
}

.intl-tel-input.iti-container:hover {
    cursor: pointer
}

.iti-mobile .intl-tel-input.iti-container {
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    position: fixed
}

.iti-mobile .intl-tel-input .country-list {
    max-height: 100%;
    width: 100%
}

.iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em
}

.iti-flag {
    width: 20px;
    width: 20px;
    height: 15px;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags.png");
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-position: 20px 0
}

.iti-flag.be {
    width: 18px;
    height: 15px;
    background-position: -440px 0px
}

.iti-flag.ch {
    width: 15px;
    height: 15px;
    background-position: -944px 0px
}

.iti-flag.mc {
    width: 19px;
    height: 15px;
    background-position: -3139px 0px
}

.iti-flag.ne {
    width: 18px;
    height: 15px;
    background-position: -3666px 0px
}

.iti-flag.np {
    width: 13px;
    height: 15px;
    background-position: -3796px 0px;
    background-color: rgba(0, 0, 0, 0)
}

.iti-flag.va {
    width: 15px;
    height: 15px;
    background-position: -5307px 0px
}

.iti-flag.ac {
    height: 10px;
    background-position: 0px 0px
}

.iti-flag.ad {
    height: 14px;
    background-position: -22px 0px
}

.iti-flag.ae {
    height: 10px;
    background-position: -44px 0px
}

.iti-flag.af {
    height: 14px;
    background-position: -66px 0px
}

.iti-flag.ag {
    height: 14px;
    background-position: -88px 0px
}

.iti-flag.ai {
    height: 10px;
    background-position: -110px 0px
}

.iti-flag.al {
    height: 15px;
    background-position: -132px 0px
}

.iti-flag.am {
    height: 10px;
    background-position: -154px 0px
}

.iti-flag.ao {
    height: 14px;
    background-position: -176px 0px
}

.iti-flag.aq {
    height: 14px;
    background-position: -198px 0px
}

.iti-flag.ar {
    height: 13px;
    background-position: -220px 0px
}

.iti-flag.as {
    height: 10px;
    background-position: -242px 0px
}

.iti-flag.at {
    height: 14px;
    background-position: -264px 0px
}

.iti-flag.au {
    height: 10px;
    background-position: -286px 0px
}

.iti-flag.aw {
    height: 14px;
    background-position: -308px 0px
}

.iti-flag.ax {
    height: 13px;
    background-position: -330px 0px
}

.iti-flag.az {
    height: 10px;
    background-position: -352px 0px
}

.iti-flag.ba {
    height: 10px;
    background-position: -374px 0px
}

.iti-flag.bb {
    height: 14px;
    background-position: -396px 0px
}

.iti-flag.bd {
    height: 12px;
    background-position: -418px 0px
}

.iti-flag.bf {
    height: 14px;
    background-position: -460px 0px
}

.iti-flag.bg {
    height: 12px;
    background-position: -482px 0px
}

.iti-flag.bh {
    height: 12px;
    background-position: -504px 0px
}

.iti-flag.bi {
    height: 12px;
    background-position: -526px 0px
}

.iti-flag.bj {
    height: 14px;
    background-position: -548px 0px
}

.iti-flag.bl {
    height: 14px;
    background-position: -570px 0px
}

.iti-flag.bm {
    height: 10px;
    background-position: -592px 0px
}

.iti-flag.bn {
    height: 10px;
    background-position: -614px 0px
}

.iti-flag.bo {
    height: 14px;
    background-position: -636px 0px
}

.iti-flag.bq {
    height: 14px;
    background-position: -658px 0px
}

.iti-flag.br {
    height: 14px;
    background-position: -680px 0px
}

.iti-flag.bs {
    height: 10px;
    background-position: -702px 0px
}

.iti-flag.bt {
    height: 14px;
    background-position: -724px 0px
}

.iti-flag.bv {
    height: 15px;
    background-position: -746px 0px
}

.iti-flag.bw {
    height: 14px;
    background-position: -768px 0px
}

.iti-flag.by {
    height: 10px;
    background-position: -790px 0px
}

.iti-flag.bz {
    height: 14px;
    background-position: -812px 0px
}

.iti-flag.ca {
    height: 10px;
    background-position: -834px 0px
}

.iti-flag.cc {
    height: 10px;
    background-position: -856px 0px
}

.iti-flag.cd {
    height: 15px;
    background-position: -878px 0px
}

.iti-flag.cf {
    height: 14px;
    background-position: -900px 0px
}

.iti-flag.cg {
    height: 14px;
    background-position: -922px 0px
}

.iti-flag.ci {
    height: 14px;
    background-position: -961px 0px
}

.iti-flag.ck {
    height: 10px;
    background-position: -983px 0px
}

.iti-flag.cl {
    height: 14px;
    background-position: -1005px 0px
}

.iti-flag.cm {
    height: 14px;
    background-position: -1027px 0px
}

.iti-flag.cn {
    height: 14px;
    background-position: -1049px 0px
}

.iti-flag.co {
    height: 14px;
    background-position: -1071px 0px
}

.iti-flag.cp {
    height: 14px;
    background-position: -1093px 0px
}

.iti-flag.cr {
    height: 12px;
    background-position: -1115px 0px
}

.iti-flag.cu {
    height: 10px;
    background-position: -1137px 0px
}

.iti-flag.cv {
    height: 12px;
    background-position: -1159px 0px
}

.iti-flag.cw {
    height: 14px;
    background-position: -1181px 0px
}

.iti-flag.cx {
    height: 10px;
    background-position: -1203px 0px
}

.iti-flag.cy {
    height: 13px;
    background-position: -1225px 0px
}

.iti-flag.cz {
    height: 14px;
    background-position: -1247px 0px
}

.iti-flag.de {
    height: 12px;
    background-position: -1269px 0px
}

.iti-flag.dg {
    height: 10px;
    background-position: -1291px 0px
}

.iti-flag.dj {
    height: 14px;
    background-position: -1313px 0px
}

.iti-flag.dk {
    height: 15px;
    background-position: -1335px 0px
}

.iti-flag.dm {
    height: 10px;
    background-position: -1357px 0px
}

.iti-flag.do {
    height: 13px;
    background-position: -1379px 0px
}

.iti-flag.dz {
    height: 14px;
    background-position: -1401px 0px
}

.iti-flag.ea {
    height: 14px;
    background-position: -1423px 0px
}

.iti-flag.ec {
    height: 14px;
    background-position: -1445px 0px
}

.iti-flag.ee {
    height: 13px;
    background-position: -1467px 0px
}

.iti-flag.eg {
    height: 14px;
    background-position: -1489px 0px
}

.iti-flag.eh {
    height: 10px;
    background-position: -1511px 0px
}

.iti-flag.er {
    height: 10px;
    background-position: -1533px 0px
}

.iti-flag.es {
    height: 14px;
    background-position: -1555px 0px
}

.iti-flag.et {
    height: 10px;
    background-position: -1577px 0px
}

.iti-flag.eu {
    height: 14px;
    background-position: -1599px 0px
}

.iti-flag.fi {
    height: 12px;
    background-position: -1621px 0px
}

.iti-flag.fj {
    height: 10px;
    background-position: -1643px 0px
}

.iti-flag.fk {
    height: 10px;
    background-position: -1665px 0px
}

.iti-flag.fm {
    height: 11px;
    background-position: -1687px 0px
}

.iti-flag.fo {
    height: 15px;
    background-position: -1709px 0px
}

.iti-flag.fr {
    height: 14px;
    background-position: -1731px 0px
}

.iti-flag.ga {
    height: 15px;
    background-position: -1753px 0px
}

.iti-flag.gb {
    height: 10px;
    background-position: -1775px 0px
}

.iti-flag.gd {
    height: 12px;
    background-position: -1797px 0px
}

.iti-flag.ge {
    height: 14px;
    background-position: -1819px 0px
}

.iti-flag.gf {
    height: 14px;
    background-position: -1841px 0px
}

.iti-flag.gg {
    height: 14px;
    background-position: -1863px 0px
}

.iti-flag.gh {
    height: 14px;
    background-position: -1885px 0px
}

.iti-flag.gi {
    height: 10px;
    background-position: -1907px 0px
}

.iti-flag.gl {
    height: 14px;
    background-position: -1929px 0px
}

.iti-flag.gm {
    height: 14px;
    background-position: -1951px 0px
}

.iti-flag.gn {
    height: 14px;
    background-position: -1973px 0px
}

.iti-flag.gp {
    height: 14px;
    background-position: -1995px 0px
}

.iti-flag.gq {
    height: 14px;
    background-position: -2017px 0px
}

.iti-flag.gr {
    height: 14px;
    background-position: -2039px 0px
}

.iti-flag.gs {
    height: 10px;
    background-position: -2061px 0px
}

.iti-flag.gt {
    height: 13px;
    background-position: -2083px 0px
}

.iti-flag.gu {
    height: 11px;
    background-position: -2105px 0px
}

.iti-flag.gw {
    height: 10px;
    background-position: -2127px 0px
}

.iti-flag.gy {
    height: 12px;
    background-position: -2149px 0px
}

.iti-flag.hk {
    height: 14px;
    background-position: -2171px 0px
}

.iti-flag.hm {
    height: 10px;
    background-position: -2193px 0px
}

.iti-flag.hn {
    height: 10px;
    background-position: -2215px 0px
}

.iti-flag.hr {
    height: 10px;
    background-position: -2237px 0px
}

.iti-flag.ht {
    height: 12px;
    background-position: -2259px 0px
}

.iti-flag.hu {
    height: 10px;
    background-position: -2281px 0px
}

.iti-flag.ic {
    height: 14px;
    background-position: -2303px 0px
}

.iti-flag.id {
    height: 14px;
    background-position: -2325px 0px
}

.iti-flag.ie {
    height: 10px;
    background-position: -2347px 0px
}

.iti-flag.il {
    height: 15px;
    background-position: -2369px 0px
}

.iti-flag.im {
    height: 10px;
    background-position: -2391px 0px
}

.iti-flag.in {
    height: 14px;
    background-position: -2413px 0px
}

.iti-flag.io {
    height: 10px;
    background-position: -2435px 0px
}

.iti-flag.iq {
    height: 14px;
    background-position: -2457px 0px
}

.iti-flag.ir {
    height: 12px;
    background-position: -2479px 0px
}

.iti-flag.is {
    height: 15px;
    background-position: -2501px 0px
}

.iti-flag.it {
    height: 14px;
    background-position: -2523px 0px
}

.iti-flag.je {
    height: 12px;
    background-position: -2545px 0px
}

.iti-flag.jm {
    height: 10px;
    background-position: -2567px 0px
}

.iti-flag.jo {
    height: 10px;
    background-position: -2589px 0px
}

.iti-flag.jp {
    height: 14px;
    background-position: -2611px 0px
}

.iti-flag.ke {
    height: 14px;
    background-position: -2633px 0px
}

.iti-flag.kg {
    height: 12px;
    background-position: -2655px 0px
}

.iti-flag.kh {
    height: 13px;
    background-position: -2677px 0px
}

.iti-flag.ki {
    height: 10px;
    background-position: -2699px 0px
}

.iti-flag.km {
    height: 12px;
    background-position: -2721px 0px
}

.iti-flag.kn {
    height: 14px;
    background-position: -2743px 0px
}

.iti-flag.kp {
    height: 10px;
    background-position: -2765px 0px
}

.iti-flag.kr {
    height: 14px;
    background-position: -2787px 0px
}

.iti-flag.kw {
    height: 10px;
    background-position: -2809px 0px
}

.iti-flag.ky {
    height: 10px;
    background-position: -2831px 0px
}

.iti-flag.kz {
    height: 10px;
    background-position: -2853px 0px
}

.iti-flag.la {
    height: 14px;
    background-position: -2875px 0px
}

.iti-flag.lb {
    height: 14px;
    background-position: -2897px 0px
}

.iti-flag.lc {
    height: 10px;
    background-position: -2919px 0px
}

.iti-flag.li {
    height: 12px;
    background-position: -2941px 0px
}

.iti-flag.lk {
    height: 10px;
    background-position: -2963px 0px
}

.iti-flag.lr {
    height: 11px;
    background-position: -2985px 0px
}

.iti-flag.ls {
    height: 14px;
    background-position: -3007px 0px
}

.iti-flag.lt {
    height: 12px;
    background-position: -3029px 0px
}

.iti-flag.lu {
    height: 12px;
    background-position: -3051px 0px
}

.iti-flag.lv {
    height: 10px;
    background-position: -3073px 0px
}

.iti-flag.ly {
    height: 10px;
    background-position: -3095px 0px
}

.iti-flag.ma {
    height: 14px;
    background-position: -3117px 0px
}

.iti-flag.md {
    height: 10px;
    background-position: -3160px 0px
}

.iti-flag.me {
    height: 10px;
    background-position: -3182px 0px
}

.iti-flag.mf {
    height: 14px;
    background-position: -3204px 0px
}

.iti-flag.mg {
    height: 14px;
    background-position: -3226px 0px
}

.iti-flag.mh {
    height: 11px;
    background-position: -3248px 0px
}

.iti-flag.mk {
    height: 10px;
    background-position: -3270px 0px
}

.iti-flag.ml {
    height: 14px;
    background-position: -3292px 0px
}

.iti-flag.mm {
    height: 14px;
    background-position: -3314px 0px
}

.iti-flag.mn {
    height: 10px;
    background-position: -3336px 0px
}

.iti-flag.mo {
    height: 14px;
    background-position: -3358px 0px
}

.iti-flag.mp {
    height: 10px;
    background-position: -3380px 0px
}

.iti-flag.mq {
    height: 14px;
    background-position: -3402px 0px
}

.iti-flag.mr {
    height: 14px;
    background-position: -3424px 0px
}

.iti-flag.ms {
    height: 10px;
    background-position: -3446px 0px
}

.iti-flag.mt {
    height: 14px;
    background-position: -3468px 0px
}

.iti-flag.mu {
    height: 14px;
    background-position: -3490px 0px
}

.iti-flag.mv {
    height: 14px;
    background-position: -3512px 0px
}

.iti-flag.mw {
    height: 14px;
    background-position: -3534px 0px
}

.iti-flag.mx {
    height: 12px;
    background-position: -3556px 0px
}

.iti-flag.my {
    height: 10px;
    background-position: -3578px 0px
}

.iti-flag.mz {
    height: 14px;
    background-position: -3600px 0px
}

.iti-flag.na {
    height: 14px;
    background-position: -3622px 0px
}

.iti-flag.nc {
    height: 10px;
    background-position: -3644px 0px
}

.iti-flag.nf {
    height: 10px;
    background-position: -3686px 0px
}

.iti-flag.ng {
    height: 10px;
    background-position: -3708px 0px
}

.iti-flag.ni {
    height: 12px;
    background-position: -3730px 0px
}

.iti-flag.nl {
    height: 14px;
    background-position: -3752px 0px
}

.iti-flag.no {
    height: 15px;
    background-position: -3774px 0px
}

.iti-flag.nr {
    height: 10px;
    background-position: -3811px 0px
}

.iti-flag.nu {
    height: 10px;
    background-position: -3833px 0px
}

.iti-flag.nz {
    height: 10px;
    background-position: -3855px 0px
}

.iti-flag.om {
    height: 10px;
    background-position: -3877px 0px
}

.iti-flag.pa {
    height: 14px;
    background-position: -3899px 0px
}

.iti-flag.pe {
    height: 14px;
    background-position: -3921px 0px
}

.iti-flag.pf {
    height: 14px;
    background-position: -3943px 0px
}

.iti-flag.pg {
    height: 15px;
    background-position: -3965px 0px
}

.iti-flag.ph {
    height: 10px;
    background-position: -3987px 0px
}

.iti-flag.pk {
    height: 14px;
    background-position: -4009px 0px
}

.iti-flag.pl {
    height: 13px;
    background-position: -4031px 0px
}

.iti-flag.pm {
    height: 14px;
    background-position: -4053px 0px
}

.iti-flag.pn {
    height: 10px;
    background-position: -4075px 0px
}

.iti-flag.pr {
    height: 14px;
    background-position: -4097px 0px
}

.iti-flag.ps {
    height: 10px;
    background-position: -4119px 0px
}

.iti-flag.pt {
    height: 14px;
    background-position: -4141px 0px
}

.iti-flag.pw {
    height: 13px;
    background-position: -4163px 0px
}

.iti-flag.py {
    height: 11px;
    background-position: -4185px 0px
}

.iti-flag.qa {
    height: 8px;
    background-position: -4207px 0px
}

.iti-flag.re {
    height: 14px;
    background-position: -4229px 0px
}

.iti-flag.ro {
    height: 14px;
    background-position: -4251px 0px
}

.iti-flag.rs {
    height: 14px;
    background-position: -4273px 0px
}

.iti-flag.ru {
    height: 14px;
    background-position: -4295px 0px
}

.iti-flag.rw {
    height: 14px;
    background-position: -4317px 0px
}

.iti-flag.sa {
    height: 14px;
    background-position: -4339px 0px
}

.iti-flag.sb {
    height: 10px;
    background-position: -4361px 0px
}

.iti-flag.sc {
    height: 10px;
    background-position: -4383px 0px
}

.iti-flag.sd {
    height: 10px;
    background-position: -4405px 0px
}

.iti-flag.se {
    height: 13px;
    background-position: -4427px 0px
}

.iti-flag.sg {
    height: 14px;
    background-position: -4449px 0px
}

.iti-flag.sh {
    height: 10px;
    background-position: -4471px 0px
}

.iti-flag.si {
    height: 10px;
    background-position: -4493px 0px
}

.iti-flag.sj {
    height: 15px;
    background-position: -4515px 0px
}

.iti-flag.sk {
    height: 14px;
    background-position: -4537px 0px
}

.iti-flag.sl {
    height: 14px;
    background-position: -4559px 0px
}

.iti-flag.sm {
    height: 15px;
    background-position: -4581px 0px
}

.iti-flag.sn {
    height: 14px;
    background-position: -4603px 0px
}

.iti-flag.so {
    height: 14px;
    background-position: -4625px 0px
}

.iti-flag.sr {
    height: 14px;
    background-position: -4647px 0px
}

.iti-flag.ss {
    height: 10px;
    background-position: -4669px 0px
}

.iti-flag.st {
    height: 10px;
    background-position: -4691px 0px
}

.iti-flag.sv {
    height: 12px;
    background-position: -4713px 0px
}

.iti-flag.sx {
    height: 14px;
    background-position: -4735px 0px
}

.iti-flag.sy {
    height: 14px;
    background-position: -4757px 0px
}

.iti-flag.sz {
    height: 14px;
    background-position: -4779px 0px
}

.iti-flag.ta {
    height: 10px;
    background-position: -4801px 0px
}

.iti-flag.tc {
    height: 10px;
    background-position: -4823px 0px
}

.iti-flag.td {
    height: 14px;
    background-position: -4845px 0px
}

.iti-flag.tf {
    height: 14px;
    background-position: -4867px 0px
}

.iti-flag.tg {
    height: 13px;
    background-position: -4889px 0px
}

.iti-flag.th {
    height: 14px;
    background-position: -4911px 0px
}

.iti-flag.tj {
    height: 10px;
    background-position: -4933px 0px
}

.iti-flag.tk {
    height: 10px;
    background-position: -4955px 0px
}

.iti-flag.tl {
    height: 10px;
    background-position: -4977px 0px
}

.iti-flag.tm {
    height: 14px;
    background-position: -4999px 0px
}

.iti-flag.tn {
    height: 14px;
    background-position: -5021px 0px
}

.iti-flag.to {
    height: 10px;
    background-position: -5043px 0px
}

.iti-flag.tr {
    height: 14px;
    background-position: -5065px 0px
}

.iti-flag.tt {
    height: 12px;
    background-position: -5087px 0px
}

.iti-flag.tv {
    height: 10px;
    background-position: -5109px 0px
}

.iti-flag.tw {
    height: 14px;
    background-position: -5131px 0px
}

.iti-flag.tz {
    height: 14px;
    background-position: -5153px 0px
}

.iti-flag.ua {
    height: 14px;
    background-position: -5175px 0px
}

.iti-flag.ug {
    height: 14px;
    background-position: -5197px 0px
}

.iti-flag.um {
    height: 11px;
    background-position: -5219px 0px
}

.iti-flag.us {
    height: 11px;
    background-position: -5241px 0px
}

.iti-flag.uy {
    height: 14px;
    background-position: -5263px 0px
}

.iti-flag.uz {
    height: 10px;
    background-position: -5285px 0px
}

.iti-flag.vc {
    height: 14px;
    background-position: -5324px 0px
}

.iti-flag.ve {
    height: 14px;
    background-position: -5346px 0px
}

.iti-flag.vg {
    height: 10px;
    background-position: -5368px 0px
}

.iti-flag.vi {
    height: 14px;
    background-position: -5390px 0px
}

.iti-flag.vn {
    height: 14px;
    background-position: -5412px 0px
}

.iti-flag.vu {
    height: 12px;
    background-position: -5434px 0px
}

.iti-flag.wf {
    height: 14px;
    background-position: -5456px 0px
}

.iti-flag.ws {
    height: 10px;
    background-position: -5478px 0px
}

.iti-flag.xk {
    height: 15px;
    background-position: -5500px 0px
}

.iti-flag.ye {
    height: 14px;
    background-position: -5522px 0px
}

.iti-flag.yt {
    height: 14px;
    background-position: -5544px 0px
}

.iti-flag.za {
    height: 14px;
    background-position: -5566px 0px
}

.iti-flag.zm {
    height: 14px;
    background-position: -5588px 0px
}

.iti-flag.zw {
    height: 10px;
    background-position: -5610px 0px
}

@media(max-width: 500px) {
    .intl-tel-input .country-listing {
        white-space: normal
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .iti-flag {
        background-size: 5630px 15px;
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags@2x.png")
    }
}

@media only screen and (min--moz-device-pixel-ratio: 2) {
    .iti-flag {
        background-size: 5630px 15px;
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags@2x.png")
    }
}

@media only screen and (-o-min-device-pixel-ratio: 2/1) {
    .iti-flag {
        background-size: 5630px 15px;
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags@2x.png")
    }
}

@media only screen and (min-device-pixel-ratio: 2) {
    .iti-flag {
        background-size: 5630px 15px;
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags@2x.png")
    }
}

@media only screen and (min-resolution: 192dpi) {
    .iti-flag {
        background-size: 5630px 15px;
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags@2x.png")
    }
}

@media only screen and (min-resolution: 2dppx) {
    .iti-flag {
        background-size: 5630px 15px;
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags@2x.png")
    }
}

.custom-select-box {
    position: relative;
    cursor: pointer
}

.custom-select-box .help-text {
    display: none
}

.custom-select-box .box-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    background-color: #fff;
    padding: calc(5px + 5*(100vw - 320px)/1600);
    top: 60px;
    border: 1px solid #eee;
    transform: translateY(-15px);
    transition: all .2s ease-in-out;
    opacity: 0;
    visibility: hidden
}

.custom-select-box .box-content input {
    padding: 7px 10px !important;
    border-color: #eee
}

.custom-select-box .box-content.open {
    visibility: visible;
    opacity: 1;
    transform: none
}

.custom-select-box .box-content ul {
    margin-top: 10px;
    padding-left: 0;
    max-height: 160px;
    overflow: auto
}

.custom-select-box .box-content ul::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(var(--theme-color), 0.14)
}

.custom-select-box .box-content ul::-webkit-scrollbar {
    width: 4px;
    height: 0;
    background-color: #f5f5f5;
    border-radius: 50px
}

.custom-select-box .box-content ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--theme-color)
}

.custom-select-box .box-content ul li {
    color: #000 !important;
    padding-block: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.custom-select-box .box-content ul li:hover p {
    color: var(--theme-color)
}

.custom-select-box .box-content ul li:last-child {
    padding-bottom: 0
}

.custom-select-box .box-content ul li+li {
    margin-top: 3px;
    border-top: 1px solid rgba(221, 221, 221, 0.3215686275)
}

.custom-select-box .box-content ul li a {
    display: block;
    color: #898989;
    text-transform: capitalize
}

.custom-select-box .box-content ul li p {
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: .05em;
    margin-bottom: 0;
    transition: all .5s ease
}

.custom-select-box .box-content ul li .selected {
    color: var(--theme-color)
}

.custom-select-box .close-icon {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 40px;
    line-height: 1;
    cursor: pointer
}

.form-box {
    position: relative
}

.form-box .form-check-input {
    float: unset;
    margin: 0;
    filter: unset
}

.form-box .form-label,
.form-box label {
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    margin-bottom: 4px;
    color: #777
}

.form-box .form-control {
    height: auto;
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border-radius: 0;
    border: 1px solid #eee;
    font-size: calc(14px + 0*(100vw - 320px)/1600)
}

.form-box .form-control::-webkit-inner-spin-button {
    display: none
}

.custom-check-box {
    display: flex;
    align-items: center;
    gap: 10px
}

.custom-check-box .form-check-label {
    margin: 0
}

.checkbox_animated {
    margin: 0;
    width: 20px;
    height: 20px;
    border: unset;
    background-color: rgba(0, 0, 0, 0);
    position: relative
}

.checkbox_animated::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    transition: transform .4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0);
    left: 4px;
    top: 5px;
    z-index: 1;
    border: 2px solid var(--theme-color);
    border-top-style: none;
    border-right-style: none
}

.checkbox_animated::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 2px solid #ececec;
    cursor: pointer
}

.checkbox_animated:checked::before {
    transform: rotate(-45deg) scale(1)
}

.phone-field .form-box {
    position: relative
}

.phone-field .form-box>.form-control,
.phone-field .form-box>input {
    padding-left: calc(111px + 21*(100vw - 320px)/1600)
}

.phone-field .form-box .form-label~.custom-select-box,
.phone-field .form-box label~.custom-select-box {
    top: 28px;
    left: 0px
}

.phone-field .country-input-box~.custom-select-box {
    top: 28px;
    left: 0px
}

.phone-field .country-input-box~.col-12>.custom-select-box {
    top: calc(27px + 1*(100vw - 320px)/1600);
    left: 0px
}

.phone-field .custom-select-box {
    position: absolute;
    top: 0;
    left: 0;
    height: calc(42px + 6*(100vw - 320px)/1600);
    width: calc(80px + 40*(100vw - 320px)/1600)
}

.phone-field .custom-select-box>.form-control {
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-size: 14px;
    border: 1px solid #eee
}

.error-text {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-top: .25rem;
    color: var(--bs-form-invalid-color)
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: none
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: unset;
    border-color: #eee
}

.form-control.is-valid,
.was-validated .form-control:valid {
    background-image: none
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    box-shadow: unset;
    border-color: #eee
}

.ratio_40 .bg-size:before {
    padding-top: 40%;
    content: "";
    display: block
}

.ratio_45 .bg-size:before {
    padding-top: 45%;
    content: "";
    display: block
}

.ratio2_1 .bg-size:before {
    padding-top: 50%;
    content: "";
    display: block
}

.ratio2_3 .bg-size:before {
    padding-top: 60%;
    content: "";
    display: block
}

.ratio3_2 .bg-size:before {
    padding-top: 66.66%;
    content: "";
    display: block
}

.ratio_landscape .bg-size:before {
    padding-top: 75%;
    content: "";
    display: block
}

.ratio_digital .bg-img {
    aspect-ratio: 55/28;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ratio_square .bg-size:before {
    padding-top: 100%;
    content: "";
    display: block
}

.ratio_square .bg-img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ratio_115 .bg-size:before {
    padding-top: 115%;
    content: "";
    display: block
}

.ratio_125 .bg-size:before {
    padding-top: 125%;
    content: "";
    display: block
}

.ratio_asos .bg-img {
    aspect-ratio: 163/208;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ratio_asos .bg-size:before {
    padding-top: 127.7777778%;
    content: "";
    display: block
}

.ratio_portrait .bg-size:before {
    padding-top: 150%;
    content: "";
    display: block
}

.ratio1_2 .bg-size:before {
    padding-top: 200%;
    content: "";
    display: block
}

.b-top {
    background-position: top !important
}

.b-bottom {
    background-position: bottom !important
}

.b-center {
    background-position: center !important
}

.b_size_content {
    background-size: contain !important;
    background-repeat: no-repeat
}

.slick-slider {
    overflow: hidden
}

.slick-slider.slick-slider {
    overflow: visible
}

.no-arrow .slick-next,
.no-arrow .slick-prev {
    display: none !important
}

.theme-dots .slick-dots {
    bottom: 10px
}

.theme-dots .slick-dots li button:before {
    font-size: 12px
}

.theme-dots .slick-dots li.slick-active button:before {
    color: var(--theme-color)
}

.theme-dots.slick-dotted.slick-slider {
    margin-bottom: 0
}

.slick-sm-margin .slick-list {
    margin-left: -8px;
    margin-right: -8px
}

.slick-sm-margin .slick-slide>div {
    margin-left: 8px;
    margin-right: 8px
}

.theme-tab {
    position: relative
}

.theme-tab .tab-content {
    display: none
}

.theme-tab .tab-content[style="display: block;"] .product-box,
.theme-tab .tab-content[style="display: block;"] .tab-box,
.theme-tab .tab-content[style="display: block;"] .cycle-box {
    animation: zoomIn 300ms ease-in-out
}

.theme-tab .tab-content .product-tab .tab-box {
    background-color: #fff;
    width: 100%
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 img {
    height: calc(110px + 140*(100vw - 575px)/1345);
    padding: 15px;
    transition: all .5s ease
}

@media(max-width: 575px) {
    .theme-tab .tab-content .product-tab .tab-box .product-box2 img {
        height: 110px;
        width: 100%;
        object-fit: cover
    }
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media {
    padding: calc(9px + 6*(100vw - 320px)/1600)
}

@media(max-width: 575px) {
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media {
        display: block
    }
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media>a {
    display: block;
    overflow: hidden
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media>a img {
    padding: 0
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body {
    padding-left: 15px
}

@media(max-width: 575px) {
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body {
        padding: 0;
        margin-top: 15px
    }
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body .rating {
    margin-top: 0
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body .rating i {
    padding-right: 0
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
    margin-right: 35px;
    line-height: 17px;
    margin: 5px 0 0
}

@media(max-width: 575px) {
    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
        margin: 0
    }
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body h4 {
    font-size: 20px;
    margin-top: 5px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0
}

.theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body h4 del {
    font-size: calc(13px + 1*(100vw - 320px)/1600)
}

.theme-tab .tab-content .product-tab .tab-box:hover .product-box2 img {
    transform: scale(1.03);
    transition: all .5s ease
}

.theme-tab .tab-title,
.theme-tab .tab-title2 {
    text-align: center;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    margin-bottom: 30px;
    margin-top: -6px
}

.theme-tab .tab-title .current a,
.theme-tab .tab-title2 .current a {
    font-weight: 600;
    color: var(--theme-color)
}

.theme-tab .tab-title li,
.theme-tab .tab-title2 li {
    padding-inline: 18px;
    font-weight: normal
}

.theme-tab .tab-title a,
.theme-tab .tab-title2 a {
    color: #2d2a25;
    text-transform: uppercase
}

.theme-tab .tab-title.border-title li,
.theme-tab .tab-title2.border-title li {
    border-left: 1px solid #bbb
}

.theme-tab .tab-title.border-title li:first-child,
.theme-tab .tab-title2.border-title li:first-child {
    border-left: none
}

.theme-tab .tab-title2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -8px
}

.theme-tab .tab-title2:after {
    content: "";
    position: absolute;
    border: 1px solid #f1f5f4;
    width: 100%;
    left: 0;
    top: 17px;
    z-index: -1
}

.theme-tab .tab-title2 .current {
    background-color: #fff
}

.theme-tab .tab-title2 .current a {
    background-color: #fff
}

.tab-bg {
    position: relative;
    padding: calc(30px + 40*(100vw - 320px)/1600) calc(15px + 35*(100vw - 320px)/1440) calc(15px + 45*(100vw - 320px)/1600);
    z-index: 1
}

.tab-bg.tab-grey-bg {
    background-color: #f9f9f9
}

.tab-bg:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .09;
    z-index: -1
}

.tab-bg .theme-tab .tab-title {
    margin-bottom: 30px
}

.pt-cls-slider {
    padding-top: 10px
}

.timer {
    padding: 15px;
    background-color: rgba(236, 137, 81, .09);
    display: inline-block;
    border: 1px dashed var(--theme-color);
    border-radius: 0
}

.timer p {
    font-size: 18px;
    color: #222;
    margin-bottom: 0;
    font-weight: 600
}

.timer span {
    width: 50px;
    display: inline-block
}

.timer span .timer-cal {
    font-size: 12px;
    color: #777
}

.timer span .padding-l {
    padding-left: 22px;
    display: inline
}

.title1 {
    text-align: center
}

.title1 h4 {
    color: var(--theme-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: -1px
}

.title1 .title-inner1 {
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative
}

.title1 .title-inner1:after {
    position: absolute;
    height: 5px;
    width: 70px;
    background-color: var(--theme-color);
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0
}

.title1.title-gradient .title-inner1:after {
    background: var(--theme-color);
    background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 99%);
    background-color: var(--theme-color)
}

.title1.title5 .title-inner1 {
    padding-bottom: 0;
    margin-bottom: 0
}

.title1.title5 .title-inner1:after {
    display: none
}

.title1.title5 hr[role=tournament6] {
    border: 0px solid;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--theme-color), rgba(0, 0, 0, 0));
    display: block;
    width: 25%;
    margin: 15px auto 30px auto
}

.title1.title5 hr[role=tournament6]::before {
    position: absolute;
    background-color: #efefef;
    border: 1px solid;
    border-color: var(--theme-color);
    padding: 5px;
    transform: rotate(45deg);
    left: 50%;
    margin: -6px 0px 0px 0;
    content: ""
}

.title1.wo-border .title-inner1 {
    padding-bottom: 0;
    margin-top: -7px;
    margin-bottom: 25px
}

.title1.wo-border .title-inner1:after {
    display: none
}

.title2 {
    text-align: center;
    position: relative;
    z-index: 1
}

.title2 h4 {
    color: var(--theme-color);
    padding-bottom: 10px;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: -3px
}

.title2 .title-inner2 {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding: 0 25px
}

.title2 .title-inner2:after {
    position: absolute;
    height: 5px;
    width: 100%;
    background-color: var(--theme-color);
    opacity: .4;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 3px;
    z-index: -1
}

.title3 {
    text-align: center
}

.title3 h4 {
    color: var(--theme-color);
    padding-bottom: 10px;
    margin-bottom: 5px;
    margin-top: -3px
}

.title3 h4:empty {
    display: none
}

.title3 .title-inner3 {
    margin-bottom: 20px;
    position: relative;
    margin-top: -5px
}

.title3 .line {
    position: relative;
    height: 5px;
    width: 45px;
    background-color: var(--theme-color);
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    margin-bottom: 50px
}

.title3 .line:after,
.title3 .line:before {
    position: absolute;
    height: 5px;
    width: 10px;
    content: "";
    background-color: var(--theme-color)
}

.title3 .line:after {
    right: 50px
}

.title3 .line:before {
    left: 50px
}

.title4 {
    text-align: center
}

.title4 .title-inner4 {
    padding-bottom: 25px;
    margin-bottom: 0;
    position: relative;
    margin-top: -5px
}

.title4 .line {
    position: relative;
    height: 1px;
    width: 180px;
    background-color: var(--theme-color);
    margin: 0 auto;
    margin-bottom: 55px;
    bottom: 0;
    top: 0
}

.title4 .line:after,
.title4 .line:before {
    position: absolute;
    height: 10px;
    width: 10px;
    content: "";
    background-color: var(--theme-color);
    top: -4px
}

.title4 .line:after {
    left: 78px
}

.title4 .line:before {
    left: 64px
}

.title4 .line span:after,
.title4 .line span:before {
    position: absolute;
    height: 10px;
    width: 10px;
    content: "";
    background-color: var(--theme-color);
    top: -4px
}

.title4 .line span:after {
    right: 78px
}

.title4 .line span:before {
    right: 64px
}

.title6 {
    text-align: center
}

.title6 h2 {
    margin-top: -5px;
    margin-bottom: 20px
}

.title7 {
    margin-bottom: 20px
}

.title7 .title {
    font-size: calc(16px + 8*(100vw - 320px)/1600);
    margin-bottom: 0
}

.title7 .sub-title {
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    margin-bottom: 0;
    color: #7b7b7b;
    margin-top: 2px;
    text-transform: capitalize
}

.title8 {
    margin-bottom: calc(12px + 10*(100vw - 320px)/1600)
}

.title8 h2 {
    font-size: calc(16px + 8*(100vw - 320px)/1600);
    margin-bottom: 0;
    text-transform: capitalize
}

.title8 p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 6px;
    text-transform: capitalize
}

.title-borderless {
    margin-bottom: 30px;
    text-align: center;
    margin-top: calc(-2px + -3*(100vw - 320px)/1600)
}

.about-text p {
    line-height: 28px;
    letter-spacing: .06em;
    text-align: center;
    margin-bottom: 50px
}

.theme-tab .title-inline {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd
}

.theme-tab .title-inline h3 {
    text-transform: capitalize;
    margin-bottom: 0;
    color: #000;
    font-weight: 600
}

.theme-tab .title-inline .tab-title {
    margin-block: 0;
    margin-left: auto
}

.theme-tab .title-inline .tab-title li {
    padding-inline: 0;
    padding-bottom: 10px;
    margin: 0 15px
}

.theme-tab .title-inline .tab-title .current {
    border-bottom: 2px solid var(--theme-color)
}

.title-basic {
    display: flex;
    align-items: center;
    margin-bottom: calc(16px + 6*(100vw - 320px)/1600)
}

.title-basic .title {
    font-size: calc(16px + 8*(100vw - 320px)/1600);
    margin-bottom: 0
}

.title-basic .timer {
    margin-top: 0;
    margin-left: 15px;
    background-color: #f5f5f5
}

.title-basic .timer p {
    color: #000
}

.title-basic .timer span .timer-cal {
    display: none
}

.title-gradient {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-clip: text;  
    -webkit-background-clip: text; 
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite
}

.title7 {
    margin-bottom: calc(14px + 12*(100vw - 320px)/1600);
    text-align: center;
    width: 26%;
    margin-inline: auto
}

@media(max-width: 991px) {
    .title7 {
        width: 45%
    }
}

@media(max-width: 575px) {
    .title7 {
        width: 55%
    }
}

@media(max-width: 400px) {
    .title7 {
        width: 100%
    }
}

.title7 h4 {
    font-size: calc(26px + 9*(100vw - 320px)/1600);
    color: #fff;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.4
}

.ajax-search.form_search {
    overflow: unset
}

.ajax-search .tiktok-typeahead {
    width: 100%
}

.ajax-search .typeahead {
    padding: 15px 20px;
    width: 100% !important;
    background-color: #fff !important;
    border-radius: 5px;
    font-size: 18px
}

.ajax-search .empty-message {
    color: var(--theme-color);
    text-align: center;
    padding: 10px 0px;
    font-size: 16px
}

.ajax-search .tt-menu {
    display: block;
    width: 100%;
    background-color: #fff;
    border: unset !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    max-height: 350px;
    overflow: auto;
    top: 55px !important;
    border-radius: 5px;
    padding: 8px 0
}

.ajax-search .tt-suggestion {
    padding: 0px 14px;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer
}

.ajax-search .man-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center
}

.ajax-search .image-section {
    padding: 5px 0
}

.ajax-search .image-section img {
    width: 50px;
    filter: invert(0) !important
}

.ajax-search .description-section {
    width: 80%
}

.ajax-search .description-section h4 {
    margin: 0px;
    padding: 0px 7px;
    font-size: 17px;
    color: #222;
    margin-top: 0;
    margin-bottom: 2px;
    text-transform: capitalize
}

.ajax-search .description-section span {
    padding: 7px;
    font-size: 16px;
    color: #a09999
}

.full-banner {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 190px;
    padding-bottom: 190px;
    background-position: center
}

.full-banner.parallax-layout {
    padding-top: 350px;
    padding-bottom: 350px
}

.full-banner.parallax-layout .banner-contain h4 {
    color: #7f786d
}

.full-banner.parallax {
    background-attachment: fixed
}

.full-banner.p-left .banner-contain {
    float: left
}

.full-banner.p-right .banner-contain {
    float: right
}

.full-banner .banner-contain .btn-solid,
.full-banner .banner-contain .btn-outline {
    margin-top: 20px
}

.full-banner .banner-contain h2 {
    font-size: calc(25px + 75*(100vw - 320px)/1600);
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
    margin-top: calc(-8px + -7*(100vw - 320px)/1600);
    line-height: 1.4
}

.full-banner .banner-contain h3 {
    font-size: calc(22px + 38*(100vw - 320px)/1600);
    color: #333;
    text-transform: uppercase;
    font-weight: 700
}

.full-banner .banner-contain h4 {
    font-size: calc(16px + 8*(100vw - 320px)/1600);
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5em;
    padding-top: 10px;
    margin-bottom: -5px;
    line-height: 1.3
}

.full-banner .decor {
    position: absolute;
    top: -150px;
    left: 0
}

.parallax {
    background-attachment: fixed
}

.parallax-cls section:nth-child(odd) .full-banner {
    background-position: right
}

.parallax-cls section:nth-child(even) .full-banner {
    background-position: left
}

.parallax-cls section .banner-contain {
    margin-top: -12px
}

.pet-parallax {
    position: relative
}

.pet-parallax .pet-decor {
    position: absolute;
    left: 110px;
    bottom: -164px
}

.pet-parallax .banner-contain h4,
.pet-parallax .banner-contain h3,
.pet-parallax .banner-contain p {
    color: #212121
}

.pet-parallax .banner-contain p {
    max-width: 75%;
    margin: 0 auto;
    line-height: calc(22px + 6*(100vw - 320px)/1600);
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    letter-spacing: .04em;
    color: #777;
    margin-top: 15px
}

.pet-parallax .banner-contain h4 {
    letter-spacing: .05em;
    padding-top: 0 !important;
    margin-bottom: 0;
    line-height: 1.3;
    margin-top: calc(-3px + -4*(100vw - 320px)/1600)
}

.pet-parallax .banner-contain h3 {
    margin-top: 15px;
    font-size: calc(26px + 22*(100vw - 320px)/1600)
}

.pet-parallax .full-banner {
    padding-top: 130px;
    padding-bottom: 130px;
    background-blend-mode: overlay
}

.collection-banner {
    position: relative;
    overflow: hidden
}

.collection-banner .img-part {
    transition: all .5s ease;
    width: 100%
}

.collection-banner.p-top .contain-banner {
    align-items: flex-start
}

.collection-banner.p-left .contain-banner {
    justify-content: flex-start
}

.collection-banner.p-right .contain-banner {
    justify-content: flex-end
}

.collection-banner.tl-content .contain-banner,
.collection-banner.tl-content .contain-banner.banner-3 {
    align-items: flex-start;
    padding-inline: 30px;
    padding-top: 30px
}

.collection-banner .contain-banner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-inline: 70px
}

.collection-banner .contain-banner.banner-3 {
    padding-inline: 30px
}

.collection-banner .contain-banner.banner-3 h2 {
    font-size: 26px;
    letter-spacing: .05em;
    color: #fff;
    margin-top: 5px;
    margin-bottom: -6px
}

.collection-banner .contain-banner.banner-3 h4 {
    color: #fff
}

.collection-banner .contain-banner.banner-4 {
    padding-inline: 50px
}

.collection-banner .contain-banner.banner-4 h2 {
    font-size: 28px;
    letter-spacing: .03em;
    color: #fff;
    margin-bottom: -6px
}

.collection-banner .contain-banner.content-bg h2 {
    font-size: calc(20px + 20*(100vw - 320px)/1600);
    padding: 10px;
    background-color: #fff
}

.collection-banner .contain-banner.content-bg.banner-3 h2 {
    font-size: calc(18px + 12*(100vw - 320px)/1600)
}

.collection-banner .contain-banner h4 {
    color: var(--theme-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 0;
    line-height: 28px
}

.collection-banner .contain-banner h2 {
    font-size: 60px;
    font-weight: 700;
    color: #222;
    letter-spacing: .1em;
    margin-bottom: -6px
}

.collection-banner .contain-banner h2.font-smaller {
    font-size: calc(20px + 25*(100vw - 320px)/1600)
}

.collection-banner.christmas-banner .contain-banner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-inline: calc(30px + 30*(100vw - 320px)/1600)
}

.collection-banner.christmas-banner .contain-banner h4 {
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 0
}

.collection-banner.christmas-banner .contain-banner h2 {
    font-size: calc(24px + 16*(100vw - 320px)/1600);
    font-weight: 700;
    color: #fff;
    letter-spacing: .1em;
    margin-bottom: -6px
}

.collection-banner.overlay-banner {
    position: relative;
    z-index: 1
}

.collection-banner.overlay-banner .contain-banner {
    z-index: 1
}

.collection-banner:hover .img-part {
    transform: scale(1.05);
    transition: all .5s ease
}

.absolute_banner .collection-banner {
    overflow: unset
}

.absolute_banner .collection-banner .absolute-contain {
    position: absolute;
    background-color: #fff;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    min-width: 85%;
    text-align: center;
    transition: all .5s ease
}

.absolute_banner .collection-banner .absolute-contain h3 {
    color: var(--theme-color);
    text-transform: capitalize;
    margin-top: calc(-1px + -4*(100vw - 320px)/1600);
    font-weight: 600;
    font-size: calc(16px + 8*(100vw - 320px)/1600)
}

.absolute_banner .collection-banner .absolute-contain h4 {
    color: #222;
    margin-bottom: 0;
    font-size: calc(14px + 4*(100vw - 320px)/1600)
}

.absolute_banner .collection-banner:hover img {
    transform: none
}

.banner-style-1 .custom-height {
    height: 460px
}

.gift-card-section {
    z-index: 1;
    position: relative
}

.gift-card-section .container .card-box {
    background-color: var(--theme-color);
    padding: calc(15px + 20*(100vw - 320px)/1600)
}

.deal-product-space {
    background-color: #f8efe7;
    padding-top: 195px;
    margin-top: -130px;
    z-index: -1;
    padding-bottom: 130px !important;
    margin-bottom: -60px
}

.deal-product-space .product-box .product-detail,
.deal-product-space .product-box .product-info,
.deal-product-space .product-wrap .product-detail,
.deal-product-space .product-wrap .product-info {
    margin-top: 0
}

@media(max-width: 480px) {
    .banner-sale img {
        height: 145px !important;
        object-fit: cover
    }
}

.banner-section a {
    overflow: hidden;
    display: block
}

.banner-section a img,
.banner-section a .bg-size {
    transition: all .5s ease
}

.banner-section a:hover img,
.banner-section a:hover .bg-size {
    transform: scale(1.05)
}

.banner-style-2.absolute-banner .absolute-bg {
    padding: 0;
    background-color: rgba(0, 0, 0, 0) !important
}

.banner-style-2.absolute-banner .absolute-bg .collection-banner {
    position: relative;
    overflow: unset;
    padding-block: 90px;
    background-color: #232323
}

@media(max-width: 1400px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner {
        padding-block: 40px 70px
    }
}

@media(max-width: 991px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner {
        padding-block: 40px 50px
    }
}

@media(max-width: 991px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner {
        display: flex;
        align-items: center;
        padding: 25px
    }
}

@media(max-width: 575px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner {
        justify-content: space-around;
        margin-inline: calc(0px + 95*(100vw - 320px)/256);
        padding: calc(14px + 11*(100vw - 320px)/256)
    }
}

.banner-style-2.absolute-banner .absolute-bg .collection-banner .contain-banner {
    position: relative
}

@media(max-width: 991px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img {
        width: 70% !important
    }
}

@media(max-width: 575px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img {
        width: calc(64px + 60*(100vw - 320px)/256) !important
    }
}

.banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img img {
    position: absolute;
    left: 40px;
    top: -40px;
    transition: all .5s ease
}

@media(max-width: 991px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img img {
        position: relative;
        width: auto !important;
        inset: unset !important
    }
}

.banner-style-2.absolute-banner .absolute-bg .collection-banner:hover .absolute-img img {
    top: -50px;
    transition: all .5s ease
}

@media(max-width: 991px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner:hover .absolute-img img {
        top: -20px
    }
}

@media(max-width: 991px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner:hover .absolute-img img {
        inset: unset
    }
}

@media(max-width: 575px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .contain-banner {
        width: auto
    }
}

@media(max-width: 991px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .contain-banner.banner-3 {
        padding-left: 0
    }
}

@media(max-width: 767px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .contain-banner.banner-3 {
        padding-inline: 0 6px
    }
}

@media(max-width: 991px) {
    .banner-style-2.absolute-banner .absolute-bg .collection-banner .contain-banner.banner-3 h2 {
        margin-bottom: 0
    }
}

.single-banner-section img {
    height: 100%;
    object-fit: cover;
    border-radius: calc(10px + 10*(100vw - 320px)/1600)
}

.blog-bg {
    background-color: #f1f5f4
}

.classic-effect {
    position: relative;
    overflow: hidden
}

.classic-effect:before,
.classic-effect:after {
    background: var(--theme-color);
    width: 25%;
    position: absolute;
    content: "";
    opacity: 0;
    transition: all .3s steps(4);
    z-index: 1;
    bottom: 100%;
    top: 0
}

.classic-effect:before {
    left: 0;
    transition-delay: 0s
}

.classic-effect:after {
    left: 25%;
    transition-delay: .025s
}

.classic-effect span:before,
.classic-effect span:after {
    background: var(--theme-color);
    width: 25%;
    position: absolute;
    content: "";
    opacity: 0;
    transition: all .3s steps(4);
    z-index: 1;
    bottom: 100%;
    top: 0
}

.classic-effect span:before {
    left: 50%;
    transition-delay: .05s
}

.classic-effect span:after {
    left: 75%;
    transition-delay: .15s
}

.classic-effect:hover:before,
.classic-effect:hover:after {
    bottom: 0;
    opacity: .5
}

.classic-effect:hover span:before,
.classic-effect:hover span:after {
    bottom: 0;
    opacity: .5
}

.basic-effect {
    position: relative;
    overflow: hidden
}

.basic-effect>div {
    transition: all .5s ease
}

.basic-effect:after {
    position: absolute;
    content: "";
    background: linear-gradient(-180deg, var(--theme-color) 0%, var(--theme-color2) 99%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .5s ease
}

.basic-effect:hover:after {
    opacity: .7;
    transition: all .5s ease
}

.basic-effect:hover>div {
    transform: scale(1.2) rotate(5deg);
    transition: all .5s ease
}

.blog-details {
    text-align: center;
    padding-inline: 15px
}

.blog-details h4 {
    color: var(--theme-color);
    margin-top: 25px;
    line-height: 1;
    margin-bottom: 0
}

.blog-details p {
    color: #222;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .03em;
    margin-top: 10px;
    margin-bottom: -5px;
    transition: all .5s ease
}

.blog-details p:hover {
    color: var(--theme-color);
    transition: all .5s ease
}

.blog-details h6 {
    line-height: 1;
    letter-spacing: .1em;
    margin-bottom: 0;
    font-size: calc(15px + 1*(100vw - 320px)/1600)
}

.blog-sidebar {
    position: sticky;
    top: 100px
}

.blog-sidebar .theme-card {
    position: relative;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: calc(12px + 8*(100vw - 320px)/1600);
    border-radius: 0
}

.blog-sidebar .theme-card .categories {
    display: flex;
    gap: calc(10px + 4*(100vw - 320px)/1600);
    flex-wrap: wrap;
    margin-bottom: -4px
}

.blog-sidebar .theme-card .categories li {
    position: relative;
    transition: all .3s ease-in-out;
    z-index: 0;
    width: 100%;
    padding-left: 0;
    padding-top: 0
}

.blog-sidebar .theme-card .categories li .category-name {
    display: block;
    font-size: calc(14px + .00125*(100vw - 320px));
    color: #222;
    display: flex;
    align-items: baseline;
    gap: 8px
}

.blog-sidebar .theme-card .categories li .category-name h5 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    letter-spacing: unset;
    text-transform: none;
    line-height: 1.3;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.left-blog .slick-slider .slick-slider {
    margin-bottom: 0
}

.left-blog .blog-details {
    text-align: left;
    padding-inline: 0
}

.left-blog .blog-details hr.style1 {
    text-align: left;
    margin-inline: 0
}

.add_to_cart {
    position: fixed;
    background-color: #fff;
    z-index: 9;
    transition: all .5s ease
}

.add_to_cart .sidebar-title {
    padding: 0 calc(13px + 7*(100vw - 320px)/1600);
    padding-bottom: calc(13px + 2*(100vw - 320px)/1600);
    width: 100%;
    text-align: right
}

.add_to_cart .sidebar-title a {
    color: var(--theme-color);
    font-size: calc(15px + 2*(100vw - 320px)/1600);
    font-weight: 600
}

.add_to_cart .delete-button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 0
}

.add_to_cart ::-webkit-scrollbar {
    width: 3px;
    height: 7px
}

.add_to_cart ::-webkit-scrollbar-track {
    background: #ddd
}

.add_to_cart ::-webkit-scrollbar-thumb {
    background: #888
}

.add_to_cart ::-webkit-scrollbar-thumb:hover {
    background: #555
}

.add_to_cart .cart-inner {
    background-color: #fff;
    z-index: 9;
    position: relative;
    top: 0
}

.add_to_cart .cart-inner .cart_media {
    padding: 0 calc(13px + 7*(100vw - 320px)/1600);
    overflow: auto;
    height: calc(100vh - (309px + 25*(100vw - 320px)/1600));
    padding-bottom: calc(13px + 7*(100vw - 320px)/1600)
}

.add_to_cart .cart-inner .cart_media li {
    position: relative;
    width: 100%;
    padding-left: 0 !important;
    display: block !important
}

.add_to_cart .cart-inner .cart_media li+li {
    border-top: 1px solid #eee;
    padding-top: 14px;
    margin-top: 14px
}

.add_to_cart .cart-inner .cart_media li .media {
    align-items: center;
    height: 100%;
    position: relative
}

.add_to_cart .cart-inner .cart_media li .media img {
    height: calc(75px + 15*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    border: 1px solid #eee;
    width: calc(75px + 15*(100vw - 320px)/1600);
    object-fit: contain
}

.add_to_cart .cart-inner .cart_media li .media .media-body {
    align-self: center;
    position: relative
}

.add_to_cart .cart-inner .cart_media li .media .media-body .quantity {
    color: #777;
    letter-spacing: unset;
    font-weight: 400;
    line-height: 1.3;
    font-size: 16px
}

.add_to_cart .cart-inner .cart_media li .media .media-body .gram {
    margin-bottom: 0;
    color: var(--theme-color);
    margin-top: 6px
}

.add_to_cart .cart-inner .cart_media li .media .media-body a h4 {
    color: #333;
    letter-spacing: unset;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 72%
}

@media(max-width: 576px) {
    .add_to_cart .cart-inner .cart_media li .media .media-body a h4 {
        width: 65%
    }
}

.add_to_cart .cart-inner .cart_media li .media .media-body a h4 span {
    color: #777;
    font-size: 16px
}

.add_to_cart .cart-inner .cart_media li .total {
    padding-top: 10px;
    padding-bottom: 10px
}

.add_to_cart .cart-inner .cart_media li .total h5 {
    text-transform: capitalize;
    margin-bottom: 0;
    color: #333;
    font-weight: 500;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.add_to_cart .cart-inner .cart_media li .total h5 span {
    font-weight: 600;
    color: var(--theme-color)
}

.add_to_cart .cart-inner .cart_media li .buttons {
    display: flex;
    align-items: center;
    gap: 14px
}

.add_to_cart .cart-inner .cart_media li .buttons a {
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    border-radius: 0;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    transition: all .25s ease-in-out;
    width: 100%;
    padding: calc(9px + 3*(100vw - 320px)/1600) calc(15px + 14*(100vw - 320px)/1600);
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color)
}

.add_to_cart .cart-inner .cart_media li .buttons a:hover {
    color: var(--theme-color);
    background-color: #fff
}

.add_to_cart .cart-inner .cart_media li .buttons .checkout {
    float: right
}

.add_to_cart .cart-inner .cart_media .close-circle {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 5px
}

.add_to_cart .cart-inner .cart_media .close-circle button,
.add_to_cart .cart-inner .cart_media .close-circle a {
    width: 30px;
    height: 30px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center
}

.add_to_cart .cart-inner .cart_media .close-circle button:hover,
.add_to_cart .cart-inner .cart_media .close-circle a:hover {
    color: #000;
    transition: all .5s ease
}

.add_to_cart .cart-inner .cart_media .close-circle svg {
    width: unset;
    height: unset;
    font-size: 16px;
    transition: all .5s ease
}

.add_to_cart .cart-inner .cart_media .cart_total {
    border-top: 1px solid #eee
}

.add_to_cart .cart-inner .cart_media .cart_total li+li {
    margin: 0
}

.add_to_cart .cart-inner .cart_top {
    display: flex;
    padding: calc(13px + 7*(100vw - 320px)/1600) calc(13px + 7*(100vw - 320px)/1600) calc(13px + 1*(100vw - 320px)/1600);
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    align-items: center
}

.add_to_cart .cart-inner .cart_top h3 {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    color: #222;
    font-weight: 700;
    text-transform: unset;
    margin-bottom: 0;
    letter-spacing: unset
}

.add_to_cart .cart-inner .cart_top .close-cart {
    margin-left: auto;
    line-height: 1;
    width: calc(27px + 3*(100vw - 320px)/1600);
    height: calc(27px + 3*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center
}

.add_to_cart .cart-inner .cart_top .close-cart svg {
    font-size: calc(17px + 2*(100vw - 320px)/1600);
    color: #333
}

.add_to_cart .cart-inner :not(.pere-text-box)~.cart_media .empty-cart-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.add_to_cart .cart-inner .empty-cart-box {
    text-align: center
}

.add_to_cart .cart-inner .empty-cart-box .icon {
    width: 50px;
    height: 50px;
    background-color: #f8f8f8;
    border-radius: 100%;
    color: #6a6a6a;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px
}

.add_to_cart .cart-inner .empty-cart-box h5 {
    margin: 0;
    font-weight: 500;
    font-size: 17px
}

.add_to_cart .cart-inner .empty-cart-box *:empty {
    display: unset
}

.add_to_cart .cart-inner .pere-text-box {
    padding-inline: calc(13px + 7*(100vw - 320px)/1600);
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px
}

.add_to_cart .cart-inner .pere-text-box p {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 1.2
}

.add_to_cart .cart-inner .pere-text-box .progress {
    display: block;
    margin-block: calc(8px + .00625*(100vw - 320px));
    height: calc(5px + 3*(100vw - 320px)/1600);
    background-color: #e6e7e9;
    border-radius: 0;
    position: relative;
    overflow: unset
}

.add_to_cart .cart-inner .pere-text-box .progress .progress-bar {
    height: calc(5px + 3*(100vw - 320px)/1600);
    background-color: var(--theme-color);
    border-radius: 0;
    position: relative;
    overflow: unset;
    max-width: 96%;
    min-width: 3%
}

.add_to_cart .cart-inner .pere-text-box .progress .progress-bar.bg-warning .progress-icon {
    background-color: #ffc107
}

.add_to_cart .cart-inner .pere-text-box .progress .progress-bar.bg-danger .progress-icon {
    background-color: #dc3545
}

.add_to_cart .cart-inner .pere-text-box .progress .progress-bar .progress-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
    width: calc(22px + .00375*(100vw - 320px));
    height: calc(22px + .00375*(100vw - 320px));
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    padding: calc(2px + 3*(100vw - 320px)/1600);
    color: #fff;
    font-size: calc(15px + .00125*(100vw - 320px))
}

.add_to_cart .cart-inner .pere-text-box .progress .progress-bar .progress-icon svg {
    color: #fff
}

.add_to_cart .cart-inner .qty-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #f8f8f8;
    padding: 5px 11px;
    border: 1px solid #eee
}

.add_to_cart .cart-inner .qty-box .input-group {
    justify-content: flex-end;
    gap: 3px
}

.add_to_cart .cart-inner .qty-box .input-group .form-control {
    width: 40px;
    height: unset;
    padding-block: 0;
    flex: unset;
    border: unset;
    display: block;
    padding: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0)
}

.add_to_cart .cart-inner .qty-box .input-group .form-control::-webkit-inner-spin-button {
    display: none
}

.add_to_cart .cart-inner .qty-box .input-group span button {
    z-index: 0;
    border: unset;
    padding: 0;
    background-color: rgba(0, 0, 0, 0) !important
}

.add_to_cart .cart_total {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: calc(305px + 165*(100vw - 320px)/1600);
    padding: 0 15px 20px;
    background-color: #fff
}

.add_to_cart .overlay {
    visibility: hidden;
    opacity: 0;
    background-color: #212331;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease
}

.add_to_cart.open-side {
    transition: all .5s ease
}

.add_to_cart.open-side .overlay {
    opacity: .8;
    visibility: visible;
    transition: all .5s ease
}

.add_to_cart.left {
    left: -390px;
    top: 0;
    height: 100vh;
    width: 390px
}

.add_to_cart.left .cart-inner {
    height: 100vh;
    overflow: auto
}

.add_to_cart.left.open-side {
    left: 0
}

.add_to_cart.right {
    right: -500px;
    height: 100vh;
    max-width: calc(305px + 165*(100vw - 320px)/1600);
    width: 100%;
    top: 0
}

.add_to_cart.right .cart-inner {
    height: 100vh;
    overflow: auto
}

.add_to_cart.right .empty-cart {
    height: calc(100vh - 80px)
}

.add_to_cart.right.open-side {
    right: 0
}

.add_to_cart.right .cart-inner .cart_media li .media {
    align-items: unset;
    gap: 16px
}

.add_to_cart.right .cart-inner .cart_media li .media .media-body {
    width: calc(100% - 75px - 16px);
    align-self: unset
}

.add_to_cart.top,
.add_to_cart.bottom {
    height: 218px;
    width: 100%
}

.add_to_cart.top .cart_media,
.add_to_cart.bottom .cart_media {
    display: flex;
    width: 100%
}

.add_to_cart.top .cart_media .cart_product,
.add_to_cart.bottom .cart_media .cart_product {
    display: flex;
    width: 75%;
    overflow-y: auto
}

.add_to_cart.top .cart_media .cart_product li,
.add_to_cart.bottom .cart_media .cart_product li {
    min-width: 245px;
    max-width: 225px;
    margin-right: 18px;
    padding-bottom: 0
}

.add_to_cart.top .cart_media .cart_total,
.add_to_cart.bottom .cart_media .cart_total {
    width: 25%
}

.add_to_cart.top .cart-inner,
.add_to_cart.bottom .cart-inner {
    height: 218px
}

.add_to_cart.top .cart-inner .cart_top,
.add_to_cart.bottom .cart-inner .cart_top {
    margin-bottom: 0;
    background-color: #fbfbfb;
    padding: 15px 44px;
    border-bottom: none
}

.add_to_cart.top .cart-inner .cart_media,
.add_to_cart.bottom .cart-inner .cart_media {
    padding: 0
}

.add_to_cart.top .cart-inner .cart_media .cart_product,
.add_to_cart.top .cart-inner .cart_media .cart_total,
.add_to_cart.bottom .cart-inner .cart_media .cart_product,
.add_to_cart.bottom .cart-inner .cart_media .cart_total {
    padding: 30px 44px
}

.add_to_cart.top {
    top: -300px
}

.add_to_cart.top.open-side {
    top: 0
}

.add_to_cart.bottom {
    bottom: -300px
}

.add_to_cart.bottom.open-side {
    bottom: 0
}

.cart_qty_cls {
    background: var(--theme-color);
    width: calc(16px + 4*(100vw - 320px)/1600);
    height: calc(16px + 4*(100vw - 320px)/1600);
    color: #fff;
    border-radius: 20px;
    text-align: center;
    font-size: calc(10px + 2*(100vw - 320px)/1600);
    line-height: 14px;
    font-weight: 600;
    top: 20%;
    right: calc(-5px + -3*(100vw - 320px)/1600);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center
}

.category-box {
    background-color: #f8f8f8;
    margin: 0px auto;
    display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
    transition: all .3s ease-in-out;
    border: 1px solid #eee;
    position: relative;
    padding: calc(15px + 13*(100vw - 320px)/1600) 8px;
    z-index: 0
}

.category-box:hover,
.category-box.active {
    background-color: var(--theme-color)
}

.category-box:hover::after,
.category-box.active::after {
    opacity: 1
}

.category-box:hover img,
.category-box.active img {
    filter: invert(1) brightness(100)
}

.category-box:hover h5,
.category-box.active h5 {
    color: #fff
}

.category-box:hover .background-image,
.category-box.active .background-image {
    filter: none;
    opacity: 1;
    visibility: visible
}

.category-box img {
    filter: invert(1) brightness(100)
}

.category-box h5 {
    color: #fff
}

.category-box .background-image {
    filter: none;
    opacity: 1;
    visibility: visible
}

.category-box img {
    width: calc(38px + 17*(100vw - 320px)/1600) !important;
    height: calc(38px + 17*(100vw - 320px)/1600);
    object-fit: contain;
    margin: 0 auto;
    transition: all .3s ease-in-out
}

.category-box .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    visibility: hidden;
    opacity: 0;
    filter: none
}

.category-box h5 {
    color: #555;
    margin-top: 12px;
    font-weight: 500;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    transition: all .3s ease-in-out;
    z-index: 0;
    position: relative
}

.category-block .category-image {
    margin: 0 auto;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 100%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease
}

.category-block .category-image.svg-image {
    background-color: #fff
}

.category-block .category-image.svg-image img {
    width: 50px;
    height: 50px;
    object-fit: contain
}

.category-block .category-image.svg-image svg {
    width: 50px;
    fill: var(--theme-color)
}

.category-block .category-details {
    margin-top: 15px;
    text-align: center
}

.category-block .category-details h5 {
    font-weight: 700;
    margin: 0 auto;
    transition: .5s ease;
    text-transform: uppercase;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    margin-bottom: -4px
}

.category-block .category-details h6 {
    margin-bottom: -6px;
    margin-top: -4px
}

.category-block:hover .category-image {
    background-color: var(--theme-color);
    transition: all .5s ease
}

.category-block:hover .category-image img {
    filter: brightness(0) invert(1);
    transition: all .5s ease
}

.category-block:hover .category-image svg {
    fill: #fff;
    transition: all .5s ease
}

.category-block:hover .category-details h5 {
    color: var(--theme-color);
    transition: all .5s ease
}

.category-border {
    background-color: #f1f5f4;
    padding: 20px 10px
}

.category-border .border-padding {
    padding: 0 10px
}

.category-border div .category-banner {
    padding: 0;
    position: relative;
    overflow: hidden
}

.category-border div .category-banner img,
.category-border div .category-banner .bg-size {
    transform: scale(1);
    transition: .5s ease
}

.category-border div .category-banner:hover img,
.category-border div .category-banner:hover .bg-size {
    transform: scale(1.1) translateX(14px);
    transition: .5s ease
}

.category-border div .category-banner:hover h2 {
    color: var(--theme-color);
    transition: .5s ease
}

.category-border div .category-banner .category-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0)
}

.category-border div .category-banner .category-box h2 {
    background-color: #fff;
    display: inline-block;
    padding: 20px 35px;
    margin-bottom: 0;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .13);
    transition: .5s ease;
    font-size: calc(14px + 22*(100vw - 320px)/1600)
}

.category-bg {
    padding: 40px 50px;
    position: relative;
    z-index: 0
}

.category-bg .image-block img {
    width: 100%
}

.category-bg .image-block .video-sec {
    width: 100%;
    height: 48vh;
    position: relative
}

@media(max-width: 768px) {
    .category-bg .image-block .video-sec {
        height: 38vh
    }
}

.category-bg .image-block .video-sec>div {
    position: absolute;
    z-index: -1;
    inset: 0px;
    overflow: hidden;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-position: 0% 50%;
    background-image: none
}

.category-bg .image-block.even:after {
    bottom: 94%
}

.category-bg .image-block:after {
    content: "";
    position: absolute;
    background-color: var(--theme-color);
    height: 0;
    width: 40px;
    z-index: 1;
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    transition: .5s ease;
    margin-top: -40px
}

.category-bg .image-block:hover:after {
    opacity: .3;
    transition: .5s ease;
    height: 80px
}

.category-bg .contain-block {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    background-color: #fff;
    padding: 10px
}

.category-bg .contain-block.even:after {
    top: 94%
}

.category-bg .contain-block:after {
    content: "";
    position: absolute;
    background-color: var(--theme-color);
    height: 0;
    width: 40px;
    z-index: 1;
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    transition: .5s ease;
    bottom: 94%
}

.category-bg .contain-block:hover h2 {
    color: var(--theme-color);
    transition: all .5s ease
}

.category-bg .contain-block:hover h6 span {
    color: var(--theme-color);
    transition: all .5s ease
}

.category-bg .contain-block:hover .category-btn {
    background-image: linear-gradient(30deg, var(--theme-color) 50%, transparent 50%);
    border: 2px solid var(--theme-color);
    transition: all .5s ease
}

.category-bg .contain-block:hover:after {
    opacity: .3;
    transition: all .5s ease;
    height: 80px
}

.category-bg .contain-block h2 {
    margin-bottom: 0;
    margin-top: 15px;
    transition: .5s ease;
    color: #222;
    font-size: calc(16px + 20*(100vw - 320px)/1600) !important
}

@media(max-width: 991px) {
    .category-bg .contain-block h2 {
        font-size: 16px !important
    }
}

@media(max-width: 768px) {
    .category-bg .contain-block h2 {
        font-size: 14px !important
    }
}

.category-bg .contain-block h6 {
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: .3em;
    line-height: 1;
    margin-bottom: 0
}

.category-bg .contain-block h6 span {
    color: #7f786d;
    letter-spacing: .03em;
    font-weight: 700;
    transition: all .5s ease
}

.category-bg .contain-block .category-btn {
    letter-spacing: .07em;
    margin-bottom: 25px;
    margin-top: 25px;
    transition: all .5s ease
}

.category-bg:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-color: var(--theme-color);
    opacity: .3;
    width: 100%;
    height: 100%;
    z-index: -1
}

.category-m .category-wrapper {
    border: 1px solid #dddada;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    margin-bottom: 1px
}

.category-m .category-wrapper>div:after,
.category-m .category-wrapper>div:before {
    content: "";
    width: 1px;
    height: 0;
    position: absolute;
    transition: all .2s linear;
    background: var(--theme-color);
    transition-delay: 0s
}

.category-m .category-wrapper>div:before {
    left: 0;
    top: 0
}

.category-m .category-wrapper>div:after {
    right: 0;
    bottom: 0
}

.category-m .category-wrapper .bg-size {
    max-width: 100px;
    margin: 0 auto
}

.category-m .category-wrapper:after,
.category-m .category-wrapper:before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    transition: all .2s linear;
    background: var(--theme-color)
}

.category-m .category-wrapper:before {
    right: 0;
    top: 0
}

.category-m .category-wrapper:after {
    left: 0;
    bottom: 0
}

.category-m .category-wrapper:hover {
    transition: all .5s ease
}

.category-m .category-wrapper:hover:after,
.category-m .category-wrapper:hover:before {
    transition-delay: 0s;
    width: 100%
}

.category-m .category-wrapper:hover>div:after,
.category-m .category-wrapper:hover>div:before {
    transition-delay: .2s;
    height: 100%
}

.category-m .category-wrapper img {
    display: inline;
    height: 140px;
    width: auto
}

.category-m .category-wrapper h4 {
    text-transform: uppercase;
    color: #2d2a25;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 25px;
    padding-top: 25px;
    line-height: 1.3
}

.category-m .category-wrapper h4 a {
    color: #2d2a25
}

.category-m .category-wrapper .btn {
    margin-top: 20px
}

.category-m .category-wrapper .category-link li {
    display: block;
    text-transform: capitalize;
    margin-top: 5px
}

.category-m .category-wrapper .category-link li:first-child {
    margin-top: 0
}

.category-m .category-wrapper .category-link li a {
    color: #948e8c
}

.category-m .category-wrapper .category-link li a:hover {
    color: var(--theme-color)
}

.category-m.w-bg .category-wrapper {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0);
    padding: calc(14px + 16*(100vw - 320px)/1600)
}

.category-m.w-bg .category-wrapper h4 {
    padding-top: 0;
    font-size: calc(14px + 4*(100vw - 320px)/1600)
}

.category-m.w-bg .category-wrapper .bg-size {
    margin: 20px auto 0
}

.category-m.w-bg .category-wrapper img {
    width: 140px;
    margin: 20px auto 0;
    height: 140px;
    object-fit: contain
}

.background {
    background-color: #f1f5f4;
    padding: 20px 10px;
    margin: 0
}

.background .contain-bg {
    width: 100%;
    background-color: #fff;
    padding-top: 45px;
    padding-bottom: 45px;
    text-align: center;
    transition: all .5s ease;
    position: relative;
    z-index: 1
}

.background .contain-bg:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 0;
    transition: all .5s ease
}

.background .contain-bg h4 {
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    transition: all .5s ease
}

.background .contain-bg:hover:after {
    opacity: .07;
    transition: all .5s ease
}

.background .contain-bg:hover h4 {
    color: var(--theme-color);
    transition: all .5s ease
}

.img-category {
    text-align: center
}

.img-category .img-sec {
    border-radius: 100%;
    margin: 0 auto;
    width: 85%;
    border: 3px solid #fff;
    transition: all .5s ease;
    background-color: #ededed
}

.img-category h4 {
    text-transform: capitalize;
    margin-top: 12px;
    color: #000;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 0
}

.img-category h4 a {
    color: #000
}

.img-category .pattern-bg {
    background-image: url("../../images/vector-pattern/1.jpg");
    border-radius: 100%;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-position: 0 0;
    background-repeat: repeat-y;
    transition: all .5s ease
}

.img-category .pattern-bg .img-sec {
    width: 100%;
    border: none !important
}

.img-category .pattern-bg.bg2 {
    background-image: url("../../images/vector-pattern/2.jpg")
}

.img-category .pattern-bg.bg3 {
    background-image: url("../../images/vector-pattern/3.jpg")
}

.img-category .pattern-bg.bg4 {
    background-image: url("../../images/vector-pattern/4.jpg")
}

.img-category .pattern-bg.bg5 {
    background-image: url("../../images/vector-pattern/5.jpg")
}

.img-category .pattern-bg.bg6 {
    background-image: url("../../images/vector-pattern/6.jpg")
}

.img-category:hover .img-sec,
.img-category.hover-effect .img-sec {
    border: 3px solid var(--theme-color);
    transition: all .5s ease
}

.img-category:hover .pattern-bg,
.img-category.hover-effect .pattern-bg {
    animation: 15s linear 0s infinite normal none running animatedBackground2;
    transition: all .5s ease
}

.deal-category {
    position: relative
}

.deal-category .deal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    transform: translate(-50%, -50%);
    background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px
}

.deal-category .deal-content h2 {
    text-transform: capitalize;
    font-size: 23px;
    letter-spacing: unset;
    line-height: 1.3
}

.deal-category .deal-content h2:last-child {
    margin-bottom: 0
}

@media(max-width: 1600px) {
    .deal-category .deal-content h2 {
        font-size: 16px
    }
}

.gradient-category {
    text-align: center;
    margin-top: 18px
}

.gradient-category .gradient-border {
    background: #654ea3;
    background: linear-gradient(to right, var(--theme-color), var(--theme-color2));
    padding: 3px;
    width: 100%;
    height: 220px;
    position: relative;
    z-index: 1;
    transform: scale(0.94)
}

.gradient-category .gradient-border .img-sec {
    background-color: #efefef;
    width: calc(100% - 1px);
    transition: all .5s ease;
    height: 100%;
    position: relative;
    z-index: 1
}

.gradient-category .gradient-border .img-sec:after {
    content: "";
    background-image: url("../../images/wave-bg.jpg");
    background-position: 0 0;
    background-repeat: repeat-y;
    width: 100%;
    height: 100%;
    animation: animatedBackground2 15s linear infinite;
    transition: all .5s ease;
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    z-index: -1
}

.gradient-category .gradient-border .img-sec img {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    transform: translateX(-50%);
    height: calc(100% + 35px);
    object-fit: contain
}

.gradient-category h4 {
    text-transform: capitalize;
    margin-top: 12px;
    color: #000;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 0
}

.gradient-category:hover .gradient-border .img-sec:after,
.gradient-category.hover-effect .gradient-border .img-sec:after {
    opacity: 1;
    transition: all .5s ease
}

.category-slide .img-category h4 {
    font-size: 14px
}

.category-slide .img-category .img-sec {
    width: 65%
}

.vector-category {
    padding-top: 0;
    margin-top: -70px
}

.vector-category .container {
    background-color: #fff;
    position: relative;
    padding-top: 30px;
    box-shadow: 0 0 20px #f1f1f1;
    padding-bottom: 30px
}

.vector-category .category-slide .img-category .img-sec {
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 0
}

.vector-category .category-slide .img-category .img-sec img,
.vector-category .category-slide .img-category .img-sec svg {
    width: 60px
}

.vector-category.vector-style-2 {
    padding-top: 30px;
    margin-top: 0;
    box-shadow: 0 0 8px #ddd;
    padding-bottom: 40px
}

.vector-category.vector-style-2 .container {
    padding: 0;
    box-shadow: none
}

.vector-category.vector-style-2 .category-slide .img-category {
    display: flex;
    align-items: center;
    justify-content: center
}

.vector-category.vector-style-2 .category-slide .img-category h4 {
    margin: 0;
    color: #565656;
    font-weight: 500;
    font-size: 16px
}

.vector-category.vector-style-2 .category-slide .img-category .img-sec {
    width: 58px;
    height: 58px;
    margin-inline: 0 22px
}

.vector-category.vector-style-2 .category-slide .img-category .img-sec img {
    width: 35px
}

.category-img-wrapper .category-wrap .category-content {
    text-align: center;
    padding-top: 14px
}

.category-img-wrapper .category-wrap .category-content .bg-size,
.category-img-wrapper .category-wrap .category-content img {
    filter: none;
    transition: all .5s ease
}

.category-img-wrapper .category-wrap .category-content h3 {
    font-size: calc(16px + 4*(100vw - 320px)/1600);
    color: #000;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: calc(0px + 4*(100vw - 320px)/1600)
}

.category-img-wrapper .category-wrap .category-content a {
    color: #909090;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.category-img-wrapper .category-wrap .category-content.top-content {
    padding-top: 0;
    padding-bottom: 14px
}

.category-img-wrapper .category-wrap:hover .bg-size,
.category-img-wrapper .category-wrap:hover img {
    filter: saturate(0.3);
    transition: all .5s ease
}

.category-style-1 .category-block .category-image {
    width: 85%;
    height: auto;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1
}

@media(max-width: 991px) {
    .category-style-1 .category-block .category-image {
        width: 100%
    }
}

.category-style-1 .category-block .category-image:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 38px;
    background-color: var(--theme-color);
    opacity: .2;
    z-index: -1
}

.category-style-1 .category-block .category-image img {
    width: auto
}

.category-style-1 .category-block:hover .category-image {
    background-color: rgba(0, 0, 0, 0)
}

.category-style-1 .category-block:hover .category-image img {
    filter: none
}

.button-dark.category-button .btn {
    color: #fff;
    border: none !important;
    background-color: #232323;
    display: flex;
    align-items: center;
    transition: all .5s ease
}

.button-dark.category-button .btn:before {
    display: none
}

.button-dark.category-button .btn img {
    width: 35px;
    transition: all .5s ease;
    margin-right: 14px
}

.button-dark.category-button .btn:hover {
    background-color: #232323;
    transition: all .5s ease
}

.category-rounded .category-block .category-details h5 {
    padding: 2px 14px;
    display: inline-block;
    background-color: var(--theme-color);
    border-radius: 15px;
    color: #fff;
    margin-bottom: 0
}

.category-rounded .category-block .category-image.svg-image {
    border-radius: 10px
}

.category-width .category-block .category-image img {
    width: 40px
}

.vegetables-category .category-boxes {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    background-color: #f8f8f8;
    padding: 18px
}

.vegetables-category .category-boxes .img-sec {
    width: 42%;
    margin: 0 auto 12px;
    height: calc(60px + 30*(100vw - 320px)/1600);
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center
}

.vegetables-category .category-boxes .img-sec img {
    transition: all .5s ease
}

.vegetables-category .category-boxes .img-sec .skeleton-img-sec {
    display: none
}

.vegetables-category .category-boxes h4 {
    margin-bottom: 0;
    color: #222;
    line-height: 1.4;
    font-size: 16px
}

.vegetables-category .category-boxes:hover .img-sec img {
    transform: scale(1.1);
    transition: all .5s ease
}

.left-header .menu-left ul li {
    display: flex
}

.left-header .menu-left ul li a {
    padding: 10px 0 20px 0;
    background-color: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .07em;
    text-align: right;
    width: 100%
}

.marketplace-sidebar ul li {
    display: flex
}

.marketplace-sidebar ul li a {
    padding: 10px 30px 8px 30px;
    background-color: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .07em;
    width: 100%
}

.category-nft {
    padding-bottom: 0
}

.category-nft .category-block {
    border: 1px solid #ddd;
    display: block;
    width: max-content;
    padding: calc(8px + 4*(100vw - 320px)/1600);
    border-radius: 0;
    margin: 0 auto
}

.category-nft .category-block:hover {
    background-color: #f8f8f8;
    transition: all .5s ease
}

.category-nft .category-block:hover .category-details h5 {
    color: var(--theme-color);
    transition: all .5s ease
}

.category-nft .category-image {
    margin: 0 auto;
    text-align: center;
    border: unset;
    border-radius: 100%;
    width: 110px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease;
    border-radius: 0;
    overflow: hidden
}

.category-nft .category-image img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.category-nft .category-details {
    margin-top: 3px;
    text-align: center
}

.category-nft .category-details h5 {
    font-weight: 600;
    margin: 0 auto;
    letter-spacing: 1.1px;
    transition: all .5s ease;
    text-transform: uppercase;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.category-nft .category-details a {
    padding: 0;
    border: unset;
    box-shadow: unset;
    margin-top: 11px
}

.category-nft .category-details h6 {
    margin-bottom: -6px;
    margin-top: -4px
}

.nft-collection-section {
    background-color: #1b1c21;
    overflow: hidden;
    padding: calc(40px + 70*(100vw - 320px)/1600) 0
}

.nft-collection-section .title2 .title-inner2 {
    color: #fff
}

.nft-collection-section .nft-collection-box {
    border-radius: 15px;
    background-color: #262935;
    padding: 10px;
    position: relative
}

[dir=rtl] .nft-collection-section .nft-collection-box {
    direction: rtl
}

.nft-collection-section .nft-collection-box .collection-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 6px
}

.nft-collection-section .nft-collection-box .collection-header img {
    width: 50px;
    height: 50px;
    border-radius: 100%
}

.nft-collection-section .nft-collection-box .collection-header h4 {
    margin-bottom: 2px;
    color: #fff
}

.nft-collection-section .nft-collection-box .collection-header h5 {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .8)
}

.nft-collection-section .nft-collection-box .collection-header .wishlist-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    right: 30px;
    top: 12px;
    color: #fff
}

.nft-collection-section .nft-collection-box .collection-header .wishlist-icon svg {
    width: 20px;
    color: #fff
}

.nft-collection-section .nft-collection-box .collection-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px
}

.nft-collection-section .nft-collection-box .collection-img .custom-grid {
    display: grid;
    gap: 0;
    padding: 0;
    grid-template-columns: 50% 50%
}

.nft-collection-section .nft-collection-box .collection-img .custom-grid>div {
    padding: 5px
}

.nft-collection-section .nft-collection-box .collection-img .custom-grid>div .collection-bg-img {
    border-radius: 10px
}

.nft-collection-section .nft-collection-box .collection-img .custom-grid>div:first-child {
    grid-column: 1/2;
    grid-row: 1/3
}

.nft-collection-section .nft-collection-box .collection-img .custom-grid>div:first-child .collection-bg-img {
    height: 100%
}

@media(max-width: 767px) {
    .nft-collection-section .nft-collection-box .custom-grid>div:first-child {
        grid-column: 1/4
    }

    .nft-collection-section .nft-collection-box .custom-grid>div:nth-child(3),
    .nft-collection-section .nft-collection-box .custom-grid>div:nth-child(5) {
        grid-column: 2/4
    }
}

.full-scroll-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0)
}

.full-scroll-menu .container-fluid {
    padding-inline: 60px
}

.full-scroll-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%
}

.full-scroll-footer .sub-footer {
    background-color: rgba(0, 0, 0, 0)
}

.full-scroll-footer .sub-footer .container-fluid {
    padding-inline: 60px
}

@media(min-width: 1199px) {
    header.full-scroll-menu .main-menu .menu-left .navbar {
        padding: 0;
        display: block
    }

    header.full-scroll-menu .main-menu .menu-left .navbar.white-navbar {
        padding: 30px 25px 30px 0
    }

    header.full-scroll-menu .main-menu .menu-left .navbar.white-navbar svg {
        color: #222
    }

    header.full-scroll-menu .dropdown-header {
        padding: 8px 20px !important
    }

    header.full-scroll-menu .navbar-nav .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: none !important;
        transform: translateY(0)
    }

    header.full-scroll-menu .sidenav {
        width: 330px;
        left: -350px
    }

    header.full-scroll-menu .sidenav nav {
        overflow: auto
    }

    header.full-scroll-menu .sidenav .sidebar-back {
        margin: 0
    }

    header.full-scroll-menu .offcanvas.show {
        box-shadow: none !important
    }

    header.full-scroll-menu .navbar-nav .dropdown-menu-2 {
        width: 100%;
        min-width: unset;
        padding: 0 !important
    }

    header.full-scroll-menu .navbar-nav .nav-item .dropdown-menu .nav-link {
        display: none !important
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown-menu {
        box-shadow: none
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown-menu .dropdown-item {
        margin: 0
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown:hover>.dropdown-menu {
        display: none !important
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown .dropdown-menu-2 {
        position: relative;
        inset: unset;
        display: flex !important;
        transform: none !important;
        left: unset !important
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown .dropdown-menu-2.show {
        display: block !important
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown>.dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
        inset: unset;
        display: none !important;
        flex-direction: column;
        transform: none !important;
        padding-block: 0 !important
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown>.dropdown-menu.show {
        display: block !important
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown>.dropdown-menu .row>* {
        flex: 0 0 auto;
        width: 100%
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav {
        flex-direction: column;
        width: 100%
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item:not(.dropdown-mega)>.dropdown-menu {
        margin-top: 10px !important
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item:not(.dropdown-mega)>.dropdown-menu .dropdown-menu {
        margin-top: 0 !important
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item>a {
        justify-content: flex-start !important;
        text-align: left;
        padding: 0 !important
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item>a:before {
        right: 10px !important
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item+.nav-item {
        margin-left: 0 !important;
        margin-top: 15px
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item {
        padding: 0;
        margin-top: 0
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item a {
        padding: 4px 16px !important;
        margin-left: 15px;
        color: #4a5568
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item a:after {
        content: "";
        position: absolute;
        width: 7px;
        height: 1px;
        background-color: rgba(74, 85, 104, .65);
        opacity: 1;
        top: 50%;
        transform: translateY(-50%);
        left: 0
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-menu>.nav-item {
        padding: 0
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-menu>.nav-item a {
        padding: 4px 16px !important;
        margin-left: 15px;
        color: #4a5568
    }

    header.full-scroll-menu .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-menu>.nav-item a:after {
        content: "";
        position: absolute;
        width: 7px;
        height: 1px;
        background-color: rgba(74, 85, 104, .65);
        opacity: 1;
        top: 50%;
        transform: translateY(-50%);
        left: 0
    }

    header.full-scroll-menu .navbar-expand-xl.navbar .offcanvas-body {
        padding: calc(13px + 7*(100vw - 320px)/880) calc(16px + 8*(100vw - 320px)/880)
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header {
        padding-left: 10px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(34, 34, 34, .8);
        margin-bottom: 0
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header::after {
        display: none
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item {
        padding: 4px 16px;
        margin-left: 15px;
        color: #4a5568
    }

    header.full-scroll-menu .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item::after {
        content: "";
        position: absolute;
        width: 7px;
        height: 1px;
        background-color: rgba(74, 85, 104, .65);
        opacity: 1;
        top: 50%;
        transform: translateY(-50%);
        left: 0
    }

    header.full-scroll-menu .new-nav-item .new-dropdown {
        display: none
    }

    header.full-scroll-menu .cart_qty_cls {
        top: 20px
    }
}

.digital-download .category-nft .category-image {
    width: 70px
}

.digital-download .category-nft .category-image img {
    object-fit: contain
}

.home-slider {
    position: relative
}

.home-slider.fullpage .home {
    height: calc(100vh - 2px)
}

.home-slider.fullpage .home .slider-contain {
    height: calc(100vh - 2px);
    padding-left: 25px
}

.home-slider.fullpage .home .slider-contain h1 {
    font-style: italic;
    font-size: 50px;
    margin-top: -12px
}

.home-slider.fullpage .home .slider-contain p {
    max-width: 600px;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #777
}

.home-slider.fullpage .height-vh {
    height: 100vh
}

@media(max-width: 767px) {
    .home-slider.fullpage .height-vh {
        height: calc(100vh - 72px)
    }
}

.home-slider.fullpage .slick-next,
.home-slider.fullpage .slick-prev {
    display: none !important
}

.home-slider.fullpage:hover .slick-next,
.home-slider.fullpage:hover .slick-prev {
    display: none !important
}

.home-slider.fullpage .slick-dots {
    top: 50%;
    bottom: unset;
    width: unset;
    left: 20px;
    transform: translateY(-50%)
}

.home-slider.fullpage .slick-dots li {
    display: flex
}

.home-slider.fullpage .slick-dots li button:before {
    font-size: 15px;
    color: var(--theme-color);
    opacity: .2
}

.home-slider.fullpage .slick-dots li.slick-active button:before {
    opacity: .8
}

.home-slider.instagram-slider .home {
    height: 50vh
}

.home-slider.instagram-slider .home .slider-contain {
    height: 50vh
}

.home-slider.slick-dotted.slick-slider {
    margin-bottom: 0
}

.video-layout {
    height: calc(100vh - 5px);
    width: 100vw;
    object-fit: fill
}

.box-layout-body {
    background-color: #f9f9f9
}

.box-layout-body .box-layout-header {
    background-color: #fff
}

.box-layout-body .box-layout {
    margin-top: -70px;
    margin-bottom: 5px;
    box-shadow: 0 0 8px 0 #ddd;
    position: relative;
    background-color: #fff
}

.box-layout-body .box-layout .full-banner {
    margin-inline: -15px;
    padding-block: calc(100px + 100*(100vw - 320px)/1600)
}

.box-layout-body .box-layout>section>.container {
    padding: 0
}

.beauty-about .about-text p {
    text-align: left
}

.beauty-about.border-about .border-cls {
    position: relative
}

.beauty-about.border-about .border-cls:after {
    position: absolute;
    content: "";
    width: 90%;
    height: 95%;
    left: -10px;
    top: -20px;
    border: 10px solid var(--theme-color);
    z-index: -1
}

.beauty-about.border-about .service-block1 svg {
    margin-bottom: 6px
}

.beauty-about.border-about .service-block1:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    right: 30%;
    top: 0;
    background-color: var(--theme-color);
    z-index: -1;
    opacity: .18
}

.beauty-about.border-about .about-section .small-section {
    padding-top: 0
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

.about-section .small-section {
    padding-top: 20px
}

.about-section .service-block1 {
    padding: 16px 14px;
    border: none
}

.about-section .service-block1 img {
    margin-bottom: 10px
}

.about-section .service-block1 h5 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0
}

.video-modal .modal-body {
    padding: 0
}

.video-modal iframe {
    height: 500px;
    width: 100%;
    vertical-align: middle;
    border: none
}

.video-section .video-img {
    position: relative;
    overflow: hidden
}

.video-section .video-img img {
    transition: all .5s ease;
    transform: scale(1)
}

.video-section .video-img .play-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.video-section .video-img .play-btn span {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background-color: var(--theme-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.video-section .video-img .play-btn i {
    font-size: 35px;
    padding-left: 5px;
    color: #fff
}

.video-section .video-img:hover img {
    transform: scale(1.03);
    transition: all .5s ease
}

.flower-bg {
    background-image: url("../../images/flower/flower-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 100%
}

.bg-block {
    background-image: url("../../images/flower/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    padding: calc(30px + 40*(100vw - 320px)/1600) calc(15px + 35*(100vw - 320px)/1600) calc(30px + 30*(100vw - 320px)/1600) calc(15px + 35*(100vw - 320px)/1600)
}

.bg-block .title4 .line {
    margin-bottom: 25px
}

.bg-block .theme-tab .tab-title {
    margin-bottom: 30px
}

.layout-20 {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px
}

.game-back {
    background-image: url("https://i.pinimg.com/originals/e0/80/08/e08008c19c8e9e1b0074baf36d699407.jpg");
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, .6)
}

.game-back .pixelstrap.sm-horizontal>li>a {
    color: #fff
}

.game-back .pixelstrap.sm-horizontal>li>a:hover,
.game-back .pixelstrap.sm-horizontal>li>a.active {
    color: #fff
}

.game-back .onhover-div img {
    filter: brightness(100)
}

.game-back .main-menu.border-section {
    border-bottom: none
}

.game-back .main-menu .menu-left .navbar i {
    color: #fff
}

.main-banner-bg {
    padding: 45px 0
}

.main-banner-bg .small-slider {
    border: 20px solid #fff
}

.main-banner-bg .small-slider .home-slider .home .slider-contain {
    align-items: flex-end
}

.main-banner-bg .small-slider .home-slider .home .slider-contain h1,
.main-banner-bg .small-slider .home-slider .home .slider-contain h4 {
    color: #fff
}

.main-banner-bg .small-slider .home-slider .home .slider-contain>div {
    margin-bottom: 30px
}

.game-banner .banner-timer {
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, .4);
    margin-inline: 0
}

.game-banner .banner-timer .banner-text h2 {
    color: #fff
}

.game-banner .timer {
    background-color: rgba(45, 42, 37, .4)
}

.game-slider .theme-card .offer-slider img {
    height: 220px
}

.bg-footer {
    background-position: bottom
}

.bg-footer .light-layout {
    background-color: rgba(0, 0, 0, 0)
}

.game-parallax .full-banner.parallax {
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, .6)
}

.game-parallax .full-banner .banner-contain h3,
.game-parallax .full-banner .banner-contain h4 {
    color: #fff
}

.effect-cls {
    position: relative
}

.effect-cls:after {
    content: "";
    position: absolute;
    background: url(../../images/game/top.png);
    top: -1px;
    width: 100%;
    height: 85px;
    z-index: 1;
    background-repeat: no-repeat
}

.effect-cls:before {
    content: "";
    position: absolute;
    background: url("../../images/game/back.png");
    bottom: -12px;
    width: 100%;
    height: 110px;
    z-index: 1
}

.effect-cls.footer-effect:before {
    display: none
}

.gym-parallax .title1 h2 {
    color: #fff
}

.gym-parallax .product-para p {
    color: #fff
}

.gym-parallax .instagram-box .overlay {
    background: linear-gradient(-180deg, var(--theme-color) 0%, var(--theme-color2) 99%)
}

.gym-product {
    text-align: center
}

.gym-product .product-box {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 0 8px 0 #ddd;
    transition: all .5s ease
}

.gym-product .product-box .img-wrapper {
    position: unset
}

.gym-product .product-box .img-wrapper .cart-info {
    width: 100%;
    z-index: 1;
    display: flex;
    left: 0;
    height: 100%;
    align-items: center;
    bottom: 0;
    top: 0
}

.gym-product .product-box .img-wrapper .cart-info i {
    background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 99%);
    color: rgba(255, 255, 255, .6);
    border-radius: 100%;
    margin: 0 5px;
    transition: all .5s ease
}

.gym-product .product-box .img-wrapper .cart-info button:hover i,
.gym-product .product-box .img-wrapper .cart-info a:hover i {
    color: #fff
}

.gym-product .product-box .product-detail h6 {
    color: #777
}

.gym-product .product-box .product-detail h4 {
    color: #222 !important
}

.gym-product .product-box:hover {
    transform: scale(1.02);
    transition: all .5s ease
}

.gym-product .product-box:hover .img-wrapper .cart-info {
    opacity: 1;
    transition: all .5s ease
}

.gym-product .product-box:hover .img-wrapper .cart-info button {
    animation: fadeInUp 300ms ease-in-out
}

.gym-product .product-box:hover .img-wrapper .cart-info a:nth-child(2) i {
    animation: fadeInUp 500ms ease-in-out
}

.gym-product .product-box:hover .img-wrapper .cart-info a:nth-child(3) i {
    animation: fadeInUp 700ms ease-in-out
}

.gym-product .product-box:hover .img-wrapper .cart-info a:nth-child(4) i {
    animation: fadeInUp 1000ms ease-in-out
}

.gym-product .partition-cls>div:nth-child(-n+4) {
    margin-bottom: 30px
}

.gym-blog .blog-details {
    text-align: left;
    padding-left: 0
}

.gym-blog .blog-details p {
    margin-bottom: 3px
}

.gym-banner .collection-banner .contain-banner h4,
.gym-banner .collection-banner .contain-banner h2 {
    color: #fff
}

.bg-img-gym.overlay-cls {
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, .85)
}

.bg-img-gym .dark-layout {
    background-color: rgba(0, 0, 0, 0)
}

.bg-img-gym .footer-theme2 p {
    color: #fff
}

.bg-img-gym .footer-theme2 .contact-details li {
    color: #fff
}

.bg-img-gym .footer-theme2 .contact-details li a {
    color: #fff
}

.bg-img-gym .footer-theme2 .footer-link a,
.bg-img-gym .footer-theme2 .footer-link-b a {
    color: #ebebeb
}

.bg-img-gym .sub-footer.darker-subfooter {
    background-color: #000
}

.bg-img-gym .sub-footer.darker-subfooter p {
    color: #fff
}

.jewel-footer .sub-footer.black-subfooter {
    background-color: #f1f5f4
}

.home.bg-position {
    background-position: top
}

.pets-box .product-box .img-wrapper .cart-info {
    position: absolute;
    padding: 10px;
    border: none;
    transform: perspective(500px) rotateX(90deg);
    bottom: 0;
    z-index: 1
}

.pets-box .product-box .img-wrapper .cart-info:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .3;
    z-index: -1
}

.pets-box .product-box .img-wrapper .cart-info i {
    padding: 5px;
    margin: 0 3px;
    background-color: #fff
}

.pets-box .product-box .img-wrapper .cart-info a {
    border-left: none
}

.pets-box .product-box .product-detail {
    text-align: center;
    background-color: #fafafa
}

.pets-box .product-box .product-detail .rating {
    margin-top: 0;
    padding-top: 15px
}

.pets-box .product-box:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .08)
}

.pets-box .product-box:hover .cart-info {
    transform: perspective(500px) rotateX(0deg)
}

footer.pet-layout-footer .footer-brand-logo {
    margin-bottom: 20px
}

footer.pet-layout-footer .sub-footer.black-subfooter {
    background-color: var(--theme-color)
}

footer.pet-layout-footer .sub-footer p {
    padding: 15px 0;
    color: #fff
}

footer.pet-layout-footer .social-white {
    display: block;
    margin-top: 40px;
    margin-bottom: 30px
}

.shoes-category-section .slick-slider.slick-slider {
    margin-bottom: 0
}

.form_search {
    height: 45px;
    box-shadow: 0 0 0 1px #e2e2e2;
    position: relative;
    width: 700px;
    background-color: #f5f5f5;
    border-radius: 25px
}

.form_search input {
    width: 100%;
    height: 45px;
    font-size: 16px;
    color: #a9a9a9;
    border: none;
    outline: none;
    background: none;
    padding: 0 10px
}

.form_search input:focus {
    background-color: #f5f5f5
}

.form_search button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 35px;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center
}

.form_search button svg {
    width: unset;
    height: unset;
    font-size: 18px;
    color: var(--theme-color)
}

.form_search .search-suggestion-box {
    margin-top: 13px
}

.blog.blog_box .blog-details {
    text-align: left;
    padding: 0
}

.blog.blog_box .blog-details p {
    font-size: 14px;
    text-transform: none;
    color: #333;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 3px
}

.blog.blog_box .blog-details a p {
    color: #40494f;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 10px
}

.blog.blog_box .blog-details hr.style1 {
    margin-inline: 0
}

.blog.blog_box .blog-details .read-cls {
    text-transform: capitalize;
    font-weight: 700;
    color: #000
}

.tools-bg {
    background-color: #f5f5f5
}

.tools-bg .basic-product {
    background-color: #fff
}

.tools-bg .theme-card .offer-slider img {
    background-color: #fff
}

.tools-bg section {
    background-color: #f5f5f5
}

.tools-bg .footer-background .footer-light .border-section {
    background-color: rgba(0, 0, 0, 0)
}

.tools-parallax.small-slider .home-slider .home .slider-contain h4,
.tools-parallax.small-slider .home-slider .home .slider-contain h1 {
    color: #fff
}

.tools-parallax-product.full-banner {
    padding-top: 110px;
    padding-bottom: 110px
}

.tools-parallax-product .tools-description h3 {
    color: #fff;
    text-transform: uppercase;
    margin-top: -5px
}

.tools-parallax-product .tools-description .tools-form .search-box {
    width: 75%;
    margin: 20px 0
}

.tools-parallax-product .tools-description .tools-form .search-box select {
    text-transform: capitalize
}

.tools-parallax-product .tools-description .tools-form .btn-find {
    width: 75%;
    padding: 7px 29px;
    background-size: 1000px
}

.tools-parallax-product .tools-grey .slick-prev,
.tools-parallax-product .tools-grey .slick-next {
    transform: scale(1.5)
}

.tools_slider .home-slider .home .container {
    position: relative
}

.tools_slider .home-slider .home .tools-parts {
    position: absolute;
    top: 0;
    right: 10%;
    display: flex;
    align-items: center;
    height: 85vh;
    margin-top: 50px
}

.tools_slider .home-slider .home .tools-parts1 {
    position: absolute;
    top: 0;
    right: 20%;
    display: flex;
    align-items: center;
    height: 85vh;
    margin-top: 50px
}

.tools_slider .home-slider .slider-contain {
    margin-top: 70px;
    margin-left: 150px
}

.tools_slider .home-slider .slider-contain h4,
.tools_slider .home-slider .slider-contain h1 {
    color: #fff
}

.nft-home .home-slider .home {
    background-color: #151515
}

.nft-home .home-slider .slider-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-top: 70px
}

.nft-home .home-slider .slider-img img {
    width: 50%;
    animation: float 5s ease-in-out infinite
}

.nft-home .home-slider .slider-img img.sm-img {
    width: 41%;
    margin-right: -70px;
    animation: float 6s ease-in-out infinite
}

@media(max-width: 991px) {
    .nft-home .home-slider .slider-img img.sm-img {
        width: 50%;
        margin-right: -50px
    }
}

@media(max-width: 767px) {
    .nft-home .home-slider .slider-img img.sm-img {
        width: 66%
    }
}

@media(max-width: 991px) {
    .nft-home .home-slider .slider-img img {
        width: 60%
    }
}

@media(max-width: 991px) {
    .nft-home .home-slider .slider-img img {
        width: 70%
    }
}

.nft-home .home-slider .slider-contain {
    padding-top: 70px
}

[dir=rtl] .nft-home .home-slider .slider-contain {
    text-align: right
}

@media(max-width: 576px) {
    .nft-home .home-slider .slider-contain {
        padding-top: 55px
    }
}

.nft-home .home-slider .slider-contain p {
    line-height: 30px;
    font-size: calc(14px + 6*(100vw - 320px)/1600);
    color: #777
}

.nft-home .home-slider .slider-contain h1 {
    text-transform: capitalize;
    font-size: calc(20px + 36*(100vw - 320px)/1600);
    margin-top: 0;
    margin-bottom: 6px;
    color: #fff
}

.nft-home .home-slider .slider-contain h3 {
    margin-top: 14px;
    margin-bottom: 0;
    font-weight: 600;
    color: #777
}

.nft-home .home-slider .slider-contain h3 del {
    margin-left: 10px
}

.nft-box {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 15px
}

[dir=rtl] .nft-box {
    direction: rtl
}

.nft-box .nft-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.nft-box .nft-img .timer-sec {
    position: absolute;
    right: 40px;
    top: 8px;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 26px;
    padding: 2px 10px
}

[dir=rtl] .nft-box .nft-img .timer-sec {
    left: 40px;
    right: unset
}

.nft-box .nft-img a {
    position: absolute;
    right: 10px;
    top: 7px;
    width: 25px;
    color: #5c5c5c;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 100%;
    padding: 5px;
    backdrop-filter: blur(10px)
}

[dir=rtl] .nft-box .nft-img a {
    right: unset;
    left: 10px
}

.nft-box .nft-content .top-content {
    margin-top: 14px
}

.nft-box .nft-content .top-content h4 {
    font-weight: 600;
    color: #222;
    margin-bottom: 4px
}

.nft-box .nft-content .top-content h5 {
    color: #777
}

.nft-box .nft-content .bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nft-box .nft-content .bottom-content span {
    color: #777;
    display: block;
    margin-bottom: 3px
}

.nft-box .nft-content .bottom-content .price {
    display: flex;
    align-items: center;
    gap: 6px
}

.nft-box .nft-content .bottom-content .price img {
    width: 18px
}

.nft-box .nft-content .bottom-content .price h5 {
    margin-bottom: 0
}

.nft-feature-sec .step-bg h4 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px
}

.nft-feature-sec .step-bg .step-box {
    position: relative;
    padding: 50px 35px 33px;
    box-shadow: 0 15px 39px 0 rgba(8, 18, 109, .08);
    transition: all .3s ease;
    background-color: #262935;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 25px
}

.nft-feature-sec .step-bg .step-box .steps {
    position: relative;
    width: 80px;
    height: 80px;
    background: #1b1b1d;
    margin: 0 auto 25px auto;
    color: #fff;
    text-align: center;
    font-weight: 500;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(28px + 12*(100vw - 320px)/1600);
    padding: 8px
}

.nft-feature-sec .step-bg .step-box p {
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px
}

.nft-top-collection .collection-panal .nft-collection {
    display: flex;
    align-items: center;
    gap: calc(10px + 6*(100vw - 320px)/1600)
}

[dir=rtl] .nft-top-collection .collection-panal .nft-collection {
    direction: rtl
}

.nft-top-collection .collection-panal .nft-collection+.nft-collection {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #eee
}

.nft-top-collection .collection-panal .nft-collection .number {
    font-size: calc(13px + 9*(100vw - 320px)/1600);
    width: calc(15px + 10*(100vw - 320px)/1600);
    color: #5a5a5a
}

.nft-top-collection .collection-panal .nft-collection .img-part img {
    width: calc(60px + 10*(100vw - 320px)/1600);
    height: calc(60px + 10*(100vw - 320px)/1600);
    border-radius: 7px;
    overflow: hidden;
    object-fit: cover
}

.nft-top-collection .collection-panal .nft-collection .content {
    width: calc(100% - 120px)
}

@media(max-width: 576px) {
    .nft-top-collection .collection-panal .nft-collection .content {
        width: calc(100% - 100px)
    }
}

.nft-top-collection .collection-panal .nft-collection .content h5 {
    font-weight: 600;
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    margin-bottom: calc(5px + 5*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    gap: 5px
}

.nft-top-collection .collection-panal .nft-collection .content h5 img {
    width: calc(16px + 3*(100vw - 320px)/1600);
    height: auto;
    margin-top: -3px
}

.nft-top-collection .collection-panal .nft-collection .content h6 {
    margin-bottom: 0;
    font-size: calc(12px + 4*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: calc(17px + 7*(100vw - 320px)/1600)
}

.nft-top-collection .collection-panal .nft-collection .content h6:nth-child(2) {
    margin-top: -4px
}

.category-tools .category-m .category-wrapper {
    background-color: #fff;
    border: none;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .05)
}

.category-tools .category-m .category-wrapper .bg-size {
    max-width: 100%
}

.banner-tools {
    margin-top: 30px;
    border: 1px solid #ddd;
    overflow: hidden
}

.banner-tools img {
    transition: all .5s ease
}

.banner-tools:hover img {
    transform: scale(1.05);
    transition: all .5s ease
}

.tools-brand>div>.row {
    padding: 0
}

.tools-brand>div>.row>.col {
    margin: 0
}

.tools-brand .row {
    background-color: #fff;
    padding: 25px 0;
    margin: 0
}

.tools-brand .brand-slider-box .logo-block {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 0;
    height: calc(80px + 40*(100vw - 320px)/1600)
}

.service_slide {
    position: relative
}

.service_slide .home-slider .home {
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, .4)
}

.service_slide .home-slider .slider-contain {
    height: 60vh
}

.service_slide .service-home {
    position: absolute;
    width: 100%;
    bottom: 0
}

.service_slide .service-home .service-block1 {
    background-color: rgba(255, 255, 255, .9);
    padding: 25px 0;
    border: none
}

.service_slide .service-home .service-block1 h4 {
    margin-bottom: 3px;
    margin-top: 3px;
    text-transform: capitalize
}

.service_slide .service-home .service-block1 p {
    text-transform: capitalize
}

.service_slide .service-home .service-block1 svg {
    margin-bottom: 5px;
    width: 50px;
    height: 50px
}

.service_slide .service-home .service-block1:nth-child(even) {
    background-color: rgba(255, 255, 255, .85)
}

.tab-left .theme-tab {
    display: flex
}

.tab-left .theme-tab .left-side {
    width: 30%
}

.tab-left .theme-tab .left-side .left-tab-title {
    margin-bottom: 38px
}

.tab-left .theme-tab .left-side .left-tab-title h4 {
    color: #dafe69;
    margin-top: -3px
}

.tab-left .theme-tab .left-side .left-tab-title h3 {
    color: #fff
}

.tab-left .theme-tab .left-side .tab-title {
    margin-right: 100px;
    text-align: left
}

.tab-left .theme-tab .left-side .tab-title a {
    text-transform: capitalize
}

.tab-left .theme-tab .left-side li {
    width: 100%;
    padding: 7px 0;
    border-bottom: 1px solid #606060
}

.tab-left .theme-tab .left-side li a {
    color: #fff
}

.tab-left .theme-tab .left-side li:first-child {
    border-top: 1px solid #606060
}

.tab-left .theme-tab .left-side li.current a {
    color: #dafe69
}

.tab-left .theme-tab .tab-content-cls {
    width: 70%
}

.border-box.tools-grey .ribbon span {
    background-image: linear-gradient(to right, var(--theme-color), var(--theme-color2))
}

.border-box.tools-grey .product-box {
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #ddd
}

.border-box.tools-grey .product-box .cart-info a:hover {
    background-image: linear-gradient(to right, var(--theme-color), var(--theme-color2))
}

.border-box.tools-grey .product-box .cart-info button:hover {
    background-image: linear-gradient(to right, var(--theme-color), var(--theme-color2))
}

.border-box.tools-grey .product-box .quick-view-part {
    background-image: linear-gradient(to right, var(--theme-color), var(--theme-color2))
}

.detail-cannabis .detail_section {
    text-align: center
}

.detail-cannabis .detail_section>div {
    box-shadow: -1px 2px 5px 1px #ececec;
    padding: 45px 25px;
    background-color: #fff
}

.detail-cannabis .detail_section p {
    margin-bottom: 0;
    line-height: 24px;
    letter-spacing: .05em
}

.detail-cannabis .detail_section h4 {
    font-weight: 700
}

.detail-cannabis .detail_section img {
    height: auto;
    width: 50px;
    margin-bottom: 15px
}

.detail-cannabis .detail_section svg {
    width: 50px;
    margin-bottom: 15px;
    fill: var(--theme-color)
}

.overflow-cls {
    overflow: visible !important
}

.margin-add {
    margin-top: 60px
}

.grey-bg {
    background-color: #f5f5f5
}

.blog-section .blog-details h4 {
    color: var(--theme-color);
    margin-top: 15px;
    line-height: 1;
    margin-bottom: 0
}

.blog-section .blog-details p {
    color: #222;
    font-weight: 600;
    letter-spacing: .03em;
    margin-top: 6px;
    margin-bottom: 6px;
    transition: all .5s ease
}

.blog-section .blog-details h6 {
    line-height: 1;
    letter-spacing: .1em;
    margin-bottom: 0
}

.blog-section .blog-wrap .blog-image {
    overflow: hidden
}

.blog-section .blog-wrap .blog-image img {
    transition: all .5s ease
}

.blog-section .blog-wrap:hover .blog-details p {
    color: var(--theme-color);
    transition: all .5s ease
}

.blog-section .blog-wrap:hover .blog-image img {
    transform: scale(1.2);
    transition: all .5s ease
}

.blog-section .slick-slider.slick-slider {
    margin-bottom: 0
}

.blog-section .slick-slider .slick-list {
    margin: 0 -12px
}

.blog-section .slick-slider .slick-list .slick-slide>div {
    margin: 0 12px;
    position: relative
}

.blog-section .review-box {
    background-color: #fff;
    z-index: 1;
    text-align: center;
    padding: 30px;
    position: relative
}

.blog-section .review-box:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--theme-color);
    opacity: .5;
    z-index: -1
}

.blog-section .review-box .slick-prev {
    z-index: 1;
    top: unset;
    bottom: 0;
    left: -30px;
    right: 0;
    margin: 0 auto
}

.blog-section .review-box .slick-prev:before {
    font: normal normal normal 900 14px/1 FontAwesome;
    content: "";
    color: #717171
}

.blog-section .review-box .slick-prev:after {
    position: absolute;
    content: "";
    height: 13px;
    width: 2px;
    background-color: #eee;
    left: 24px
}

.blog-section .review-box .slick-next {
    top: unset;
    left: 30px;
    right: 0;
    margin: 0 auto;
    bottom: 0
}

.blog-section .review-box .slick-next:before {
    font: normal normal normal 900 14px/1 FontAwesome;
    content: "";
    color: #717171
}

.blog-section .review-box .slick-prev {
    left: -30px;
    right: 0;
    margin: 0 auto
}

.blog-section .review-box .review-content .avtar {
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 100%;
    display: inline-block;
    margin-top: 10px
}

.blog-section .review-box .review-content .avtar img {
    border-radius: 100%;
    height: 60px;
    width: auto;
    margin: 0 auto;
    border: 1px solid #eee
}

.blog-section .review-box .review-content h5 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--theme-color);
    margin-top: 15px
}

.blog-section .review-box .review-content h6 {
    margin-bottom: 0;
    margin-top: 10px;
    text-transform: capitalize;
    color: #555;
    font-size: 16px
}

.blog-section .review-box .review-content p {
    margin-top: 20px;
    margin-bottom: 80px;
    line-height: 24px
}

.instagram {
    position: relative
}

.instagram .insta-decor {
    position: absolute;
    top: 0;
    right: 0
}

.card-white-bg .theme-card {
    background-color: #fff;
    padding: 20px
}

.logo-section {
    position: relative
}

.logo-section .logo-decor {
    position: absolute;
    bottom: 0;
    left: 0
}

#preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    overflow: hidden
}

.bakery-banner .home-slider .slider-contain>div {
    background-color: #fff;
    padding: 50px 80px;
    position: relative;
    z-index: 1
}

.bakery-banner .home-slider .slider-contain>div:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    transform: translate(-50%, -50%);
    border: 4px solid var(--theme-color);
    opacity: .66;
    z-index: -1
}

.animation-sec {
    position: relative;
    overflow: hidden
}

.animation-sec .animated-icon .icon-1 {
    width: 160px;
    position: absolute;
    top: 30px;
    left: -50px
}

.animation-sec .animated-icon .icon-1 img {
    transform: rotate(-76deg);
    opacity: .3
}

.animation-sec .animated-icon .icon-2 {
    width: 120px;
    position: absolute;
    bottom: 160px;
    right: -30px
}

.animation-sec .animated-icon .icon-2 img {
    opacity: .3
}

.animation-sec .animated-icon .icon-3 {
    position: absolute;
    left: 32%;
    width: 100px;
    top: 90px
}

.animation-sec .animated-icon .icon-3 img {
    transform: rotate(-25deg);
    opacity: .2
}

.custom-cake {
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, .92);
    position: relative;
    z-index: 1
}

.custom-cake .steps-media {
    align-items: center;
    margin-bottom: 50px
}

.custom-cake .steps-media h5 {
    font-weight: 600
}

.custom-cake .steps-media img {
    width: 60px;
    margin-right: 20px
}

.custom-cake .steps-media select {
    appearance: none;
    background-color: #fff;
    border: none;
    box-shadow: 0 0 8px #e4e4e4
}

.custom-cake .customized-bottom {
    display: flex;
    align-items: flex-end
}

.custom-cake .customized-bottom .form-control {
    border: none;
    box-shadow: 0 0 8px #e4e4e4
}

.custom-cake .customized-bottom .form-group {
    margin-bottom: 0;
    margin-right: 20px;
    width: 42%
}

.custom-cake .customized-bottom .form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 24px;
    letter-spacing: .05em
}

.custom-cake .customized-bottom h5 {
    font-size: 18px;
    color: #222;
    font-weight: 600;
    margin-right: 20px;
    margin-bottom: 12px
}

.custom-cake:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #fafafa 0%, rgba(250, 250, 250, 0.99) 1%, rgba(125, 185, 232, 0) 100%);
    z-index: -1
}

.bakery-card .offer-slider .row {
    margin-bottom: -30px
}

.bakery-card .offer-slider .row>div {
    margin-bottom: 30px
}

.bakery-card .offer-slider .media {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 8px #f5f5f5
}

.bakery-card .offer-slider .media .lable {
    background-color: var(--theme-color);
    color: #fff;
    padding: 8px 6px;
    border-radius: 100%;
    text-transform: capitalize;
    position: absolute;
    left: 130px;
    top: 20px
}

.chef-section .slick-list {
    margin-inline: -12px
}

.chef-section .slick-list .slick-slide>div {
    margin-inline: 12px
}

.chef-section .chef-box {
    box-shadow: 0 0 8px #e7e7e7;
    margin: 10px 0;
    background-color: #fff
}

.chef-section .chef-box img {
    width: 70%;
    margin: 0 auto
}

.chef-section .chef-box .chef-detail {
    text-align: center;
    padding: 17px 0;
    position: relative
}

.chef-section .chef-box .chef-detail h3 {
    text-transform: capitalize;
    color: var(--theme-color);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 22px
}

.chef-section .chef-box .chef-detail h5 {
    font-size: 18px;
    color: #adadad;
    margin-bottom: 0
}

.chef-section .chef-box .chef-detail:after {
    content: "";
    height: 3px;
    background-color: #e6e6e6;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0.02, #ffffff), color-stop(0.5, var(--theme-color)), color-stop(0.98, #ffffff));
    left: 0;
    top: 0
}

.chef-section .chef-box .chef-detail .social-icon {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.chef-section .chef-box .chef-detail .social-icon ul {
    display: flex;
    align-items: center
}

.chef-section .chef-box .chef-detail .social-icon ul li {
    background-color: #f5f5f5;
    width: 30px;
    height: 30px;
    margin: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.chef-section .chef-box .chef-detail .social-icon ul li i {
    font-size: 14px;
    color: #9f9f9f;
    transition: .5s ease
}

.chef-section .chef-box .chef-detail .social-icon ul li:hover i {
    color: var(--theme-color);
    transition: all .5s ease
}

.cycle-box-row {
    margin-bottom: -30px
}

.cycle-box-row>div {
    margin-bottom: 30px
}

.search-section {
    position: relative
}

.search-section .absolute-bg {
    border-radius: 8px
}

.search-section h4 {
    font-weight: 600
}

.search-section .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 10px 25px
}

.search-section select.form-control {
    appearance: none;
    height: auto !important;
    background-color: #fff
}

.center-slider-bicycle .slick-list {
    margin-top: -5px;
    margin-bottom: -5px
}

.center-slider-bicycle .slick-prev {
    left: 31%;
    z-index: 1;
    opacity: .6
}

.center-slider-bicycle .slick-prev:before {
    font-size: 30px;
    color: var(--theme-color)
}

.center-slider-bicycle .slick-next {
    right: 31%;
    z-index: 1;
    opacity: .6
}

.center-slider-bicycle .slick-next:before {
    font-size: 30px;
    color: var(--theme-color)
}

.center-slider-bicycle .slick-slide {
    transform: scale(0.8);
    opacity: .8;
    transition: all .5s ease
}

.center-slider-bicycle .slick-slide.slick-center {
    opacity: 1;
    transform: scale(1);
    transition: all .5s ease
}

.cycle-box {
    margin: 5px 0;
    padding: 25px;
    box-shadow: 1px 0px 2px 2px rgba(194, 194, 194, .16);
    border-radius: 15px;
    background-color: #fff;
    position: relative
}

.cycle-box .product-detail h4 {
    color: #000;
    font-weight: 600
}

.cycle-box .product-detail .details li {
    color: rgba(0, 0, 0, .63);
    font-size: 16px
}

.cycle-box .product-detail .details li+li {
    margin-left: 12px
}

.cycle-box .product-detail .add-wish {
    position: absolute;
    right: 22px;
    top: 22px;
    background-color: #f1f1f1;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cycle-box .product-detail .add-wish a {
    line-height: 0
}

.cycle-box .product-detail .add-wish a svg {
    width: 16px;
    height: 16px
}

.cycle-box .bottom-detail {
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding-bottom: 6px
}

.cycle-box .bottom-detail h4 {
    margin-bottom: 0;
    color: #000;
    font-weight: 600
}

.cycle-box .bottom-detail .btn {
    margin-left: auto
}

.cycle-box .cart-detail {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    margin-bottom: -5px;
    font-size: 16px
}

.cycle-box .cart-detail li {
    padding: 0 14px
}

.cycle-box .cart-detail li a,
.cycle-box .cart-detail li button {
    color: rgba(0, 0, 0, .5);
    text-transform: capitalize;
    display: flex;
    align-items: center
}

.cycle-box .cart-detail li svg {
    width: 14px;
    height: 14px;
    color: rgba(0, 0, 0, .5);
    margin-right: 6px
}

.cycle-box .cart-detail li button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 0
}

.cycle-box .cart-detail li+li {
    border-left: 1px solid rgba(0, 0, 0, .2)
}

.cycle-box .img-wrapper {
    position: relative
}

.cycle-box .img-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .77);
    opacity: 0;
    transition: all .5s ease
}

.cycle-box .img-wrapper .quick-view-part {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme-color);
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0px 1px 2px #a9a9a9;
    transform: scale(0);
    transition: all .5s ease
}

.cycle-box .img-wrapper .quick-view-part a {
    line-height: 0;
    color: #fff
}

.cycle-box .img-wrapper .quick-view-part a svg {
    width: 16px;
    height: 16px
}

.cycle-box .img-wrapper:hover:after {
    opacity: 1;
    transition: all .5s ease
}

.cycle-box .img-wrapper:hover .quick-view-part {
    transform: scale(1);
    transition: all .5s ease
}

.collection-banner.ratio_asos .bg-size:before {
    padding-top: 28%;
    content: "";
    display: block
}

.animated-wheel img {
    position: absolute;
    right: -8%;
    width: 290px;
    bottom: -20%;
    opacity: .14;
    animation-name: spin;
    animation-duration: 35s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.center-object-banner .full-banner {
    position: relative
}

.center-object-banner .full-banner.feature-banner h2 {
    color: #222;
    margin-bottom: 120px
}

.center-object-banner .full-banner.feature-banner .center-img {
    bottom: -22px
}

.center-object-banner .full-banner.feature-banner .feature-object li .media h4,
.center-object-banner .full-banner.feature-banner .feature-object li .media p,
.center-object-banner .full-banner.feature-banner .feature-object-right li .media h4,
.center-object-banner .full-banner.feature-banner .feature-object-right li .media p {
    color: #222
}

.center-object-banner .full-banner.feature-banner .feature-object li .media img,
.center-object-banner .full-banner.feature-banner .feature-object-right li .media img {
    background-color: #fff;
    width: 80px;
    padding: 10px
}

.ratio_custom.ratio_landscape .bg-size {
    border-radius: 25px;
    margin-bottom: 25px
}

.ratio_custom.ratio_landscape .bg-size:before {
    padding-top: 31.7%
}

.radius-cls {
    border-radius: 25px;
    overflow: hidden
}

.wine-img {
    position: absolute;
    right: 6%;
    bottom: -9%;
    z-index: 1
}

.wine-process-sec .slick-list {
    margin: 0 -20px
}

.wine-process-sec .slick-list .slick-slider>div {
    margin: 0 20px
}

.wine-process-sec .process-section {
    position: relative;
    background-color: #fff;
    margin: 0 20px;
    padding: 30px
}

.wine-process-sec .process-section img {
    margin: 0 auto;
    width: 58%
}

.wine-process-sec .process-section .process-content {
    text-align: center;
    margin-top: 20px
}

.wine-process-sec .process-section .process-content h3 {
    text-transform: capitalize;
    color: var(--theme-color);
    font-weight: 600
}

.wine-process-sec .process-section .process-content p {
    margin-bottom: 0;
    width: 80%;
    margin: 0 auto;
    line-height: 24px
}

.wine-process-sec .process-section:after {
    content: "";
    position: absolute;
    right: -50%;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1
}

.canvas-section {
    position: relative;
    overflow: hidden
}

.canvasDesign {
    position: absolute;
    left: 0;
    top: 0
}

.slider-contain-banner h1 {
    font-size: 50px
}

.slider-contain-banner p {
    font-size: 20px;
    line-height: 34px;
    margin-top: 20px;
    color: #000
}

.main-feature .key-feature {
    margin-top: -70px
}

.main-feature .key-feature>div {
    margin-top: 70px
}

.main-feature .key-feature .theme-collection .image-contain {
    background-color: rgba(249, 249, 249, .7);
    padding: 50px;
    transition: all .5s ease
}

.main-feature .key-feature .theme-collection .image-contain img {
    width: 50px
}

.main-feature .key-feature .theme-collection .image-contain .set-image {
    text-align: center
}

.main-feature .key-feature .theme-collection h5 {
    margin-top: 20px;
    text-align: center;
    color: #555;
    text-transform: capitalize;
    transition: all .3s ease;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700
}

.main-feature .key-feature .theme-collection:hover .image-contain {
    box-shadow: 0px 0px 26px 3px #e2e2e2;
    transition: all .5s ease
}

.main-feature .key-feature .theme-collection:hover h5 {
    color: var(--theme-color);
    transition: all .3s ease
}

.specification-section {
    background-color: #fff;
    padding: 20px;
    height: 100%
}

.specification-section h3 {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    text-transform: capitalize;
    color: #000;
    font-weight: 700;
    margin-bottom: calc(7px + 8*(100vw - 320px)/1600)
}

.specification-section ul li {
    display: block;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    line-height: 1.8
}

.left-product-sec {
    display: flex;
    align-items: center;
    justify-content: center
}

.left-product-sec img {
    width: 70%;
    margin: 0 auto
}

.single-detail-section .rounded-25 {
    border-radius: 25px
}

.single-detail-section .slider-contain {
    height: 100%;
    display: flex;
    align-items: center
}

.single-detail-section .slider-contain h1 {
    font-size: calc(20px + 30*(100vw - 320px)/1600)
}

.single-detail-section .slider-contain p {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    line-height: calc(30px + 4*(100vw - 320px)/1600);
    margin-bottom: 0;
    margin-top: calc(0px + 20*(100vw - 320px)/1600)
}

.slider [data-animation-in] {
    opacity: 0;
    animation-duration: 1.5s;
    transition: opacity .5s ease .3s
}

.offer-box {
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
    display: flex;
    left: -415px;
    transition: all .5s ease;
    z-index: 9
}

.offer-box img {
    margin-right: 18px
}

.offer-box.toggle-cls {
    left: 0;
    transition: all .5s ease
}

.offer-box .heading-right h3 {
    position: absolute;
    top: 50%;
    right: 0;
    width: 230px;
    height: 36px;
    line-height: 36px;
    letter-spacing: 4px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    transform: translate(50%, -50%) rotate(-90deg);
    text-align: center;
    background-color: var(--theme-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.offer-box .heading-right h3 i {
    line-height: 1;
    font-size: 20px;
    margin-left: 8px
}

.offer-box.grey-color-box .heading-right h3 {
    background-color: #a9a9a9
}

.cart-error-toast .toast {
    width: calc(100% - 50px);
    left: 0 !important;
    background-color: #fc8f8f;
    color: #000;
    font-size: calc(12px + 4*(100vw - 320px)/1600);
    padding: calc(15px + 7*(100vw - 320px)/1600) calc(20px + 22*(100vw - 320px)/1600);
    margin: 0;
    left: 50% !important;
    transform: translateX(-50%)
}

@media(max-width: 576px) {
    .cart-error-toast .toast {
        left: 0 !important;
        width: 100vw;
        transform: none
    }
}

.cart-error-toast .toast .error-icon {
    margin-right: calc(14px + 18*(100vw - 320px)/1600);
    width: calc(22px + 11*(100vw - 320px)/1600);
    height: calc(22px + 11*(100vw - 320px)/1600)
}

.cart-error-toast .toast .close-icon {
    width: 22px
}

@media(max-width: 576px) {
    .cart-error-toast .toast-content {
        margin-top: -4px
    }
}

.top-panel-adv {
    padding: 14px
}

.top-panel-adv .panel-left-content {
    display: flex;
    align-items: center
}

.top-panel-adv .col-6 {
    display: flex;
    align-items: center
}

.top-panel-adv h4 span {
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 900
}

.top-panel-adv .delivery-area {
    display: flex;
    align-items: center;
    margin-left: 20px;
    padding: 5px 15px 8px;
    border: 1px dashed var(--theme-color);
    border-radius: 5px
}

.top-panel-adv .delivery-area h5 {
    font-size: 12px;
    margin-bottom: 0px
}

.top-panel-adv .delivery-area h4 {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--theme-color)
}

.top-panel-adv .close-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    margin-left: auto
}

.top-panel-adv .close-btn svg {
    background-color: #fff;
    padding: 6px;
    width: 30px;
    height: 30px;
    color: var(--theme-color);
    border-radius: 4px;
    box-shadow: 0 0 4px #ddd
}

.top-panel-adv.hide {
    display: none
}

.shop-sidebar-demo {
    display: flex
}

.shop-sidebar-demo .shop-sidebar {
    width: 320px;
    border-right: 1px solid #ddd;
    position: fixed;
    left: 0;
    top: 88px;
    background-color: #fff;
    height: calc(100vh - 88px);
    overflow: auto
}

.shop-sidebar-demo .shop-sidebar .pixelstrap.sm-vertical a {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 18px 23px;
    display: flex;
    align-items: center
}

.shop-sidebar-demo .shop-sidebar .pixelstrap.sm-vertical a img {
    height: 36px;
    width: 36px
}

.shop-sidebar-demo .shop-sidebar .sm-vertical {
    padding: 15px
}

.shop-sidebar-demo .shop-main {
    width: calc(100% - 320px);
    padding: 0 50px;
    margin-left: 320px;
    margin-top: 88px
}

.shop-sidebar-demo .shop-main .small-slider .home {
    border-radius: 15px !important;
    overflow: hidden;
    background-position: right !important
}

.shop-sidebar-demo .shop-main .small-slider .home .slider-contain {
    padding: calc(20px + 80*(100vw - 320px)/1600) 0;
    display: flex;
    align-items: center
}

.shop-sidebar-demo .shop-main .small-slider .home .slider-contain h2 {
    font-size: calc(20px + 16*(100vw - 320px)/1600)
}

.shop-sidebar-demo .shop-main footer {
    margin: 0 -50px
}

.shop-sidebar-demo .shop-main .slick-sm-margin .slick-list {
    margin-inline: -12px
}

.shop-sidebar-demo .shop-main .slick-sm-margin .slick-slide>div {
    margin-inline: 12px
}

.sidebar-shop-footer {
    margin-left: 320px
}

.sidebar-shop-footer .container-fluid {
    padding: 0 50px
}

.having-sidemenu {
    padding-left: 242px;
    padding-top: calc(77px + 27*(100vw - 1199px)/721)
}

@media(max-width: 1199px) {
    .having-sidemenu {
        padding: 0;
        position: relative;
        inset: unset
    }
}

.having-sidemenu .top-header {
    display: none
}

.having-sidemenu header {
    position: fixed;
    z-index: 1;
    width: 100vw;
    top: 0;
    left: 0
}

@media(max-width: 1199px) {
    .having-sidemenu header {
        position: relative;
        inset: unset
    }
}

.having-sidemenu header.sticky {
    position: fixed !important;
    width: 100vw;
    box-shadow: unset
}

.having-sidemenu header.sticky .main-menu .brand-logo {
    padding-block: calc(15px + 20*(100vw - 575px)/1345)
}

.having-sidemenu header .container {
    max-width: 100%;
    padding: 0 50px
}

@media(max-width: 768px) {
    .having-sidemenu header .container {
        padding: 0 30px
    }
}

@media(max-width: 576px) {
    .having-sidemenu header .container {
        padding: 0 12px
    }
}

.having-sidemenu header .sm-vertical {
    overflow: auto;
    height: calc(100vh - 104px)
}

.having-sidemenu header .sm-vertical {
    scrollbar-width: thin;
    scrollbar-color: #b5b6b2 #fff
}

.having-sidemenu header .sm-vertical::-webkit-scrollbar {
    width: 9px
}

.having-sidemenu header .sm-vertical::-webkit-scrollbar-track {
    background: #fff
}

.having-sidemenu header .sm-vertical::-webkit-scrollbar-thumb {
    background-color: #b5b6b2;
    border-radius: 0px;
    border: 3px none #fff
}

.demo-4 .top-header .header-contact li svg {
    color: #fff
}

footer {
    position: relative
}

@media(max-width: 767px) {
    footer .sub-title .footer-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        margin-bottom: 7px
    }

    footer .sub-title .footer-title::after {
        content: "";
        font-family: remixicon;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        font-size: 20px;
        transition: transform .3s ease-in-out;
        line-height: 1
    }

    footer .sub-title .footer-title.show::after {
        transform: rotate(180deg)
    }

    footer .sub-title .footer-title.show~.footer-content {
        height: 100%
    }

    footer .sub-title .footer-title .footer-content {
        height: 0;
        overflow: hidden;
        transition: height .15s ease-in-out
    }
}

footer .sub-title h4 {
    color: #fff
}

@media(max-width: 767px) {
    footer .sub-title h4 {
        font-size: 14px !important
    }
}

footer .sub-title li a {
    color: #938d8c
}

footer .sub-title .contact-list i {
    color: #938d8c
}

footer .sub-title .contact-list li {
    color: #938d8c
}

footer .footer-theme .footer-mobile-title {
    display: none
}

footer .darken-layout p {
    color: rgba(255, 255, 255, .9)
}

@media(max-width: 767px) {
    footer .darken-layout .sub-title .footer-title::after {
        content: "";
        font-family: remixicon;
        font-style: normal;
        -webkit-font-smoothing: antialiased
    }
}

footer .darken-layout .sub-title .footer-title.show .according-menu.before {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased
}

footer .darken-layout .sub-title h4 {
    color: #fff
}

footer .darken-layout .sub-title li a {
    color: rgba(255, 255, 255, .9)
}

footer .darken-layout .sub-title .contact-list svg {
    color: rgba(255, 255, 255, .9);
    transform: rotateY(180deg)
}

footer .darken-layout .sub-title .contact-list li {
    color: rgba(255, 255, 255, .9)
}

footer .darken-layout .footer-social svg {
    width: unset;
    height: unset;
    color: rgba(255, 255, 255, .9)
}

footer p {
    line-height: 1.6;
    letter-spacing: .03em;
    margin-bottom: 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.footer-light .subscribe {
    display: flex;
    height: 100%;
    align-items: center;
    border-right: 1px solid #ddd;
    text-align: left
}

.footer-light .subscribe p {
    line-height: 1
}

.footer-light .subscribe h4 {
    margin-bottom: 10px
}

.footer-light .subscribe-form {
    display: flex;
    align-items: flex-start;
    height: 100%;
    gap: 1rem;
    justify-content: flex-end
}

.subscribe {
    text-align: center
}

.subscribe h4 {
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 15px
}

.subscribe h4 i {
    color: var(--theme-color);
    padding-right: 5px;
    font-size: 23px
}

.subscribe p {
    line-height: 1.6;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.subscribe-form {
    display: inline-flex
}

.subscribe-form .form-group {
    margin-bottom: 0;
    display: block
}

.subscribe-form .form-control {
    padding: 13px;
    width: 345px;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    border-radius: 0;
    border: 1px solid #eee
}

.subscribe-form .form-control.name-cls {
    width: 265px
}

.subscribe-form.classic-form .form-control {
    border-radius: 0;
    border: none;
    background-color: #f5f2f2;
    margin-left: 15px
}

.subscribe-form.classic-form .btn-solid,
.subscribe-form.classic-form .btn-outline {
    margin-bottom: 0 !important
}

.footer-social {
    margin-top: 40px;
    display: flex;
    align-items: center
}

@media(max-width: 1400px) {
    .footer-social {
        margin-top: 20px
    }
}

.footer-social li {
    display: inline-block !important;
    padding-right: 26px
}

@media(max-width: 1400px) {
    .footer-social li {
        padding-right: 20px
    }
}

.footer-social li a::before {
    content: unset !important
}

.footer-social svg {
    width: unset;
    height: unset;
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    color: #000;
    transition: .5s ease
}

.footer-social svg:hover {
    color: var(--theme-color) !important;
    transition: .5s ease
}

.footer-theme .footer-logo {
    margin-bottom: 18px
}

.footer-theme .footer-logo img {
    width: calc(140px + 40*(100vw - 320px)/1600);
    height: auto
}

.footer-theme .sub-title h4 {
    color: #222;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: unset;
    font-weight: 600
}

.footer-theme .sub-title li {
    position: relative;
    display: inherit;
    padding-top: 13px;
    text-transform: capitalize;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    color: #777
}

.footer-theme .sub-title li a {
    position: relative;
    color: #777
}

.footer-theme .sub-title li a:before {
    position: absolute;
    top: 20px;
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--theme-color);
    transition: .5s ease
}

.footer-theme .sub-title li:hover a:before {
    width: 100%;
    height: 2px;
    transition: .5s ease
}

.footer-theme .sub-title .contact-list svg {
    width: unset;
    height: unset;
    position: absolute;
    left: -2px;
    top: 18px;
    line-height: 1;
    font-size: 18px;
    color: #777
}

.footer-theme .sub-title .contact-list li {
    position: relative;
    padding-left: 25px;
    line-height: 28px;
    color: #777
}

.footer-theme .sub-title .contact-list li a:hover {
    color: var(--theme-color);
    transition: all .5s ease
}

.footer-theme .sub-title .contact-list li:hover {
    color: #999;
    transition: all .3s ease
}

.footer-theme .sub-title .contact-list li:hover a:before {
    display: none
}

.footer-theme .sub-title .contact-list li:last-child {
    margin-bottom: -5px
}

.sub-footer {
    background-color: #fff
}

.sub-footer.dark-subfooter {
    background-color: rgba(255, 255, 255, .08)
}

.sub-footer.dark-subfooter p {
    color: #afafaf
}

.sub-footer.darker-subfooter {
    background-color: #25221e
}

.sub-footer.darker-subfooter p {
    color: #adadad
}

.sub-footer.black-subfooter {
    background-color: #222
}

.sub-footer.black-subfooter p {
    color: #777
}

.sub-footer p {
    color: #777;
    margin-bottom: 0;
    padding: 20px 0
}

.sub-footer .payment-card-bottom {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.sub-footer .payment-card-bottom img {
    height: 30px;
    width: auto
}

.footer-theme2 {
    text-align: center
}

.footer-theme2 .footer-mobile-title {
    display: none !important
}

.footer-theme2 .contact-details li a {
    color: #adadad
}

.footer-theme2 .contact-details li a:hover {
    color: var(--theme-color);
    transition: all .5s ease
}

.footer-theme2.footer-border {
    border: 20px solid #f1f5f4
}

.footer-theme2 .footer-logo {
    margin-bottom: 18px
}

.footer-theme2 .footer-logo img {
    width: calc(140px + 40*(100vw - 320px)/1600)
}

.footer-theme2 p {
    line-height: 32px;
    letter-spacing: .03em;
    margin-bottom: 0;
    color: #adadad
}

.footer-theme2 h4 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 25px
}

.footer-theme2 .contact-details li {
    display: block;
    color: #adadad;
    padding: 0 50px;
    line-height: 2.2
}

.footer-theme2 .contact-details li:last-child {
    margin-bottom: -8px
}

.footer-theme2 .subscribe-block {
    border-left: 1px solid #38352f;
    border-right: 1px solid #38352f;
    padding: 10px 110px
}

.footer-theme2 .subscribe-block h2 {
    color: #fff;
    margin-bottom: 30px
}

.footer-theme2 .subscribe-block .btn-solid,
.footer-theme2 .subscribe-block .btn-outline {
    margin-top: 10px
}

.footer-theme2 .subscribe-block .form-group {
    margin-bottom: 0
}

.footer-theme2 .subscribe-block .form-control {
    text-align: center
}

.footer-theme2 .subscribe-block .form-control~span {
    display: block;
    margin-top: .25rem;
    font-size: .875em;
    color: var(--bs-form-invalid-color) !important
}

.footer-theme2 .footer-link.link-white h4,
.footer-theme2 .footer-link-b.link-white h4 {
    color: #222
}

.footer-theme2 .footer-link.link-white a,
.footer-theme2 .footer-link-b.link-white a {
    color: #777;
    transition: .5s ease
}

.footer-theme2 .footer-link.link-white a:hover,
.footer-theme2 .footer-link-b.link-white a:hover {
    color: #2d2a25;
    transition: .5s ease
}

.footer-theme2 .footer-link h4,
.footer-theme2 .footer-link-b h4 {
    padding-bottom: 20px
}

.footer-theme2 .footer-link li,
.footer-theme2 .footer-link-b li {
    padding-inline: 15px;
    text-transform: capitalize
}

.footer-theme2 .footer-link a,
.footer-theme2 .footer-link-b a {
    color: #adadad;
    transition: .5s ease
}

.footer-theme2 .footer-link a:hover,
.footer-theme2 .footer-link-b a:hover {
    color: #f5f2f2;
    transition: .5s ease
}

.footer-theme2 .footer-link-b h4 {
    margin-top: 50px
}

.footer-theme2.section-light h2,
.footer-theme2.section-light h4 {
    color: #222
}

.footer-theme2.section-light .footer-block {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%
}

.footer-theme2.section-light .footer-block h4 {
    padding-bottom: 25px
}

.footer-theme2.section-light .footer-block .contact-details li a {
    color: #7f786d
}

.footer-theme2.section-light .footer-block .contact-details li a:hover {
    color: var(--theme-color);
    transition: all .5s ease
}

.footer-theme2.section-light .footer-block .subscribe-white {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 85px 65px;
    border-left: 20px solid #f1f5f4;
    border-right: 20px solid #f1f5f4
}

.footer-theme2.section-light .footer-block .subscribe-white:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .4;
    z-index: -1
}

.footer-theme2.section-light .footer-block .subscribe-white .form-group {
    margin-bottom: 0
}

.footer-theme2.section-light .footer-block .subscribe-white .form-control {
    border: none;
    border-radius: 0
}

.footer-theme2.section-light .footer-block .subscribe-white h2 {
    margin-bottom: 30px;
    margin-top: -5px
}

.footer-theme2.section-light .footer-block .subscribe-white .btn-solid,
.footer-theme2.section-light .footer-block .subscribe-white .btn-outline {
    margin-top: 10px
}

.footer-theme2.section-light .footer-block .subscribe-white .form-control {
    text-align: center
}

.footer-style-1 .form-inline .btn {
    padding: 7px 29px
}

.footer-style-1 .mb-cls-content {
    margin-bottom: 10px
}

.footer-style-1 .footer-social {
    margin-top: 12px
}

.footer-style-1 .footer-social li {
    display: inline-block !important;
    padding-right: 15px;
    padding-top: 0 !important
}

.footer-style-1 .footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    font-size: 16px
}

.footer-style-1 .footer-social a svg {
    width: unset;
    height: unset;
    font-size: 16px
}

.footer-style-1 .darken-layout .footer-social a {
    background-color: rgba(255, 255, 255, .1);
    border: none
}

.footer-style-1 .sub-footer.dark-subfooter p {
    color: #ddd
}

.footer-background .light-layout {
    background-color: rgba(0, 0, 0, 0)
}

.footer-background .border-section {
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.footer-background .subscribe h4,
.footer-background .h4 {
    color: #fff
}

.footer-background .sub-title .footer-title::after {
    color: #ddd
}

.footer-background .footer-light .subscribe {
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.footer-background .footer-theme .sub-title h4 {
    color: #fff
}

.footer-background .footer-theme .sub-title li a {
    color: #adadad
}

.footer-background .footer-theme .sub-title .contact-list li {
    color: #adadad
}

.footer-background .footer-theme .sub-title .contact-list svg {
    width: unset;
    height: unset;
    color: #adadad
}

.footer-background .sub-footer {
    background-color: rgba(0, 0, 0, .1)
}

.footer-background .footer-social svg {
    width: unset;
    height: unset;
    color: #fff
}

.footer-background footer p {
    color: #adadad
}

.footer-background .footer-light .subscribe {
    border-color: #777
}

.footer-background .footer-light .subscribe h4 {
    color: #fff
}

.footer-background .footer-light .border-section {
    border-color: #777
}

.single-product .sub-footer.darker-subfooter {
    background-color: #221926
}

.popular-products-section .title-inner3 {
    color: #fff
}

header {
    background-color: #fff
}

header.header-absolute {
    position: absolute;
    width: 100%;
    top: 62px
}

header.header-absolute .main-menu {
    background-color: #fff
}

header.header-absolute .main-menu .menu-left .navbar {
    padding: 20px 45px 20px 0
}

header.header-absolute .main-menu .brand-logo {
    padding-block: 20px
}

header.header-absolute .main-menu .brand-logo img {
    width: 150px
}

header.header-absolute .pixelstrap>li>a {
    padding-block: 20px
}

header.header-absolute .pixelstrap>li>a:hover,
header.header-absolute .pixelstrap>li>a:active,
header.header-absolute .pixelstrap>li>a:focus,
header.header-absolute .pixelstrap>li>a.highlighted {
    padding-block: 20px
}

header.header-absolute .pixelstrap li .lable-nav {
    top: 0
}

header.header-absolute .onhover-div {
    padding-block: 20px
}

header.header-gym {
    position: absolute;
    width: 100%
}

header.header-gym .main-menu {
    background-color: rgba(0, 0, 0, .8);
    padding: 0 15px;
    z-index: 1
}

header.header-gym .main-menu .menu-left .navbar {
    padding: 20px 45px 20px 0
}

header.header-gym .main-menu .menu-left .navbar i {
    color: #fff
}

header.header-gym .main-menu .brand-logo {
    padding-block: 20px
}

header.header-gym .main-menu .onhover-div .show-div {
    top: 70px
}

header.header-gym .pixelstrap>li>a {
    padding-block: 20px;
    color: #fff
}

header.header-gym .pixelstrap>li>a:hover,
header.header-gym .pixelstrap>li>a:active,
header.header-gym .pixelstrap>li>a:focus,
header.header-gym .pixelstrap>li>a.highlighted {
    padding-block: 20px;
    color: #fff
}

header.header-gym .onhover-div {
    padding-block: 20px
}

header.header-gym .onhover-div>div img {
    filter: brightness(54)
}

header.header-gym .top-header {
    z-index: 9;
    position: relative;
    background: rgba(0, 0, 0, 0)
}

header.header-gym .top-header .header-contact li {
    color: #fff
}

header.header-gym .top-header .header-contact li i {
    color: #fff
}

header.header-gym .top-header .header-dropdown li {
    color: #fff
}

header.header-gym .top-header .header-dropdown li a {
    color: #fff
}

header.header-gym .top-header .header-dropdown li a i {
    color: #fff;
    padding-right: 8px
}

header.header-gym .top-header.blue-layout {
    border-bottom: 1px solid #223b7d
}

header.header-gym.sticky {
    width: 100%;
    background-color: #000
}

header.header-black {
    background-color: #000
}

header.header-black .main-menu .menu-left .navbar {
    padding: 20px 45px 20px 0
}

header.header-black .main-menu .menu-left .navbar i {
    color: #fff
}

header.header-black .main-menu .brand-logo {
    padding-block: 20px
}

header.header-black .pixelstrap>li>a {
    padding-block: 20px;
    color: #e5e5e5
}

header.header-black .pixelstrap>li>a:hover,
header.header-black .pixelstrap>li>a:active,
header.header-black .pixelstrap>li>a:focus,
header.header-black .pixelstrap>li>a.highlighted {
    padding-block: 20px;
    color: #e5e5e5
}

header.header-black .pixelstrap li .lable-nav {
    top: 0
}

header.header-black .onhover-div {
    padding-block: 20px
}

header.header-black .onhover-div>div img {
    filter: brightness(54)
}

header.header-5 {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    left: 0;
    top: 0
}

header.header-5 .top-header {
    background-color: rgba(0, 0, 0, 0)
}

header.header-5 .top-header .header-dropdown>li {
    padding-top: 40px;
    padding-right: 0
}

header.header-5 .top-header .header-dropdown .onhover-dropdown .onhover-show-div {
    top: 80px
}

header.header-5 .onhover-div .show-div {
    top: 80px
}

header.header-5.container-med .container-fluid {
    padding-inline: 50px
}

header.header-5.sticky {
    width: 100%;
    background-color: #fff
}

header.header-5.none-sticky.sticky {
    position: unset
}

header.header-5.left-sidebar-header {
    position: fixed;
    background-color: #fff;
    z-index: 1
}

header.header-5.left-sidebar-header .container-fluid {
    padding-inline: 40px
}

header.header-5.left-sidebar-header .onhover-div {
    padding-block: 20px
}

header.header-5.left-sidebar-header .top-header .header-dropdown>li {
    padding-top: 20px
}

header.header-5.left-sidebar-header .main-menu .brand-logo {
    padding-block: 20px
}

header.header-5.overlay-style {
    background-color: rgba(0, 0, 0, .28);
    z-index: 9
}

header.header-5.overlay-style .pixelstrap>li>a {
    color: #fff
}

header.header-5.overlay-style .pixelstrap>li>a:hover,
header.header-5.overlay-style .pixelstrap>li>a:active {
    color: #fff
}

header.header-6 .top-header {
    background-color: var(--theme-color)
}

header.header-6 .top-header .header-contact li {
    color: #fff
}

header.header-6 .top-header .header-contact li i {
    color: #fff
}

header.header-6 .top-header .header-dropdown li {
    color: #fff
}

header.header-6 .top-header .header-dropdown li a {
    color: #fff
}

header.header-6 .top-header .header-dropdown li a i {
    color: #fff
}

header.header-7 {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0)
}

header.header-7 .main-menu .menu-left .navbar {
    padding: 25px 45px 25px 0
}

header.header-7 .main-menu .menu-left .navbar i {
    color: #fff
}

header.header-7 .main-menu .brand-logo {
    padding-block: 25px
}

header.header-7 .onhover-div {
    padding-block: 25px
}

header.header-7 .onhover-div img {
    filter: brightness(100)
}

header.header-7 .onhover-div .show-div img {
    filter: unset
}

header.header-7 .onhover-div:hover .show-div {
    transform: translateY(-23px)
}

header.header-7 .game-layout {
    background-color: rgba(0, 0, 0, .5)
}

header.header-7 .pixelstrap.sm-horizontal>li>a {
    color: #fff
}

header.header-7 .pixelstrap.sm-horizontal>li>a:hover,
header.header-7 .pixelstrap.sm-horizontal>li>a:active {
    color: #fff
}

header.header-7 .top-header {
    background-color: rgba(0, 0, 0, 0)
}

header.header-7 .top-header.top-header-dark .header-contact li {
    color: #fff
}

header.header-7 .top-header.top-header-dark .header-contact li i {
    color: #fff
}

header.header-7 .top-header.top-header-dark .header-dropdown>li {
    color: #fff
}

header.header-7 .top-header.top-header-dark .header-dropdown>li>a {
    color: #fff
}

header.header-7 .top-header.top-header-dark .header-dropdown>li>a i {
    color: #fff
}

header.header-tools {
    position: absolute;
    width: 100%;
    top: 35px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0)
}

header.header-tools .container {
    padding-inline: 30px
}

header.header-tools .container.rounded-5 {
    border-radius: 5px
}

header.header-tools .top-header {
    background-color: rgba(0, 0, 0, 0)
}

header.header-tools .top-header .container {
    background-color: var(--theme-color)
}

header.header-tools .top-header .header-contact {
    padding: 10px 0
}

header.header-tools .top-header .header-contact li {
    color: #fff
}

@media(max-width: 1400px) {
    header.header-tools .top-header .header-dropdown>li {
        padding: 25px 0 25px 10px !important
    }
}

header.header-tools .top-header .header-dropdown li {
    color: #fff;
    padding: 10px 25px
}

header.header-tools .top-header .header-dropdown li i {
    font-size: calc(21px + 4*(100vw - 320px)/1600);
    color: #6a6a6a
}

header.header-tools .top-header .header-dropdown li i:hover {
    color: var(--theme-color)
}

header.header-tools .logo-menu-part>.container {
    background-color: #fff;
    border-bottom: 2px solid var(--theme-color)
}

header.header-tools .main-menu .menu-left .navbar {
    padding: 25px 45px 25px 0
}

@media(max-width: 1400px) {
    header.header-tools .main-menu .menu-right .icon-nav li {
        padding-left: 4px
    }
}

header.header-tools .main-menu .menu-right .icon-nav svg {
    width: unset;
    height: unset;
    font-size: calc(21px + 4*(100vw - 320px)/1600);
    color: #6a6a6a
}

header.header-tools .main-menu .menu-right .icon-nav svg:hover {
    color: var(--theme-color)
}

header.header-tools .main-menu .brand-logo {
    padding-block: 25px
}

header.header-tools .pixelstrap.sm-horizontal>li>a {
    padding-block: 25px
}

header.header-tools .pixelstrap.sm-horizontal>li>a:hover,
header.header-tools .pixelstrap.sm-horizontal>li>a:active,
header.header-tools .pixelstrap.sm-horizontal>li>a:focus,
header.header-tools .pixelstrap.sm-horizontal>li>a.highlighted {
    padding-block: 25px
}

header.header-tools .pixelstrap.sm-horizontal li .lable-nav {
    top: 5px
}

header.header-tools .onhover-div {
    padding-block: 25px
}

header.header-tools .cart_qty_cls {
    top: calc(19px + -3*(100vw - 320px)/1600)
}

header.header-tools.sticky {
    background-color: #fff;
    transition: none
}

header.header-tools.sticky .top-header {
    display: block
}

header.header-tools.sticky .logo-menu-part>.container {
    border-bottom: 0;
    padding: 0 12px
}

header.header-tools.header-style.top-relative {
    position: relative;
    width: 100%;
    top: 0;
    background-color: #fff;
    box-shadow: 0 0 8px #ddd
}

header.header-tools.header-style.top-relative .container {
    padding-inline: 15px
}

header.green-gradient .top-header {
    background: var(--theme-color);
    background-image: linear-gradient(to right, var(--theme-color), var(--theme-color2))
}

header.green-gradient .top-header .header-contact {
    padding: 10px 0
}

header.green-gradient .top-header .header-contact li {
    color: #fff
}

header.green-gradient .top-header .header-contact li i {
    color: #fff
}

header.green-gradient .top-header .header-dropdown li {
    color: #fff;
    padding: 10px 25px
}

header.green-gradient .top-header .header-dropdown li a {
    color: #fff
}

header.green-gradient .top-header .header-dropdown li a i {
    color: #fff
}

header.green-gradient .pixelstrap li .lable-nav {
    background: var(--theme-color);
    background-image: linear-gradient(to right, var(--theme-color), var(--theme-color2))
}

header.header-metro {
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, 0)
}

header.header-metro .top-header {
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
    position: relative
}

header.header-metro .metro {
    background-color: #fff;
    z-index: 1;
    position: relative
}

header.left-header .top-header {
    padding-left: 300px;
    background-color: #fff
}

header.left-header .top-header .header-dropdown .mobile-wishlist img {
    display: block
}

header.left-header .top-header .header-dropdown .mobile-wishlist i {
    display: none
}

header.left-header .onhover-div {
    padding-block: 15px
}

header.left-header .onhover-div>div img {
    width: 20px;
    height: auto
}

header.left-header .onhover-div .show-div {
    top: 56px
}

header.left-header .sidenav {
    left: 0;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, .25)
}

header.left-header .sidenav .sidebar-back {
    display: none
}

header.left-header .sidenav nav {
    background-color: #fff
}

header.left-header .sidenav .pixelstrap>li>a {
    padding: 10px 0 20px 0;
    background-color: #fff
}

header.left-header .sidenav .pixelstrap>li>a:hover,
header.left-header .sidenav .pixelstrap>li>a:focus,
header.left-header .sidenav .pixelstrap>li>a.highlighted {
    padding: 10px 0 20px 0;
    background-color: #fff
}

header.left-header .sidenav .pixelstrap>li .lable-nav {
    top: -12px;
    background-color: #eee
}

header.left-header .sidenav .pixelstrap>li .lable-nav:before {
    border-top: 5px solid #ff4c3b
}

header.left-header .sidenav .pixelstrap>li .lable-nav.grey-lable {
    background-color: #4d6171
}

header.left-header .sidenav .pixelstrap>li .lable-nav.grey-lable:before {
    border-top: 5px solid #4d6171
}

header.left-header .sidenav .left-sidebar_search {
    width: 100%;
    background-color: #fff
}

header.left-header .sidenav .left-sidebar_search input {
    height: 55px;
    width: 95%;
    border: none;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0)
}

header.left-header .sidenav .left-sidebar_search .btn-search {
    position: absolute;
    right: 10px;
    top: 20px;
    border: none;
    background-color: rgba(0, 0, 0, 0)
}

header.left-header .sidenav .left-sidebar_center {
    padding: 40px 0 30px 30px;
    background-color: #fff
}

header.left-header .sidenav .bottom-section {
    padding: 70px 25px
}

header.left-header .sidenav .bottom-section .icon_settings li {
    display: inline-block
}

header.left-header .sidenav .bottom-section .icon_settings .shopping-cart {
    position: relative
}

header.left-header .sidenav .bottom-section .icon_settings .shopping-cart .shopping-count {
    width: 18px;
    height: 18px;
    background-color: #ff4c3b;
    color: #fff;
    position: absolute;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -7px;
    right: 7px
}

header.left-header .sidenav .bottom-section ul li {
    display: inline-block;
    padding: 8px 15px 8px 0
}

header.left-header .sidenav .bottom-section ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #222
}

header.left-header .sidenav .bottom-section ul li a i {
    font-size: 18px;
    padding-right: 5px;
    color: #222
}

header.left-header .sidenav .bottom-section .leftside_setting .language,
header.left-header .sidenav .bottom-section .leftside_setting .currency {
    display: flex
}

header.left-header .sidenav .bottom-section .leftside_setting .language h5,
header.left-header .sidenav .bottom-section .leftside_setting .currency h5 {
    margin-bottom: 0;
    text-transform: capitalize;
    color: #999;
    margin-top: 0
}

header.left-header .sidenav .bottom-section .leftside_setting .language select,
header.left-header .sidenav .bottom-section .leftside_setting .currency select {
    margin-left: 10px;
    border: none;
    outline: none;
    text-transform: capitalize;
    color: #222
}

header.left-header .sidenav .bottom-section .leftside_setting h5 {
    margin-top: 10px
}

header.left-header .sidenav .leftside_social {
    position: relative;
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px dashed #ddd
}

header.left-header .sidenav .leftside_social .footer-social {
    margin-top: 0
}

header.left-header .sidenav .leftside_social .footer-social i {
    font-size: 18px
}

header.left-header .sidenav .leftside_social .footer-social li {
    padding: 10px
}

header.left-header .sidenav .leftside_social .call_us h5 {
    text-align: center
}

header.left-header .sidenav .leftside_social .call_us h5 span {
    display: block
}

header.left-header .main-menu {
    justify-content: flex-end
}

header.left-header .main-menu .brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed #ddd
}

header.left-header .main-menu .menu-right .header-dropdown>li img {
    width: 20px;
    height: auto
}

header.left-header .main-menu .menu-right .icon-nav .onhover-div>img {
    width: 20px;
    height: auto
}

header.left-header .main-menu .menu-left .navbar {
    display: none
}

header.left-header .main-menu .menu-left .mobile-logo {
    display: none
}

header.left-header.left-header-relative {
    position: sticky;
    top: 110px;
    z-index: 1;
    width: auto;
    box-shadow: none
}

header.left-header.left-header-relative .pixelstrap>li>a {
    text-align: right
}

header.left-header.left-header-relative .pixelstrap>li:last-child>a {
    padding-bottom: 0
}

header.left-header.left-header-relative .pixelstrap a .sub-arrow {
    display: none
}

header.left-header.left-header-relative .sidenav {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    height: auto;
    width: auto;
    box-shadow: none;
    z-index: 1
}

header.left-header.left-header-relative .sidenav nav {
    z-index: 1;
    height: auto;
    overflow-y: unset !important
}

header.left-header.left-header-relative .sidenav .left-sidebar_center {
    padding: 0
}

header.left-header.left-header-relative .main-menu {
    justify-content: flex-end
}

header.left-header.left-header-sm {
    width: 240px;
    z-index: 1
}

header.left-header.left-header-sm .sidenav {
    top: calc(77px + 29*(100vw - 1199px)/721);
    z-index: 1;
    width: 240px;
    left: 0
}

header.left-header.left-header-sm .sidenav .left-sidebar_center {
    padding: 0;
    background-color: #fff
}

header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap a .sub-arrow {
    display: none
}

header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li {
    border-bottom: 1px solid #f3f3f3
}

header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li>a {
    padding: 10px 0 20px 0;
    text-align: center
}

header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li>a img {
    display: block;
    margin-inline: auto !important;
    width: 48px;
    border: none;
    margin-bottom: 8px
}

header.video-header .top-header {
    background-color: var(--theme-color)
}

header.video-header .top-header .header-contact {
    padding: 10px 0
}

header.video-header .top-header .header-contact li {
    color: #fff
}

header.video-header .top-header .header-dropdown li {
    padding: 10px 25px;
    color: #fff
}

header.video-header .top-header .header-dropdown li a i {
    color: #fff
}

header.marketplace.header-tools {
    position: relative;
    width: 100%;
    top: 0
}

header.marketplace.header-tools.sticky {
    position: fixed
}

header.marketplace .top-header {
    background-color: var(--theme-color)
}

header.marketplace .top-header .header-contact li {
    color: #fff
}

header.marketplace .top-header .header-dropdown li {
    color: #fff
}

header.marketplace .top-header .header-dropdown li a {
    color: #fff
}

header.marketplace .top-header .header-dropdown li a i {
    color: #fff
}

header.header-style .top-header .header-dropdown>li {
    padding: 25px 0 25px 20px
}

header.header-style .onhover-div .show-div {
    top: 53px
}

header.header-style .onhover-dropdown:before {
    opacity: 0
}

header .blog-box .blog-box-image {
    margin-bottom: 10px
}

header .blog-box .blog-detail h5 {
    margin-bottom: 0;
    font-weight: 500;
    transition: all .5s ease
}

header .blog-box .blog-detail h6 {
    margin-bottom: 4px
}

header .blog-box:hover .blog-detail h5 {
    color: var(--theme-color)
}

.onhover-dropdown {
    position: relative;
    font-size: 14px
}

.onhover-dropdown .onhover-show-div {
    top: 68px;
    position: absolute;
    z-index: 10;
    background-color: #fff;
    transition: all linear .3s;
    min-width: 160px;
    text-align: left;
    box-shadow: 0px 1px 2px 0px #cacaca;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    right: 0;
    padding: 15px 20px;
    border-radius: 0 !important
}

.onhover-dropdown .onhover-show-div.product-page-full {
    z-index: 99999
}

.onhover-dropdown .onhover-show-div li {
    padding-left: 0;
    display: flex;
    font-size: 15px;
    padding-bottom: 5px;
    padding-left: 0 !important
}

.onhover-dropdown .onhover-show-div li a {
    color: #333;
    width: 100%;
    text-transform: capitalize
}

.onhover-dropdown .onhover-show-div li a i {
    font-size: 19px !important
}

.onhover-dropdown:hover .onhover-show-div {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible
}

.onhover-div {
    position: relative;
    padding-block: calc(15px + 15*(100vw - 575px)/1345);
    font-family: Lato, sans-serif
}

.onhover-div img,
.onhover-div i {
    cursor: pointer
}

.onhover-div .show-div {
    top: 100px;
    position: absolute;
    z-index: 9;
    background-color: #fff;
    transition: all linear .3s;
    min-width: 236px;
    text-align: left;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    right: 0;
    padding: 0;
    border-radius: 0 !important;
    box-shadow: 0 0 8px #ddd
}

@media(max-width: 1400px) {
    .onhover-div .show-div {
        top: 80px
    }
}

@media(max-width: 1199px) {
    .onhover-div .show-div {
        top: 70px
    }
}

.onhover-div:hover .show-div {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible
}

.search-overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #fff
}

.search-overlay>div {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.search-overlay>div .overlay-content {
    width: 100%
}

.search-overlay>div .overlay-content .form-control:focus {
    box-shadow: none
}

.search-overlay>div .overlay-content input {
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    border-bottom: 2px solid #777;
    border-radius: 0;
    padding: 20px 0
}

.search-overlay>div .overlay-content input::-webkit-input-placeholder {
    color: #777;
    font-size: 18px
}

.search-overlay>div .overlay-content input::-moz-placeholder {
    color: #777;
    font-size: 18px
}

.search-overlay>div .overlay-content input:-ms-input-placeholder {
    color: #777;
    font-size: 18px
}

.search-overlay>div .overlay-content input:-moz-placeholder {
    color: #777;
    font-size: 18px
}

.search-overlay>div .overlay-content button {
    position: absolute;
    top: 10px;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    font-size: 24px;
    color: #777;
    right: 10px
}

.search-overlay>div .closebtn {
    position: fixed;
    top: 10px;
    right: 25px;
    color: #777;
    font-size: 40px;
    cursor: pointer
}

.top-header {
    background-color: #333
}

.top-header .right-nav-about {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding: 5px 10px 10px 10px
}

.top-header .right-nav-about .right-nav-list+.right-nav-list .theme-form-select .dropdown-toggle {
    padding-left: 12px;
    border-left: 1px solid rgba(119, 119, 119, .5215686275);
    margin-left: 12px
}

.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-toggle {
    display: flex;
    font-weight: 500;
    color: #fff;
    padding: 0;
    align-items: center;
    gap: 6px;
    border: unset
}

.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-toggle::after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    border: unset;
    margin: 0;
    vertical-align: unset
}

.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-toggle span {
    margin-top: 0;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}

.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu {
    min-width: unset;
    border-color: #eee;
    border-radius: 0
}

.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu .dropdown-item {
    margin-top: 0;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left
}

.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu .dropdown-item:active,
.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu .dropdown-item.active {
    background-color: var(--theme-color)
}

.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu span {
    margin-top: 0;
    font-weight: 500;
    font-size: 14px;
    gap: 10px
}

.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu span.active,
.top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu span:active {
    background-color: var(--theme-color)
}

.top-header .header-contact {
    padding: 10px 0
}

.top-header .header-contact li {
    color: #d9d9d9;
    font-size: 14px;
    padding-right: 25px
}

.top-header .header-contact li i {
    color: var(--theme-color);
    padding-left: 10px;
    margin-right: 7px;
    font-size: 14px;
    width: unset;
    height: unset;
    margin-top: -3px
}

@media(max-width: 1399px) {
    .top-header .header-contact li {
        padding: 0
    }

    .top-header .header-contact li:first-child {
        display: none
    }

    .top-header .header-contact li i {
        padding: 0
    }
}

.top-header .header-dropdown li {
    cursor: pointer;
    color: #f5f5f5;
    padding: 10px 25px;
    padding-right: 0
}

.top-header .header-dropdown li:first-child {
    padding-right: 0
}

.top-header .header-dropdown li a {
    text-transform: capitalize;
    color: #f5f5f5
}

.top-header .header-dropdown li i {
    font-size: 16px;
    transition: all .5s ease
}

.top-header .header-dropdown li span {
    padding-left: 5px
}

.top-header .header-dropdown li ul li {
    padding-block: 0
}

.top-header .header-dropdown li a i {
    color: #f5f5f5;
    transition: all .5s ease
}

.top-header .header-dropdown li a:hover i {
    color: var(--theme-color);
    transition: all .5s ease
}

.top-header .header-dropdown li:hover i {
    color: var(--theme-color);
    transition: all .5s ease
}

.top-header .header-dropdown .onhover-dropdown .onhover-show-div li {
    padding-left: 0;
    display: flex;
    font-size: 15px;
    padding-bottom: 5px
}

.top-header .header-dropdown .onhover-dropdown .onhover-show-div li:last-child {
    padding-bottom: 0
}

.top-header .header-dropdown .onhover-dropdown .onhover-show-div li a {
    color: #333
}

.top-header .onhover-show-div li {
    padding-left: 0;
    display: flex;
    font-size: 15px;
    padding-bottom: 5px
}

.top-header .onhover-show-div li:last-child {
    padding-bottom: 0
}

.top-header .onhover-show-div li a {
    color: #333
}

.top-header.top-header-dark {
    background-color: #222
}

.top-header.top-header-dark .header-contact li {
    color: rgba(255, 255, 255, .8)
}

.top-header.top-header-dark .header-contact li i {
    color: rgba(255, 255, 255, .8)
}

.top-header.top-header-dark .header-dropdown li {
    color: rgba(255, 255, 255, .8)
}

.top-header.top-header-dark .header-dropdown li a {
    color: rgba(255, 255, 255, .8)
}

.top-header.top-header-dark .header-dropdown li a i {
    color: rgba(255, 255, 255, .8)
}

.top-header.top-header-dark .header-dropdown li a:hover i {
    color: var(--theme-color)
}

.main-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.main-menu.product-full-page {
    z-index: 9999
}

.main-menu .brand-logo {
    display: inline-block;
    padding-block: calc(15px + 20*(100vw - 575px)/1345)
}

.main-menu .brand-logo img {
    width: calc(110px + 66*(100vw - 320px)/1600)
}

.main-menu .menu-left {
    display: flex;
    align-items: center
}

.main-menu .menu-left .navbar {
    display: inline-block;
    padding: 30px 45px 30px 0
}

@media(max-width: 1400px) {
    .main-menu .menu-left .navbar {
        padding-right: 17px
    }
}

.main-menu .menu-left .navbar svg {
    width: unset;
    height: unset;
    font-size: 28px;
    color: #222;
    cursor: pointer;
    font-weight: 600
}

.main-menu .menu-left .navbar.white-navbar svg {
    width: unset;
    height: unset;
    color: #fff
}

.main-menu .menu-right {
    display: flex;
    align-items: center;
    float: right
}

.main-menu .menu-right .icon-nav {
    display: inline-block
}

.main-menu .menu-right .icon-nav li {
    padding-left: calc(8px + 12*(100vw - 320px)/1600)
}

.main-menu .menu-right .icon-nav li>svg {
    cursor: pointer
}

@media(max-width: 578px) {

    .main-menu .menu-right .icon-nav li:nth-child(2),
    .main-menu .menu-right .icon-nav li:first-child {
        display: none
    }
}

.main-menu .menu-right .icon-nav .delivery-area {
    display: flex;
    align-items: center
}

.main-menu .menu-right .icon-nav .delivery-area>div {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 5px
}

.main-menu .menu-right .icon-nav .delivery-area i {
    margin-right: 5px;
    font-size: 16px
}

.main-menu .menu-right .icon-nav .delivery-area h6 {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px
}

.main-menu .menu-right .icon-nav .onhover-div .empty-cart-box {
    text-align: center
}

.main-menu .menu-right .icon-nav .onhover-div .empty-cart-box .empty-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f8f8;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px
}

.main-menu .menu-right .icon-nav .onhover-div .empty-cart-box .empty-icon svg {
    width: unset;
    height: unset;
    color: var(--theme-color)
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart {
    padding: 15px 15px;
    min-width: 330px;
    left: unset;
    right: 0
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .sidebar-title {
    text-align: right;
    margin-bottom: 10px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .sidebar-title a {
    color: var(--theme-color)
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_top,
.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .success-box {
    display: none
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_product {
    max-height: 240px;
    overflow: auto;
    padding-right: 10px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_product::-webkit-scrollbar {
    width: 4px;
    height: 7px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_product::-webkit-scrollbar-thumb {
    background: var(--theme-color)
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_product::-webkit-scrollbar-track {
    background: #eaeaea
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li {
    position: relative;
    width: 100%
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li+li {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #eee
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .form-control {
    border-color: #eee !important
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media img {
    height: 90px;
    width: 90px;
    object-fit: contain
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media img.me-3 {
    margin: 0 !important
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body {
    align-self: center;
    position: relative;
    padding-left: 12px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body h4 {
    color: #333;
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.1;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 600
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body h4 span {
    color: #777;
    font-size: 16px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 7px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle button,
.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle a {
    padding: 0;
    box-shadow: none;
    border: none;
    background-color: rgba(0, 0, 0, 0)
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle i,
.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle svg {
    color: #a1a1a1;
    transition: all .3s ease-in-out;
    font-size: 18px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle i:hover,
.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle svg:hover {
    color: #000;
    transition: all .3s ease-in-out
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total {
    border-top: 1px solid #f1f5f4;
    border-bottom: 1px solid #f1f5f4;
    padding-block: 10px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total h5 {
    text-transform: capitalize;
    margin-bottom: 0;
    color: #999
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total h5 span {
    float: right
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons {
    display: flex;
    align-items: center;
    gap: 10px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons a {
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    border-radius: 0;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    transition: all .25s ease-in-out;
    width: 100%;
    padding: calc(9px + 3*(100vw - 320px)/1600) calc(15px + 14*(100vw - 320px)/1600);
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color)
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons a:hover {
    color: var(--theme-color);
    background-color: rgba(0, 0, 0, 0)
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons .checkout {
    float: right
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_total {
    margin-top: 15px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_total li {
    border: none;
    padding: 0;
    margin: 0
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting {
    padding: 15px 20px 20px;
    min-width: 175px;
    right: 0;
    left: unset
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6 {
    font-size: 16px;
    text-transform: capitalize;
    color: #333;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 5px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6:first-child {
    margin-top: 0
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting ul li {
    display: flex;
    padding-bottom: 0;
    padding-left: 17px;
    padding-top: 5px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting ul li a {
    color: #333;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: capitalize
}

.main-menu .menu-right .icon-nav .onhover-div .show-div li {
    padding: 0
}

.main-menu .menu-right .icon-nav .onhover-div .show-div li .form-control {
    border-radius: 0
}

.main-menu .menu-right .icon-nav .onhover-div .show-div li .form-control:focus {
    border: 1px solid #ced4da;
    box-shadow: none
}

.main-menu .menu-right .icon-nav .onhover-div .show-div li .search-btn {
    padding: 8px 12px;
    background-color: var(--theme-color);
    color: #fff
}

.main-menu .menu-right .icon-nav.white-icon .onhover-div img {
    filter: brightness(5)
}

.main-menu .menu-right .icon-nav.white-icon .onhover-div .show-div img {
    filter: none
}

.header-style-1 .main-menu {
    z-index: 1
}

.header-style-1 .main-menu .brand-logo {
    padding-block: 5px
}

.header-style-1 .main-menu .menu-left .navbar {
    padding: 20px 45px 20px 0
}

.header-style-1 .main-menu .menu-right .icon-nav .onhover-div .show-div {
    top: 63px
}

.header-style-1 .onhover-div {
    padding-block: 5px
}

.header-style-1 .top-header {
    background-color: var(--theme-color)
}

.header-style-1 .top-header .header-contact {
    padding: 10px 0
}

.header-style-1 .top-header .header-dropdown li {
    padding: 10px 0
}

.header-style-1 .top-header .header-dropdown li+li {
    padding-left: 25px
}

.header-style-1 .top-header .header-dropdown li {
    color: #fff
}

.header-style-1 .top-header .header-dropdown li i {
    color: #fff
}

.header-style-1 .top-header .header-contact li {
    color: #fff
}

.header-style-1 .top-header .header-contact li svg {
    color: #fff
}

.header-style-1 .top-header .right-nav-about .right-nav-list+.right-nav-list .theme-form-select .dropdown-toggle {
    border-left-color: rgba(255, 255, 255, .32)
}

.header-style-1 .pixelstrap>li>a,
.header-style-1 .pixelstrap>li a:hover,
.header-style-1 .pixelstrap>li a:active {
    padding-block: 15px
}

.header-style-1 .pixelstrap>li ul li a {
    padding: 5px 35px
}

.header-style-1 .pixelstrap>li ul li a:hover,
.header-style-1 .pixelstrap>li ul li a:active {
    padding: 5px 35px
}

.header-style-1 .upper-menu.pixelstrap a {
    padding-block: 10px;
    padding-right: 35px
}

.header-style-1 .cart_qty_cls {
    top: -3px;
    right: -6px
}

.header-style-1 .navbar .nav-link {
    padding-right: 25px;
    white-space: nowrap;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    text-transform: unset;
    padding-block: 15px;
    letter-spacing: unset
}

.header-style-1 .navbar .nav-item.active .nav-link {
    color: var(--theme-color)
}

.header-style-1.sticky .main-menu .menu-left .navbar {
    padding: 10px 45px 10px 0px
}

.header-style-2 .top-part {
    background-color: var(--theme-color)
}

.header-style-2 .top-header .header-dropdown>li img {
    filter: invert(1)
}

.header-style-2 .invert-cls {
    filter: invert(1)
}

.header-style-2 .bottom-part {
    background-color: #006d75
}

.header-style-2 .bottom-part .main-nav-center {
    display: flex;
    align-items: center;
    justify-content: center
}

.header-style-2 .pixelstrap>li>a {
    color: #fff
}

.header-style-2 .pixelstrap>li>a:hover,
.header-style-2 .pixelstrap>li>a:active {
    color: #fff
}

.header-style-4 {
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    margin-bottom: 2px
}

.header-style-4 .main-menu .menu-left .navbar {
    padding: 25px 45px 25px 0
}

.header-style-4 .main-menu .brand-logo {
    padding-block: 25px
}

.header-style-4 .pixelstrap>li>a {
    padding-block: 30px
}

.header-style-4 .pixelstrap>li>a:hover,
.header-style-4 .pixelstrap>li>a:active {
    padding-block: 30px
}

.header-style-4 .onhover-div {
    padding-block: 30px
}

.header-style-5 .form_search {
    overflow: unset;
    border-radius: 0
}

.header-style-5 .form_search .nav-search {
    padding-right: 51px
}

.header-style-5 .search-suggestion-box {
    top: 56px;
    margin: 0
}

.header-style-5 .cart_qty_cls {
    top: calc(8px + 12*(100vw - 320px)/1600)
}

.header-style-5.style-classic .form_search {
    border-radius: 0
}

.header-style-5.style-classic .form_search button {
    border-radius: 0
}

.header-style-5.style-classic .bottom-part {
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: -20px;
    position: relative;
    z-index: 1
}

.header-style-5.style-classic .bottom-part .category-menu .toggle-sidebar {
    padding-top: 18px
}

.header-style-5.style-classic .bottom-part .main-nav-center .sm>li>a {
    padding-top: 20px;
    padding-bottom: 20px
}

.header-style-5.style-classic .bottom-part .container {
    padding: 0;
    background-color: #fff
}

.header-style-5.style-classic .bottom-part .pixelstrap>li>a {
    color: #222
}

.header-style-5.style-classic .bottom-part .pixelstrap>li>a:hover,
.header-style-5.style-classic .bottom-part .pixelstrap>li>a:active {
    color: #222
}

.header-style-5.style-classic .main-menu .brand-logo {
    padding-top: 35px;
    padding-bottom: 35px
}

.header-style-5.style-classic .top-header .header-dropdown>li {
    padding: 15px 25px;
    padding-right: 0
}

.header-style-5 .navbar {
    padding-top: 0;
    padding-bottom: 0
}

.header-style-5 .bottom-part {
    background-color: #4d4d4d
}

.header-style-5 .bottom-part .category-menu {
    display: flex;
    align-items: center;
    justify-content: center
}

.header-style-5 .bottom-part .category-menu .toggle-sidebar {
    background-color: var(--theme-color);
    display: block !important;
    width: 100%;
    text-align: center;
    height: 100%;
    padding-top: 18px;
    color: #fff;
    cursor: pointer
}

.header-style-5 .bottom-part .category-menu .toggle-sidebar svg {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    width: unset;
    height: unset;
    margin-top: -5px
}

.header-style-5 .bottom-part .category-menu .toggle-sidebar h5 {
    display: inline-block;
    color: #fff;
    font-size: 19px;
    text-transform: capitalize
}

.header-style-5 .bottom-part .pixelstrap>li>a {
    color: #fff
}

.header-style-5 .bottom-part .pixelstrap>li>a:hover,
.header-style-5 .bottom-part .pixelstrap>li>a:active {
    color: #fff
}

.header-style-5 .bottom-part.bottom-light {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 16px;
    border-top: 1px solid #ddd
}

.header-style-5 .bottom-part.bottom-light .category-menu .toggle-sidebar {
    padding-top: 12px
}

.header-style-5 .bottom-part.bottom-light .main-nav-center .sm>li>a {
    padding-block: 14px
}

.header-style-5 .bottom-part.bottom-light .pixelstrap>li>a {
    color: #222
}

.header-style-5 .bottom-part.bottom-light .pixelstrap>li>a:hover,
.header-style-5 .bottom-part.bottom-light .pixelstrap>li>a:active {
    color: #222
}

.header-style-5.style-light .bottom-part .category-menu .toggle-sidebar {
    color: #000;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-bottom: none;
    padding-top: 18px
}

.header-style-5.style-light .bottom-part .category-menu .toggle-sidebar h5 {
    color: #000;
    font-weight: 600
}

.header-style-5.style-light .bottom-part.bottom-light {
    padding-top: 0
}

.header-style-5.style-light .bottom-part.bottom-light .main-nav-center .sm>li>a {
    padding-block: 20px
}

.header-style-5.color-style {
    background-color: var(--theme-color2)
}

.header-style-5.color-style .form_search {
    border-radius: 5px
}

.header-style-5.color-style .form_search button {
    background-color: var(--theme-color)
}

.header-style-5.color-style .form_search button i {
    color: #fff
}

.header-style-5.color-style .cart_qty_cls {
    background: var(--theme-color)
}

.header-style-5.color-style .toggle-nav {
    padding-block: 30px
}

.header-style-5.color-style .main-menu .menu-left .navbar i {
    color: #fff
}

.header-style-5.color-style .main-menu .menu-right .icon-nav li img {
    filter: invert(1)
}

.header-style-5.color-style .main-menu .menu-right .icon-nav li ul img {
    filter: invert(0)
}

.header-style-5.color-style .main-menu .brand-logo {
    padding-block: 25px
}

.header-style-5.color-style .main-menu .onhover-div {
    padding-block: 30px
}

.header-style-5.color-style .top-header {
    background-color: var(--theme-color1)
}

.header-style-5.color-style .top-header.top-header-theme {
    background-color: var(--theme-color2);
    border-bottom: 1px solid #506177
}

.header-style-5.color-style .top-header.top-header-theme .header-contact li i {
    font-size: 15px
}

.header-style-5.color-style .top-header .header-dropdown>li {
    padding: 30px 25px;
    padding-right: 0
}

.header-style-5.color-style .bottom-part {
    background-color: var(--theme-color2)
}

.header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a {
    color: #222
}

.header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a:hover,
.header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a:active {
    color: #222
}

.header-style-5.color-style .bottom-part .category-menu .toggle-sidebar {
    background-color: var(--theme-color);
    padding-top: 12px
}

.header-style-5.color-style .header-options span {
    background: none;
    color: rgba(255, 255, 255, .85);
    -webkit-text-fill-color: unset
}

.header-style-5.color-style.style-classic .form_search {
    border-radius: 0
}

.header-style-5.color-style.style-classic .form_search button {
    border-radius: 0
}

.header-style-5.color-style.style-classic .bottom-part {
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: -20px;
    position: relative;
    z-index: 1
}

.header-style-5.color-style.style-classic .bottom-part .category-menu .toggle-sidebar {
    padding-top: 18px
}

.header-style-5.color-style.style-classic .bottom-part .main-nav-center .sm>li>a {
    padding-block: 20px
}

.header-style-5.color-style.style-classic .bottom-part .container {
    padding: 0;
    background-color: #fff
}

.header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a {
    color: #222
}

.header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a:hover,
.header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a:active {
    color: #222
}

.header-style-5.color-style.style-classic .main-menu .brand-logo {
    padding-block: 35px
}

.header-style-5.color-style.style-classic .top-header .header-dropdown>li {
    padding: 15px 25px;
    padding-right: 0
}

.header-style-5.border-style .bottom-part.bottom-light {
    border-bottom: 1px solid #ddd;
    border-top: none;
    padding-top: 0
}

.header-style-5.border-style .main-menu {
    z-index: 1
}

.header-style-5.border-style .main-menu .brand-logo {
    padding-block: 10px
}

.header-style-5.border-style .main-menu .menu-right .icon-nav>li {
    padding-block: 30px
}

.header-style-5.border-style .onhover-div {
    padding-block: 25px
}

.header-style-5.border-style .onhover-div .show-div {
    top: 83px
}

.header-style-6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0)
}

.header-style-7 {
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1
}

.header-style-7 .onhover-div:hover .show-div {
    transform: translateY(-20px)
}

.header-style-7 .main-menu {
    justify-content: unset
}

.header-style-7 .main-menu .menu-left .navbar {
    padding: 30px 45px 30px 0
}

.header-style-7 .main-menu .brand-logo {
    padding-block: 25px
}

.header-style-7 .pixelstrap a,
.header-style-7 .pixelstrap a:hover,
.header-style-7 .pixelstrap a:active {
    padding-block: 32px
}

.header-style-7 .onhover-div {
    padding-block: 30px
}

.top-header.top-header-theme {
    background-color: var(--theme-color)
}

.top-header.top-header-theme .header-dropdown li {
    color: #fff
}

.top-header.top-header-theme .header-dropdown li i,
.top-header.top-header-theme .header-dropdown li a {
    color: #fff
}

.top-header.top-header-theme .header-dropdown li i:hover i,
.top-header.top-header-theme .header-dropdown li a:hover i {
    color: #fff
}

.top-header.top-header-theme .navbar-nav>li>a {
    padding-block: 19px
}

.top-header.top-header-theme .bottom-part .category-menu .toggle-sidebar {
    color: #000;
    background-color: #fff;
    border-inline: 1px solid #eee;
    padding-block: 18px;
    display: flex !important;
    align-items: center;
    justify-content: center
}

.top-header.top-header-theme .bottom-part .category-menu .toggle-sidebar h5 {
    color: #000;
    font-weight: 600
}

.top-header.top-header-theme .bottom-part.bottom-light {
    padding-top: 0
}

.top-header.top-header-theme .bottom-part.bottom-light .main-nav-center .sm>li>a {
    padding-block: 20px;
    background-color: #fff
}

.header-theme-color .header-style-5 {
    background-color: var(--theme-color2)
}

.header-theme-color .header-style-5 .main-menu .menu-right .icon-nav svg {
    color: #fff
}

.header-theme-color .header-style-5 .navbar-expand-xl .navbar-nav>.nav-item>a {
    color: #fff !important
}

.header-theme-color .header-style-5 .navbar-expand-xl .navbar-nav>.nav-item>a:hover {
    background-color: rgba(0, 0, 0, 0)
}

.header-theme-color .header-style-5 .top-header {
    background-color: var(--theme-color2);
    border-bottom: 1px solid #506177
}

.header-theme-color .header-style-5 .bottom-part.bottom-light {
    padding-top: 0;
    border-top: none
}

.header-theme-color .header-style-5 .add_to_cart .cart-inner .cart_top .close-cart svg {
    color: #222
}

.header-theme-color .header-style-5 .add_to_cart .cart-inner .cart_media .close-circle button svg,
.header-theme-color .header-style-5 .add_to_cart .cart-inner .cart_media .close-circle a svg {
    color: #222
}

.header-theme-color .header-style-5 .add_to_cart .cart-inner .qty-box .input-group span button svg {
    color: #222
}

.header-theme-color .header-style-5 .add_to_cart .cart-inner .empty-cart-box .icon svg {
    color: #6a6a6a
}

.header-theme-color footer {
    background-color: #394868 !important
}

.header-2 .brand-logo img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px
}

@media(max-width: 1199px) {
    .header-2 .brand-logo img {
        position: relative;
        left: unset;
        transform: none;
        top: unset
    }
}

.header-2 .cart_qty_cls {
    top: calc(8px + 12*(100vw - 320px)/1600)
}

@media(max-width: 1199px) {
    .header-2 .main-menu {
        margin-bottom: -20px
    }
}

.marketplace-sidebar.sidenav {
    height: unset;
    width: unset;
    position: relative;
    z-index: 1;
    top: unset;
    left: unset;
    transition: all .5s ease
}

.marketplace-sidebar.sidenav nav {
    z-index: 0;
    height: auto;
    overflow-y: unset !important
}

.marketplace-sidebar.sidenav ul li a {
    cursor: pointer;
    background-color: #f8f8f8
}

.marketplace-sidebar.sidenav ul li a:hover {
    color: var(--theme-color)
}

.marketplace-sidebar.sidenav .pixelstrap>li>a {
    padding: 10px 30px 8px 30px
}

.marketplace-sidebar.sidenav .pixelstrap>li>a:hover,
.marketplace-sidebar.sidenav .pixelstrap>li>a:focus {
    padding: 10px 30px 8px 30px
}

.marketplace-sidebar.sidenav .pixelstrap.sm-vertical a .sub-arrow {
    margin-top: -14px
}

.marketplace-sidebar.sidenav .sm-vertical {
    background-color: #f8f8f8;
    padding: 10px 0
}

.marketplace-sidebar.sidenav.fixed-sidebar {
    position: absolute;
    top: 66px;
    width: calc(100% - 30px);
    z-index: 1;
    display: none
}

.marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
    background-color: #fff;
    border: 1px solid #ddd
}

.marketplace-sidebar .sticky-sidebar {
    position: sticky;
    top: 50px;
    z-index: 1
}

header.sticky {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 9;
    box-shadow: 0 0 5px rgba(0, 0, 0, .12);
    transition: all .3s ease
}

header.sticky .top-header {
    display: none;
    transition: all .3s ease
}

header.sticky .main-menu .brand-logo {
    padding-block: 25px
}

.svg-icon-menu .pixelstrap>li>a img {
    width: 38px;
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #d2d2d2;
    padding: 2px
}

.svg-icon-menu.wo-bg .pixelstrap>li>a {
    display: flex;
    align-items: center
}

.svg-icon-menu.wo-bg .pixelstrap>li>a img,
.svg-icon-menu.wo-bg .pixelstrap>li>a svg {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    border: none;
    width: 38px;
    height: 38px;
    padding: 5px;
    margin-right: 10px
}

.text-light-header .pixelstrap>li>a {
    color: #cecece !important
}

.text-light-header .onhover-div>div img {
    filter: invert(0.9) !important
}

.text-light-header .top-header .header-dropdown>li img {
    filter: invert(0.9) !important
}

.text-light-header header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    color: #cbcbcb
}

.header-compact .top-header {
    background-color: var(--theme-color)
}

.header-compact .top-header .header-contact li {
    color: #fff
}

.header-compact .top-header .header-contact li svg {
    color: #fff
}

.header-compact .main-menu .brand-logo {
    padding-block: 25px 20px
}

.header-compact .main-menu .brand-logo img {
    width: calc(130px + 40*(100vw - 320px)/1600)
}

.header-compact .menu-row {
    display: flex;
    align-items: center
}

.header-compact .menu-row .delivery-area {
    margin-right: 25px
}

.header-compact .onhover-div {
    padding-block: 15px
}

.header-compact .form_search {
    border-radius: 0;
    height: 42px;
    box-shadow: 0 0 0 1px #e2e2e2;
    background-color: #f8f8f8
}

.header-compact .form_search input {
    height: 42px;
    padding-right: 45px
}

.header-compact .form_search button {
    top: 1px;
    right: 1px;
    width: 40px;
    height: 40px
}

.header-compact .form_search button i {
    font-size: 16px
}

.header-compact .delivery-area {
    display: flex;
    align-items: center;
    position: relative;
    padding: 6px 17px;
    z-index: 0;
    border: 1px dashed #fcebe2
}

.header-compact .delivery-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .12;
    z-index: -1
}

.header-compact .delivery-area svg {
    margin-right: 10px;
    width: 18px
}

.header-compact .delivery-area div {
    display: flex;
    align-items: center
}

.header-compact .delivery-area div h5,
.header-compact .delivery-area div h6 {
    margin-bottom: 0
}

.header-compact .delivery-area div h6 {
    margin-right: 5px
}

.header-compact .pixelstrap a,
.header-compact .pixelstrap a:hover,
.header-compact .pixelstrap a:active {
    font-size: 14px
}

.header-compact .top-header .header-contact {
    padding: 10px 0
}

.header-compact .top-header .header-dropdown li {
    padding: 10px 25px
}

.header-compact .top-header .header-dropdown li:last-child {
    padding-right: 0
}

.header-compact .right-nav-about .right-nav-list+.right-nav-list .theme-form-select .dropdown-toggle {
    border-color: rgba(255, 255, 255, 0.5215686275)
}

.header-compact .bottom-part {
    padding-bottom: 0
}

.header-compact .main-nav-center .sm>li>a {
    padding-block: 10px
}

.header-compact .onhover-div .show-div {
    top: 60px
}

header.sticky {
    position: fixed !important;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    box-shadow: 0 0 5px rgba(0, 0, 0, .12);
    transition: all .3s ease
}

header.sticky .top-header {
    display: none;
    transition: all .3s ease
}

header.sticky.header-style-5.style-classic .bottom-part {
    display: none;
    transition: all .3s ease
}

.left-arrow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}

.right-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1
}

.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 -3px 10px 0px rgba(0, 0, 0, .08)
}

.mobile-menu ul {
    display: flex;
    width: 100%;
    margin: 0 auto
}

.mobile-menu ul li {
    width: 100%;
    text-align: center
}

.mobile-menu ul li.active {
    transition: .3s ease;
    position: relative
}

.mobile-menu ul li.active::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background-color: var(--theme-color);
    border-radius: 100%
}

.mobile-menu ul li.active svg {
    width: unset;
    height: unset;
    color: #222
}

.mobile-menu ul li.active svg.activated {
    display: inline-block
}

.mobile-menu ul li.active svg.deactivated {
    display: none
}

.mobile-menu ul li.active span {
    color: #222;
    font-weight: 600
}

.mobile-menu ul li svg {
    display: inline-block;
    margin: 0 auto;
    font-size: calc(20px + 2*(100vw - 320px)/1600);
    color: #6a6a6a;
    width: unset;
    height: unset
}

.mobile-menu ul li span {
    display: block;
    color: rgba(34, 34, 34, .8);
    font-weight: 500
}

.mobile-menu ul li a {
    display: inline-block;
    position: relative
}

.mobile-menu ul li a img {
    display: block;
    margin: 0px auto
}

.mobile-menu ul li a.active,
.mobile-menu ul li a:hover {
    color: #222
}

@media(max-width: 360px) {
    .mobile-menu ul li a {
        font-size: 13px
    }
}

.mobile-menu ul li a svg {
    display: inline-block;
    margin: 0 auto;
    font-size: calc(20px + 2*(100vw - 320px)/1600);
    color: #6a6a6a;
    width: unset;
    height: unset
}

.mobile-menu ul li a span {
    display: block;
    color: rgba(34, 34, 34, .8);
    font-weight: 500
}

.mobile-menu ul li a .cart_qty_cls {
    color: #fff
}

.search-suggestion-box {
    position: absolute;
    width: 100%;
    background-color: #fff;
    left: 0;
    top: calc(33px + 8*(100vw - 579px)/1341);
    z-index: 4;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 13px 16px;
    padding-right: 8px;
    box-shadow: 0 0 9px rgba(221, 221, 221, 0.7019607843)
}

.search-suggestion-box ul {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 7px;
    max-height: 368px
}

.search-suggestion-box ul::-webkit-scrollbar {
    width: 10px
}

.search-suggestion-box ul::-webkit-scrollbar-track {
    background: #fff
}

.search-suggestion-box ul::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    opacity: .4;
    border: 3px solid #fff
}

.search-suggestion-box ul>li {
    display: flex;
    align-items: center;
    gap: 10px
}

.search-suggestion-box ul>li a {
    color: #000;
    font-size: 16px
}

.search-suggestion-box ul>li .suggestion-image {
    display: flex;
    align-items: center;
    gap: 8px
}

.search-suggestion-box ul>li .suggestion-image img {
    width: 52px;
    height: 52px;
    object-fit: contain
}

.search-suggestion-box ul>li .suggestion-category {
    text-align: unset
}

.search-suggestion-box ul>li .suggestion-category>div {
    flex-wrap: wrap;
    gap: 2px 0;
    display: flex;
    align-items: center;
    margin-top: 3px
}

.search-suggestion-box ul>li .suggestion-category p {
    margin: 0;
    color: #4a5568;
    position: relative
}

.search-suggestion-box ul>li .suggestion-category p a {
    font-weight: 400;
    color: #4a5568 !important;
    font-size: 14px !important
}

.search-suggestion-box ul>li .suggestion-category p+p::before {
    content: "|";
    font-size: 15px;
    color: #4a5568;
    margin-inline: 6px
}

.search-suggestion-box ul>li .suggestion-category a {
    color: #222 !important;
    font-weight: 500;
    font-size: 16px !important
}

.search-suggestion-box .result-item {
    padding: 8px;
    cursor: pointer
}

.search-suggestion-box .result-item {
    z-index: 0;
    position: relative
}

.search-suggestion-box .result-item:hover::before,
.search-suggestion-box .result-item.selected::before {
    opacity: .1
}

.search-suggestion-box .result-item.dark-code {
    background-color: #333;
    color: #fff
}

.search-suggestion-box .result-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 0;
    z-index: -1
}

.search-suggestion-box .highlight {
    color: red
}

.search-suggestion-box .not-found-box {
    text-align: center
}

.search-suggestion-box .not-found-box h5 {
    font-size: 16px;
    color: #4a5568
}

.search-suggestion-box .not-found-box h5 span {
    font-weight: 600;
    color: #222
}

.search-suggestion-box .recent-search-section .page-title {
    font-size: 14px !important;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between
}

.search-suggestion-box .recent-search-section .page-title a {
    font-size: 14px !important
}

.search-suggestion-box .recent-search-section .filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.search-suggestion-box .recent-search-section .filter-row>a {
    background-color: #f8f8f8;
    color: #222 !important;
    font-size: 14px !important;
    padding: 7px 12px !important;
    text-align: center;
    border-radius: 0;
    transition: all .5s ease;
    text-transform: capitalize;
    cursor: pointer
}

.search-suggestion-box .recent-search-section .filter-row>a:hover {
    background-color: var(--theme-color);
    color: #fff !important
}

.search-suggestion-box .recent-search-section:empty {
    display: none
}

.header-style-light .header-style-5 .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    padding-block: 19px
}

@media(max-width: 1199px) {
    .header-style-light .header-style-5 .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
        padding-block: 0
    }
}

.header-style-light .header-style-5 .navbar-nav>li>a {
    padding-block: 19px
}

@media(max-width: 1199px) {
    .header-style-light .header-style-5 .navbar-nav>li>a {
        padding-block: 0
    }
}

.header-style-light .header-style-5 .bottom-part .category-menu .toggle-sidebar {
    color: #000;
    background-color: #fff;
    border-inline: 1px solid #ddd;
    padding-block: 18px
}

.header-style-light .header-style-5 .bottom-part .category-menu .toggle-sidebar h5 {
    color: #000;
    font-weight: 600
}

.header-style-light .header-style-5 .bottom-part.bottom-light {
    padding-top: 0
}

.header-style-light .header-style-5 .bottom-part.bottom-light .main-nav-center .sm>li>a {
    padding-block: 20px;
    background-color: #fff
}

body.home header.header-5 {
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, 0)
}

body.home header.header-5 .top-header {
    background-color: rgba(0, 0, 0, 0)
}

body.home header.header-5 .top-header .header-dropdown>li {
    padding-top: 40px;
    padding-right: 0
}

body.home header.header-5 .top-header .header-dropdown .onhover-dropdown .onhover-show-div {
    top: 80px
}

body.home header.header-5 .top-header .header-dropdown .onhover-show-div {
    top: 80px
}

body.home header.header-5 .onhover-div .show-div {
    top: 80px
}

body.home header.header-5.container-med .container-fluid {
    padding-inline: 50px
}

body.home header.header-5.sticky {
    width: 100%;
    background-color: #fff
}

body.home header.header-5.none-sticky.sticky {
    position: unset
}

body.home header.header-5.left-sidebar-header {
    position: fixed;
    background-color: #fff;
    z-index: 1
}

body.home header.header-5.left-sidebar-header .container-fluid {
    padding-inline: 40px
}

body.home header.header-5.left-sidebar-header .onhover-div {
    padding-block: 20px
}

body.home header.header-5.left-sidebar-header .top-header .header-dropdown>li {
    padding-top: 20px
}

body.home header.header-5.left-sidebar-header .main-menu .brand-logo {
    padding-block: 20px
}

body.home header.header-5.overlay-style {
    background-color: rgba(0, 0, 0, .28);
    z-index: 1
}

body.home header.header-5.overlay-style.sticky {
    background-color: #25221e
}

body.home header.header-5.overlay-style .main-menu .brand-logo {
    position: relative;
    padding-block: 20px !important
}

body.home header.header-5.overlay-style .top-header {
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

body.home header.header-5.overlay-style .navbar-nav>li>a {
    color: #fff
}

@media(max-width: 1199px) {
    body.home header.header-5.overlay-style .navbar-nav>li>a {
        color: #222
    }
}

body.home header.header-5.overlay-style .add_to_cart .cart-inner .qty-box .input-group span button svg {
    color: #333
}

body.home header.header-5.overlay-style .add_to_cart .cart-inner .cart_media .close-circle button svg,
body.home header.header-5.overlay-style .add_to_cart .cart-inner .cart_media .close-circle a svg {
    color: #333
}

body.home header.header-5.overlay-style .add_to_cart .cart-inner .empty-cart-box .icon svg {
    color: #6a6a6a
}

body.home header.header-5.overlay-style .add_to_cart .cart-inner .cart_top .close-cart svg {
    color: #333
}

body.home header.header-5.overlay-style .main-menu .brand-logo {
    position: relative
}

@media(max-width: 577px) {
    body.home header.header-5.overlay-style .main-menu .brand-logo {
        padding-block: 20px !important
    }
}

body.home header.header-5.overlay-style .main-menu .menu-right .icon-nav svg {
    color: #fff
}

body.home header.header-5.overlay-style .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    color: #fff
}

@media(max-width: 1199px) {
    body.home header.header-5.overlay-style .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
        color: #222
    }
}

body.home header.header-5.overlay-style .navbar.navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item .nav-link {
    color: #222
}

body.home header.header-5.overlay-style .pixelstrap>li>a {
    color: #fff
}

@media(max-width: 1199px) {
    body.home header.header-5.overlay-style .pixelstrap>li>a {
        color: #222
    }
}

body.home header.header-5.overlay-style .pixelstrap>li>a:hover,
body.home header.header-5.overlay-style .pixelstrap>li>a:active {
    color: #fff
}

body.christmas header {
    position: absolute;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0)
}

@media(max-width: 767px) {
    body.christmas header {
        position: relative
    }
}

body.christmas header.sticky {
    position: relative;
    width: 100%;
    background-color: #fff
}

body.christmas header.sticky .top-header {
    display: none
}

body.christmas header.header-5.overlay-style {
    background-color: #c1272d
}

@media(max-width: 991px) {
    body.christmas header.header-5.overlay-style {
        background-color: #c1272d !important
    }
}

body.christmas header.header-5.overlay-style.fixed {
    background-color: #c1272d
}

body.christmas header .navbar-nav>li>a {
    color: #fff
}

@media(max-width: 1199px) {
    body.christmas header .navbar-nav>li>a {
        color: #222 !important
    }
}

body.christmas header .toggle-nav svg {
    color: #fff
}

body.christmas header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    color: #fff
}

@media(max-width: 1199px) {
    body.christmas header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
        color: #222
    }
}

body.christmas header .main-menu .menu-right .icon-nav svg {
    color: #fff
}

body.christmas header .top-header .header-contact li {
    color: #fff;
    font-size: 16px
}

body.christmas header .top-header .header-contact li svg {
    color: #fff
}

body.christmas header .top-header .right-nav-about .right-nav-list+.right-nav-list .theme-form-select .dropdown-toggle {
    border-color: rgba(255, 255, 255, 0.5215686275)
}

body.digital-download header.header-5.overlay-style {
    background-color: rgba(0, 0, 0, 0)
}

body.digital-download header.header-5.overlay-style.sticky {
    background: #1d2031;
    background: linear-gradient(48deg, rgb(29, 32, 49) 0%, rgb(39, 33, 55) 100%)
}

body.single-product header.header-5.overlay-style {
    background-color: rgba(0, 0, 0, 0)
}

body.single-product header.header-5.overlay-style .top-header {
    display: none
}

body.single-product header.header-5.overlay-style.sticky {
    background: #090915;
    background: linear-gradient(90deg, rgb(9, 9, 21) 0%, rgb(64, 46, 62) 100%)
}

body.single-product header.header-5.overlay-style.sticky .navbar-nav>li>a {
    color: #fff
}

body.single-product header.header-5.overlay-style.sticky .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    color: #fff
}

body.single-product header.header-5.overlay-style.sticky .main-menu .menu-right .icon-nav i {
    color: #fff
}

.header-style-1 .border-top-cls {
    border-top: 1px solid #eee
}

.snow-slider {
    position: relative
}

.snow-slider .slick-slide {
    position: relative
}

.home-slider:hover .slick-arrow,
.center-slider:hover .slick-arrow {
    opacity: 1;
    transform: scale(1.8);
    transition: all .5s ease;
    margin-top: -10px
}

@media(max-width: 577px) {

    .home-slider:hover .slick-arrow,
    .center-slider:hover .slick-arrow {
        transform: scale(1.5)
    }
}

@media(max-width: 480px) {

    .home-slider:hover .slick-arrow,
    .center-slider:hover .slick-arrow {
        transform: scale(1.2)
    }
}

@media(max-width: 420px) {

    .home-slider:hover .slick-arrow,
    .center-slider:hover .slick-arrow {
        transform: scale(1.5)
    }
}

@media(max-width: 360px) {

    .home-slider:hover .slick-arrow,
    .center-slider:hover .slick-arrow {
        transform: scale(1.1)
    }
}

.home-slider:hover .slick-arrow.slick-prev,
.center-slider:hover .slick-arrow.slick-prev {
    left: calc(30px + 36*(100vw - 320px)/1600)
}

.home-slider:hover .slick-arrow.slick-next,
.center-slider:hover .slick-arrow.slick-next {
    right: calc(30px + 36*(100vw - 320px)/1600)
}

.home-slider .product-4,
.center-slider .product-4 {
    margin-top: 15px
}

.home-slider .slick-slider .slick-arrow,
.center-slider .slick-slider .slick-arrow {
    opacity: 0;
    transform: scale(1.8);
    transition: all .5s ease;
    margin-top: -10px
}

@media(max-width: 577px) {

    .home-slider .slick-slider .slick-arrow,
    .center-slider .slick-slider .slick-arrow {
        transform: scale(1.5)
    }
}

@media(max-width: 480px) {

    .home-slider .slick-slider .slick-arrow,
    .center-slider .slick-slider .slick-arrow {
        transform: scale(1.2)
    }
}

@media(max-width: 420px) {

    .home-slider .slick-slider .slick-arrow,
    .center-slider .slick-slider .slick-arrow {
        transform: scale(1.5)
    }
}

@media(max-width: 360px) {

    .home-slider .slick-slider .slick-arrow,
    .center-slider .slick-slider .slick-arrow {
        transform: scale(1.1)
    }
}

.home-slider .slick-prev,
.home-slider .slick-next,
.center-slider .slick-prev,
.center-slider .slick-next {
    opacity: 0;
    transform: scale(1);
    transition: all .5s ease;
    margin-top: -10px
}

.home-slider .slick-prev:before,
.home-slider .slick-next:before,
.center-slider .slick-prev:before,
.center-slider .slick-next:before {
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    opacity: 1;
    color: #000;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.home-slider .slick-next,
.center-slider .slick-next {
    right: 1px
}

.home-slider .slick-next:before,
.center-slider .slick-next:before {
    content: "";
    font-size: 10px
}

.home-slider .slick-prev,
.center-slider .slick-prev {
    left: 1px;
    z-index: 1
}

.home-slider .slick-prev:before,
.center-slider .slick-prev:before {
    content: "";
    font-size: 10px
}

.home-slider .home,
.center-slider .home {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 75vh
}

.home-slider .slider-details,
.center-slider .slider-details {
    position: absolute;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 26%;
    right: 18%;
    text-align: center;
    padding: 55px;
    width: 510px;
    height: 510px
}

.home-slider .slider-details h1,
.center-slider .slider-details h1 {
    color: #fff;
    font-weight: 700
}

.home-slider .slider-details h3,
.center-slider .slider-details h3 {
    color: #fff;
    position: relative;
    text-transform: uppercase;
    display: inline-block
}

.home-slider .slider-details h3:after,
.home-slider .slider-details h3:before,
.center-slider .slider-details h3:after,
.center-slider .slider-details h3:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 100%;
    top: 8px
}

.home-slider .slider-details h3:after,
.center-slider .slider-details h3:after {
    left: -22px;
    top: 8px
}

.home-slider .slider-details h3:before,
.center-slider .slider-details h3:before {
    top: 8px;
    right: -22px
}

.home-slider .slider-details h2,
.center-slider .slider-details h2 {
    font-weight: 400;
    margin-bottom: 0;
    font-size: 45px
}

.home-slider .slider-details h4,
.center-slider .slider-details h4 {
    font-size: 24px
}

.home-slider .slider-details h2,
.home-slider .slider-details h3,
.home-slider .slider-details h4,
.center-slider .slider-details h2,
.center-slider .slider-details h3,
.center-slider .slider-details h4 {
    color: #fff
}

.home-slider .slider-contain,
.center-slider .slider-contain {
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center
}

.home-slider .slider-contain h1,
.center-slider .slider-contain h1 {
    margin-bottom: 0;
    margin-top: 10px;
    color: #222
}

.home-slider .slider-contain h4,
.center-slider .slider-contain h4 {
    font-weight: 700;
    letter-spacing: .4em;
    color: #777;
    margin-bottom: 0
}

.home-slider .slider-contain .btn-solid,
.home-slider .slider-contain .btn-outline,
.center-slider .slider-contain .btn-solid,
.center-slider .slider-contain .btn-outline {
    margin-top: 20px
}

.home-slider .slider-contain.product-detail p,
.center-slider .slider-contain.product-detail p {
    max-width: 50%;
    line-height: 30px;
    font-size: 16px;
    color: #777
}

.home-slider .slider-contain.product-detail h3,
.center-slider .slider-contain.product-detail h3 {
    margin-top: 14px;
    margin-bottom: 0;
    font-weight: 600;
    color: #777
}

.home-slider .slider-contain.product-detail h3 del,
.center-slider .slider-contain.product-detail h3 del {
    margin-left: 10px
}

.home-slider .p-left .slider-contain,
.center-slider .p-left .slider-contain {
    justify-content: flex-start
}

.home-slider .p-right .slider-contain,
.center-slider .p-right .slider-contain {
    justify-content: flex-end
}

.home-slider .text-center .slider-contain p,
.center-slider .text-center .slider-contain p {
    margin: 0 auto
}

.home-slider:hover .slick-arrow,
.center-slider:hover .slick-arrow {
    opacity: 1;
    transition: all .5s ease
}

@media(max-width: 577px) {

    .home-slider:hover .slick-arrow,
    .center-slider:hover .slick-arrow {
        transform: scale(1.5)
    }
}

@media(max-width: 480px) {

    .home-slider:hover .slick-arrow,
    .center-slider:hover .slick-arrow {
        transform: scale(1.2)
    }
}

@media(max-width: 420px) {

    .home-slider:hover .slick-arrow,
    .center-slider:hover .slick-arrow {
        transform: scale(1.5)
    }
}

@media(max-width: 360px) {

    .home-slider:hover .slick-arrow,
    .center-slider:hover .slick-arrow {
        transform: scale(1.1)
    }
}

.home-slider:hover .slick-arrow:before,
.center-slider:hover .slick-arrow:before {
    opacity: 1
}

.home-slider:hover .slick-next,
.center-slider:hover .slick-next {
    right: 100px
}

.home-slider:hover .slick-prev,
.center-slider:hover .slick-prev {
    left: 100px
}

.home-slider-container .slider-contain {
    padding: 0 100px
}

.home-slider-container.home-fashion .slider-contain {
    padding: 0 calc(20px + 80*(100vw - 320px)/1600)
}

.center-slider {
    border-left: 1px solid #f1f5f4;
    border-right: 1px solid #f1f5f4
}

.home-slider.text-white .slider-contain h1,
.home-slider.text-white .slider-contain h4 {
    color: #fff
}

.gym-slider .home-slider .home {
    height: 85vh
}

.gym-slider .home-slider .home .slider-contain {
    height: 85vh
}

.gym-slider .home-slider .home .slider-contain h4,
.gym-slider .home-slider .home .slider-contain h1 {
    color: #fff
}

.small-slider .home-slider .home {
    height: 55vh
}

.small-slider .home-slider .home .slider-contain {
    height: 55vh
}

.small-slider .home-slider .home .slider-contain h4,
.small-slider .home-slider .home .slider-contain h1 {
    color: #000
}

.height-100 .home-slider .home {
    height: 100vh
}

.height-100 .home-slider .slider-contain {
    height: calc(99vh + 80px)
}

.height-85 .home-slider .home {
    height: 85vh
}

.height-85 .home-slider .slider-contain {
    height: 85vh
}

.layout-7.home-slider .home {
    height: 60vh
}

.layout-7.home-slider .home .slider-contain {
    height: 60vh
}

.height-65 .home {
    height: 65vh !important
}

.height-65 .home .slider-contain {
    height: 65vh !important
}

.banner-slider .height-banner {
    height: 100%
}

.banner-slider .home {
    height: 81vh
}

.banner-slider .home .slider-contain {
    height: 81vh
}

.banner-slider .home-banner>div img {
    width: 100%
}

.absolute-banner {
    margin-top: -105px
}

.absolute-banner .absolute-bg {
    background-color: #fff;
    position: relative;
    padding: 25px;
    box-shadow: 0 0 8px 0 #ddd
}

.absolute-banner.mt-banner {
    margin-top: -55px
}

.absolute-banner .service-block .media {
    padding: 0
}

.home-fashion {
    margin-top: 25px
}

.home-fashion .home-slider .slider-contain h3 {
    margin-block: 0;
    font-size: calc(16px + 8*(100vw - 320px)/1600)
}

.slide-center .slick-list {
    margin-inline: -20px
}

.slide-center .slick-list .slick-slide>div {
    padding-inline: 20px
}

.rating span,
.product-rating span {
    font-size: calc(12px + 6*(100vw - 320px)/1600);
    margin-right: calc(0px + 2*(100vw - 320px)/1600);
    line-height: 1;
    color: #ff9800
}

.rating span:last-child,
.product-rating span:last-child {
    margin-left: unset
}

.rating span svg,
.product-rating span svg {
    width: unset;
    padding: 0;
    height: unset
}

.single-home .home-content {
    padding-top: calc(90px + 92*(100vw - 320px)/1600);
    padding-bottom: calc(50px + 56*(100vw - 320px)/1600);
    width: 60%;
    margin-inline: auto;
    text-align: center
}

@media(max-width: 1199px) {
    .single-home .home-content {
        width: 78%
    }
}

@media(max-width: 767px) {
    .single-home .home-content {
        width: 100%
    }
}

.single-home .home-content h1 {
    font-size: calc(28px + 32*(100vw - 320px)/1600);
    font-weight: 600;
    color: #fff
}

.single-home .home-content h1 span {
    font-size: inherit;
    font-weight: inherit;
    background: linear-gradient(to right, var(--theme-color) 0%, var(--theme-color2) 100%);
    background-clip: text;  
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.single-home .home-content p {
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, .5)
}

.single-about-us .about-left-box {
    width: 80%
}

@media(max-width: 767px) {
    .single-about-us .about-left-box {
        width: 100%
    }
}

.single-about-us .about-left-box h2 {
    font-size: calc(22px + 13*(100vw - 320px)/1600);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: unset;
    color: #fff;
    margin: 0
}

.single-about-us .about-left-box h4 {
    margin-block: calc(9px + 9*(100vw - 320px)/1600) 0;
    letter-spacing: unset;
    text-transform: unset;
    line-height: 1.6;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    font-weight: 400;
    color: rgba(255, 255, 255, .37)
}

.single-about-us .about-right-box {
    display: grid
}

.single-about-us .about-right-box .right-box {
    display: flex;
    gap: calc(12px + 8*(100vw - 320px)/1600)
}

@media(max-width: 575px) {
    .single-about-us .about-right-box .right-box {
        flex-wrap: wrap
    }
}

.single-about-us .about-right-box .right-box+.right-box {
    margin-top: calc(12px + 4*(100vw - 320px)/1600);
    padding-top: calc(12px + 4*(100vw - 320px)/1600);
    border-top: 1px solid
}

.single-about-us .about-right-box .right-box .about-img {
    width: calc(55px + 13*(100vw - 320px)/1600);
    height: calc(55px + 13*(100vw - 320px)/1600);
    border-radius: calc(5px + 8*(100vw - 320px)/1600);
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding: calc(9px + 3*(100vw - 320px)/1600)
}

.single-about-us .about-right-box .right-box .about-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    opacity: .1;
    z-index: -1
}

.single-about-us .about-right-box .right-box .about-content {
    width: calc(100% - 68px - (12px + 8*(100vw - 320px)/1600))
}

@media(max-width: 575px) {
    .single-about-us .about-right-box .right-box .about-content {
        width: 100%
    }
}

.single-about-us .about-right-box .right-box .about-content h4 {
    font-weight: 600;
    font-size: calc(18px + 4*(100vw - 320px)/1600);
    color: #fff;
    line-height: inherit;
    margin: 0
}

.single-about-us .about-right-box .right-box .about-content p {
    margin: calc(6px + 2*(100vw - 320px)/1600) 0 0;
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, .37)
}

.instagram-box {
    position: relative;
    background-color: var(--theme-color);
    overflow: hidden
}

.instagram-box img {
    width: 100%
}

.instagram-box .overlay {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--theme-color);
    top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(3) rotate(90deg)
}

.instagram-box .overlay svg {
    width: unset;
    height: unset;
    font-size: calc(40px + 20*(100vw - 320px)/1600);
    color: #fff
}

.instagram-box:hover .overlay {
    opacity: .5;
    transition: .5s ease;
    transform: scale(1) rotate(0deg)
}

.instagram-slider .slick-slider .slick-list {
    margin: 0
}

.instagram-slider .slick-slider .slick-list .slick-slide>div {
    margin: 0
}

.spinning {
    padding-right: 40px !important
}

.spinning::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    right: 10px;
    border: 2px solid rgba(255, 255, 255, .29);
    border-right: 3px solid #fff;
    animation: rotate360 .5s infinite linear
}

.loader-wrapper {
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0
}

.loader-wrapper .loader {
    position: relative;
    inset: unset;
    transform: unset;
    margin: 0 auto 13px;
    width: 50px;
    height: 50px;
    background-color: var(--theme-color);
    border-radius: 100%
}

.loader-wrapper .loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    border: 0 solid #fff;
    transform: translate(-50%, -50%);
    animation: loading 1000ms ease-out forwards infinite;
    transition: all .3s ease
}

.loader-wrapper h3 {
    font-weight: 500;
    letter-spacing: unset;
    color: #222;
    margin: 0;
    font-size: 22px
}

.home-skeleton,
.banner-skeleton,
.skeleton-text-p,
.skeleton-media {
    display: none
}

[class*=skeleton-text-] {
    display: none
}

.skeleton-body {
    background-image: none !important;
    overflow: hidden !important;
    pointer-events: none;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh
}

.skeleton-body.dark2 .home-skeleton {
    background-color: #151515
}

.skeleton-body.header-style-light .category-block .category-image {
    border-radius: 0
}

.skeleton-body.header-style-light .category-block .category-image::after {
    content: unset
}

.skeleton-body .home-skeleton,
.skeleton-body .banner-skeleton,
.skeleton-body .dark-banner-skeleton {
    display: block
}

.skeleton-body .home-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center
}

.skeleton-body .home-skeleton .skeleton-content {
    width: 100%
}

.skeleton-body .banner-skeleton .skeleton-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: calc(7px + 39*(100vw - 320px)/1600);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f8f8
}

.skeleton-body .banner-skeleton .skeleton-content p {
    width: 80%
}

.skeleton-body .banner-skeleton .skeleton-content .placeholder-glow .placeholder {
    height: calc(10px + 18*(100vw - 320px)/1600);
    min-height: unset
}

.skeleton-body .placeholder-glow .placeholder {
    height: calc(12px + 18*(100vw - 320px)/1600);
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    width: 100%
}

.skeleton-body [class*=skeleton-text-] {
    height: calc(15px + 5*(100vw - 320px)/1600);
    width: 60%;
    display: block;
    margin-inline: auto;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite
}

.skeleton-body .title1 h4 {
    display: none
}

.skeleton-body .title1 .skeleton-text-h4 {
    display: block;
    width: calc(110px + 30*(100vw - 320px)/1600);
    margin-block: 0 10px;
    padding: 0
}

.skeleton-body .title1 h2 {
    display: none
}

.skeleton-body .title1 .skeleton-text-h2 {
    display: block;
    width: calc(240px + 80*(100vw - 320px)/1600);
    padding: 0
}

.skeleton-body .title1 .skeleton-text-h2::after {
    content: unset
}

.skeleton-body .title1 .skeleton-text-h2.title-inner1 {
    margin-top: 0
}

.skeleton-body .title1 .skeleton-text-h2.title-inner2 {
    margin: 0 0 50px;
    height: 35px;
    width: 420px
}

.skeleton-body .title1 .skeleton-text-h2.title-inner2::after {
    content: unset
}

.skeleton-body .title-basic .title {
    display: none
}

.skeleton-body .title-basic .skeleton-text-h2 {
    display: block;
    margin: 0
}

.skeleton-body .title2 h2,
.skeleton-body .title2 h4 {
    display: none
}

.skeleton-body .title2 .skeleton-text-h2 {
    display: block;
    margin: 0 0 calc(20px + 30*(100vw - 320px)/1600);
    height: calc(18px + 7*(100vw - 320px)/1600);
    width: calc(170px + 250*(100vw - 320px)/1600)
}

.skeleton-body .title2 .skeleton-text-h2::after {
    content: unset
}

.skeleton-body .title2 .skeleton-text-h4 {
    padding-bottom: 0;
    display: block;
    margin-bottom: 10px
}

.skeleton-body .title3 h2,
.skeleton-body .title3 h4,
.skeleton-body .title4 h2,
.skeleton-body .title4 h4 {
    display: none
}

.skeleton-body .title3 .skeleton-text-h2,
.skeleton-body .title4 .skeleton-text-h2 {
    display: block;
    margin: 0 0 calc(20px + 30*(100vw - 320px)/1600);
    height: calc(18px + 7*(100vw - 320px)/1600);
    width: calc(170px + 250*(100vw - 320px)/1600)
}

.skeleton-body .title3 .skeleton-text-h2::after,
.skeleton-body .title4 .skeleton-text-h2::after {
    content: unset
}

.skeleton-body .title3 .skeleton-text-h4,
.skeleton-body .title4 .skeleton-text-h4 {
    padding-bottom: 0;
    display: block;
    margin: 0 auto 10px
}

.skeleton-body .title3 .line,
.skeleton-body .title4 .line {
    display: none
}

.skeleton-body .about-text p {
    display: none
}

.skeleton-body .about-text .skeleton-text-p {
    margin-bottom: calc(10px + 20*(100vw - 320px)/1600);
    width: 100%;
    display: block;
    height: auto;
    background: none;
    animation: none
}

.skeleton-body .about-text .skeleton-text-p span {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    width: 100%;
    height: calc(14px + 5*(100vw - 320px)/1600);
    display: block
}

.skeleton-body .about-text .skeleton-text-p span+span {
    margin-top: 10px
}

.skeleton-body .product-para .text-center {
    display: none
}

.skeleton-body .product-para .skeleton-text-p {
    margin-bottom: calc(10px + 20*(100vw - 320px)/1600);
    width: 100%;
    height: auto;
    background: none;
    animation: none
}

.skeleton-body .product-para .skeleton-text-p span {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    width: 100%;
    height: calc(14px + 5*(100vw - 320px)/1600);
    display: block
}

.skeleton-body .product-para .skeleton-text-p span+span {
    margin-top: 10px
}

.skeleton-body .service-block {
    display: block
}

.skeleton-body .service-block .media img {
    display: none
}

.skeleton-body .service-block .media .skeleton-img-box {
    margin-right: 15px;
    width: calc(40px + 20*(100vw - 320px)/1600);
    height: calc(40px + 20*(100vw - 320px)/1600);
    object-fit: contain;
    transition: all .5s ease;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0);
    display: block
}

.skeleton-body .service-block .media .service-skeleton-img {
    margin-right: 15px;
    width: calc(40px + 20*(100vw - 320px)/1600);
    height: calc(40px + 20*(100vw - 320px)/1600);
    object-fit: contain;
    transition: all .5s ease;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0);
    display: inline-block
}

.skeleton-body .service-block .media .media-body h4 {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0);
    width: 70%;
    display: none
}

.skeleton-body .service-block .media .media-body p {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0);
    width: 90%;
    display: none
}

.skeleton-body .service-block .media .media-body .skeleton-content-h4,
.skeleton-body .service-block .media .media-body .skeleton-content-p {
    display: block;
    height: calc(15px + 5*(100vw - 320px)/1600)
}

.skeleton-body .about-section h2 {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0);
    display: inline-block
}

.skeleton-body .about-section .service .service-block1 .service-skeleton-img {
    margin-right: 0
}

.skeleton-body .about-section .service .service-block1 h4,
.skeleton-body .about-section .service .service-block1 p {
    width: 100%
}

.skeleton-body .service-block1 img {
    display: none
}

.skeleton-body .service-block1 .service-skeleton-img {
    margin-right: 15px;
    width: calc(40px + 20*(100vw - 320px)/1600);
    height: calc(40px + 20*(100vw - 320px)/1600);
    object-fit: contain;
    transition: all .5s ease;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0);
    display: inline-block
}

.skeleton-body .service-block1 h4 {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0);
    width: 70%;
    display: none
}

.skeleton-body .service-block1 p {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0);
    width: 90%;
    display: none
}

.skeleton-body .service-block1 .skeleton-content-h4 {
    display: block;
    height: 14px
}

.skeleton-body .service-block1 .skeleton-content-p {
    height: 14px;
    display: block;
    margin-top: 9px
}

.skeleton-body .service-block1:hover h4 {
    color: rgba(0, 0, 0, 0)
}

.skeleton-body .small-section .service-block1 .service-skeleton-img {
    margin: 0
}

.skeleton-body .beauty-about .skeleton-loader-img {
    display: block;
    width: 330px;
    height: 337px;
    background-color: #f8f8f8;
    margin-inline: auto
}

@media(max-width: 420px) {
    .skeleton-body .beauty-about .skeleton-loader-img {
        width: 100%
    }
}

.skeleton-body .beauty-about img {
    display: none
}

.skeleton-body .service_slide .service-home .row>div:nth-child(even) .service-block1 {
    background-color: rgba(255, 255, 255, .85)
}

.skeleton-body .service_slide .service-home .service-block1 {
    background-color: rgba(255, 255, 255, .9)
}

.skeleton-body .service_slide .service-home .service-block1 h4 {
    margin-inline: auto
}

.skeleton-body .service_slide .service-home .service-block1 p {
    margin-bottom: 0;
    margin-inline: auto
}

.skeleton-body .category-boxes .img-sec img {
    display: none
}

.skeleton-body .category-boxes .img-sec .skeleton-img-sec {
    width: 58px;
    height: 58px;
    display: block;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0)
}

.skeleton-body .category-boxes h4 {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0);
    display: inline-block
}

.skeleton-body .blog-wo-bg .brand-slider-box .logo-block {
    background-color: #f8f8f8
}

.skeleton-body .blog-wo-bg .brand-slider-box .logo-block img {
    opacity: 0
}

.skeleton-body .category-block .category-image {
    background: #fff;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 100%;
    border-color: rgba(0, 0, 0, 0)
}

.skeleton-body .category-block .category-image.svg-image {
    background: #fff;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 100%
}

.skeleton-body .category-block .category-image img {
    opacity: 0
}

.skeleton-body .category-block .category-details h5 {
    background: #fff;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    display: inline-block;
    margin: 0;
    color: rgba(0, 0, 0, 0)
}

.skeleton-body .img-category .img-sec {
    background: #f8f8f8 !important;
    border: unset
}

.skeleton-body .img-category h4 a {
    margin-inline: auto;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0)
}

.skeleton-body .vector-category .category-slide .img-category:hover .img-sec {
    border-color: rgba(0, 0, 0, 0)
}

.skeleton-body .vector-category .category-slide .img-category .img-sec {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite
}

.skeleton-body .vector-category .category-slide .img-category .img-sec img {
    opacity: 0
}

.skeleton-body .vector-category .category-slide .img-category h4 {
    margin-inline: auto;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0);
    line-height: 1.3
}

.skeleton-body .parallax-cls>section:nth-child(odd) .full-banner .home-skeleton {
    background-color: #dfdfdf
}

.skeleton-body .gradient-category .gradient-border {
    background: rgba(0, 0, 0, 0)
}

.skeleton-body .gradient-category .gradient-border .img-sec {
    background-color: #f8f8f8
}

.skeleton-body .gradient-category .gradient-border .img-sec::after {
    content: unset
}

.skeleton-body .gradient-category .gradient-border .img-sec img {
    opacity: 0
}

.skeleton-body .gradient-category h4 {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    color: rgba(0, 0, 0, 0)
}

.skeleton-body .left-sidebar_center .pixelstrap>li>a .skeleton-category-img {
    height: 48px;
    width: 48px;
    display: block !important;
    margin-inline: auto;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    margin-bottom: 8px
}

.skeleton-body .left-sidebar_center .pixelstrap>li>a .skeleton-category-text {
    height: calc(15px + 5*(100vw - 320px)/1600);
    width: 60%;
    display: block !important;
    margin-inline: auto;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite
}

.skeleton-body .left-sidebar_center .pixelstrap>li>a img,
.skeleton-body .left-sidebar_center .pixelstrap>li>a span {
    display: none !important
}

.skeleton-body .media {
    display: none
}

.skeleton-body.dark .home-skeleton {
    background-color: #151515
}

.skeleton-body.dark .dark-banner-skeleton .absolute-img {
    display: none
}

.skeleton-body.dark .dark-banner-skeleton .contain-banner {
    opacity: 0
}

.skeleton-body.tools-bg .home-skeleton,
.skeleton-body.bg_cls .home-skeleton {
    background-color: #fff
}

.skeleton-menu {
    display: flex;
    align-items: center;
    gap: 30px
}

.skeleton-menu li {
    width: 67px;
    height: 20px;
    background: #f6f7f8;
    background-position: -500px 0;
    animation: skeleton-loader 2s ease-in-out infinite;
    background-image: linear-gradient(135deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 1000px 100%;
    border-radius: 0
}

.skeleton-menu li:nth-child(2),
.skeleton-menu li:nth-child(3),
.skeleton-menu li:nth-child(4) {
    width: 92px
}

.skeleton-menu li:nth-child(5),
.skeleton-menu li:nth-child(6),
.skeleton-menu li:nth-child(7) {
    width: 60px
}

.skeleton-coupon-box .coupon-name .card-name h5 {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    width: 70%;
    height: 25px
}

.skeleton-coupon-box .coupon-content p {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    width: 100%;
    height: 20px
}

.skeleton-coupon-box .coupon-content .coupon-apply {
    border-top: unset
}

.skeleton-coupon-box .coupon-content .coupon-apply .coupon-code {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    width: 30%;
    height: 20px
}

.skeleton-seller .vendor-text {
    width: 66px;
    height: 66px;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite
}

.skeleton-seller .contain-name h3 {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    width: 50%;
    height: 28px
}

.skeleton-seller .contain-name .product-label {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    width: 20%;
    height: 28px
}

.skeleton-seller .contain-name .product-label:after {
    display: none
}

.skeleton-seller .seller-contact {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    width: 50% !important;
    height: 28px
}

.skeleton-seller .seller-contact.mt-2 {
    width: 60% !important
}

.blog-skeleton .blog-image {
    background-color: #f8f8f8
}

.blog-skeleton .blog-contain h3 {
    height: 15px;
    background-position: -500px 0;
    animation: skeleton-loader 2s ease-in-out infinite;
    background-image: linear-gradient(135deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    width: 53%
}

.blog-skeleton .blog-contain .blog-label {
    height: 18px;
    background-position: -500px 0;
    animation: skeleton-loader 2s ease-in-out infinite;
    background-image: linear-gradient(135deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%)
}

.blog-skeleton .blog-contain .blog-button {
    height: 27px;
    background-position: -500px 0;
    animation: skeleton-loader 2s ease-in-out infinite;
    background-image: linear-gradient(135deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    width: 37%
}

.left-skelton-box {
    background-color: #f8f8f8;
    padding: calc(18px + 7*(100vw - 320px)/1600)
}

.left-skelton-box ul {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.left-skelton-box ul .placeholder {
    background: #f6f7f8;
    background-position: -500px 0;
    animation: skeleton-loader 2s ease-in-out infinite;
    background-image: linear-gradient(135deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 1000px 100%;
    border-radius: 0;
    opacity: 1;
    height: 20px;
    position: relative;
    margin-left: 30px
}

.left-skelton-box ul .placeholder::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 100%;
    left: -30px;
    background-color: #fff;
    border: 2px solid #eee;
    top: auto;
    border-radius: 0
}

.skeleton-basic-product .img-wrapper .product-image-box {
    background-position: -500px 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(248, 248, 248, 0.85) 8%, #eee 18%, rgba(248, 248, 248, 0.85) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    aspect-ratio: 163/208
}

.skeleton-basic-product .product-detail .product-title,
.skeleton-basic-product .product-detail h6,
.skeleton-basic-product .product-detail .price {
    background-position: -500px 0;
    width: 100%;
    height: 18px;
    background: linear-gradient(90deg, rgba(248, 248, 248, 0.85) 8%, #eee 18%, rgba(248, 248, 248, 0.85) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite
}

.skeleton-basic-product .product-detail h6 {
    margin-top: 8px
}

.skeleton-basic-product .product-detail .price {
    width: 50%
}

.skeleton-media {
    display: flex;
    background-color: #fff;
    padding: 14px
}

@media(max-width: 576px) {
    .skeleton-media {
        display: block
    }
}

.skeleton-media .image-wrapper {
    background-color: #f8f8f8;
    height: 250px;
    width: calc(143px + 57*(100vw - 1366px)/554);
    margin-right: 15px
}

@media(max-width: 1366px) {
    .skeleton-media .image-wrapper {
        height: 170px;
        width: calc(107px + 36*(100vw - 1199px)/167)
    }
}

@media(max-width: 1199px) {
    .skeleton-media .image-wrapper {
        height: 170px;
        width: calc(79px + 91*(100vw - 768px)/432)
    }
}

@media(max-width: 768px) {
    .skeleton-media .image-wrapper {
        height: 140px;
        width: 130px
    }
}

@media(max-width: 576px) {
    .skeleton-media .image-wrapper {
        width: 100%
    }
}

@media(max-width: 576px) {
    .skeleton-media .media-body {
        margin-top: 17px
    }
}

.skeleton-media .media-body .rating {
    height: 21px;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    width: 76%
}

.skeleton-media .media-body .name {
    height: 17px;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    width: 36%;
    margin-top: 8px
}

.skeleton-media .media-body .price {
    height: 21px;
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    border-radius: 0;
    width: 85%;
    margin-top: 18px
}

.user-dashboard-section .faq-content .box-loader .loader-wrapper {
    position: relative;
    width: 100%;
    z-index: 4;
    height: 100%;
    inset: unset;
    background-color: #f8f8f8;
    border: 1px solid #eee
}

.search-category-skeleton .skeleton-loader {
    background: linear-gradient(90deg, rgba(212, 212, 212, 0.41) 8%, #cdcdcd 18%, rgba(212, 212, 212, 0.41) 33%);
    background-size: 800px 104px;
    animation: skeleton-loader 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0);
    width: 10%;
    height: 21px
}

header.header-5 .main-navbar .nav-menu>li>a {
    color: #fff !important
}

header .main-navbar {
    text-align: center
}

header .main-navbar.classic-header {
    text-align: left !important
}

header .main-navbar.classic-header .nav-menu>li>a {
    padding: 15px 45px 15px 0
}

header .main-navbar.classic-header .nav-menu>li>a.dropdown::after {
    position: absolute;
    right: 21px;
    margin-left: 0
}

header .main-navbar .nav-menu {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    direction: ltr;
    text-align: left
}

header .main-navbar .nav-menu>li {
    position: relative;
    float: left;
    display: block
}

header .main-navbar .nav-menu>li>a {
    display: block;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 42px 24px 42px 0;
    letter-spacing: .07em;
    position: relative;
    cursor: pointer
}

header .main-navbar .nav-menu>li>a.dropdown::after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    font-weight: bold;
    font-stretch: normal;
    font-size: 16px;
    text-shadow: none;
    border-radius: 4px;
    position: relative;
    inset: unset;
    margin-left: 7px
}

@media(max-width: 991px) {
    header .main-navbar .nav-menu>li>a.dropdown::after {
        content: "";
        font-family: remixicon;
        font-style: normal;
        -webkit-font-smoothing: antialiased
    }
}

@media(max-width: 991px) {
    header .main-navbar .nav-menu>li>a.dropdown.active::after {
        content: ""
    }
}

header .main-navbar .nav-menu>li>a .lable-nav {
    position: absolute;
    background-color: var(--theme-color);
    padding: 2px 7px;
    color: #fff;
    top: 0;
    text-transform: uppercase;
    font-size: 9px;
    left: 28px;
    line-height: 1.3
}

header .main-navbar .nav-menu>li>a .lable-nav:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    border-top: 5px solid var(--theme-color);
    top: 15px;
    left: 5px
}

header .main-navbar .nav-menu>li>a .lable-nav.lable-red {
    background-color: #ff4c3b
}

header .main-navbar .nav-menu>li>a .lable-nav.lable-red:before {
    border-top: 5px solid #ff4c3b
}

header .main-navbar .nav-menu>li .nav-submenu {
    position: absolute;
    left: 0;
    z-index: 4;
    box-shadow: 0 1px 6px 0 #ebebeb;
    padding: 15px 0px 15px 0px;
    background: #fff
}

header .main-navbar .nav-menu>li .nav-submenu li {
    border: 0;
    float: none;
    position: relative;
    display: block
}

header .main-navbar .nav-menu>li .nav-submenu li:hover>.nav-submenu {
    opacity: 1;
    visibility: visible
}

header .main-navbar .nav-menu>li .nav-submenu li a {
    border: 0 !important;
    background: rgba(0, 0, 0, 0);
    color: #222;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 35px;
    display: block;
    letter-spacing: .07em;
    line-height: 1.9
}

header .main-navbar .nav-menu>li .nav-submenu li a.dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between
}

header .main-navbar .nav-menu>li .nav-submenu li a.dropdown:before {
    content: unset
}

header .main-navbar .nav-menu>li .nav-submenu li a.dropdown::after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    line-height: 1;
    font-size: 18px
}

header .main-navbar .nav-menu>li .nav-submenu li a:before {
    position: absolute;
    bottom: 0;
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--theme-color);
    transition: .5s ease
}

header .main-navbar .nav-menu>li .nav-submenu li>.nav-submenu {
    top: 0;
    opacity: 0;
    left: unset;
    visibility: hidden;
    right: -200px
}

header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu {
    position: absolute;
    width: 200px;
    right: -200px;
    top: 0;
    background: #fff;
    border: none;
    padding: 15px 0px 15px 0px;
    box-shadow: 0 1px 6px 0 #ebebeb
}

header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu li:hover .nav-inner-menu {
    display: block
}

header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu .nav-inner-menu {
    z-index: 1;
    display: none;
    top: auto;
    left: 0;
    margin-left: -200px;
    margin-top: -41px;
    min-width: 14em;
    max-width: 14em;
    position: absolute;
    background: #fff;
    box-shadow: 0 1px 6px 0 #ebebeb
}

header .main-navbar .nav-menu>li .mega-menu-container {
    position: absolute;
    left: 0;
    z-index: 4;
    box-shadow: 0 1px 6px 0 #ebebeb;
    padding: 30px;
    background: #fff;
    width: 100%
}

header .main-navbar .nav-menu>li:hover>a {
    color: var(--theme-color)
}

header .main-navbar .nav-menu>li.mega-menu {
    position: unset
}

header .main-navbar .nav-menu>li .sub-menu .dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between
}

header .main-navbar .nav-menu>li .sub-menu .dropdown:before {
    content: unset
}

header .main-navbar .nav-menu>li .sub-menu .dropdown::after {
    transform: rotate(-90deg);
    content: "";
    overflow: hidden;
    font-weight: bold;
    font-stretch: normal;
    font-size: 16px;
    text-shadow: none;
    border-radius: 4px;
    font-family: FontAwesome;
    position: relative;
    inset: unset;
    margin-left: 7px
}

header .main-navbar .nav-menu>li .sub-menu>li {
    position: relative
}

header .main-navbar .nav-menu>li .sub-menu>li>ul {
    position: absolute;
    width: 200px;
    right: -200px;
    top: 0;
    background: #fff;
    border: none;
    padding: 15px 0px 15px 0px;
    box-shadow: 0 1px 6px 0 #ebebeb
}

header.header-tools .main-navbar .nav-menu>li>a {
    padding-top: 25px;
    padding-bottom: 25px
}

header.header-tools .main-navbar .nav-menu>li>a .lable-nav {
    top: 0
}

header .sidenav {
    height: 100vh;
    width: 300px;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: -300px;
    background-color: #fff;
    transition: all .5s ease
}

header .sidenav .sidebar-back {
    padding: 20px;
    font-size: 18px;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #efefef;
    margin-bottom: 20px;
    cursor: pointer
}

header .sidenav nav {
    background-color: #fff;
    z-index: 9;
    position: relative;
    height: 100vh;
    top: 0
}

header .sidenav.openSide {
    left: 0;
    transition: all .5s ease
}

header .sidenav.openSide .sidebar-overlay {
    opacity: .8;
    visibility: visible
}

header .sidenav .sidebar-overlay {
    visibility: hidden;
    opacity: 0;
    background-color: #212331;
    position: fixed;
    z-index: 6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 1s
}

header .sidenav .closebtn {
    position: absolute;
    top: 0;
    font-size: 36px;
    margin-left: 50px;
    margin-top: 50px;
    color: #938d8c
}

header .sidenav .sidebar-menu {
    background-color: #fff;
    display: block;
    margin: 0;
    padding: 0;
    direction: ltr;
    text-align: left
}

header .sidenav .sidebar-menu li {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    direction: ltr;
    text-align: left;
    float: none
}

header .sidenav .sidebar-menu li a {
    padding: 10px 50px 20px 40px;
    position: relative;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .07em;
    display: block
}

header .sidenav .sidebar-menu li ul {
    position: absolute;
    width: 200px;
    left: 100%;
    top: 0;
    padding: 15px 0px;
    display: none;
    background-color: #fff
}

header .sidenav .sidebar-menu li ul li a {
    padding: 5px 35px
}

header .sidenav .sidebar-menu li ul li a:active,
header .sidenav .sidebar-menu li ul li a:focus,
header .sidenav .sidebar-menu li ul li a.highlighted {
    padding: 5px 35px
}

header .sidenav .sidebar-menu li .mega-menu {
    position: absolute;
    left: 100%;
    width: 815px !important;
    padding: 15px 30px 25px !important;
    background-color: #fff;
    box-shadow: 0 0 1px 0 #ebebeb
}

header .sidenav .sidebar-menu li .mega-menu li ul {
    position: relative;
    width: 100%;
    left: inherit
}

header .sidenav .pixelstrap li a {
    padding: 10px 50px 20px 40px
}

header .sidenav .pixelstrap li ul li a {
    padding: 5px 35px
}

header .sidenav .pixelstrap li ul li a:active,
header .sidenav .pixelstrap li ul li a:focus,
header .sidenav .pixelstrap li ul li a.highlighted {
    padding: 5px 35px
}

.main-menu .menu-right .icon-nav svg {
    font-size: calc(21px + 4*(100vw - 320px)/1600);
    color: #6a6a6a;
    font-weight: 400;
    width: unset;
    height: unset
}

.toggle-nav {
    position: relative;
    padding-block: calc(18px + 22*(100vw - 320px)/1600);
    cursor: pointer;
    line-height: 1
}

@media(max-width: 1399px) {
    .toggle-nav {
        margin-right: 22px
    }
}

.toggle-nav svg {
    width: unset;
    height: unset;
    stroke-width: 1px;
    font-size: calc(21px + 3*(100vw - 320px)/1600);
    color: var(--theme-color)
}

.rtl .link-section {
    float: right
}

@media(min-width: 1200px) {
    header .main-navbar .nav-menu>li .nav-submenu {
        width: 200px;
        display: none
    }

    header .main-navbar .nav-menu>li .nav-submenu li a:hover:before {
        width: 50px;
        height: 2px;
        transition: .5s ease
    }

    header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu {
        display: none
    }

    header .main-navbar .nav-menu>li .nav-submenu li:hover .nav-sub-childmenu {
        display: block
    }

    header .main-navbar .nav-menu>li .mega-menu-container {
        display: none
    }

    header .main-navbar .nav-menu>li:hover .nav-submenu {
        display: block
    }

    header .main-navbar .nav-menu>li:hover .mega-menu-container {
        display: block
    }

    header .sidenav .sidebar-menu li a .sub-arrow {
        position: absolute;
        top: 50%;
        margin-top: -22px;
        left: auto;
        right: 7px;
        width: 34px;
        height: 34px;
        overflow: hidden;
        font: bold 16px/34px monospace !important;
        text-align: center;
        text-shadow: none;
        border-radius: 4px
    }

    header .sidenav .sidebar-menu li a .sub-arrow:before {
        content: "";
        font-family: FontAwesome;
        position: absolute
    }

    header .sidenav .sidebar-menu li>ul {
        display: none
    }

    header .sidenav .sidebar-menu li>ul li a {
        padding: 5px 35px;
        text-transform: capitalize
    }

    header .sidenav .sidebar-menu li>ul li a:before {
        position: absolute;
        bottom: 0;
        content: "";
        height: 2px;
        width: 0;
        background-color: var(--theme-color);
        transition: .5s ease
    }

    header .sidenav .sidebar-menu li>ul li a:hover:before {
        width: 50px;
        height: 2px;
        transition: .5s ease
    }

    header .sidenav .sidebar-menu li>ul li a .sub-arrow {
        margin-top: -17px
    }

    header .sidenav .sidebar-menu li:hover>ul {
        display: block
    }

    header .sidenav .sidebar-menu li .mega-menu {
        position: absolute;
        left: 100%;
        width: 815px !important;
        padding: 15px 30px 25px !important;
        background-color: #fff;
        box-shadow: 0 0 1px 0 #ebebeb
    }

    header .sidenav .sidebar-menu li .mega-menu li .link-section h5 {
        font-weight: 700;
        text-transform: capitalize;
        font-size: 14px;
        margin-top: 15px
    }

    header .sidenav .sidebar-menu li .mega-menu li .link-section ul {
        position: relative;
        width: 100%;
        left: inherit;
        display: block;
        padding: 0
    }

    header .sidenav .sidebar-menu li .mega-menu li .link-section ul li a {
        padding: 5px 0
    }

    header .sidenav .sidebar-menu li .mega-menu li .link-section ul li a:before {
        position: absolute;
        bottom: 0;
        content: "";
        height: 2px;
        width: 0;
        background-color: var(--theme-color);
        transition: .5s ease
    }

    header .sidenav .sidebar-menu li .mega-menu li .link-section ul li a:hover:before {
        width: 50px;
        height: 2px;
        transition: .5s ease
    }

    header .sidenav .pixelstrap li a {
        padding: 10px 50px 20px 40px
    }

    header .sidenav .pixelstrap li ul li a {
        padding: 5px 35px
    }

    header .sidenav .pixelstrap li ul li a:active,
    header .sidenav .pixelstrap li ul li a:focus,
    header .sidenav .pixelstrap li ul li a.highlighted {
        padding: 5px 35px
    }

    .toggle-nav {
        display: none
    }

    .mobile-back {
        display: none !important
    }

    .main-nav-center>nav {
        text-align: center
    }

    .main-nav-center .sm {
        display: inline-block;
        vertical-align: middle
    }

    .main-nav-center .sm>li .lable-nav {
        top: 3px
    }

    .main-nav-center .sm>li>a {
        padding-block: 20px
    }

    .rtl header .main-navbar .nav-menu>li .nav-submenu li a:before {
        right: 35px
    }

    .rtl header .main-navbar .nav-menu>li .nav-submenu li a:hover:before {
        right: 35px
    }

    .rtl header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu {
        right: unset;
        left: -200px
    }

    .rtl .sidenav .sidebar-back i {
        float: left
    }

    .rtl header.header-5 .top-header .header-dropdown>li:last-child {
        padding: 15px 25px;
        padding-left: 0
    }
}

@media(max-width: 1367px) {
    .nav-menu a {
        font-size: 14px !important
    }
}

@media(max-width: 991px) {
    header .offcanvas .nav-menu {
        position: fixed;
        background-color: #fff;
        width: 300px;
        border-radius: 0;
        border: 1px solid #eee;
        top: 0;
        right: -300px;
        z-index: 99;
        transition: all .3s ease;
        overflow: scroll;
        height: auto
    }

    header .main-navbar .nav-menu.opennav {
        right: 0
    }

    header .main-navbar .nav-menu .back-btn {
        display: block;
        width: 100%
    }

    header .main-navbar .nav-menu .back-btn .mobile-back {
        padding: 20px;
        font-size: 18px;
        color: #222;
        font-weight: 700;
        text-transform: uppercase;
        border-bottom: 1px solid #efefef;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end
    }

    header .main-navbar .nav-menu .back-btn .mobile-back i {
        font-weight: 400;
        font-size: 26px;
        line-height: 1
    }

    header .main-navbar .nav-menu>li a {
        padding: 10px 15px;
        font-size: 16px;
        font-weight: 700;
        position: relative
    }
}

@media(max-width: 991px)and (max-width: 991px) {
    header .main-navbar .nav-menu>li a {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
}

@media(max-width: 991px) {
    header .main-navbar .nav-menu>li a.active .sub-arrow {
        right: 0
    }

    header .main-navbar .nav-menu>li a.active .sub-arrow::before {
        content: "-";
        font-family: inherit;
        position: relative
    }

    header .main-navbar .nav-menu>li a .sub-arrow {
        right: 0
    }

    header .main-navbar .nav-menu>li a .sub-arrow:before {
        content: "+";
        font-family: inherit;
        position: relative
    }

    header .main-navbar .nav-menu>li a .lable-nav {
        left: 15px;
        top: -8px
    }

    header .main-navbar .nav-menu>li .nav-submenu {
        width: 100%;
        padding: 0;
        position: relative;
        display: none;
        box-shadow: none
    }

    header .main-navbar .nav-menu>li .nav-submenu.opensubmenu {
        display: block
    }

    header .main-navbar .nav-menu>li .nav-submenu li a {
        text-transform: uppercase
    }

    header .main-navbar .nav-menu>li .nav-submenu li a.active {
        color: var(--theme-color)
    }

    header .main-navbar .nav-menu>li .nav-submenu li a.active .sub-arrow {
        right: 0
    }

    header .main-navbar .nav-menu>li .nav-submenu li a.active .sub-arrow::before {
        content: "-";
        font-family: inherit;
        position: relative
    }

    header .main-navbar .nav-menu>li .nav-submenu li a .sub-arrow {
        right: 0
    }

    header .main-navbar .nav-menu>li .nav-submenu li a .sub-arrow:before {
        content: "+";
        font-family: inherit;
        position: relative
    }

    header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu {
        display: none;
        position: relative;
        right: 0;
        width: 100%;
        padding: 0;
        box-shadow: none
    }

    header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu.opensubchild {
        display: block
    }

    header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu li .nav-inner-menu {
        position: relative;
        inset: unset;
        z-index: unset;
        margin: 0;
        min-width: 100%;
        max-width: 100%;
        background: rgba(0, 0, 0, 0);
        box-shadow: none;
        padding-left: 15px
    }

    header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu li a {
        padding: 5px 35px 5px 50px
    }

    header .main-navbar .nav-menu>li .mega-menu-container {
        display: none;
        padding: 0 30px;
        position: relative;
        box-shadow: none;
        inset: unset
    }

    header .main-navbar .nav-menu>li .mega-menu-container.opensubmenu {
        display: block
    }

    header .sidenav .sidebar-menu li a {
        padding: 10px 25px;
        font-weight: 700
    }

    header .sidenav .sidebar-menu li a .sub-arrow {
        position: absolute;
        top: 50%;
        margin-top: -17px;
        left: auto;
        right: 15px;
        width: 34px;
        height: 34px;
        overflow: hidden;
        font: bold 16px/34px monospace !important;
        text-align: center;
        text-shadow: none;
        border-radius: 4px
    }

    header .sidenav .sidebar-menu li a .sub-arrow:before {
        content: "+";
        font-family: inherit;
        position: relative
    }

    header .sidenav .sidebar-menu li ul {
        position: relative;
        left: 0;
        width: 100%;
        display: none;
        padding: 5px 0
    }

    header .sidenav .sidebar-menu li ul.opensub1 {
        display: block
    }

    header .sidenav .sidebar-menu li ul li a {
        font-size: 12px;
        font-weight: 400
    }

    header .sidenav .sidebar-menu li ul li ul {
        display: none;
        background: rgba(255, 85, 69, .04)
    }

    header .sidenav .sidebar-menu li ul li ul.opensub2 {
        display: block
    }

    header .sidenav .sidebar-menu li ul li ul li a {
        padding: 5px 45px
    }

    header .sidenav .sidebar-menu li ul li ul li ul {
        display: none;
        background: rgba(255, 85, 69, .04)
    }

    header .sidenav .sidebar-menu li ul li ul li ul.opensub3 {
        display: block
    }

    header .sidenav .sidebar-menu li ul li ul li ul li ul {
        display: none
    }

    header .sidenav .sidebar-menu li ul li ul li ul li ul.opensub4 {
        display: block
    }

    header .sidenav .sidebar-menu li .mega-menu {
        width: 100% !important;
        padding: 0 30px !important;
        position: relative;
        display: none;
        left: 0
    }

    header .sidenav .sidebar-menu li .mega-menu.opensidesubmenu {
        display: block
    }

    header .sidenav .sidebar-menu li .mega-menu .link-section h5 {
        font-weight: 700;
        font-size: 14px;
        text-transform: capitalize
    }

    header .sidenav .sidebar-menu li .mega-menu .link-section ul {
        display: block;
        padding: 0;
        background: #fff
    }

    header .sidenav .sidebar-menu li .mega-menu .link-section ul li a {
        padding: 5px 0px 5px 10px !important;
        font-size: 12px;
        font-weight: 400
    }

    .header-2 .main-navbar .nav-menu>li>a {
        padding-block: 10px
    }

    .sidenav {
        overflow-y: auto
    }

    .main-menu.border-section {
        border: none
    }

    .main-menu .menu-left .main-menu-right .toggle-nav {
        position: absolute;
        z-index: 2;
        right: 145px;
        top: 6px
    }

    .main-menu .menu-left .main-menu-right .toggle-nav .sidebar-name {
        font-size: 18px;
        padding-left: 5px;
        text-transform: uppercase
    }

    .main-nav-center .toggle-nav {
        position: absolute;
        z-index: 99;
        right: 175px;
        top: -105px
    }

    .rtl .pixelstrap a .sub-arrow {
        right: unset;
        left: 0
    }

    .rtl .pixelstrap li .lable-nav {
        left: unset;
        right: 15px
    }

    .rtl .pixelstrap li .lable-nav:before {
        left: unset;
        right: 5px
    }
}

@media(max-width: 991px) {
    .top-header .header-contact {
        display: none
    }
    header .main-navbar .nav-menu>li {
        display: block;
        float: none;
        width: 100%
    }
}

@media(max-width: 577px) {
    .main-nav-center .toggle-nav {
        right: 15px;
        top: -85px
    }

    .header-5 .top-header .header-dropdown .mobile-wishlist img {
        filter: brightness(5)
    }

    .header-5 .main-menu .brand-logo {
        margin: 0;
        left: 0;
        transform: unset
    }

    .top-header .header-dropdown .mobile-wishlist {
        right: 64%
    }

    .top-header .header-dropdown .mobile-wishlist i {
        font-family: themify;
        color: #999 !important
    }

    .top-header .header-dropdown .mobile-wishlist i:before {
        content: ""
    }

    .main-menu .menu-left .navbar {
        padding: 25px 45px 25px 0 !important
    }

    .brand-logo {
        position: absolute;
        left: 50%;
        margin-right: -50%;
        transform: translateX(-50%);
        padding-block: 30px !important
    }

    .rtl .main-nav-center .toggle-nav {
        right: unset;
        left: 15px
    }

    .rtl .main-menu .menu-left .navbar {
        padding: 30px 0 30px 25px !important
    }

    .rtl .top-header .header-dropdown .mobile-wishlist {
        right: unset;
        left: 32%
    }

    .rtl .top-header .header-dropdown .mobile-wishlist .onhover-show-div {
        right: 0
    }

    .rtl .top-header .header-dropdown .mobile-wishlist {
        right: unset;
        left: 64%
    }
}

header .main-nav {
    padding: 20px 0;
    display: flex;
    align-items: center
}

@media(max-width: 767px) {
    header .main-nav {
        padding: 0
    }
}

@media(max-width: 1199px) {
    header .navbar-nav.category-nav>li+li {
        margin-top: 0
    }
}

@media(max-width: 1199px) {
    header .navbar-nav>li+li {
        margin-top: 15px
    }
}

header .navbar-nav>li>a {
    font-weight: 500;
    font-size: 16px;
    padding: 15px 0;
    letter-spacing: .07em;
    cursor: pointer;
    line-height: 1.3
}

@media(max-width: 1199px) {
    header .navbar-nav>li>a {
        padding-block: 0;
        text-align: left
    }
}

header .icon-box {
    display: inline-block;
    margin-right: 10px
}

header .dropdown-header {
    display: block;
    padding: 8px 20px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--theme-color);
    white-space: nowrap
}

@media(max-width: 1199px) {
    header .dropdown-header {
        padding-left: 0
    }
}

header .navbar-nav {
    padding-top: 16px;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

header .navbar-nav .nav-link {
    cursor: pointer
}

header .navbar-nav .nav-item {
    margin-bottom: 0;
    position: relative
}

header .navbar-nav .nav-item .dropdown-menu>li:first-child>a {
    margin-top: 0 !important
}

header .navbar-nav .nav-item .dropdown-menu .nav-item {
    margin-left: 0 !important
}

header .navbar-nav .nav-item .dropdown-menu .nav-item:before {
    display: none
}

header .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    font-size: 14px;
    padding: 0;
    justify-content: flex-start;
    margin: 10px 0 0 0;
    width: 100%;
    display: block;
    cursor: pointer
}

header .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:after {
    content: "";
    font-size: 16px;
    right: 0
}

header .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::before {
    content: none
}

header .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
    padding: 20px
}

@media(max-width: 1199px) {
    header .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
        padding: 0;
        margin-top: 5px
    }
}

@media(max-width: 1199px) {
    header .navbar-nav .nav-item .new-pages {
        justify-content: unset !important
    }
}

header .navbar-nav .nav-item .new-pages .new-dropdown {
    position: absolute;
    top: -7px;
    right: 3px;
    background-color: var(--theme-color);
    font-size: 10px;
    padding: 1px 4px;
    color: #fff;
    font-weight: 600;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px
}

@media(max-width: 1199px) {
    header .navbar-nav .nav-item .new-pages .new-dropdown {
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        margin-left: 9px;
        border-radius: 3px
    }
}

header .navbar-nav .nav-item:hover {
    color: var(--theme-color)
}

header .navbar-nav .dropdown-menu {
    min-width: 200px;
    margin: 0;
    margin-top: -8px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: -1px 0 10px 0 rgba(34, 34, 34, .7), 5px 20px 40px 0 rgba(34, 34, 34, .4);
    border-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    border: 0;
    position: absolute;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transform: translateY(-15px)
}

@media(max-width: 1366px) {
    header .navbar-nav .dropdown-menu {
        left: -50%
    }
}

@media(max-width: 1240px) {
    header .navbar-nav .dropdown-menu {
        left: -70%
    }
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-menu {
        min-width: none;
        margin: 0
    }
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover {
    position: relative
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover>a {
    display: block;
    position: relative
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover>a .new-text i {
    font-size: 12px;
    margin-left: 4px;
    color: var(--theme-color)
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover>a::before {
    content: "";
    position: absolute;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 16px
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover:hover .sub-menu {
    left: 113%;
    visibility: visible;
    opacity: 1
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-menu .sub-dropdown-hover:hover .sub-menu {
        left: unset
    }
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu {
    position: absolute;
    top: -19px;
    left: 123%;
    min-width: 200px;
    box-shadow: -1px 0 10px 0 rgba(34, 34, 34, .07), 5px 20px 40px 0 rgba(34, 34, 34, .04);
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu {
        position: relative;
        top: unset;
        left: unset;
        opacity: 1;
        min-width: auto;
        z-index: 1;
        visibility: visible;
        box-shadow: none;
        margin: 5px 0 12px 29px;
        padding: 0
    }
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a {
    padding: 0;
    font-size: 14px;
    position: relative;
    transition: all .3s ease-in-out;
    z-index: 0;
    color: #222;
    display: block
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a:hover::after {
    width: 40%
}

header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 2px;
    left: 0;
    background-color: var(--theme-color);
    opacity: .3;
    border-radius: 50px;
    transition: all .3s ease-in-out;
    z-index: -1
}

header .navbar-nav .dropdown-menu-2 {
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    width: 52vw;
    min-width: unset;
    padding: 22px !important;
    align-items: center;
    justify-content: space-around;
    display: block;
    overflow: hidden;
    position: absolute;
    z-index: 0
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-menu-2 {
        position: relative
    }
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-menu-2::after {
        content: none
    }
}

@media(max-width: 1680px) {
    header .navbar-nav .dropdown-menu-2 {
        width: 65vw
    }
}

@media(max-width: 1400px) {
    header .navbar-nav .dropdown-menu-2 {
        background-position: 20px center
    }
}

@media(max-width: 1315px) {
    header .navbar-nav .dropdown-menu-2 {
        width: 72vw
    }
}

@media(max-width: 1260px) {
    header .navbar-nav .dropdown-menu-2 {
        width: 80vw
    }
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-menu-2 {
        width: 100%;
        padding: 0 !important;
        left: 0;
        margin: 0
    }
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-header {
        padding-left: 10px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(34, 34, 34, .8)
    }

    header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item {
        position: relative;
        cursor: pointer;
        width: auto;
        margin-left: 15px
    }

    header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item::before {
        content: "";
        position: absolute;
        width: 7px;
        height: 1px;
        background-color: rgba(74, 85, 104, .65);
        top: 50%;
        transform: translateY(-50%);
        left: -4px
    }
}

header .navbar-nav .dropdown-menu .dropdown {
    margin-inline: 20px
}

header .navbar-nav .dropdown-menu .dropdown:last-child {
    margin-bottom: 12px
}

header .navbar-nav .dropdown-menu .dropdown .dropdown-toggle::after {
    display: none
}

header .navbar-nav .dropdown-menu .dropdown-menu {
    display: block;
    padding-inline: 16px
}

header .navbar-nav .dropdown-image {
    background-image: none
}

header .navbar-nav .dropdown-image::after {
    content: none
}

@media(max-width: 991px) {
    header .navbar-nav .dropdown-image {
        left: 0;
        margin-top: 0
    }
}

header .navbar-nav .dropdown-image .dropdown-column {
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-image .dropdown-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-block: 8px 16px
    }
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item {
    margin: 0 !important;
    text-align: center
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:focus,
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:active {
    background-color: rgba(0, 0, 0, 0)
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item::before {
    content: none
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item::after {
    content: none
}

@media(max-width: 1199px) {
    header .navbar-nav .dropdown-image .dropdown-column .dropdown-item {
        padding: 0
    }
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:hover img {
    box-shadow: 5px 20px 40px 0 rgba(34, 34, 34, .07);
    transform: translateY(-4px)
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:hover span {
    color: var(--theme-color);
    font-weight: 600
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:hover span::after {
    width: 100%
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item img {
    width: 100%;
    box-shadow: 5px 20px 40px 0 rgba(34, 34, 34, .04);
    transition: all .3s ease-in-out;
    display: block
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item span {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    font-size: calc(15px + 1*(100vw - 1200px)/720);
    margin-bottom: -6px;
    position: relative;
    z-index: 0;
    font-weight: 500;
    text-transform: capitalize
}

header .navbar-nav .dropdown-image .dropdown-column .dropdown-item span::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    background-color: var(--theme-color);
    opacity: .3;
    border-radius: 50px;
    transition: all .3s ease-in-out;
    z-index: -1
}

header .navbar-nav .nav-link {
    padding-inline: 0
}

header .navbar-brand {
    padding-block: 0;
    margin-right: 16px;
    font-size: calc(21px + .45vw);
    white-space: nowrap;
    display: inline-block;
    font-weight: 500
}

header .navbar-brand:hover {
    text-decoration: none
}

header .navbar-brand:focus {
    text-decoration: none
}

header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    padding: 15px 18px 15px 0;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .07em
}

header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a::before {
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: all .15s ease-in-out
}

@media(max-width: 1199px) {
    header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a::before {
        right: 0;
        line-height: 1
    }
}

@media(max-width: 1199px) {
    header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
        padding-block: 0
    }
}

header .navbar.navbar-expand-xl .navbar-nav .nav-item+.nav-item {
    margin-left: calc(15px + 10*(100vw - 1200px)/720)
}

@media(max-width: 1199px) {
    header .navbar.navbar-expand-xl .navbar-nav .nav-item+.nav-item {
        margin-left: 0
    }
}

header .navbar.navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item:hover>.dropdown-toggle {
    color: var(--theme-color)
}

header .navbar.navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-toggle {
    padding: 0;
    font-weight: 400;
    font-size: 15px
}

header .navbar.navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-toggle::before {
    content: unset
}

header .navbar.navbar-expand-xl .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: normal;
    position: relative;
    text-transform: capitalize;
    transition: all .15s ease-in-out
}

header .navbar.navbar-expand-xl .navbar-nav .nav-link::after {
    content: none
}

header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu {
    position: absolute;
    top: -10px;
    left: 84%;
    transform: translateX(-50%);
    font-size: 8px;
    display: inline-block;
    text-transform: uppercase;
    line-height: 16px;
    padding: 0 8px;
    font-weight: 600;
    color: #fff;
    background-color: var(--theme-color);
    border-radius: 50px
}

@media(max-width: 1199px) {
    header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-left: 10px;
        margin-right: auto;
        border-radius: 3px
    }
}

header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    top: 100%;
    left: 10px;
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-top: 4px solid var(--theme-color)
}

@media(max-width: 1199px) {
    header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu::before {
        content: none
    }
}

header .navbar.navbar-expand-xl .navbar-nav .nav-link-2::before {
    content: none
}

header .navbar-text {
    padding-top: 9px;
    padding-bottom: 9px
}

header .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

header .navbar-toggler {
    background-color: rgba(0, 0, 0, 0);
    transition: box-shadow .15s ease-in-out;
    padding: 12px;
    font-size: 18px;
    margin-right: 10px;
    padding: 0;
    line-height: 1.5
}

@media(max-width: 767px) {
    header .navbar-toggler {
        margin-right: 0
    }
}

header .navbar-toggler:focus-visible {
    outline: none
}

header .navbar-toggler:focus {
    box-shadow: none
}

header .navbar-toggler-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #222
}

@media(max-width: 767px) {
    header .navbar-toggler-icon {
        margin-right: 0
    }
}

header .navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto
}

header .navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

header .navbar-expand .navbar-nav {
    flex-direction: row
}

header .navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
    left: 26px;
    top: 30px;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, .14)
}

header .navbar-expand .navbar-nav-scroll {
    overflow: visible
}

header .navbar-expand .navbar-collapse {
    display: flex;
    flex-basis: auto
}

header .navbar-expand .navbar-toggler {
    display: none
}

header .navbar-light .navbar-brand {
    color: #222
}

header .navbar-light .navbar-brand:hover {
    color: #222
}

header .navbar-light .navbar-brand:focus {
    color: #222
}

header .navbar-light .navbar-nav .nav-link {
    color: #222
}

header .navbar-light .navbar-nav .nav-link:hover {
    color: var(--theme-color)
}

header .navbar-light .navbar-nav .nav-link:focus {
    color: var(--theme-color)
}

header .navbar-light .navbar-nav .show>.nav-link {
    color: var(--theme-color)
}

header .navbar-light .navbar-nav .nav-link.active {
    color: var(--theme-color)
}

header .navbar-light .navbar-toggler {
    color: #4a5568;
    border-color: rgba(0, 0, 0, 0)
}

header .navbar-light .navbar-text {
    color: #4a5568
}

header .navbar-light .navbar-text a {
    color: var(--theme-color)
}

header .navbar-light .navbar-text a:hover {
    color: var(--theme-color)
}

header .navbar-light .navbar-text a:focus {
    color: var(--theme-color)
}

header .navbar {
    display: inline-block;
    padding-block: 6px;
    z-index: 3
}

header .navbar-shadow {
    box-shadow: 0 2px 10px -3px rgba(34, 34, 34, .1)
}

header .header-nav-middle {
    margin: auto !important
}

header .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    box-shadow: -1px 0 10px 0 rgba(34, 34, 34, .07), 5px 20px 40px 0 rgba(34, 34, 34, .04);
    transition: transform .3s ease-in-out;
    will-change: transform, box-shadow;
    transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow .3s ease;
    visibility: visible !important
}

header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
    top: 0;
    left: 0;
    box-shadow: none
}

@media(max-width: 1199px) {
    header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
        width: calc(300px + 20*(100vw - 320px)/879);
        transform: translateX(-100%);
        z-index: 7
    }
}

header .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 20px 24px;
    z-index: 1;
    position: relative
}

@media(max-width: 1199px) {
    header .offcanvas-header {
        padding: calc(13px + 7*(100vw - 320px)/880) calc(16px + 8*(100vw - 320px)/880)
    }
}

header .offcanvas-header .btn-close {
    font-size: 20px;
    background: unset;
    opacity: 1;
    width: unset;
    height: unset;
    line-height: 1;
    position: relative;
    inset: unset;
    transform: unset;
    margin: 0;
    padding: 0
}

header .offcanvas-header h5 {
    color: var(--theme-color);
    font-weight: 500;
    font-size: calc(18px + 4*(100vw - 320px)/880);
    margin: 0
}

header .offcanvas-title {
    margin-bottom: 0;
    line-height: initial
}

header .offcanvas-body {
    flex-grow: 1;
    padding: 20px 24px;
    overflow-y: auto;
    height: 100%
}

@media(max-width: 1199px) {
    header .offcanvas-body {
        padding: calc(13px + 7*(100vw - 320px)/880) calc(16px + 8*(100vw - 320px)/880)
    }
}

header .offcanvas-body::-webkit-scrollbar {
    width: 0;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0
}

header .offcanvas-body::-webkit-scrollbar-thumb {
    border-radius: 4px
}

header .offcanvas-body>.simplebar-track {
    display: block;
    background-color: rgba(0, 0, 0, 0)
}

header .offcanvas-body .simplebar-vertical {
    margin-right: 3px
}

header .offcanvas-start {
    top: 0;
    left: 0;
    width: 352px;
    border-right: 0 solid rgba(0, 0, 0, 0);
    transform: translateX(-100%)
}

header .offcanvas-end {
    top: 0;
    right: 0;
    width: 352px;
    border-left: 0 solid rgba(0, 0, 0, 0);
    transform: translateX(100%)
}

header .offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 0 solid rgba(0, 0, 0, 0);
    transform: translateY(-100%)
}

header .offcanvas-bottom {
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 0 solid rgba(0, 0, 0, 0);
    transform: translateY(100%)
}

header .offcanvas.show {
    transform: none !important;
    box-shadow: -1px 0 10px 0 rgba(34, 34, 34, .07), 5px 20px 40px 0 rgba(34, 34, 34, .04) !important
}

header .offcanvas-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 20px 24px
}

header .sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    z-index: 1025
}

header .hot-deal-box {
    color: #e21719;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px
}

header .hot-deal-box img {
    margin-right: 7px
}

header .hot-deal-box span {
    font-size: 16px;
    font-weight: 500
}

@media(prefers-reduced-motion: reduce) {
    header .navbar-toggler {
        transition: none
    }

    header .offcanvas {
        transition: none
    }
}

@media(min-width: 1200px) {
    header .navbar-expand-xl.navbar .offcanvas-body {
        overflow: visible
    }

    header .navbar-expand-xl .navbar-nav {
        position: relative;
        padding-top: 0
    }

    header .navbar-expand-xl .navbar-nav .nav-item {
        border: 0
    }

    header .navbar-expand-xl .navbar-nav .nav-item:first-child .nav-link {
        padding-left: 0
    }

    header .navbar-expand-xl .navbar-nav .nav-item:hover>.nav-link:not(.disabled) {
        color: var(--theme-color)
    }

    header .navbar-expand-xl .navbar-nav .nav-item:hover>.nav-link:not(.disabled)::before {
        transform: translateY(-50%) rotateX(180deg)
    }

    header .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu {
        padding: 20px 0
    }
}

@media(min-width: 1200px)and (max-width: 1199px) {
    header .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu {
        padding: 0;
        margin-top: 5px
    }
}

@media(min-width: 1200px) {
    header .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item {
        padding: 0 20px
    }

    header .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-menu {
        padding: 20px 0
    }
}

@media(min-width: 1200px)and (max-width: 1199px) {
    header .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-menu {
        padding: 0;
        margin-top: 5px
    }

    header .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-menu:before {
        content: ""
    }
}

@media(min-width: 1200px) {
    header .navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item>.dropdown-menu>.nav-item {
        padding: 0 20px
    }

    header .navbar-expand-xl .navbar-nav .nav-item.active>.nav-link:not(.disabled) {
        color: var(--theme-color)
    }

    header .navbar-expand-xl .navbar-nav>.dropdown>.dropdown-toggle::after {
        display: none
    }

    header .navbar-expand-xl .dropdown-menu {
        margin-top: 0;
        box-shadow: -1px 0 10px 0 rgba(34, 34, 34, .07), 5px 20px 40px 0 rgba(34, 34, 34, .04);
        background-color: #fff;
        border-color: #fff;
        padding: 20px;
        border-radius: 0;
        display: none !important
    }

    header .navbar-expand-xl .dropdown-menu li {
        display: block;
        width: 100%
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-column {
        position: relative
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-column:first-of-type {
        margin-left: 0
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-column .menu-no-data {
        background-color: #f8f8f8;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-item {
        padding: 0;
        margin: 12px 0 0 0;
        font-size: 15px;
        position: relative;
        transition: all .3s ease-in-out;
        z-index: 0;
        cursor: pointer;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-item:hover::after {
        width: 40%
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-item:active {
        color: #000;
        background-color: rgba(0, 0, 0, 0)
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-item::after {
        content: "";
        position: absolute;
        width: 0;
        height: 4px;
        bottom: 2px;
        left: 0;
        background-color: var(--theme-color);
        opacity: .3;
        border-radius: 50px;
        transition: all .3s ease-in-out;
        z-index: -1
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-item:focus {
        background-color: rgba(0, 0, 0, 0)
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0)
    }

    header .navbar-expand-xl .dropdown-menu .dropdown {
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        border-left: 0
    }

    header .navbar-expand-xl .dropdown-menu .dropdown .dropdown-toggle {
        position: relative;
        padding-right: 26px
    }

    header .navbar-expand-xl .dropdown-menu .dropdown .dropdown-toggle::after {
        content: "";
        position: absolute;
        font-family: remixicon;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        top: 50%;
        transform: translateY(-50%);
        width: unset;
        height: unset;
        display: block;
        right: 10px;
        border: none
    }

    header .navbar-expand-xl .dropdown-menu .dropdown:last-child {
        margin-bottom: 0
    }

    header .navbar-expand-xl .dropdown-menu .dropdown-menu {
        top: -20px;
        right: auto;
        left: 100%;
        width: auto;
        margin-top: 0;
        margin-inline: 0;
        padding-inline: 0;
        border-radius: 0;
        background-color: #fff
    }

    header .navbar-expand-xl .dropdown-menu.show {
        display: none
    }

    header .navbar-expand-xl .dropdown-menu.dropdown-menu-end {
        right: 0;
        left: auto
    }

    header .navbar-expand-xl .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block !important
    }

    header .navbar-expand-xl .dropdown:hover .dropdown-menu-2 {
        transform: translateX(-50%) translateY(0);
        display: block !important;
        left: 50%
    }
}

@media(min-width: 1200px)and (max-width: 1260px) {
    header .navbar-expand-xl .dropdown:hover .dropdown-menu-2 {
        transform: translateX(-55%) translateY(0)
    }
}

@media(min-width: 1200px) {
    header .navbar-expand-xl .dropdown:hover .dropdown-menu-center {
        transform: translateX(-50%) translateY(0)
    }

    header .navbar-expand-xl .dropdown:hover .dropdown-menu-left {
        transform: translateX(-50%) translateY(0)
    }

    header .navbar-expand-xl .dropdown-mega {
        position: unset
    }

    header .navbar-expand-xl .dropdown-mega>.dropdown-menu {
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: nowrap;
        display: none !important
    }

    header .navbar-expand-xl .dropdown-mega:hover>.dropdown-menu {
        display: flex
    }

    header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item {
        display: block;
        padding: 0
    }

    header .navbar-expand-xl .dropdown-mega .dropdown-column.dropdown-column-img {
        width: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0
    }

    header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header {
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 24px;
        color: #222;
        position: relative
    }

    header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header::after {
        content: "";
        position: absolute;
        bottom: -10px;
        width: 36px;
        height: 2px;
        background-color: var(--theme-color);
        left: 0
    }

    header .offcanvas-expand {
        transform: none !important;
        z-index: 1031
    }

    header .offcanvas-expand.offcanvas-start {
        transform: none !important
    }

    header .offcanvas-expand.offcanvas-end {
        transform: none !important
    }

    header .offcanvas-expand.offcanvas-bottom {
        transform: none !important
    }

    header .offcanvas-collapse {
        display: block;
        position: static;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        transform: none !important;
        background-color: rgba(0, 0, 0, 0);
        box-shadow: none
    }

    header .offcanvas-collapse .offcanvas-header {
        display: none
    }

    header .offcanvas-collapse .offcanvas-footer {
        display: none
    }

    header .offcanvas-collapse .offcanvas-body {
        padding: 0;
        overflow: initial
    }

    header .offcanvas-enabled-start {
        padding-left: 376px
    }

    header .offcanvas-enabled-end {
        padding-inline: 0 376px
    }
}

header .navbar-expand-xl .offcanvas {
    -webkit-box-flex: 1
}

@media(max-width: 1199px) {
    header .navbar-expand-xl .offcanvas {
        z-index: 4;
        -webkit-box-flex: 2
    }
}

header .offcanvas-backdrop {
    z-index: 6
}

@media(max-width: 1199px) {
    header .offcanvas-collapse .offcanvas-body .navbar-nav {
        padding-top: 0
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-item {
        border-top: 0
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #4a5568;
        font-weight: 700
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link:hover {
        color: var(--theme-color);
        background-color: rgba(0, 0, 0, 0)
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link.active {
        color: var(--theme-color);
        background-color: rgba(0, 0, 0, 0)
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link.disabled {
        color: #4a5568
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .show>.nav-link {
        color: var(--theme-color)
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .active>.nav-link {
        color: var(--theme-color)
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu li {
        display: block;
        width: 100%
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item {
        color: #4a5568;
        font-size: 14px
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item:hover {
        color: var(--theme-color);
        background-color: rgba(0, 0, 0, 0)
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item.active {
        color: var(--theme-color);
        background-color: rgba(0, 0, 0, 0)
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item.disabled {
        color: #4a5568
    }

    header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-header {
        font-size: 16px;
        font-weight: 600
    }

    header .navbar-nav .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: none !important;
        transform: translateY(0)
    }

    header .navbar-nav .dropdown-menu.show {
        position: relative;
        display: block !important;
        inset: unset
    }

    header .navbar-nav .dropdown-menu .dropdown-item {
        position: relative;
        margin-left: 15px
    }

    header .navbar-nav .dropdown-menu .dropdown-item::before {
        content: "";
        position: absolute;
        width: 7px;
        height: 1px;
        background-color: rgba(74, 85, 104, .65);
        top: 50%;
        transform: translateY(-50%);
        left: -4px
    }

    header .navbar-nav .dropdown-menu .dropdown-column .dropdown-header {
        padding-left: 10px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(34, 34, 34, .8)
    }
}

@media(max-width: 1199px) {
    header.header-style-1 .bg-light {
        line-height: 0
    }
}

header.header-style-1 .bg-light .navbar {
    padding: 0
}

@media(max-width: 1199px) {
    .new-nav-item {
        justify-content: unset !important
    }
}

.new-nav-item .new-dropdown {
    position: absolute;
    background-color: var(--theme-color);
    padding: 2px 7px;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 9px;
    top: -7px;
    right: 3px;
    font-weight: 600;
    line-height: 1.3
}

.new-nav-item .new-dropdown::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    border-top: 5px solid var(--theme-color);
    top: 15px;
    left: 22px
}

@media(max-width: 1199px) {
    .new-nav-item .new-dropdown {
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        margin-left: 9px;
        border-radius: 3px
    }
}

@media(max-width: 1199px) {
    .new-nav-item .new-dropdown {
        margin: 0;
        padding-block: 3px;
        font-size: 10px
    }

    .new-nav-item .new-dropdown::after {
        content: unset
    }
}

.dropdown-menu .product-box {
    padding: 0
}

.dropdown-menu .product-box .product-image {
    background-color: #f8f8f8;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden
}

.dropdown-menu .product-box .product-detail a h6.name {
    font-size: 14px;
    font-weight: 400
}

.dropdown-menu .product-box .product-detail .rating {
    margin-top: 3px
}

.dropdown-menu .product-box .product-detail .rating span {
    color: #ffb321;
    font-size: 20px;
    margin-right: 1px;
    line-height: 1
}

.dropdown-menu .product-box .product-detail .unit {
    color: #777
}

.menu-img-banner {
    margin: -23px -23px -23px -25px
}

.menu-img-banner a {
    display: block;
    width: 100%
}

.menu-img-banner a img {
    width: 100%
}

.menu-img-banner h4 {
    margin-top: 12px;
    line-height: 1.5;
    font-weight: 500
}

.menu-label {
    background-color: var(--theme-color) !important;
    font-size: 12px;
    padding: 3px 5px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 0;
    margin-bottom: 0;
    margin-left: 4px
}

.menu-label::before {
    content: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #ff7272;
    left: -5px;
    width: 12px;
    height: 12px;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0)
}

.menu-label.warning-label {
    background-color: #ffa53b
}

.menu-label.success-label {
    background-color: var(--theme-color)
}

@media(max-width: 1199px) {
    header .navbar-nav .nav-item .dropdown-menu .nav-link {
        display: none !important
    }

    header .navbar-nav .nav-item .dropdown-menu .dropdown-menu {
        display: block !important;
        position: relative;
        inset: unset
    }
}

.auth-modal>.modal-content>.modal-dialog {
    margin: 0
}

.auth-modal>.modal-content>.modal-dialog>.modal-content>.modal-body {
    padding: 0
}

.auth-modal>.modal-content>.modal-dialog>.modal-body {
    padding: 0
}

.auth-modal.modal-dialog-centered {
    display: flex !important;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin)*2)
}

.auth-modal.show .modal-dialog {
    transform: scale(1) !important;
    transform-origin: center
}

.auth-modal .modal-dialog {
    transform: scale(0) !important;
    pointer-events: unset;
    transform-origin: bottom;
    transition: all .3s ease-in-out
}

.auth-modal .create {
    margin: 0;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    font-size: calc(14px + 1*(100vw - 320px)/1600)
}

.auth-modal .create a {
    color: #222;
    font-weight: 600
}

.auth-modal .divider {
    position: relative;
    margin-block: calc(14px + 11*(100vw - 320px)/1600) calc(8px + 9*(100vw - 320px)/1600);
    text-align: center;
    z-index: 0
}

.auth-modal .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid #eee
}

.auth-modal .divider span {
    background-color: #fff;
    z-index: 1;
    position: relative;
    padding-inline: 9px;
    font-weight: 500;
    color: #777;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.auth-modal .modal-content {
    overflow: hidden;
    transition: all .5s ease;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    border: unset
}

.auth-modal .modal-content .left-img {
    z-index: -1;
    position: relative;
    transition: all .5s ease;
    transform: translate(-50%)
}

.auth-modal .modal-content .left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.auth-modal .modal-content .right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(50%);
    background-color: #fff;
    transition: all .5s ease;
    padding: calc(24px + 20*(100vw - 992px)/928)
}

@media(max-width: 991px) {
    .auth-modal .modal-content .right-content {
        padding: calc(18px + 6*(100vw - 320px)/671)
    }
}

.auth-modal .modal-content .open {
    transition-duration: .5s
}

.auth-modal .modal-content .open .right-content {
    animation: slideLeft .45s normal forwards ease-out;
    animation-delay: .5s
}

@media(max-width: 991px) {
    .auth-modal .modal-content .open .right-content {
        animation: none;
        transform: unset
    }
}

.auth-modal .modal-content .open .left-img {
    animation: slideRight .45s normal forwards ease-out;
    animation-delay: .5s;
    transition: all .5s ease
}

.auth-modal .auth-title {
    margin-bottom: 26px;
    text-align: center
}

.auth-modal .auth-title h3 {
    font-weight: 600;
    letter-spacing: unset;
    color: #222;
    margin: 0 0 9px;
    font-size: calc(20px + 4*(100vw - 320px)/1600)
}

.auth-modal .auth-title p {
    font-size: calc(13px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    line-height: 1.6;
    margin: 0
}

.auth-modal .log-in-title h5 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3
}

.auth-modal .auth-form-box .auth-box:has(.inner-otp) {
    width: 283px;
    overflow: hidden
}

.auth-modal .auth-form-box .auth-box .form-label {
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    margin-bottom: 4px;
    color: #777
}

.auth-modal .auth-form-box .auth-box .form-control {
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border-radius: 0;
    border: 1px solid #eee;
    font-size: 14px
}

.auth-modal .auth-form-box .auth-box .inner-otp {
    position: sticky;
    left: 0
}

.auth-modal .auth-form-box .auth-box .inner-otp input {
    padding-left: 15px;
    letter-spacing: 41px;
    border: 0;
    background-image: linear-gradient(to left, rgb(189, 189, 189) 70%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 50px 1px;
    background-repeat: repeat-x;
    background-position-x: 35px;
    width: calc(100% + 90px);
    background-color: rgba(0, 0, 0, 0)
}

.auth-modal .auth-form-box .phone-field .form-box>.form-control {
    padding-left: calc(111px + 21*(100vw - 320px)/1600)
}

.auth-modal .auth-form-box .forgot {
    margin: 5px 0 22px;
    font-weight: 500;
    color: #777;
    text-align: right;
    display: block
}

.auth-modal .auth-form-box .btn {
    width: 100%;
    border: unset;
    padding: calc(11px + 4*(100vw - 320px)/1600);
    background-color: var(--theme-color);
    border-radius: 0;
    font-weight: 600;
    color: #fff;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    margin-top: calc(2px + 4*(100vw - 320px)/1600);
    line-height: 1.3
}

.input-padding {
    padding: 12px
}

@keyframes slideLeft {
    0% {
        transform: translate(50%)
    }

    100% {
        transform: translate(0.1%)
    }
}

@keyframes slideRight {
    0% {
        transform: translate(-50%);
        border-radius: 8px
    }

    100% {
        border-radius: 0;
        transform: translate(0)
    }
}

.ribbon-1 {
    width: 24px;
    height: 45px;
    background: var(--theme-color);
    top: -6px;
    left: 25px;
    position: absolute;
    box-shadow: 4px 5px 15px 2px rgba(90, 90, 90, .35)
}

.ribbon-1:before {
    height: 0;
    width: 0;
    border-bottom: 6px solid var(--theme-color);
    border-right: 6px solid rgba(0, 0, 0, 0);
    right: -6px;
    content: "";
    position: absolute
}

.ribbon-1:after {
    height: 0;
    width: 0;
    border-left: 12px solid var(--theme-color);
    border-right: 12px solid var(--theme-color);
    border-bottom: 12px solid rgba(0, 0, 0, 0);
    bottom: -11px;
    left: 0;
    content: "";
    position: absolute
}

.ribbon-1 span {
    display: block;
    color: #fff;
    height: 12px;
    text-transform: lowercase
}

.quick-view-modal .modal-body {
    padding: calc(15px + 10*(100vw - 320px)/1600) !important
}

.quick-view-modal .modal-body .product-page-details {
    position: relative;
    inset: unset
}

.quick-view-modal .modal-body .product-page-details .sale-timer-box {
    display: none
}

.quick-view-modal .product-page-details .product-rating {
    margin-top: 0
}

.quick-view-modal .product-page-details .main-title {
    font-size: calc(20px + 10*(100vw - 320px)/1600);
    margin-bottom: calc(5px + 5*(100vw - 320px)/1600);
    width: calc(100% - 18px)
}

.quick-view-modal .product-page-details .description-text {
    font-size: calc(14px + 1*(100vw - 320px)/1600)
}

.quick-view-modal .product-page-details .price-text {
    margin-bottom: 13px
}

.quick-view-modal .product-page-details .price-text h3 {
    font-size: calc(20px + 4*(100vw - 320px)/1600);
    gap: 10px;
    margin-block: 13px calc(2px + 2*(100vw - 320px)/1600)
}

.quick-view-modal .product-page-details .price-text h3 .discounted-price {
    font-weight: 500;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0);
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 0;
    position: relative;
    margin-left: 7px;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.quick-view-modal .product-page-details .price-text h3 .discounted-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .1
}

.quick-view-modal .product-page-details .buy-button {
    padding: calc(7px + 3*(100vw - 320px)/1600) calc(12px + 10*(100vw - 320px)/1600) !important
}

.quick-view-modal .product-page-details .shipping-info {
    display: grid;
    line-height: 1.9;
    color: #5f5f5f;
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 7px 21px;
    padding-left: 20px;
    margin-bottom: calc(0px + -7*(100vw - 320px)/1600);
    text-align: left
}

.quick-view-modal .product-page-details .shipping-info li {
    line-height: 1.4
}

.quick-view-modal .product-page-details .product-detail-label {
    gap: 8px
}

.quick-view-modal .product-page-details .product-detail-label li {
    padding: 4px 8px
}

.quick-view-modal .product-page-details .qty-section .qty-box .input-group input {
    padding-block: 0
}

.quick-view-modal .product-page-details .qty-section .qty-box .input-group button {
    padding: 0;
    width: 32px;
    height: 32px
}

.quick-view-modal .product-page-details .bordered-box {
    padding-top: 14px;
    margin-top: 14px
}

.theme-modal .modal-dialog .modal-content .modal-body {
    background-image: linear-gradient(135deg, var(--theme-color) 5.77%, #ffffff 5.77%, #ffffff 25%, #111111 25%, #111111 30.77%, #ffffff 30.77%, #ffffff 50%, var(--theme-color) 50%, var(--theme-color) 55.77%, #ffffff 55.77%, #ffffff 75%, #111111 75%, #111111 80.77%, #ffffff 80.77%, #ffffff 100%);
    background-size: 36.77px 36.77px;
    background-color: #fff
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
    background-color: #fff;
    padding: 45px
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close {
    padding-right: 10px;
    padding-top: 5px;
    position: absolute;
    right: 17px;
    top: 0
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close span {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h2 {
    border-bottom: 1px dashed #777;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-weight: 700
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h4 {
    margin-bottom: 30px;
    text-align: center;
    color: #272727;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form {
    margin: 0 auto;
    text-align: center
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form>div {
    display: flex;
    margin-bottom: 10px
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form .form-control {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-size: 12px;
    height: 50px;
    border-radius: 0;
    width: 100%;
    letter-spacing: .05em
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content img {
    margin-bottom: 40px
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
    margin-bottom: 30px;
    text-align: center;
    color: #222
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content form .form-group {
    margin: 0 auto;
    text-align: center
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content form .form-group .form-control {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-size: 12px;
    max-width: 640px;
    left: 0;
    right: 0;
    margin: 0 auto;
    letter-spacing: .05em
}

.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content form .form-group .btn-solid,
.theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content form .form-group .btn-outline {
    margin-top: 10px;
    text-align: center
}

.theme-modal .modal-dialog .quick-view-modal button.btn-close,
.theme-modal .modal-dialog .demo_modal button.btn-close {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 0;
    font-size: 30px;
    padding: 0
}

.theme-modal .modal-dialog .quick-view-modal .view-detail,
.theme-modal .modal-dialog .demo_modal .view-detail {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase
}

.theme-modal.demo-modal .modal-dialog .modal-content .modal-body {
    height: 75vh;
    overflow-y: scroll;
    padding: 25px;
    background-image: none !important
}

.theme-modal.demo-modal .modal-dialog .modal-content .modal-body::-webkit-scrollbar {
    width: 5px
}

.theme-modal.demo-modal .modal-dialog .modal-content .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1
}

.theme-modal.demo-modal .modal-dialog .modal-content .modal-body::-webkit-scrollbar-thumb {
    background: var(--theme-color)
}

.theme-modal.demo-modal .modal-dialog .modal-content .modal-body::-webkit-scrollbar-thumb:hover {
    background: #555
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg {
    padding: 25px
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media a img {
    max-width: 150px
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media .media-body {
    padding: 0 15px
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media .media-body a h6 {
    font-size: 16px
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media .media-body a h6 i {
    margin-right: 8px;
    color: #fff;
    background: #19a340;
    font-size: 14px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media .media-body .buttons a {
    display: inline-block;
    font-size: 16px;
    padding: 6px 10px;
    margin: 0 6px
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart #upsell_product .product-box {
    padding-inline: 10px
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart #upsell_product .product-box .product-detail {
    text-align: center
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart #upsell_product .product-box .product-detail h6 {
    font-weight: 700;
    text-transform: capitalize
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart #upsell_product .product-box .product-detail h6 a {
    color: var(--theme-color)
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .upsell_payment {
    padding-top: 15px
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .product-upsell {
    margin: 20px 0 10px
}

.theme-modal.cart-modal .modal-dialog .modal-content .modal-body .product-upsell h4 {
    font-weight: 600
}

.theme-modal>.modal-content>.modal-dialog {
    margin: 0
}

.exit-modal>.modal-content>.modal-dialog {
    margin: 0
}

.exit-modal>.modal-content>.modal-dialog>.modal-body {
    padding: 0
}

.exit-modal .modal-content {
    display: block
}

.exit-modal .modal-body .right-content {
    text-align: left;
    background: #f0e3dc;
    background: linear-gradient(-90deg, rgba(245, 238, 234, 0.99) 0, rgb(249, 249, 249) 100%);
    display: block;
    transform: unset
}

.exit-modal .modal-body .right-content .auth-title {
    text-align: unset;
    margin: 0
}

.exit-modal .modal-body .right-content .auth-title h2 {
    color: var(--theme-color);
    font-size: calc(30px + 8*(100vw - 320px)/1600);
    margin: 0
}

.exit-modal .modal-body .right-content .auth-title h4 {
    color: #777;
    line-height: 1.3;
    margin-top: calc(7px + 4*(100vw - 320px)/1600)
}

.exit-modal .modal-body .right-content .auth-title h5 {
    margin: 0;
    font-size: calc(17px + 5*(100vw - 320px)/1600);
    font-weight: 500;
    line-height: 1.4
}

#quick-view .modal-dialog .modal-content .modal-body {
    background-image: none
}

.modal .btn-close {
    padding-right: 10px;
    padding-top: 5px;
    position: absolute;
    right: 17px;
    top: 0
}

.modal .btn-close span {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1
}

.recently-purchase {
    background: #fff;
    border: 0;
    border-radius: 0;
    bottom: -140px;
    left: 20px;
    padding: 0;
    position: fixed;
    text-align: left;
    width: auto;
    z-index: 9;
    box-shadow: 0 0 4px 0 #d0d0d0;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: all .6s ease
}

.recently-purchase img {
    width: calc(60px + 20*(100vw - 320px)/1600);
    height: calc(70px + 20*(100vw - 320px)/1600);
    object-fit: contain;
    background-color: #f8f8f8
}

.recently-purchase .close-popup {
    position: absolute;
    right: 7px;
    top: 6px;
    opacity: .5;
    color: #222;
    cursor: pointer;
    font-size: 18px
}

.recently-purchase .media-body {
    padding: 0 30px 0 12px
}

.recently-purchase .media-body .title {
    font-weight: 600;
    width: calc(220px + 50*(100vw - 320px)/1600);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-size: calc(11px + 3*(100vw - 320px)/1600)
}

.recently-purchase .media-body .product-name {
    color: var(--theme-color);
    width: calc(190px + 50*(100vw - 320px)/1600);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-size: calc(11px + 3*(100vw - 320px)/1600)
}

.recently-purchase .media-body .timeAgo {
    display: block
}

.recently-purchase.show {
    bottom: 20px;
    transition: all .6s ease
}

.theme-modal-2 .modal-content {
    border: unset;
    border-radius: 0
}

.theme-modal-2 .modal-header {
    border-bottom: none;
    padding: calc(13px + 3*(100vw - 320px)/1600) calc(15px + .00125*(100vw - 320px))
}

.theme-modal-2 .modal-header .modal-title {
    font-size: calc(16px + .0025*(100vw - 320px));
    line-height: 1.2;
    margin: 0;
    font-weight: 600;
    color: #222;
    letter-spacing: .03em
}

.theme-modal-2 .modal-header .btn-close {
    position: absolute;
    width: 33px;
    height: 33px;
    top: 10px;
    right: 10px;
    background-color: var(--theme-color);
    opacity: 1;
    background-image: none;
    border-radius: 0;
    font-size: calc(15px + .00125*(100vw - 320px));
    color: #fff;
    margin: 0;
    padding: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center
}

.theme-modal-2 .modal-header .btn-close svg {
    font-size: calc(19px + 3*(100vw - 320px)/1600);
    font-weight: 500;
    width: unset;
    height: unset
}

.theme-modal-2 .modal-header>.btn-close {
    display: none
}

.theme-modal-2 .modal-body {
    padding-top: 5px
}

.theme-modal-2 .modal-body .form-box .form-label {
    font-weight: 600;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    margin-bottom: 4px;
    color: #222
}

.theme-modal-2 .modal-body .form-box .form-control {
    height: auto;
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border: 1px solid #eee;
    font-size: 14px
}

.theme-modal-2 .modal-body .form-box .form-control::placeholder {
    color: #777
}

.theme-modal-2 .modal-body .form-box {
    position: relative
}

.theme-modal-2 .modal-body .form-box .form-label {
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    margin-bottom: 4px;
    color: #777
}

.theme-modal-2 .modal-body .form-box .form-control {
    height: auto;
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border: 1px solid #eee;
    font-size: calc(14px + 0*(100vw - 320px)/1600)
}

.theme-modal-2 .modal-body .form-box .form-control::-webkit-inner-spin-button {
    display: none
}

.theme-modal-2 .modal-body .phone-field .form-box {
    position: relative
}

.theme-modal-2 .modal-body .phone-field .form-box>.form-control,
.theme-modal-2 .modal-body .phone-field .form-box>input {
    padding-left: calc(111px + 21*(100vw - 320px)/1600)
}

.theme-modal-2 .modal-body .phone-field .form-box .form-label~.custom-select-box,
.theme-modal-2 .modal-body .phone-field .form-box label~.custom-select-box {
    top: 28px;
    left: 0px
}

.theme-modal-2 .modal-body .phone-field .country-input-box~.custom-select-box {
    top: 28px;
    left: 0px
}

.theme-modal-2 .modal-body .phone-field .country-input-box~.col-12>.custom-select-box {
    top: 28px;
    left: 0px
}

.theme-modal-2 .modal-body .phone-field .custom-select-box {
    position: absolute;
    top: 0;
    left: 0;
    height: calc(42px + 6*(100vw - 320px)/1600);
    width: calc(100px + 20*(100vw - 320px)/1600)
}

.theme-modal-2 .modal-body .phone-field .custom-select-box>.form-control {
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-size: 14px;
    border: 1px solid #eee
}

.theme-modal-2 .modal-footer {
    padding: 0 calc(var(--bs-gutter-x)*.5);
    border: unset;
    margin-top: 23px;
    gap: 11px
}

.theme-modal-2 .modal-footer>* {
    margin: 0
}

.theme-modal-2 .country-input .country-input-box .custom-form .form-control {
    padding-left: calc(108px + 20*(100vw - 320px)/1600);
    border-color: #eee
}

.delete-modal .modal-header {
    display: none
}

.delete-modal .modal-body {
    padding: 1rem
}

.delete-modal .icon-box {
    width: 70px;
    height: 70px;
    padding: 18px;
    border-radius: 100%;
    background-color: rgba(236, 137, 81, .08);
    color: var(--theme-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-inline: auto
}

.delete-modal .icon-box svg {
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    font-size: 28px;
    width: unset;
    height: unset;
    line-height: 1
}

.delete-modal .button-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.delete-modal .button-box .btn {
    font-size: 16px;
    padding: 11px 50px;
    transition: none !important
}

.modal-body h5 {
    font-weight: 700;
    font-size: calc(17px + 8*(100vw - 320px)/1600);
    margin-bottom: calc(15px + 5*(100vw - 320px)/1600)
}

.modal-body p {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center
}

.modal-body .btn {
    transition: none !important
}

.modal-body .modal-title {
    font-weight: 700;
    font-size: calc(17px + 8*(100vw - 320px)/1600);
    margin-bottom: 7px;
    text-align: center
}

.question-answer-modal .product-wrapper {
    background-color: #f8f8f8;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid #eee;
    margin-bottom: 20px
}

.question-answer-modal .product-wrapper .product-image {
    width: 80px;
    height: 80px;
    background-color: #fff
}

.question-answer-modal .product-wrapper .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.question-answer-modal .product-wrapper .product-content {
    width: calc(100% - 80px - 14px)
}

.question-answer-modal .product-wrapper .product-content .name {
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.4
}

.question-answer-modal .product-wrapper .product-content .price-number {
    margin-block: 3px 0;
    font-size: 16px;
    font-weight: 500
}

.review-modal .modal-body .product-wrapper {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 9px;
    margin-bottom: 19px
}

.review-modal .modal-body .product-wrapper .product-image {
    width: 80px;
    height: 80px;
    background-color: #fff
}

.review-modal .modal-body .product-wrapper .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.review-modal .modal-body .product-wrapper .product-content .name {
    margin: 0;
    font-weight: 600;
    line-height: 1.3
}

.review-modal .modal-body .product-wrapper .product-content .product-review-rating label {
    font-weight: 500;
    font-size: 14px;
    margin-block: 4px;
    color: #777
}

.review-modal .modal-body .product-wrapper .product-content .product-review-rating .product-rating {
    line-height: 1
}

.review-modal .modal-body .review-box .product-review-rating {
    margin-bottom: 19px
}

.review-modal .modal-body .review-box .product-review-rating label {
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    margin-bottom: 4px;
    color: #777
}

.product-review-form .product-wrapper {
    display: flex;
    align-items: center;
    padding: 17px 23px;
    gap: 14px;
    margin-bottom: 22px;
    background-color: #f8f8f8;
    border: 1px solid #eee
}

.product-review-form .product-wrapper .product-image {
    width: 80px;
    border-radius: 0;
    overflow: hidden;
    background-color: #fff
}

.product-review-form .product-wrapper .product-content .name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.1
}

.product-review-form .product-wrapper .product-content .product-review-rating {
    display: flex;
    align-items: center;
    gap: 6px
}

.product-review-form .product-wrapper .product-content .product-review-rating label {
    color: #777;
    font-weight: 400
}

.product-review-form .product-wrapper .product-content .product-review-rating .price-number {
    color: #777;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 5px 0 0;
    line-height: 1.3
}

.product-review-form .product-wrapper .product-content .product-review-rating .rating-number {
    line-height: 1;
    margin-left: 8px;
    color: rgba(27, 27, 27, .6);
    display: flex;
    align-items: center;
    gap: 3px
}

.product-review-form .product-wrapper .product-content .product-review-rating .rating-number i {
    margin-top: -1px
}

.product-review-form .product-wrapper .product-content .product-review-rating .product-rating .rating li {
    line-height: 1
}

.product-review-form .review-box+.review-box {
    margin-top: 21px
}

.product-review-form .review-box .product-review-rating {
    display: flex;
    align-items: center;
    gap: 9px
}

.product-review-form .review-box .product-review-rating .product-rating .rating li {
    line-height: 1
}

.product-review-form .review-box .product-review-rating .product-rating .rating li i {
    font-size: 16px
}

.search-modal .no-data-added.collection-no-data,
.search-modal .tab-category.collection-no-data {
    padding: 70px 0
}

.search-modal .no-data-added.collection-no-data img,
.search-modal .tab-category.collection-no-data img {
    width: 18%
}

.search-modal .modal-header {
    border-bottom: 1px solid #eee
}

.search-modal .modal-header h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: unset;
    color: #222;
    margin: 0
}

.search-modal .search-category-box {
    margin-top: 10px;
    flex-wrap: wrap
}

.search-modal .search-category-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 12px
}

.search-modal .search-category-box li {
    color: var(--theme-color);
    font-weight: 500
}

.search-modal .search-title {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    color: #373737;
    margin-bottom: calc(8px + 5*(100vw - 320px)/1600)
}

.search-modal .modal-body {
    padding: var(--bs-modal-padding)
}

.search-modal .modal-body .search-box {
    position: relative
}

.search-modal .modal-body .search-box .form-control {
    padding: 11px 15px;
    border: 1px solid #eee;
    padding-right: 48px;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.search-modal .modal-body .search-box svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    font-size: 19px;
    color: #777;
    border-left: 1px solid #eee;
    padding-left: 13px;
    width: unset;
    height: unset
}

.coupon-modal .coupon-box {
    position: relative;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    height: 100%
}

.coupon-modal .coupon-box .coupon-name {
    display: block
}

.coupon-modal .coupon-box .coupon-name h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    margin: 0;
    line-height: 1.4
}

.coupon-modal .coupon-box .coupon-content {
    margin-top: 8px
}

.coupon-modal .coupon-box .coupon-content p {
    text-align: unset;
    color: #777;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-weight: 500;
    -webkit-box-orient: vertical;
    font-size: 15px;
    margin-bottom: 11px
}

.coupon-modal .coupon-box .coupon-content .coupon-apply {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, .12)
}

.coupon-modal .coupon-box .coupon-content .coupon-apply h6 {
    font-weight: 600;
    color: #232323;
    line-height: 1.3;
    margin: 0;
    font-size: 15px
}

.coupon-modal .coupon-box .coupon-content .coupon-apply .copy-btn {
    border: unset
}

.address-modal .right-sidebar-box>form>.row {
    --bs-gutter-y: 1rem
}

.address-modal-2 .right-sidebar-box>form>.row>.custom-box {
    margin-top: 0
}

.address-modal-2 .right-sidebar-box>form>.row>.custom-box .form-select {
    height: auto;
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border: 1px solid #eee;
    font-size: calc(14px + 0*(100vw - 320px)/1600)
}

.address-modal-2 .right-sidebar-box>form>.row>label,
.address-modal-2 .right-sidebar-box>form>.row .form-label {
    color: #777;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    margin-bottom: 4px
}

.auth-modal .number-btn {
    padding: calc(10px + 3*(100vw - 320px)/1600) calc(9px + 4*(100vw - 320px)/1600);
    margin-top: 16px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    font-weight: 500;
    width: 100%;
    text-transform: capitalize;
    font-size: calc(15px + 2*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.auth-modal .number-btn:active {
    border: 1px solid var(--theme-color);
    color: var(--theme-color)
}

.auth-modal .number-btn svg {
    width: unset;
    height: unset;
    font-size: calc(17px + 2*(100vw - 320px)/1600)
}

.auth-modal .modal-content .right-content .modal-back {
    position: absolute;
    top: calc(24px + 20*(100vw - 992px)/928);
    left: calc(24px + 20*(100vw - 992px)/928);
    line-height: 1;
    font-size: 19px;
    color: #222
}

.variation-modal .modal-header {
    padding: 0
}

.variation-modal .modal-body {
    padding: 16px
}

.variation-modal .variation-box {
    display: flex;
    align-items: center;
    gap: calc(26px + 24*(100vw - 767px)/1153)
}

.variation-modal .variation-box .sub-title {
    justify-content: unset;
    margin: 0
}

.variation-modal .variation-box .image li {
    width: unset !important;
    height: unset !important;
    padding: 2px
}

.variation-modal .variation-box .image li a img {
    width: calc(25px + 15*(100vw - 320px)/1600);
    height: calc(25px + 15*(100vw - 320px)/1600);
    object-fit: cover;
    cursor: pointer
}

.variation-modal .variation-title {
    position: unset;
    inset: unset;
    text-align: unset
}

.variation-modal .variation-title .main-title {
    font-size: calc(19px + 5*(100vw - 320px)/1600);
    font-weight: 600;
    width: 93%
}

.variation-modal .variation-title .main-title a {
    color: #222
}

.variation-modal .variation-title h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-block: 0 15px;
    color: var(--theme-color);
    font-weight: 600;
    letter-spacing: .01em;
    font-size: 22px
}

.variation-modal .variation-qty-button {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee
}

@media(max-width: 767px) {
    .variation-modal .variation-qty-button {
        display: grid
    }
}

.variation-modal .variation-qty-button .product-buttons {
    margin: 0;
    justify-content: unset
}

.variation-modal .variation-qty-button .product-buttons .btn {
    padding: 9px 14px;
    border: 1px solid var(--theme-color) !important;
    font-weight: 500;
    text-transform: capitalize
}

.variation-modal .variation-qty-button .btn-animation i {
    font-size: 17px
}

.variation-modal .variation-qty-button .qty-section .qty-box .input-group {
    background-color: #f9f9f9;
    padding: 4px
}

.variation-modal .variation-qty-button .qty-section .qty-box .input-group .form-control {
    padding: 0;
    border: unset;
    background-color: rgba(0, 0, 0, 0)
}

.variation-modal .variation-qty-button .qty-section .qty-box .input-group button {
    width: 32px;
    height: 32px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0) !important;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: center
}

.variation-modal .variation-qty-button .qty-section .qty-box .input-group button i {
    font-weight: normal
}

.audio-video-modal .modal-header {
    padding: 0
}

.audio-video-modal .modal-body {
    padding: var(--bs-modal-padding)
}

.audio-video-modal .modal-body .modal-media {
    margin-bottom: -6px
}

.refund-modal .modal-header {
    padding: calc(13px + 3*(100vw - 320px)/1600) calc(15px + .00125*(100vw - 320px)) !important
}

.refund-modal .product-review-form .product-wrapper .product-image img {
    width: 100%;
    height: 100%
}

.refund-modal .product-review-form .form-select {
    height: auto;
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border: 1px solid #eee;
    font-size: calc(14px + 0*(100vw - 320px)/1600);
    border-radius: 0
}

.refund-modal .product-review-form .form-select option:disabled {
    color: #777
}

.refund-modal .refund-footer-button {
    padding: 0;
    border: unset;
    margin-top: 23px;
    gap: 11px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end
}

.pay-modal .checkout-box .payment-option .payment-category .form-check {
    min-height: unset;
    padding: 0;
    align-items: center;
    margin: 0;
    gap: 7px
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input {
    float: unset;
    margin: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #eee;
    filter: unset;
    position: relative;
    transition: all .15s ease-in-out
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background-color: var(--theme-color);
    border-radius: 100%;
    transition: all .15s ease-in-out
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input:checked {
    background-color: rgba(0, 0, 0, 0);
    border-color: var(--theme-color)
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input:checked::before {
    transform: translate(-50%, -50%) scale(1)
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input:checked~.form-check-label {
    color: var(--theme-color);
    font-weight: 600
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-label {
    margin: 0;
    transition: all .15s ease-in-out;
    font-size: 15px;
    font-weight: 500;
    color: #38352f
}

.pay-modal .checkout-box .payment-option .payment-category .form-check {
    min-height: unset;
    padding: 0;
    align-items: center;
    margin: 0;
    gap: 7px
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input {
    float: unset;
    margin: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #eee;
    filter: unset;
    --bs-form-check-bg: inherit;
    position: relative;
    transition: all .15s ease-in-out
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background-color: var(--theme-color);
    border-radius: 100%;
    transition: all .15s ease-in-out
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input:checked {
    background-color: rgba(0, 0, 0, 0);
    border-color: var(--theme-color)
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input:checked::before {
    transform: translate(-50%, -50%) scale(1)
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input:checked~.form-check-label {
    color: var(--theme-color);
    font-weight: 600
}

.pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-label {
    margin: 0;
    transition: all .15s ease-in-out;
    font-size: 15px;
    font-weight: 500;
    color: #38352f
}

.logo-block a:focus {
    outline: none
}

.logo-block img {
    filter: grayscale(100%);
    opacity: .5;
    transition: .5s ease;
    margin: 0 auto
}

.logo-block img:focus {
    outline: none
}

.logo-block img:hover {
    filter: grayscale(0);
    opacity: 1;
    transition: .5s ease
}

.product-left-title h3 {
    font-weight: 600;
    color: #222;
    text-transform: capitalize;
    max-width: 200px;
    line-height: 36px
}

.product-left-title p {
    line-height: 27px;
    font-size: 18px
}

.product-left-title.right-content {
    text-align: right
}

.product-left-title.right-content h3 {
    margin-left: auto
}

.portfolio-section {
    overflow: hidden
}

.portfolio-section #form1 {
    padding-bottom: 20px
}

.portfolio-section.metro-section .product-box .product-detail {
    opacity: 0;
    position: absolute;
    background-color: #fff;
    padding: 10px;
    transition: all .5s ease;
    width: 65%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -10px;
    text-align: center
}

.portfolio-section.metro-section .product-box .product-detail h6 {
    color: #525252;
    padding-top: 0;
    margin-top: -2px
}

.portfolio-section.metro-section .product-box .product-detail h4 {
    font-weight: 400;
    color: #000
}

.portfolio-section.metro-section .product-box .product-detail.default-view {
    opacity: 1;
    bottom: 15px
}

.portfolio-section.metro-section .product-box .cart-wrap {
    top: 7px;
    right: 7px;
    opacity: 1
}

.portfolio-section.metro-section .product-box .cart-wrap button {
    border: 1px solid #fff;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .8);
    opacity: 1
}

.portfolio-section.metro-section .product-box .cart-wrap button i {
    padding: 7px;
    color: #333
}

.portfolio-section.metro-section .product-box .cart-wrap a i {
    border-radius: 100%;
    border: 1px solid #fff;
    margin: 5px 0;
    background-color: rgba(255, 255, 255, .8);
    padding: 7px;
    color: #333;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.portfolio-section.metro-section .product-box:hover .product-detail {
    opacity: 1;
    transition: all .5s ease;
    bottom: 15px
}

.portfolio-section.metro-section .product-box:hover .cart-wrap button {
    animation: none
}

.portfolio-section.metro-section .product-box:hover .cart-wrap a i {
    opacity: 1
}

.portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(2) i {
    animation: fadeInDown 500ms ease-in-out
}

.portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(3) i {
    animation: fadeInDown 700ms ease-in-out
}

.portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(4) i {
    animation: fadeInDown 1000ms ease-in-out
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    transition: all .3s ease-out
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: .8
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0
}

.mfp-title {
    display: none
}

.absolute-product .theme-tab .tab-title .current a {
    font-weight: 700
}

.absolute-product .product-box {
    width: 100%;
    display: inline-block;
    padding-bottom: 10px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
    border-radius: 5px
}

.absolute-product .product-box .img-wrapper {
    border-radius: 5px 5px 0 0
}

.absolute-product .product-box .product-detail {
    text-align: center;
    margin-top: 0;
    padding: 0 15px
}

.absolute-product .product-box .product-detail .cart-bottom {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
    padding-bottom: 10px
}

.absolute-product .product-box .product-detail .cart-bottom button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 0
}

.absolute-product .product-box .product-detail .cart-bottom i {
    color: #828282;
    font-size: 18px;
    padding-inline: 7px;
    transition: all .5s ease
}

.absolute-product .product-box .product-detail .cart-bottom i:hover {
    color: var(--theme-color);
    transition: all .5s ease
}

.absolute-product .product-box .product-detail .rating {
    margin-top: 10px
}

.quantity-variant,
.image-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.quantity-variant li,
.image-box li {
    padding: 6px 11px;
    font-size: 13px;
    background-color: #f8f8f8 !important;
    height: auto !important;
    width: auto !important;
    border: 1px solid rgba(0, 0, 0, 0)
}

.quantity-variant li button,
.image-box li button {
    border: none;
    background-color: rgba(0, 0, 0, 0) !important
}

.quantity-variant li.active,
.image-box li.active {
    border: 1px solid var(--theme-color)
}

.quantity-variant li.active button,
.image-box li.active button {
    color: var(--theme-color);
    font-weight: 600
}

.quantity-variant.box-l li,
.image-box.box-l li {
    padding: 6px 8px
}

.image-swatch {
    margin-bottom: 10px
}

.image-swatch li img {
    width: 33px;
    height: 33px;
    padding: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
    margin-right: 5px;
    transition: all .5s ease
}

.image-swatch li:last-child {
    margin-right: 0
}

.image-swatch li.active img {
    border: 1px solid var(--theme-color)
}

.image-swatch li:hover img {
    border: 1px solid var(--theme-color);
    transition: all .5s ease
}

.product-para p {
    margin-bottom: 0;
    padding-bottom: calc(10px + 20*(100vw - 320px)/1600);
    line-height: 1.6;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.product-box,
.product-wrap {
    position: relative;
    transition: all .5s ease;
    vertical-align: middle
}

.product-box .img-wrapper,
.product-wrap .img-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 0
}

.product-box .img-wrapper .front,
.product-wrap .img-wrapper .front {
    opacity: 1;
    top: 0;
    background-color: #ebebeb;
    left: 0;
    transition: all .5s ease
}

.product-box .img-wrapper .back,
.product-wrap .img-wrapper .back {
    opacity: 0;
    position: absolute;
    backface-visibility: hidden;
    background-color: #ebebeb;
    top: 0;
    left: 0;
    transition: all .5s ease;
    transform: translateX(-100px);
    width: 100%
}

.product-box .img-wrapper .cart-box,
.product-wrap .img-wrapper .cart-box {
    position: absolute;
    margin: 0 auto;
    display: inline-block;
    right: 0;
    left: 0;
    border-radius: 50px;
    width: max-content;
    padding: 12px 15px;
    box-shadow: 0 0 12px 0 #ddd;
    bottom: 30px;
    background-color: #fff;
    opacity: 0;
    transition: all .2s ease
}

.product-box .img-wrapper .cart-box button,
.product-wrap .img-wrapper .cart-box button {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0
}

.product-box .img-wrapper .cart-box i,
.product-wrap .img-wrapper .cart-box i {
    color: #6f6f6f;
    font-size: 18px;
    padding-inline: 8px;
    transition: all .2s ease;
    display: inline-block
}

.product-box .img-wrapper .cart-box i:hover,
.product-wrap .img-wrapper .cart-box i:hover {
    color: var(--theme-color);
    transition: all .2s ease
}

.product-box .img-wrapper .cart-box.cart-box-bottom,
.product-wrap .img-wrapper .cart-box.cart-box-bottom {
    bottom: 0;
    border-radius: 0;
    display: flex;
    right: unset
}

.product-box .img-wrapper .lable-block .lable3,
.product-wrap .img-wrapper .lable-block .lable3 {
    border-radius: 100%;
    background-color: var(--theme-color);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    padding: 12px 6px;
    text-transform: uppercase;
    color: #fff;
    top: 7px;
    left: 7px;
    z-index: 1
}

.product-box .img-wrapper .lable-block .lable4,
.product-wrap .img-wrapper .lable-block .lable4 {
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    top: 7px;
    right: 7px;
    letter-spacing: .1em;
    z-index: 1;
    color: #212529
}

.product-box .cart-info,
.product-wrap .cart-info {
    position: absolute;
    bottom: 40px;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    right: 0;
    left: 0;
    justify-content: center;
    opacity: 0;
    transition: all .5s ease
}

.product-box .cart-info .btn-animation::before,
.product-wrap .cart-info .btn-animation::before {
    content: unset
}

.product-box .cart-info a [class^=ti-],
.product-box .cart-info a [class*=" ti-"],
.product-wrap .cart-info a [class^=ti-],
.product-wrap .cart-info a [class*=" ti-"] {
    display: inline-block
}

.product-box .cart-info button,
.product-wrap .cart-info button {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0
}

.product-box .cart-info i,
.product-wrap .cart-info i {
    color: #6f6f6f;
    font-size: 18px;
    padding-inline: 10px
}

.product-box .cart-info i:hover,
.product-wrap .cart-info i:hover {
    color: var(--theme-color)
}

.product-box .product-detail,
.product-box .product-info,
.product-wrap .product-detail,
.product-wrap .product-info {
    padding-left: 0;
    margin-top: 15px
}

.product-box .product-detail h6,
.product-box .product-info h6,
.product-wrap .product-detail h6,
.product-wrap .product-info h6 {
    line-height: 1;
    margin-bottom: 0;
    padding-top: 4px;
    padding-bottom: 10px;
    transition: all .5s ease;
    font-size: 18px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #454545;
    font-weight: 500
}

.product-box .product-detail h4,
.product-box .product-info h4,
.product-wrap .product-detail h4,
.product-wrap .product-info h4 {
    font-size: 18px;
    color: #222;
    font-weight: 700;
    margin-bottom: 0;
    transition: all .5s ease
}

.product-box .product-detail p,
.product-box .product-info p,
.product-wrap .product-detail p,
.product-wrap .product-info p {
    display: none
}

.product-box .product-info,
.product-wrap .product-info {
    padding: 0;
    text-align: center;
    position: relative
}

.product-box .product-info .add-btn,
.product-wrap .product-info .add-btn {
    position: absolute;
    bottom: 110px;
    margin: 0 auto;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .2s ease;
    z-index: 1
}

.product-box .product-info .add-btn svg,
.product-wrap .product-info .add-btn svg {
    color: var(--theme-color)
}

.product-box .product-info .add-btn .btn-outline,
.product-wrap .product-info .add-btn .btn-outline {
    transition: all .2s ease;
    color: var(--theme-color)
}

.product-box .product-info .add-btn .btn-outline:hover,
.product-wrap .product-info .add-btn .btn-outline:hover {
    color: #fff
}

.product-box .product-info .add-btn .btn-outline:hover svg,
.product-wrap .product-info .add-btn .btn-outline:hover svg {
    color: #fff
}

.product-box:hover.effect-center .front img,
.product-wrap:hover.effect-center .front img {
    opacity: .3;
    transition: all .5s ease
}

.product-box:hover.effect-center .img-wrapper .cart-box,
.product-wrap:hover.effect-center .img-wrapper .cart-box {
    bottom: 35%;
    transition: all .5s ease
}

.product-box:hover .img-block .first,
.product-box:hover .img-wrapper .first,
.product-wrap:hover .img-block .first,
.product-wrap:hover .img-wrapper .first {
    opacity: 0;
    transition: all .5s ease
}

.product-box:hover .img-block .back,
.product-box:hover .img-wrapper .back,
.product-wrap:hover .img-block .back,
.product-wrap:hover .img-wrapper .back {
    opacity: 1;
    transition: all .5s ease;
    transform: translateX(0)
}

.product-box:hover .cart-info,
.product-wrap:hover .cart-info {
    opacity: 1;
    transition: all .5s ease
}

.product-box:hover .cart-info button,
.product-wrap:hover .cart-info button {
    animation: fadeInUp 300ms ease-in-out
}

.product-box:hover .cart-info a:nth-child(2) i,
.product-wrap:hover .cart-info a:nth-child(2) i {
    animation: fadeInUp 500ms ease-in-out
}

.product-box:hover .cart-info a:nth-child(3) i,
.product-wrap:hover .cart-info a:nth-child(3) i {
    animation: fadeInUp 700ms ease-in-out
}

.product-box:hover .cart-info a:nth-child(4) i,
.product-wrap:hover .cart-info a:nth-child(4) i {
    animation: fadeInUp 1000ms ease-in-out
}

.product-box:hover .cart-detail,
.product-wrap:hover .cart-detail {
    opacity: 1;
    transition: all .5s ease
}

.product-box:hover .cart-detail button,
.product-wrap:hover .cart-detail button {
    animation: fadeInRight 300ms ease-in-out
}

.product-box:hover .cart-detail a:nth-child(2) i,
.product-wrap:hover .cart-detail a:nth-child(2) i {
    animation: fadeInRight 500ms ease-in-out
}

.product-box:hover .cart-detail a:nth-child(3) i,
.product-wrap:hover .cart-detail a:nth-child(3) i {
    animation: fadeInRight 700ms ease-in-out
}

.product-box:hover .cart-detail a:nth-child(4) i,
.product-wrap:hover .cart-detail a:nth-child(4) i {
    animation: fadeInRight 1000ms ease-in-out
}

.product-box:hover .product-info .add-btn,
.product-wrap:hover .product-info .add-btn {
    opacity: 1;
    transition: all .2s ease;
    animation: fadeInUp 500ms ease-in-out
}

.product-box:hover .img-wrapper .cart-box,
.product-wrap:hover .img-wrapper .cart-box {
    opacity: 1;
    transition: all .2s ease;
    animation: fadeInUp 400ms ease-in-out
}

.bg-title .theme-card h5.title-border {
    padding: 10px;
    color: #fff;
    background-color: var(--theme-color)
}

.bg-title .theme-tab .bg-title-part {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: -6px;
    background-color: var(--theme-color);
    padding: 10px
}

.bg-title .theme-tab .bg-title-part .title-border {
    margin-bottom: 0;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600
}

.bg-title .theme-tab .bg-title-part .tab-title {
    margin-bottom: 0;
    margin-top: 0;
    margin-left: auto;
    text-align: right
}

.bg-title .theme-tab .bg-title-part .tab-title li {
    font-size: 16px;
    padding-right: 0
}

.bg-title .theme-tab .bg-title-part .tab-title li:first-child {
    padding-left: 0
}

.bg-title .theme-tab .bg-title-part .tab-title a {
    color: rgba(255, 255, 255, .7)
}

.bg-title .theme-tab .bg-title-part .tab-title .current a {
    color: #fff
}

.bg-title .theme-tab .bg-title-part .tab-title.w-bg li {
    padding: 4px 18px !important
}

.bg-title .theme-tab .bg-title-part .tab-title.w-bg li.current {
    background-color: var(--theme-color)
}

.bg-title .theme-tab .bg-title-part .tab-title.w-bg li.current a {
    color: #fff
}

.bg-title .theme-tab .bg-title-part.wo-bg {
    background-color: #f8f9fa
}

.bg-title .theme-tab .bg-title-part.wo-bg .tab-title a {
    color: #2d2a25
}

.bg-title .theme-tab .bg-title-part.wo-bg .tab-title .current a {
    color: var(--theme-color)
}

.bg-title .theme-tab .bg-title-part.wo-bg .title-border {
    font-size: 18px;
    font-weight: 600;
    color: #222
}

.bg-title .theme-tab .bg-title-part.wo-bg .title-border.small-title {
    font-size: 16px
}

.bg-title.wo-bg .theme-tab .bg-title-part {
    background-color: rgba(0, 0, 0, 0);
    padding: 0 0 14px 0;
    border-radius: 0;
    border-bottom: 1px solid #ddd
}

.bg-title.wo-bg .theme-tab .bg-title-part .title-border {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase
}

.bg-title.wo-bg .theme-tab .tab-title a {
    color: #2d2a25
}

.bg-title.wo-bg .theme-tab .tab-title .current a {
    color: var(--theme-color)
}

.product-box.single-product {
    text-align: center
}

.product-box.single-product .product-detail h6 {
    font-size: calc(16px + 9*(100vw - 320px)/1600);
    margin-bottom: calc(4px + 6*(100vw - 320px)/1600)
}

.product-box.single-product .product-detail h4 {
    font-size: calc(22px + 6*(100vw - 320px)/1600)
}

.product-box.single-product .product-detail .btn-solid {
    padding: 12px 56px;
    margin-top: 20px
}

.infinite-product .product-box {
    display: none
}

.load-more-button .btn {
    transition: width .1s ease, height .4s ease, border-width .4s ease, border-radius .4s ease, border-color .4s ease, padding .4s ease
}

.load-more-button .btn:focus {
    outline: none
}

.load-more-button .btn.loading {
    height: 24px;
    width: 24px;
    padding: 0;
    border-width: 2px;
    border-radius: 17px;
    border-color: #eee #eee #eee #999;
    background: #fff;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    pointer-events: none;
    animation: spin 1.2s infinite linear
}

.load-more-button .btn.loading:before {
    opacity: 0
}

.product-rating-box .rating-box .product-rating span {
    font-size: calc(18px + 10*(100vw - 320px)/1600)
}

.product-rating-box .rating-box .product-rating .rating li svg {
    width: unset;
    height: unset;
    color: #ff9800;
    margin-right: calc(0px + 2*(100vw - 320px)/1600);
    font-size: calc(18px + 3*(100vw - 320px)/1600)
}

.product-rating-box .rating-box h4 {
    font-weight: 400;
    margin: 0;
    margin-top: calc(2px + 4*(100vw - 320px)/1600);
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    color: #777;
    text-transform: unset;
    letter-spacing: unset
}

.product-rating-box .product-main-rating {
    margin-bottom: calc(15px + 10*(100vw - 320px)/1600);
    padding-bottom: 20px;
    border-bottom: 1px solid #eee
}

.product-rating-box .product-main-rating h3 {
    font-size: 26px;
    font-weight: 600;
    color: #232323;
    letter-spacing: unset;
    margin-bottom: 10px
}

.product-rating-box .product-main-rating h2 {
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: calc(32px + 10*(100vw - 320px)/1600)
}

.product-rating-box .product-main-rating h2 svg {
    height: unset;
    width: unset;
    font-size: calc(19px + 4*(100vw - 320px)/1600);
    font-weight: normal;
    color: #ffb321
}

.product-rating-box .product-main-rating h5 {
    line-height: 1.4;
    font-weight: 400;
    color: #4a5568;
    font-size: 17px
}

.product-rating-box .product-rating-list {
    display: grid;
    gap: calc(7px + 5*(100vw - 320px)/1600)
}

.product-rating-box .product-rating-list li:nth-child(4) .rating-product .progress .progress-bar {
    background-color: #ffa53b
}

.product-rating-box .product-rating-list li:last-child .rating-product .progress .progress-bar {
    background-color: #ff4f4f
}

.product-rating-box .product-rating-list li .rating-product {
    display: flex;
    gap: 12px;
    align-items: center
}

.product-rating-box .product-rating-list li .rating-product h5 {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    width: calc(30px + 10*(100vw - 320px)/1600);
    font-weight: 600;
    margin: 0
}

.product-rating-box .product-rating-list li .rating-product h5 svg {
    width: unset;
    height: unset;
    font-size: 15px;
    font-weight: normal
}

.product-rating-box .product-rating-list li .rating-product .progress {
    width: calc(100% - 12px - 28px - 15px);
    height: 9px;
    border-radius: 100px
}

.product-rating-box .product-rating-list li .rating-product .progress .progress-bar {
    border-radius: 100px
}

.product-rating-box .product-rating-list li .rating-product .total {
    white-space: nowrap;
    color: rgba(74, 85, 104, .878);
    font-size: 16px;
    font-weight: 400;
    width: 15px;
    display: block
}

.product-details-box .theme-card {
    margin-top: 36px
}

.product-details-box .theme-card .offer-slider .media {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 0 !important
}

.product-details-box .theme-card .offer-slider .media+.media {
    margin-top: 15px
}

.product-details-box .theme-card .offer-slider .media img {
    padding: 5px;
    height: 95px;
    width: 95px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    margin: 0
}

.product-details-box .theme-card .offer-slider .media .media-body h4 del {
    margin: 0
}

.product-details-box .collection-filter {
    position: sticky;
    top: 110px;
    left: 0
}

.product-details-box .collection-filter-block {
    position: unset;
    inset: unset;
    padding: 0;
    border: unset
}

.product-details-box .collection-filter-block+.collection-filter-block {
    margin-top: 36px
}

.product-details-box .collection-filter-block .product-service {
    padding: 20px;
    border: 1px solid #eee
}

.product-details-box .collection-filter-block .product-service>div {
    border-bottom: unset !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important
}

.product-details-box .collection-filter-block .product-service>div+div {
    padding-top: 20px !important;
    margin-top: 20px !important;
    border-top: 1px solid #eee !important
}

.product-details-box .collection-filter-block.accordion {
    border: 1px solid #eee;
    padding: 20px
}

.product-details-box .collection-filter-block.accordion .product-service {
    padding: 0
}

.product-details-box .product-page-details .dashed-border-box {
    max-width: 70%
}

@media(max-width: 768px) {
    .product-details-box .product-page-details .dashed-border-box {
        margin-inline: auto;
        align-items: center
    }
}

.review-people {
    border-left: 1px solid #ececec;
    padding-left: 23px;
    max-height: 432px;
    height: 100%;
    overflow: auto
}

@media(max-width: 1199px) {
    .review-people {
        padding-left: unset;
        padding-top: 23px;
        border-left: unset;
        border-top: 1px solid #ececec;
        margin-top: 23px
    }
}

.review-people::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, .14)
}

.review-people::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
    border-radius: 50px
}

.review-people::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, .3)
}

@media(max-width: 991px) {
    .review-people {
        border: none;
        padding: 0;
        margin-top: 25px
    }
}

.review-people .review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 17px
}

.review-people .review-list li {
    display: block;
    width: 100%
}

.review-people .review-list li .people-box {
    display: flex;
    gap: 15px;
    width: 100%;
    padding: calc(16px + 4*(100vw - 320px)/1600) calc(16px + 10*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    border: 1px solid #eee
}

@media(max-width: 480px) {
    .review-people .review-list li .people-box {
        display: block
    }
}

.review-people .review-list li .people-box:hover .reply a {
    opacity: 1
}

.review-people .review-list li .people-box .people-image img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out
}

@media(max-width: 575px) {
    .review-people .review-list li .people-box .people-image img {
        border-radius: 8px
    }
}

.review-people .review-list li .people-box .people-image h4 {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin: 0 auto;
    font-size: 41px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 0
}

.review-people .review-list li .people-box .people-text .user-round {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    border-radius: 6px;
    margin: 0 auto
}

.review-people .review-list li .people-box .people-text .user-round h4 {
    font-size: 41px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 0
}

.review-people .review-list li .people-box .name-user {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ececec;
    border-radius: 10px;
    color: #4a5568
}

.review-people .review-list li .people-box .name-user h3 {
    font-size: 37px;
    font-weight: 600
}

.review-people .review-list li .people-box .people-comment {
    width: calc(100% - 70px - 15px)
}

.review-people .review-list li .people-box .people-comment .people-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

@media(max-width: 400px) {
    .review-people .review-list li .people-box .people-comment .people-name {
        display: block
    }
}

.review-people .review-list li .people-box .people-comment .people-name .name {
    white-space: nowrap;
    display: block;
    font-weight: 600;
    font-size: calc(17px + 1*(100vw - 320px)/1600);
    color: #232323
}

.review-people .review-list li .people-box .people-comment .people-name .name:hover {
    color: #232323
}

.review-people .review-list li .people-box .people-comment .people-name h6 {
    margin: 0;
    font-size: calc(13px + 2*(100vw - 320px)/1600);
    margin-right: auto
}

.review-people .review-list li .people-box .people-comment .people-name .date-time {
    width: 100%;
    margin-top: 4px
}

.review-people .review-list li .people-box .people-comment .people-name .date-time h6 {
    font-size: 13px;
    color: #777;
    margin-block: 4px 6px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden
}

.review-people .review-list li .people-box .people-comment .people-name .product-rating {
    display: flex;
    align-items: center
}

@media(max-width: 400px) {
    .review-people .review-list li .people-box .people-comment .people-name .product-rating {
        margin-top: 3px
    }
}

.review-people .review-list li .people-box .people-comment .name {
    white-space: nowrap;
    display: block;
    font-weight: 600;
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    color: #656565
}

.review-people .review-list li .people-box .people-comment .name:hover {
    color: var(--theme-color)
}

@media(max-width: 480px) {
    .review-people .review-list li .people-box .people-comment {
        padding: 0;
        width: 100%;
        margin-top: 16px
    }
}

.review-people .review-list li .people-box .people-comment .date-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0
}

.review-people .review-list li .people-box .people-comment .date-time h6 {
    font-size: 13px;
    color: #777;
    margin: 0
}

.review-people .review-list li .people-box .reply {
    margin-top: 6px;
    line-height: 1.6;
    color: #4a5568;
    position: relative
}

.review-people .review-list li .people-box .reply p {
    margin: 0;
    line-height: 1.6;
    letter-spacing: unset;
    font-size: calc(14px + 1*(100vw - 320px)/1600)
}

@media(max-width: 480px) {
    .review-people .review-list li .people-box .reply p {
        width: 100%
    }
}

@media(max-width: 400px) {
    .review-people .review-list li .people-box .reply p {
        margin-top: 7px
    }
}

.slider-main-img {
    min-height: 400px;
    border: 1px solid #eee;
    border-radius: 6px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center
}

.question-answer li {
    display: block;
    margin-bottom: 25px;
    padding-bottom: 19px;
    border-bottom: 1px solid #eee
}

.question-answer li .question-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px
}

.question-answer li .question-box h5 {
    border: 1px solid #eee;
    background-color: #f8f8f8;
    text-transform: capitalize;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    width: auto;
    height: 30px;
    font-weight: 600;
    padding-inline: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0
}

.question-answer li .question-box .link-dislike-box {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-left: auto
}

.question-answer li .question-box .link-dislike-box li {
    margin: 0;
    padding: 0;
    border: unset
}

.question-answer li .question-box .link-dislike-box li a span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(74, 85, 104, .671)
}

.question-answer li .question-box .link-dislike-box li a span svg {
    height: unset;
    width: unset;
    font-size: 16px
}

.question-answer li .answer-box {
    display: flex;
    gap: 15px
}

.question-answer li .answer-box h5 {
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: var(--theme-color);
    color: #fff;
    text-transform: capitalize;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    width: auto;
    font-weight: 600;
    padding-inline: 7px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 3px
}

.question-answer li .answer-box p {
    margin: 0;
    width: calc(100% - 15px - 30px);
    line-height: 1.5;
    color: #4a5568;
    letter-spacing: .6px
}

.question-answer li h6 {
    margin: 0;
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    font-weight: 600;
    letter-spacing: .02px;
    color: #222
}

.question-answer li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.question-answer li .report-text {
    text-align: right;
    font-size: 13px;
    color: rgba(74, 85, 104, .6);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 7px
}

.question-answer li .report-text i {
    font-size: 15px
}

.post-question-box {
    margin-bottom: 32px
}

.post-question-box h4 {
    color: #222;
    font-weight: 500;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.post-question-box h4 a {
    width: auto;
    display: inline-block;
    font-size: calc(14px + 3*(100vw - 320px)/1600);
    font-weight: 500;
    border: none;
    border-radius: 0;
    background-color: #f8f8f8;
    color: #222;
    padding: calc(9px + 3*(100vw - 320px)/1600) calc(16px + 6*(100vw - 320px)/1600)
}

.deal-section .media {
    padding: calc(19px + 59*(100vw - 320px)/1600);
    z-index: 0;
    border-radius: calc(10px + 8*(100vw - 320px)/1600);
    position: relative;
    display: flex;
    align-items: center;
    gap: calc(20px + 80*(100vw - 320px)/1600);
    overflow: hidden
}

@media(max-width: 991px) {
    .deal-section .media {
        flex-wrap: wrap
    }
}

.deal-section .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    opacity: .1;
    z-index: -1
}

.deal-section .media>a {
    height: 313px;
    width: 402px
}

@media(max-width: 991px) {
    .deal-section .media>a {
        width: 100%;
        height: 100%
    }
}

.deal-section .media>a img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.deal-section .media .media-body {
    width: calc(100% - 402px - 100px)
}

@media(max-width: 991px) {
    .deal-section .media .media-body {
        width: 100%
    }
}

.deal-section .media .media-body h5 {
    font-size: calc(15px + 5*(100vw - 320px)/1600);
    font-weight: 400;
    margin: 0
}

.deal-section .media .media-body h2 {
    font-weight: 600;
    font-size: calc(24px + 11*(100vw - 320px)/1600);
    line-height: 1.2;
    color: #fff;
    text-transform: capitalize;
    margin-top: 4px
}

.deal-section .media .media-body p {
    margin: calc(13px + 3*(100vw - 320px)/1600) 0 0;
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    font-weight: 400;
    line-height: 1.5
}

.deal-section .media .media-body .general-variant {
    display: flex;
    align-items: center;
    gap: calc(8px + 2*(100vw - 320px)/1600);
    margin-top: calc(13px + 12*(100vw - 320px)/1600)
}

.deal-section .media .media-body .general-variant li {
    width: calc(28px + 6*(100vw - 320px)/1600);
    height: calc(28px + 6*(100vw - 320px)/1600);
    border-radius: 100%;
    padding: 0;
    border: unset;
    position: relative;
    cursor: pointer
}

.deal-section .media .media-body .general-variant li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #0a0a16;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease-in-out
}

.deal-section .media .media-body .general-variant li.active::after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    opacity: 1;
    visibility: visible
}

.deal-section .media .media-body .general-variant li button {
    width: calc(28px + 6*(100vw - 320px)/1600);
    height: calc(28px + 6*(100vw - 320px)/1600);
    border-radius: 100%;
    padding: 0;
    border: unset;
    position: relative
}

.deal-section .media .media-body .general-variant li button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #0a0a16;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease-in-out
}

.single-product .brand-slider-box .logo-block {
    background-color: #171024;
    border-color: #212121
}

.single-product .brand-slider-box .logo-block img {
    filter: invert(1) brightness(100)
}

.single-product .basic-product .product-title {
    color: #fff
}

.single-product .basic-product .price {
    color: #fff
}

.single-product .basic-product .price del {
    color: #ddd
}

.single-product .basic-product .product-action button {
    color: #ddd;
    background-color: #212121
}

.single-product .basic-product .product-detail h6 {
    color: #ddd
}

.single-product .basic-product .cart-info button,
.single-product .basic-product .cart-info a {
    background-color: #0d0914
}

.single-product .basic-product .cart-info button i,
.single-product .basic-product .cart-info a i {
    color: #ddd
}

.single-product .basic-product .img-wrapper .rating-label {
    background-color: #0d0914;
    color: #ddd
}

.single-product .basic-product .img-wrapper .quick-option {
    background-color: #0a0a16
}

.single-product .basic-product .img-wrapper .unit-label {
    background-color: #0a0a16;
    color: #ddd
}

.single-product .basic-product .img-wrapper .addto-cart-bottom {
    background-color: #0a0a16;
    color: #ddd
}

.single-product .basic-product .img-wrapper .addto-cart-bottom.active {
    color: var(--theme-color)
}

.single-product .basic-product .add-cart-btn {
    color: #ddd;
    background-color: #171024
}

.single-product .basic-product .rating-w-count span {
    color: #ddd
}

.single-product .basic-product .addtocart_btn .qty-box .input-group {
    border-radius: 0;
    background-color: #0a0a16
}

.single-product .basic-product .addtocart_btn .qty-box .input-group .input-number {
    color: #ddd
}

.single-product .basic-product .addtocart_btn .qty-box .input-group button {
    border-color: #212121;
    color: #fff;
    border-radius: 0 !important;
    background-color: #212121;
    width: 34px;
    height: 34px;
    padding: 0
}

.single-product .basic-product .addtocart_btn .qty-box .input-group button i {
    font-weight: 500;
    color: #ddd;
    font-size: 15px
}

.single-product .basic-product .product-action {
    border-color: #212121
}

.single-product .basic-product.theme-product-1 {
    border-color: #212121
}

.single-product .basic-product.theme-product-1 .cart-info a,
.single-product .basic-product.theme-product-1 .cart-info button {
    background-color: #0d0914
}

.single-product .basic-product.theme-product-1 .cart-info a i,
.single-product .basic-product.theme-product-1 .cart-info button i {
    color: #fff
}

.single-product .basic-product.theme-product-1 .product-detail>div {
    border-color: #212121
}

.single-product .basic-product.theme-product-1 .product-detail .offer-panel {
    color: #fff
}

.single-product .basic-product.theme-product-2 {
    border-color: #212121;
    background-color: #0a0a16
}

.single-product .basic-product.theme-product-2 .img-wrapper::after {
    background-color: rgba(10, 10, 22, .77)
}

.single-product .basic-product.theme-product-2 .cart-detail {
    border-color: #212121
}

.single-product .basic-product.theme-product-2 .cart-detail li+li {
    border-color: #212121
}

.single-product .basic-product.theme-product-2 .cart-detail li button,
.single-product .basic-product.theme-product-2 .cart-detail li a {
    color: #ddd
}

.single-product .basic-product.theme-product-2 .product-detail .add-wish {
    background-color: #212121
}

.single-product .basic-product.theme-product-3 {
    border-color: #212121
}

.single-product .basic-product.theme-product-6 {
    border-color: #212121
}

.single-product .basic-product.theme-product-6 .cart-info {
    background-color: #0a0a16
}

.single-product .basic-product.theme-product-7,
.single-product .basic-product.theme-product-8 {
    background-color: #0a0a16;
    border-color: #212121
}

.single-product .basic-product.theme-product-8 .img-wrapper {
    border-radius: 0
}

.single-product .basic-product.theme-product-9 {
    background-color: #0a0a16;
    border-color: #212121
}

.single-product .basic-product.theme-product-9 .price-vertical h4 {
    color: #ddd
}

.single-product .basic-product.theme-product-9 .discount-value {
    border-color: #212121;
    color: #ddd
}

.single-product .basic-product.theme-product-11 {
    border-color: #212121
}

.single-product .basic-product.theme-product-11 .abs-product {
    background-color: #0a0a16
}

.single-product .title-borderless {
    color: #fff
}

.single-product .basic-product .cart-info svg,
.single-product .basic-product .cart-info i {
    color: #fff
}

.single-product .basic-product.theme-product-1 .cart-info button i,
.single-product .basic-product.theme-product-1 .cart-info button svg,
.single-product .basic-product.theme-product-1 .cart-info a i,
.single-product .basic-product.theme-product-1 .cart-info a svg {
    color: #fff
}

.single-product .deal-section .deal-box .deal-image {
    display: flex;
    align-items: center;
    justify-content: center
}

.tools_product .theme-card {
    position: sticky;
    top: 115px
}

.preview-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.preview-box .media-btn {
    background-color: var(--theme-color);
    color: #fff;
    width: 40px;
    border: none;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px
}

.preview-box .media-btn:first-child:active {
    background-color: var(--theme-color);
    color: #fff
}

.preview-box .preview-btn span {
    background-color: var(--theme-color);
    color: #fff;
    padding: 10px 18px;
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 600
}

.preview-box .preview-btn span i {
    font-weight: normal;
    line-height: 1
}

.deal-section .deal-box {
    padding: calc(19px + 59*(100vw - 320px)/1600);
    z-index: 0;
    border-radius: calc(10px + 8*(100vw - 320px)/1600);
    position: relative;
    display: flex;
    align-items: center;
    gap: calc(20px + 80*(100vw - 320px)/1600);
    overflow: hidden
}

@media(max-width: 991px) {
    .deal-section .deal-box {
        flex-wrap: wrap
    }
}

.deal-section .deal-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    opacity: .1;
    z-index: -1
}

.deal-section .deal-box .deal-image {
    height: 313px;
    width: 402px
}

@media(max-width: 991px) {
    .deal-section .deal-box .deal-image {
        width: 100%;
        height: 100%
    }
}

.deal-section .deal-box .deal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.deal-section .deal-box .deal-content {
    width: calc(100% - 402px - 100px)
}

@media(max-width: 991px) {
    .deal-section .deal-box .deal-content {
        width: 100%
    }
}

.deal-section .deal-box .deal-content h5 {
    font-size: calc(15px + 5*(100vw - 320px)/1600);
    font-weight: 400;
    margin: 0
}

.deal-section .deal-box .deal-content h2 {
    font-weight: 600;
    font-size: calc(24px + 11*(100vw - 320px)/1600);
    line-height: 1.2;
    color: #fff;
    text-transform: capitalize;
    margin-top: 4px
}

.deal-section .deal-box .deal-content p {
    margin: calc(13px + 3*(100vw - 320px)/1600) 0 0;
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    font-weight: 400;
    line-height: 1.5
}

.deal-section .deal-box .deal-content .general-variant {
    display: flex;
    align-items: center;
    gap: calc(8px + 2*(100vw - 320px)/1600);
    margin-top: calc(13px + 12*(100vw - 320px)/1600)
}

.deal-section .deal-box .deal-content .general-variant li {
    width: calc(28px + 6*(100vw - 320px)/1600);
    height: calc(28px + 6*(100vw - 320px)/1600);
    border-radius: 100%;
    padding: 0;
    border: unset;
    position: relative;
    cursor: pointer
}

.deal-section .deal-box .deal-content .general-variant li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #0a0a16;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease-in-out
}

.deal-section .deal-box .deal-content .general-variant li.active::after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    opacity: 1;
    visibility: visible
}

.deal-section .deal-box .deal-content .general-variant li button {
    width: calc(28px + 6*(100vw - 320px)/1600);
    height: calc(28px + 6*(100vw - 320px)/1600);
    border-radius: 100%;
    padding: 0;
    border: unset;
    position: relative
}

.deal-section .deal-box .deal-content .general-variant li button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #0a0a16;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease-in-out
}

.fashion-product-section>div>.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0
}

.brand-section .brand-box h2 {
    text-align: center;
    margin: 0;
    font-size: calc(20px + 11*(100vw - 320px)/1600);
    font-weight: 600;
    border: 1px solid #eee;
    background-color: #f8f8f8;
    padding: calc(20px + 10*(100vw - 320px)/1600)
}

.season-sale-section .basic-product .img-wrapper img {
    aspect-ratio: 17/20;
    object-fit: cover
}

.season-sale-section .slick-slider.slick-slider {
    margin: 0
}

.service-block {
    display: flex;
    align-items: center;
    justify-content: center
}

.service-block:hover img {
    transform: scale(1.1)
}

.service-block img {
    margin-right: 15px;
    width: calc(40px + 20*(100vw - 320px)/1600);
    height: calc(40px + 20*(100vw - 320px)/1600);
    object-fit: contain;
    transition: all .5s ease
}

@media(max-width: 767px) {
    .service-block img {
        margin-right: 0;
        margin-bottom: 10px
    }
}

.service-block .skeleton-img-box {
    display: none
}

.service-block .media {
    padding-top: 23px;
    padding-bottom: 23px;
    align-items: center
}

.service-block .media-body {
    width: calc(100% - 75px)
}

@media(max-width: 767px) {
    .service-block .media-body {
        width: 100%
    }
}

.service-block .media-body .skeleton-content-h4,
.service-block .media-body .skeleton-content-p {
    display: none
}

.service-block svg {
    margin-right: 12px;
    width: 60px;
    height: 60px
}

.service-block svg path {
    fill: var(--theme-color)
}

.service-block h4 {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .03em
}

.service-block p {
    text-transform: capitalize;
    margin-bottom: 0;
    letter-spacing: .03em
}

.service-block+.service-block {
    border-left: 1px solid #eee
}

.service-block:hover svg {
    animation: pulse 1000ms ease-in-out;
    transition: all .3s ease
}

.service-block:hover h4 {
    color: var(--theme-color);
    transition: all .3s ease
}

.service-block1 {
    text-align: center;
    background-color: #f8f8f8;
    padding: 36px 14px;
    border: 1px solid #eee
}

.service-block1 .skeleton-content-h4,
.service-block1 .skeleton-content-p {
    display: none
}

.service-block1 img {
    margin-bottom: 14px;
    width: 60px;
    height: 60px
}

.service-block1 .skeleton-img-box {
    display: none
}

.service-block1 .service-svg {
    width: 70px;
    height: 70px;
    padding: 5px;
    margin: 0 auto 20px;
    background-color: #fff
}

.service-block1 .service-svg img {
    width: 100%;
    height: 100%
}

.service-block1 svg {
    margin-bottom: 20px;
    width: 60px;
    height: 60px
}

.service-block1 svg path {
    fill: var(--theme-color)
}

.service-block1 h4 {
    font-weight: 600;
    text-transform: unset;
    margin-bottom: 7px;
    letter-spacing: unset;
    line-height: 1.3
}

.service-block1 p {
    letter-spacing: unset;
    margin-bottom: -3px;
    line-height: 1.6;
    font-weight: 500
}

.service-block1 p:empty {
    display: none
}

.service-block1:hover svg {
    animation: pulse 1000ms ease-in-out;
    transition: all .3s ease
}

.service-block1:hover h4 {
    color: var(--theme-color);
    transition: all .3s ease
}

.service-w-bg .service-block p {
    line-height: 1.5
}

.service-w-bg .service-block+.service-block {
    border: none
}

.service-w-bg .service-block .media {
    background-color: #f9f9f9;
    width: 100%;
    padding: 20px
}

.service-style-border .service-block .media {
    padding-top: 0;
    padding-bottom: 0
}

.service-style-border .service-block svg {
    width: 80px;
    height: 50px
}

.service-style-border .service-block .media-body {
    border-left: 1px solid #ddd;
    padding-left: 20px
}

.service-style-border .service-block+.service-block {
    border-left: none
}

.theme-bg-service.service-w-bg .service-block h4 {
    color: #fff
}

.theme-bg-service.service-w-bg .service-block p {
    color: rgba(255, 255, 255, .7)
}

.theme-bg-service.service-w-bg .service-block .media {
    background-color: var(--theme-color)
}

.theme-bg-service.service-w-bg .service-block svg path {
    fill: #fff
}

.bg-light .service-block1 {
    border: none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0)
}

.bg-light .brand-slider-box .logo-block {
    background-color: rgba(0, 0, 0, 0);
    border: none
}

.wo-box .service-block1 {
    border: none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0)
}

.slick-slider.slick-slider {
    margin-bottom: -8px
}

.slick-slider .slick-list {
    margin: 0 -12px
}

@media(max-width: 767px) {
    .slick-slider .slick-list {
        margin: 0 -8px
    }
}

.slick-slider .slick-list .slick-slide>div {
    margin: 0 12px
}

@media(max-width: 767px) {
    .slick-slider .slick-list .slick-slide>div {
        margin: 0 8px
    }
}

.theme-card {
    position: relative
}

.theme-card.center-align {
    display: flex;
    height: 100%;
    align-items: center
}

.theme-card.center-align .offer-slider .product-box2 .media .media-body {
    margin-top: 0
}

.theme-card.card-border {
    border: 1px solid #eee
}

.theme-card.card-border h5 {
    padding: calc(15px + 5*(100vw - 320px)/1600);
    margin-top: 0;
    margin-bottom: 0
}

.theme-card.card-border .slick-prev,
.theme-card.card-border .slick-next {
    top: -40px
}

.theme-card.card-border .slick-next {
    right: 30px
}

.theme-card.card-border .slick-prev {
    right: 50px
}

.theme-card.card-border .offer-slider {
    padding: calc(15px + 5*(100vw - 320px)/1600)
}

.theme-card.card-border .offer-slider .media .media-body a h6 {
    margin-right: 25px
}

.theme-card h5 {
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: calc(5px + 5*(100vw - 320px)/1600);
    margin-top: -5px;
    margin-bottom: calc(12px + 8*(100vw - 320px)/1600)
}

.theme-card h5.title-border {
    border-bottom: 1px solid #eee
}

.theme-card .slick-prev,
.theme-card .slick-next {
    top: -35px
}

.theme-card .slick-prev:before,
.theme-card .slick-next:before {
    font: normal normal normal 30px/1 FontAwesome;
    color: #222;
    opacity: .6
}

.theme-card .slick-next {
    right: 0
}

.theme-card .slick-next:before {
    content: ""
}

.theme-card .slick-prev {
    left: unset;
    right: 25px
}

.theme-card .slick-prev:before {
    content: ""
}

.theme-card .offer-slider img {
    height: calc(100px + 20*(100vw - 320px)/1600);
    margin-right: 10px;
    width: calc(100px + 20*(100vw - 320px)/1600);
    object-fit: cover
}

.theme-card .offer-slider>div .media+.media {
    margin-top: 20px
}

.theme-card .offer-slider .media .media-body a h6 {
    margin-right: 0;
    line-height: 1.4;
    margin-top: 3px;
    margin-bottom: 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500
}

.theme-card .offer-slider .media .media-body h4 {
    margin-top: 10px;
    font-weight: 600;
    color: #222;
    margin-bottom: 0
}

.theme-card .offer-slider .media .media-body h4 del {
    margin-left: 7px
}

.offer-slider .slick-slide {
    line-height: 1
}

.center-slider .product-box {
    box-shadow: none
}

.center-slider .product-box .img-wrapper img {
    padding: 15px
}

.center-slider .slick-next:before,
.center-slider .slick-prev:before {
    box-shadow: 0 0 8px 0 #ddd
}

.center-slider .title2 .title-inner2 {
    margin-bottom: 0
}

.center-slider:hover .product-box {
    box-shadow: none
}

.center-slider:hover .slick-next {
    right: 20px;
    transform: scale(1.8)
}

.center-slider:hover .slick-prev {
    left: 20px;
    transform: scale(1.8)
}

.full-box .theme-card .offer-slider .product-box2 {
    overflow: hidden
}

.full-box .theme-card .offer-slider .product-box2 .title {
    text-align: center;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0
}

.full-box .theme-card .offer-slider .product-box2 .media img {
    height: 300px;
    transform: scale(1);
    transition: all .5s ease
}

.full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
    height: 250px
}

.full-box .theme-card .offer-slider .product-box2 .media .media-body a h6 {
    margin-right: 20px
}

.full-box .theme-card .offer-slider .product-box2 .media .media-body h4 {
    font-size: 20px;
    margin-top: 5px
}

.full-box .theme-card .offer-slider .product-box2+.product-box2 {
    border-top: 1px solid #f1f5f4
}

.full-box .theme-card .offer-slider .product-box2:hover .media img {
    transform: scale(1.03);
    transition: all .5s ease
}

.box-product .full-box .theme-card.center-align {
    display: block
}

.box-product .full-box .theme-card .offer-slider .product-box2 {
    border: 1px solid #eee;
    padding: calc(10px + 5*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    width: 100%
}

.box-product .full-box .theme-card .offer-slider .product-box2 .media img {
    height: calc(120px + 32*(100vw - 320px)/1600);
    padding: 0;
    margin-bottom: 0
}

.box-product .full-box .theme-card .offer-slider .product-box2 .media .media-body {
    z-index: 1;
    margin-top: 0
}

.box-product .full-box .theme-card .offer-slider .product-box2 .media .media-body h4 {
    font-size: 18px;
    margin-top: 7px
}

.box-product .full-box .theme-card .offer-slider .product-box2+.product-box2 {
    border-top: none;
    margin-top: 30px
}

.box-product .full-box .theme-card .offer-slider .product-box2 .cart-bottom {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 12px
}

.box-product .full-box .theme-card .offer-slider .product-box2 .cart-bottom button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 0
}

.box-product .full-box .theme-card .offer-slider .product-box2 .cart-bottom i {
    color: #aaa;
    font-size: 16px;
    padding-right: 7px;
    transition: all .5s ease
}

.box-product .full-box .theme-card .offer-slider .product-box2 .cart-bottom i:hover {
    color: var(--theme-color);
    transition: all .5s ease
}

.product-parallax .theme-card .offer-slider>div .media {
    background-color: #fff
}

.product-parallax .theme-card .offer-slider>div .media:first-child {
    margin-bottom: 20px
}

.product-parallax .theme-card .offer-slider>div .media:last-child img {
    margin-bottom: 0
}

.product-parallax .theme-card.card-border {
    border: none
}

.product-parallax .theme-card.card-border .offer-slider img {
    padding: 15px 15px 15px 15px
}

.multiple-slider {
    margin-bottom: -30px
}

.multiple-slider>div {
    margin-bottom: 30px
}

.product-vertical .full-banner {
    padding-top: 75px !important;
    padding-bottom: 75px !important
}

.product-vertical .full-box .theme-card .offer-slider {
    background-color: #fff
}

.product-vertical .full-box .theme-card .offer-slider .product-box2 .media img {
    height: 200px
}

.product-vertical .theme-card .offer-slider>div .media:last-child img {
    margin-bottom: 0
}

@media(max-width: 767px) {
    .product-vertical .theme-card.center-align .offer-slider .sec-1 {
        display: block
    }
}

.product-vertical .theme-card.center-align .offer-slider .product-box2 .media {
    padding: calc(10px + 5*(100vw - 320px)/1600);
    gap: 15px
}

@media(max-width: 1200px) {
    .product-vertical .theme-card.center-align .offer-slider .product-box2 .media {
        gap: 0
    }
}

@media(max-width: 767px) {
    .product-vertical .theme-card.center-align .offer-slider .product-box2 .media {
        display: grid
    }
}

.product-vertical .theme-card.center-align .offer-slider .product-box2 .media img {
    height: 140px;
    margin: 0;
    object-fit: cover;
    padding-block: 0
}

@media(max-width: 767px) {
    .product-vertical .theme-card.center-align .offer-slider .product-box2 .media img {
        padding: 0 0 10px;
        width: 100%;
        height: calc(160px + 70*(100vw - 320px)/447)
    }
}

.product-vertical .theme-card.center-align .offer-slider .product-box2 .media .media-body {
    text-align: left;
    padding-left: 20px;
    padding: 0
}

.product-vertical .theme-card.center-align .offer-slider .product-box2 .media .media-body h4 {
    font-size: calc(15px + 5*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    gap: calc(4px + 3*(100vw - 320px)/1600);
    flex-wrap: wrap
}

.product-vertical .theme-card.center-align .offer-slider .product-box2 .media .media-body h4 del {
    margin: 0;
    font-size: calc(13px + 1*(100vw - 320px)/1600)
}

.demo-card.theme-card {
    background-color: #f8f8f8;
    padding: 20px;
    margin-top: 30px
}

.category-slider .category-box:hover {
    background-color: var(--theme-color)
}

.category-slider .category-box:hover img {
    filter: invert(1) brightness(100)
}

.category-slider .category-box img {
    filter: unset
}

.thumbnail-image-slider .slider-image {
    background-color: #f8f8f8
}

.thumbnail-image-slider .slider-image figure {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%
}

.thumbnail-image-slider .slider-image img {
    width: 100%;
    height: 100%
}

.thumbnail-image-slider .slider-nav .slick-list {
    margin: 0 calc(-4px + -4*(100vw - 320px)/1600)
}

.thumbnail-image-slider .slider-nav .slick-list .slick-track .slick-slide>div {
    margin: 0 calc(4px + 4*(100vw - 320px)/1600)
}

.image-outside-thumbnail .slider-nav .slick-list {
    margin: 0 calc(-4px + -4*(100vw - 320px)/1600)
}

.image-outside-thumbnail .slider-nav .slick-list .slick-track .slick-slide>div {
    margin: 0 calc(4px + 4*(100vw - 320px)/1600)
}

.brand-slider-box .slick-slider.slick-slider {
    margin-bottom: 0
}

.brand-slider-box .slick-slider .slick-list {
    margin: 0 -10px
}

.brand-slider-box .slick-slider .slick-list .slick-slide>div {
    margin: 0 10px
}

.product-slider-image {
    background-color: #f8f8f8;
    border: 1px solid #eee
}

.sticky-top-product {
    position: sticky;
    top: 0;
    z-index: 1
}

.sticky-top-product .four-image-sec {
    height: calc(240px + 86*(100vw - 320px)/1600)
}

.main-product-box .slick-slider .slick-arrow {
    opacity: 1;
    position: absolute;
    top: 50%;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    background-color: #fff;
    transform: translateY(-50%);
    z-index: 1;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 8px rgba(221, 221, 221, .6);
    margin: 0;
    line-height: 1;
    border: 1px solid #ececec;
    padding: 5px
}

.main-product-box .slick-slider .slick-arrow.slick-next {
    right: -14px
}

@media(max-width: 575px) {
    .main-product-box .slick-slider .slick-arrow.slick-next {
        right: 8px
    }
}

.main-product-box .slick-slider .slick-arrow.slick-prev {
    left: -14px
}

@media(max-width: 575px) {
    .main-product-box .slick-slider .slick-arrow.slick-prev {
        left: 8px
    }
}

.view-image-slider .slick-slider .slick-arrow {
    opacity: 1;
    position: absolute;
    top: 50%;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #222;
    background-color: #fff;
    transform: translateY(-50%);
    z-index: 1;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 8px rgba(221, 221, 221, .6);
    padding: 0;
    margin: 0;
    line-height: 1;
    border: 1px solid #ececec
}

.view-image-slider .slick-slider .slick-arrow::before {
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    color: #222;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased
}

.view-image-slider .slick-slider .slick-arrow.slick-next {
    right: -14px
}

@media(max-width: 576px) {
    .view-image-slider .slick-slider .slick-arrow.slick-next {
        right: 6px
    }
}

.view-image-slider .slick-slider .slick-arrow.slick-next::before {
    content: ""
}

.view-image-slider .slick-slider .slick-arrow.slick-prev {
    left: -14px
}

@media(max-width: 576px) {
    .view-image-slider .slick-slider .slick-arrow.slick-prev {
        left: 6px
    }
}

.view-image-slider .slick-slider .slick-arrow.slick-prev::before {
    content: ""
}

.tap-top {
    width: 40px;
    height: 40px;
    z-index: 8;
    color: #fff;
    text-align: center;
    background: var(--theme-color);
    border: none;
    font-size: 22px;
    padding: 7px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all .5s ease
}

.tap-top.tap-show {
    display: flex
}

.compare-tap-top-box {
    bottom: calc(18px + 12*(100vw - 767px)/1153);
    right: calc(18px + 12*(100vw - 320px)/1600);
    position: fixed;
    display: flex;
    align-items: center;
    gap: calc(8px + 9*(100vw - 320px)/1600)
}

@media(max-width: 767px) {
    .compare-tap-top-box {
        bottom: 71px
    }
}

.compare-tap-top-box .compare-fix a {
    position: relative;
    inset: unset;
    display: block
}

.custom-sidebar-height {
    max-height: 150px;
    overflow-y: auto;
    height: 100%
}

.custom-sidebar-height::-webkit-scrollbar-track {
    background-color: rgba(var(--theme-color), 0.14)
}

.custom-sidebar-height::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #f5f5f5
}

.custom-sidebar-height::-webkit-scrollbar-thumb {
    background-color: #888
}

.error-section {
    padding: 130px 0 140px;
    text-align: center
}

.error-section h1 {
    font-size: 200px;
    font-weight: 900;
    margin: 0;
    line-height: .8;
    color: #aaa;
    margin-top: -11px
}

.error-section h2 {
    color: #aaa;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 40px 0
}

.breadcrumb-section {
    background-color: #f8f8f8;
    padding-block: 30px;
    text-align: center;
    position: relative;
    box-shadow: inset 0px 4px 10px 0px #f5f5f5
}

.breadcrumb-section h2 {
    margin-bottom: calc(2px + 10*(100vw - 320px)/1600);
    font-size: calc(21px + 11*(100vw - 320px)/1600);
    line-height: 1.3;
    text-transform: capitalize;
    font-weight: 500
}

.breadcrumb-section .breadcrumb {
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    text-transform: uppercase;
    font-size: calc(13px + 1*(100vw - 320px)/1600);
    gap: 3px 0;
    color: #555;
    font-weight: 600;
    justify-content: center;
    margin: 0;
    padding-right: 0
}

.breadcrumb-section .breadcrumb a {
    color: #555;
    font-weight: 600
}

.about-page .banner-section {
    border-radius: 0;
    overflow: hidden;
    margin-top: 30px
}

.about-page h3 {
    margin-bottom: 15px;
    letter-spacing: unset;
    text-transform: unset;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
    font-size: calc(16px + 10*(100vw - 320px)/1600)
}

.about-page p {
    line-height: 2;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 400;
    margin-bottom: 0
}

.about-page h4 {
    font-weight: 600;
    font-size: calc(18px + 4*(100vw - 320px)/1600);
    margin-bottom: 18px;
    line-height: 1.3
}

.testimonial {
    background-color: #f7f7f7
}

.testimonial .testimonial-slider .media img {
    border-radius: 100%;
    border: 1px solid #ddd;
    padding: 5px;
    height: 130px;
    width: 130px
}

.testimonial .testimonial-slider .media h5 {
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 0;
    margin-top: 7px
}

.testimonial .testimonial-slider .media h6 {
    margin-bottom: -4px
}

.testimonial .testimonial-slider .media .media-body {
    padding: 30px 75px 30px 30px
}

.testimonial .testimonial-slider .media .media-body p {
    line-height: 2;
    letter-spacing: .03em
}

.team {
    position: relative
}

.team img {
    margin: 0 auto;
    padding: 0 10px;
    border: 8px solid #f8f8f8
}

.team .owl-prev,
.team .owl-next {
    position: absolute;
    top: -45px
}

.team .owl-prev:before,
.team .owl-next:before {
    color: #222;
    opacity: .6
}

.team .owl-prev {
    left: unset;
    right: 20px
}

.team .owl-prev:before {
    content: ""
}

.team .owl-next {
    right: 0
}

.team .owl-next:before {
    content: ""
}

.team h2 {
    color: #222;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddada;
    margin-bottom: 10px
}

.team h4,
.team h6 {
    text-align: center
}

.team h4 {
    color: var(--theme-color);
    font-weight: 700;
    padding-top: 11px;
    padding-bottom: 5px;
    background-color: #f8f8f8;
    margin-bottom: 0
}

.team h6 {
    margin-bottom: 0;
    background-color: #f8f8f8;
    padding-bottom: 14px
}

@media(max-width: 991px) {
    .shop-filter-category {
        margin: calc(16px + 4*(100vw - 320px)/671) calc(12px + 8*(100vw - 320px)/671) 0
    }
}

.shop-filter-category .filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.shop-filter-category .filter-title h2 {
    color: #222;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: unset;
    text-transform: none;
    font-weight: 600;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    margin: 0
}

.shop-filter-category .filter-title a {
    font-weight: 500;
    font-size: 15px;
    text-decoration: underline;
    color: #ff4f4f
}

.shop-filter-category .filter-title a:hover {
    text-decoration: underline;
    color: #ff4f4f
}

.shop-filter-category .filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid #eee
}

.shop-filter-category .filter-list li {
    background-color: #fff;
    padding: 7px 13px;
    display: flex;
    align-items: center;
    gap: 4px 6px;
    font-size: 15px
}

@media(max-width: 991px) {
    .shop-filter-category .filter-list li {
        background-color: #f6f6f6
    }
}

.shop-filter-category .filter-list li a {
    color: #222;
    font-weight: 500
}

.shop-filter-category .filter-list li i {
    color: #777;
    line-height: 1
}

.collection-filter-block {
    position: sticky;
    top: 120px;
    left: 0;
    padding: 20px;
    border: 1px solid #eee;
    background-color: #f9f9f9
}

@media(max-width: 991px) {
    .collection-filter-block {
        padding: 0 0 20px
    }
}

.collection-filter-block .product-service {
    padding: 30px 0
}

.collection-filter-block .product-service .media+.media {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #eee
}

.collection-filter-block .product-service .media svg {
    height: 40px;
    width: 40px;
    fill: var(--theme-color)
}

.collection-filter-block .product-service .media svg path {
    fill: var(--theme-color)
}

.collection-filter-block .product-service .media .media-body {
    padding-left: 10px
}

.collection-filter-block .product-service .media .media-body h4 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600
}

.collection-filter-block .product-service .media .media-body p {
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 16px
}

.collection-filter-block .product-service .media:last-child {
    padding-bottom: 0
}

@media(max-width: 991px) {
    .collection-filter-block .accordion {
        margin: calc(16px + 4*(100vw - 320px)/671) calc(12px + 8*(100vw - 320px)/671) 0
    }
}

.collection-filter-block .accordion-item {
    background-color: rgba(0, 0, 0, 0);
    border: unset;
    color: #222
}

.collection-filter-block .accordion-item+.accordion-item {
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid #eee
}

.collection-filter-block .accordion-item:last-child .accordion-body {
    padding-bottom: 0
}

.collection-filter-block .accordion-item .accordion-button {
    border: unset;
    font-weight: 500;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    box-shadow: unset;
    z-index: 0
}

.collection-filter-block .accordion-item .accordion-button:not(.collapsed) {
    color: #222;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: unset;
    font-weight: 600
}

.collection-filter-block .accordion-item .accordion-button::after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: auto;
    height: auto;
    font-size: 24px;
    background: unset;
    font-weight: 100;
    line-height: 1
}

.collection-filter-block .accordion-item .rating,
.collection-filter-block .accordion-item .product-rating {
    display: flex;
    align-items: center
}

.collection-filter-block .accordion-item .rating span,
.collection-filter-block .accordion-item .product-rating span {
    line-height: 1;
    margin: 0;
    margin-top: -2px
}

.collection-filter-block .accordion-item .rating span+span,
.collection-filter-block .accordion-item .product-rating span+span {
    margin-left: calc(0px + 2*(100vw - 320px)/1600)
}

.collection-filter-block .accordion-item .rating span svg,
.collection-filter-block .accordion-item .product-rating span svg {
    padding: 0
}

.collection-filter-block .accordion-item .accordion-collapse {
    border: unset
}

.collection-filter-block .accordion-item .accordion-body {
    padding: 15px 0 10px
}

.collection-filter-block .accordion-item .accordion-body .custom-sidebar-height>li {
    display: grid;
    gap: calc(10px + .00375*(100vw - 320px))
}

.collection-filter-block .accordion-item .accordion-body .collection-brand-filter {
    padding-top: 0
}

.collection-filter-block .accordion-item .accordion-body .search-box {
    position: relative;
    width: 100%;
    margin-bottom: 12px
}

.collection-filter-block .accordion-item .accordion-body .search-box::after {
    content: "";
    position: absolute;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-left: 1px solid #eee;
    font-size: 15px;
    padding: 0 calc(13px + 5*(100vw - 320px)/1600);
    font-weight: 600;
    height: 60%;
    display: flex;
    align-items: center;
    color: #777
}

.collection-filter-block .accordion-item .accordion-body .search-box .form-control {
    font-size: 14px;
    padding: calc(12px + 3*(100vw - 320px)/1600);
    border: 1px solid #eee;
    position: relative;
    padding-right: calc(47px + 16*(100vw - 320px)/1600)
}

.collection-filter-block .accordion-item .accordion-body .search-not-found-box {
    background-color: #fff;
    padding: 50px 0;
    text-align: center
}

@media(max-width: 991px) {
    .collection-filter-block .accordion-item .accordion-body .search-not-found-box {
        background-color: #f8f8f8
    }
}

.collection-filter-block .accordion-item .accordion-body .search-not-found-box h4 {
    margin: 0;
    font-weight: 600;
    font-size: 18px
}

.collection-filter-block .accordion-item .accordion-body .search-not-found-box p:empty {
    display: none
}

.collection-filter-block .accordion-item .accordion-body .shop-category-list,
.collection-filter-block .accordion-item .accordion-body .category-list {
    display: grid;
    gap: 12px
}

.collection-filter-block .accordion-item .accordion-body .shop-category-list>li .sub-category-list,
.collection-filter-block .accordion-item .accordion-body .category-list>li .sub-category-list {
    margin-left: 14px;
    margin-top: -1px;
    display: grid;
    gap: 12px
}

.collection-filter-block .accordion-item .accordion-body .shop-category-list>li .sub-category-list .custom-sidebar-height,
.collection-filter-block .accordion-item .accordion-body .category-list>li .sub-category-list .custom-sidebar-height {
    max-height: unset
}

.collection-filter-block .accordion-item .accordion-body .shop-category-list>li>a,
.collection-filter-block .accordion-item .accordion-body .category-list>li>a {
    margin: 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    line-height: 1;
    transition: all .1s ease-in-out;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox {
    margin: 0;
    padding: 0;
    min-height: unset;
    position: relative
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input {
    width: 21px;
    height: 21px;
    float: unset;
    margin: 0;
    cursor: pointer;
    position: relative;
    margin-right: 9px;
    border: unset;
    background: unset;
    filter: unset
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    transition: transform .4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0);
    left: 4px;
    top: 6px;
    z-index: 1;
    border: 2px solid var(--theme-color);
    border-top-style: none;
    border-right-style: none
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input::after {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    background-color: #fff;
    border: 2px solid #ececec;
    cursor: pointer
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input:checked::before {
    transform: rotate(-45deg) scale(1)
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input:checked~.form-check-label,
.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input:hover~.form-check-label {
    color: var(--theme-color)
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input:checked~.form-check-label::before,
.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input:hover~.form-check-label::before {
    width: 100%
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input:checked~.form-check-label>span,
.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input:hover~.form-check-label>span {
    color: var(--theme-color)
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-label {
    margin: 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    line-height: 1;
    transition: all .1s ease-in-out;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777
}

.collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-label>span {
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500
}

.product-sidebar-box {
    position: sticky;
    top: 120px;
    left: 0
}

.product-sidebar-box .collection-filter>div+div {
    margin-top: 24px
}

.product-sidebar-box .collection-filter-block {
    position: unset;
    inset: unset;
    padding: 0;
    border: unset
}

.product-sidebar-box .collection-filter-block .product-service {
    padding: 20px;
    border: 1px solid #eee
}

.product-sidebar-box .collection-filter-block.accordion {
    border: 1px solid #eee;
    padding: 20px
}

.product-sidebar-box .collection-filter-block.accordion .product-service {
    padding: 0
}

.product-sidebar-box .theme-card .offer-slider .media {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 0 !important
}

@media(max-width: 1199px) {
    .product-sidebar-box .theme-card .offer-slider .media {
        display: grid
    }
}

.product-sidebar-box .theme-card .offer-slider .media+.media {
    margin-top: 15px
}

.product-sidebar-box .theme-card .offer-slider .media img {
    padding: 5px;
    height: 95px;
    width: 95px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    margin: 0
}

@media(max-width: 1199px) {
    .product-sidebar-box .theme-card .offer-slider .media img {
        width: 100%;
        object-fit: contain
    }
}

.product-sidebar-box .theme-card .offer-slider .media .media-body {
    max-width: calc(100% - 13px - 95px)
}

@media(max-width: 1199px) {
    .product-sidebar-box .theme-card .offer-slider .media .media-body {
        max-width: 100%
    }
}

.product-sidebar-box .theme-card .offer-slider .media .media-body a h6 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.product-sidebar-box .theme-card .offer-slider .media .media-body .rating svg {
    padding: 0
}

.collection-filter .shop-left-sidebar {
    position: sticky;
    top: 120px;
    left: 0
}

@media(max-width: 991px) {
    .collection-filter .shop-left-sidebar {
        position: relative;
        inset: unset
    }
}

.collection-filter .theme-card .offer-slider img {
    padding: 15px 15px 15px 0
}

.collection-filter .custom-nav-tab {
    gap: calc(11px + 9*(100vw - 320px)/1600)
}

.collection-filter .custom-nav-tab .nav-item {
    width: 100%;
    height: calc(48px + 12*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    border-radius: 0;
    display: flex;
    overflow: hidden;
    border: 1px solid #eee
}

.collection-filter .custom-nav-tab .nav-item .nav-link {
    width: 100%;
    text-align: left;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    color: #777;
    border-radius: unset;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    height: 100%;
    border: unset
}

.collection-filter .custom-nav-tab .nav-item .nav-link:hover(not) img {
    width: 75px;
    height: 75px;
    transform: translateY(-50%) rotate(-4deg);
    right: -12px;
    opacity: .45
}

.collection-filter .custom-nav-tab .nav-item .nav-link:hover img {
    width: 75px;
    height: 75px;
    transform: translateY(-50%) rotate(-4deg);
    right: -12px;
    opacity: .29
}

.collection-filter .custom-nav-tab .nav-item .nav-link.active {
    color: #fff;
    background: var(--theme-color);
    font-size: 19px;
    font-weight: 600;
    border-color: rgba(0, 0, 0, 0)
}

.collection-filter .custom-nav-tab .nav-item .nav-link.active img {
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    position: absolute;
    right: -10px;
    filter: invert(1);
    opacity: .4
}

.collection-filter .custom-nav-tab .nav-item .nav-link img {
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    position: absolute;
    right: -10px;
    opacity: .1;
    transition: all .2s ease-in-out
}

.collection-sidebar-banner {
    margin-top: 30px
}

.collection-sidebar-banner img {
    width: 100%
}

.top-banner-wrapper {
    margin-bottom: calc(17px + 11*(100vw - 320px)/1600)
}

.top-banner-wrapper .top-banner-content h4 {
    font-weight: 600;
    color: #444;
    margin-bottom: 15px
}

.top-banner-wrapper .top-banner-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 10px
}

.top-banner-wrapper .top-banner-content p {
    line-height: 1.5;
    color: #777;
    margin-bottom: 0;
    font-size: 16px;
    letter-spacing: .05em
}

.product-wrapper-grid.list-view .product-wrap .product-info {
    text-align: left;
    align-self: center;
    padding-left: 15px
}

.product-wrapper-grid.list-view .product-box {
    padding-bottom: 0
}

.product-wrapper-grid.list-view .product-box>*>* {
    display: flex
}

.product-wrapper-grid.list-view .product-box .img-wrapper,
.product-wrapper-grid.list-view .product-box .img-block {
    width: 25%
}

.product-wrapper-grid.list-view .product-box .product-detail {
    padding-left: 15px;
    align-self: center;
    text-align: left !important;
    width: calc(100% - 25px)
}

.product-wrapper-grid.list-view .product-box .product-detail .rating {
    margin-top: 0
}

.product-wrapper-grid.list-view .product-box .product-detail p {
    display: block !important;
    margin-bottom: 5px;
    line-height: 23px;
    font-size: 16px
}

.product-wrapper-grid.list-view .product-box .product-detail h6 {
    font-weight: 700
}

.product-wrapper-grid.list-view .basic-product {
    display: flex;
    align-items: center;
    gap: 25px
}

.product-wrapper-grid.list-view .basic-product .img-wrapper {
    width: 30%;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-wrapper-grid.list-view .basic-product .product-detail {
    width: calc(70% - 25px);
    margin: 0
}

.product-wrapper-grid.list-view .basic-product .product-detail>div {
    border-bottom: none
}

.product-wrapper-grid.list-view .basic-product .product-detail .offer-panel {
    display: none
}

@media(max-width: 576px) {
    .product-wrapper-grid.list-view .basic-product {
        gap: 10px;
        flex-direction: column
    }

    .product-wrapper-grid.list-view .basic-product .img-wrapper {
        min-height: auto;
        width: 100%
    }

    .product-wrapper-grid.list-view .basic-product .product-detail {
        width: 100%
    }
}

.collection-product-wrapper .product-top-filter {
    margin-bottom: 15px;
    padding: 12px 16px;
    background-color: #f8f8f8;
    position: relative;
    border: 1px solid #eee
}

@media(max-width: 991px) {
    .collection-product-wrapper .product-top-filter {
        padding: 0;
        background-color: rgba(0, 0, 0, 0);
        border: none
    }
}

.collection-product-wrapper .product-top-filter .search-count,
.collection-product-wrapper .product-top-filter .sidebar-popup {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    background: unset;
    background-color: #fff;
    border: 1px solid #eee;
    margin-right: 18px
}

@media(max-width: 991px) {

    .collection-product-wrapper .product-top-filter .search-count,
    .collection-product-wrapper .product-top-filter .sidebar-popup {
        width: 100%;
        margin-right: 15px
    }
}

@media(max-width: 575px) {

    .collection-product-wrapper .product-top-filter .search-count,
    .collection-product-wrapper .product-top-filter .sidebar-popup {
        margin-right: 0;
        margin-bottom: calc(10px + 7*(100vw - 320px)/672)
    }
}

.collection-product-wrapper .product-top-filter .search-count h5,
.collection-product-wrapper .product-top-filter .sidebar-popup h5 {
    margin-bottom: 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    width: 100%;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(9px + 3*(100vw - 320px)/1600) calc(10px + 9*(100vw - 320px)/1600);
    white-space: nowrap
}

@media(max-width: 575px) {

    .collection-product-wrapper .product-top-filter .search-count h5,
    .collection-product-wrapper .product-top-filter .sidebar-popup h5 {
        line-height: 20px
    }
}

.collection-product-wrapper .product-top-filter .search-count:empty {
    display: none
}

.collection-product-wrapper .product-top-filter .product-filter-content,
.collection-product-wrapper .product-top-filter .popup-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-view,
.collection-product-wrapper .product-top-filter .popup-filter .collection-view {
    padding: 20px;
    width: 10%
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-view ul li,
.collection-product-wrapper .product-top-filter .popup-filter .collection-view ul li {
    height: 100%;
    vertical-align: middle;
    cursor: pointer
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-view ul li:first-child,
.collection-product-wrapper .product-top-filter .popup-filter .collection-view ul li:first-child {
    margin-right: 14px
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-view ul li i,
.collection-product-wrapper .product-top-filter .popup-filter .collection-view ul li i {
    font-size: 18px
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view,
.collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
    margin-left: auto
}

@media(max-width: 991px) {

    .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view,
    .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
        display: none
    }
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul,
.collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul {
    display: flex;
    align-items: center;
    gap: 9px
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li,
.collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li {
    width: calc(39px + 3*(100vw - 991px)/929);
    height: calc(39px + 3*(100vw - 991px)/929);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #eee;
    cursor: pointer
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li.active,
.collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li.active {
    background-color: var(--theme-color);
    border-color: rgba(0, 0, 0, 0)
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li.active img,
.collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li.active img {
    filter: invert(1) brightness(100)
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li img,
.collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li img {
    height: 16px;
    cursor: pointer
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
    position: relative;
    width: 22%
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-toggle,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-toggle,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-toggle,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-toggle {
    border: 1px solid #eee;
    padding: calc(9px + 4*(100vw - 320px)/1600) calc(10px + 7*(100vw - 320px)/1600);
    position: relative;
    border-radius: 0;
    background-color: #fff;
    color: #444;
    font-weight: 400;
    text-transform: none;
    width: 100%;
    gap: 4px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: unset
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-toggle::after,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-toggle::after,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-toggle::after,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-toggle::after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 19px;
    line-height: 1;
    vertical-align: unset;
    margin: 0;
    border: unset
}

@media(max-width: 1199px) {

    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-toggle,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-toggle,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-toggle,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-toggle {
        width: auto
    }
}

@media(max-width: 991px) {

    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-toggle,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-toggle,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-toggle,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-toggle {
        width: 100%
    }
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu {
    width: 100%;
    margin-top: 2px;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 0;
    max-height: 200px;
    overflow: auto
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar-track,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar-track,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar-track,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: rgba(var(--theme-color), 0.14)
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #f5f5f5;
    border-radius: 0
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar-thumb,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar-thumb,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar-thumb,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--theme-color)
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu .dropdown-item,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu .dropdown-item,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu .dropdown-item,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu .dropdown-item {
    padding: 6px;
    font-weight: 500;
    color: #222;
    font-size: 14px
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu .dropdown-item:hover,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu .dropdown-item:active,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu .dropdown-item:hover,
.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu .dropdown-item:active,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu .dropdown-item:hover,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu .dropdown-item:active,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu .dropdown-item:hover,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu .dropdown-item:active {
    background-color: var(--theme-color);
    color: #fff
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
    margin-left: 15px
}

@media(max-width: 991px) {

    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
        margin-left: 0
    }
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter:before,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
    right: 10px
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
    border-right: none
}

.collection-product-wrapper .product-top-filter .product-filter-content,
.collection-product-wrapper .product-top-filter .popup-filter {
    justify-content: unset;
    align-items: center
}

.collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group,
.collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group {
    display: flex;
    align-items: center
}

.collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group .product-page-per-view,
.collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group .product-page-filter,
.collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group .product-page-per-view,
.collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group .product-page-filter {
    width: 100%
}

@media(max-width: 575px) {

    .collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group,
    .collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group {
        flex-wrap: wrap
    }
}

@media(max-width: 991px) {

    .collection-product-wrapper .product-top-filter .product-filter-content,
    .collection-product-wrapper .product-top-filter .popup-filter {
        display: flex;
        flex-wrap: nowrap;
        gap: calc(10px + 7*(100vw - 320px)/672);
        padding: calc(9px + 3*(100vw - 320px)/672) calc(11px + 5*(100vw - 320px)/672);
        background-color: #f8f8f8;
        border: 1px solid #eee
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group,
    .collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group {
        width: 100%
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group .product-page-per-view,
    .collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group .product-page-filter,
    .collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group .product-page-per-view,
    .collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group .product-page-filter {
        width: 100%
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group .product-page-filter,
    .collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group .product-page-filter {
        margin-left: 15px
    }
}

@media(max-width: 576px) {

    .collection-product-wrapper .product-top-filter .product-filter-content,
    .collection-product-wrapper .product-top-filter .popup-filter {
        flex-wrap: wrap
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group .product-page-filter,
    .collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group .product-page-filter {
        margin: 0;
        margin-top: calc(10px + 7*(100vw - 320px)/672)
    }
}

.collection-product-wrapper .product-top-filter .popup-filter {
    justify-content: unset
}

.collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar {
    width: 3px
}

.collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-track {
    background: #ddd
}

.collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-thumb {
    background: #888
}

.collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-thumb:hover {
    background: #555
}

@media(max-width: 991px) {
    .collection-product-wrapper .product-top-filter .popup-filter {
        display: flex;
        flex-wrap: nowrap;
        gap: calc(10px + 7*(100vw - 320px)/672);
        padding: calc(9px + 3*(100vw - 320px)/672) calc(11px + 5*(100vw - 320px)/672);
        background-color: #f8f8f8
    }
}

@media(max-width: 576px) {
    .collection-product-wrapper .product-top-filter .popup-filter {
        flex-wrap: wrap
    }
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
    position: relative;
    cursor: pointer
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup a {
    font-size: 16px;
    color: #222
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter {
    background-color: #f8f8f8;
    height: 600px;
    width: 320px;
    overflow-y: scroll
}

@media(max-width: 576px) {
    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter {
        width: 300px
    }
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter .collection-filter-block {
    border: none
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter .theme-card {
    padding: 0 30px
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter .collection-sidebar-banner {
    padding: 0 30px
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter .collection-sidebar-banner img {
    width: 100%
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .filter-panel-title {
    width: 268px
}

.collection-product-wrapper .product-top-filter .popup-filter .open-popup {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    background-color: #fff;
    z-index: 1;
    border: 1px solid #f1f5f4;
    box-shadow: 0 0 5px #ddd
}

@media(max-width: 991px) {
    .collection-product-wrapper .product-top-filter .popup-filter .open-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: auto;
        height: 100vh;
        z-index: 10
    }

    .collection-product-wrapper .product-top-filter .popup-filter .open-popup.open {
        display: block
    }

    .collection-product-wrapper .product-top-filter .popup-filter .open-popup .collection-filter {
        display: block;
        inset: unset;
        width: calc(300px + 50*(100vw - 320px)/671);
        height: unset
    }

    .collection-product-wrapper .product-top-filter .popup-filter .open-popup .collection-filter.open {
        left: 0
    }
}

.collection-product-wrapper .product-top-filter .popup-filter .open-popup.open {
    display: block
}

.collection-product-wrapper .product-top-filter .popup-filter .open-popup .collection-filter-block {
    margin-bottom: 0
}

.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
    width: 20%
}

.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
    padding-right: 45px;
    font-size: 16px
}

.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view:before,
.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
    right: 35px
}

.collection-product-wrapper .product-top-filter .popup-filter .collection-view {
    width: 20%
}

.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
    right: 25px !important
}

.collection-product-wrapper .product-wrapper-grid .product-box {
    margin-top: 50px
}

.collection-product-wrapper .product-wrapper-grid .product-box .product-detail p {
    display: none
}

.collection-product-wrapper .product-wrapper-grid .product-five {
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-inline: 15px
}

.collection-product-wrapper .product-wrapper-grid .col-lg-2 .product-box .product-detail h6 {
    font-size: 13px
}

.collection-product-wrapper .product-wrapper-grid .col-lg-2 .product-box .product-detail h4 {
    font-size: 18px
}

.collection-product-wrapper .product-wrapper-grid .col-lg-2 .product-box .product-detail .rating i {
    padding-right: 0
}

.collection-product-wrapper .product-wrapper-grid .col-lg-2 .product-box .img-wrapper .lable-block .lable3 {
    padding: 8px 4px;
    font-size: 12px
}

.filter-main-btn {
    display: none;
    margin-bottom: calc(9px + 11*(100vw - 320px)/1600);
    background-color: var(--theme-color);
    padding: calc(6px + 4*(100vw - 320px)/1600) calc(11px + 11*(100vw - 320px)/1600);
    color: #fff;
    font-size: calc(15px + 5*(100vw - 320px)/1600);
    border: 1px solid rgba(0, 0, 0, 0);
    font-weight: 600
}

.filter-main-btn:hover,
.filter-main-btn:first-child:active {
    border-color: var(--theme-color);
    color: var(--theme-color)
}

.filter-main-btn svg {
    width: unset;
    height: unset;
    margin-top: -6px
}

.collection-mobile-back {
    padding-block: 15px;
    border-bottom: 1px solid #eee;
    display: none
}

.collection-mobile-back span {
    text-transform: uppercase;
    font-size: 16px;
    color: #222;
    line-height: 33px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px
}

.collection-mobile-back span svg {
    width: unset;
    stroke-width: 1px;
    height: unset;
    font-size: 22px
}

.theme-pagination-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(25px + 14*(100vw - 320px)/1600)
}

.page-link.disabled,
.disabled>.page-link {
    background-color: #fff;
    cursor: not-allowed;
    border-color: #eee;
    padding: 0;
    width: calc(32px + 6*(100vw - 320px)/1600);
    height: calc(32px + 6*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center
}

.product-pagination {
    margin-top: calc(25px + 25*(100vw - 320px)/1600);
    margin-bottom: 50px
}

.product-pagination .disabled::after,
.product-pagination .disabled::before {
    content: unset
}

.product-pagination .pagination {
    border-radius: 0;
    gap: 10px
}

@media(max-width: 991px) {
    .product-pagination .pagination {
        justify-content: center
    }
}

.product-pagination .pagination li.disabled {
    opacity: 1 !important
}

.product-pagination .pagination li.disabled .page-link {
    border-color: #eee;
    color: #777
}

.product-pagination .pagination li.disabled.active .page-link {
    color: #fff;
    font-weight: 500;
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.product-pagination .pagination li:not(:first-child) .page-link {
    margin: 0
}

.product-pagination .pagination li:first-child .page-link,
.product-pagination .pagination li:last-child .page-link {
    border-radius: 0
}

.product-pagination .pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    border-top: 0;
    color: #777;
    border: 1px solid #eee;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    width: calc(34px + 6*(100vw - 320px)/1600);
    height: calc(34px + 6*(100vw - 320px)/1600);
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    background-color: #fff
}

.product-pagination .pagination li a svg {
    width: unset;
    height: unset
}

.product-pagination .pagination li a.active {
    color: #fff;
    font-weight: 500;
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.product-pagination .pagination li.active a {
    color: #fff;
    font-weight: 500;
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.product-pagination .product-search-count-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%
}

@media(max-width: 991px) {
    .product-pagination .product-search-count-bottom {
        display: block;
        margin-bottom: calc(8px + 7*(100vw - 320px)/672)
    }
}

.product-pagination .product-search-count-bottom h5 {
    color: #777;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    margin: 0
}

.product-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px
}

.product-social li {
    width: 38px;
    height: 38px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-social li:hover a {
    color: var(--theme-color)
}

.product-social li i {
    font-size: 20px;
    color: #232323
}

.thumbnail-image-outside {
    position: sticky;
    top: 120px;
    left: 0
}

.thumbnail-image-outside .product-page-details {
    position: unset;
    inset: unset
}

.thumbnail-image-outside .image-outside-thumbnail {
    margin-top: 32px
}

.bundle {
    margin-top: 10px
}

.bundle .bundle_img {
    display: flex
}

.bundle .bundle_img .img-box {
    position: relative
}

.bundle .bundle_img .img-box img {
    max-width: 115px;
    padding: 6px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 6px
}

.bundle .bundle_img .img-box+.img-box:before {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    padding: 0 7px;
    font-size: 22px
}

.bundle .bundle_img .plus {
    display: flex;
    align-items: center;
    padding: 0 7px;
    font-size: 22px
}

.bundle .bundle-image-box {
    border-radius: 8px;
    overflow: hidden
}

.bundle .bundle-image-box .bundle-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eee;
    padding: 12px 12px;
    background-color: #f8f8f8;
    position: relative;
    text-align: left
}

.bundle .bundle-image-box .bundle-box+.bundle-box {
    border-top: 1px solid #eee
}

.bundle .bundle-image-box .bundle-box .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 12px;
    right: 12px
}

.bundle .bundle-image-box .bundle-box .form-check .form-check-input {
    float: unset;
    margin: 0;
    filter: unset
}

.bundle .bundle-image-box .bundle-box .bundle-image {
    width: 70px;
    height: 70px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.bundle .bundle-image-box .bundle-box .bundle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.bundle .bundle-image-box .bundle-box .bundle-content {
    width: calc(100% - 15px - 70px)
}

.bundle .bundle-image-box .bundle-box .bundle-content h3 {
    font-weight: 500;
    margin: 0;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    letter-spacing: 1.4px;
    margin-top: 9px;
    color: var(--theme-color)
}

.bundle .bundle-image-box .bundle-box .bundle-content .product-page-details {
    position: unset;
    inset: unset
}

.bundle .bundle-image-box .bundle-box .bundle-content select {
    margin-left: 0;
    font-size: 14px;
    font-weight: 500;
    padding-block: 6px;
    color: #777;
    border: none;
    margin-top: calc(6px + 5*(100vw - 320px)/1600);
    text-transform: capitalize;
    max-width: max-content
}

.bundle .bundle-image-box .bundle-box .bundle-content h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: unset;
    text-transform: unset;
    margin-bottom: 0;
    white-space: nowrap;
    width: 86%;
    color: #232323;
    overflow: hidden;
    text-overflow: ellipsis
}

.bundle .bundle-image-box .bundle-box .bundle-content .content-list {
    display: grid;
    list-style-type: disc;
    padding-left: 1.1rem;
    gap: 4px;
    margin-top: 16px
}

.bundle .bundle-image-box .bundle-box .bundle-content .content-list li {
    display: list-item;
    text-decoration: underline
}

.bundle .bundle-image-box .bundle-box .bundle-content .variation-box .sub-title {
    display: none
}

.bundle .bundle-title {
    margin-top: calc(14px + 4*(100vw - 320px)/1600);
    line-height: 1.3;
    color: #222;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: calc(16px + 2*(100vw - 320px)/1600)
}

.bundle .total-price {
    font-size: calc(20px + 2*(100vw - 320px)/1600);
    font-weight: 600
}

.bundle .bundle-btn {
    text-transform: capitalize;
    padding: calc(9px + 4*(100vw - 320px)/1600) calc(18px + 5*(100vw - 320px)/1600);
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 600
}

.bundle .bundle_detail {
    margin-top: 15px
}

.bundle .bundle_detail .price_product {
    color: #222;
    padding-left: 3px;
    font-weight: 600
}

.nft-collection-section {
    background-color: #1b1c21;
    overflow: hidden;
    padding: calc(40px + 70*(100vw - 320px)/1600) 0
}

.nft-collection-section .basic-product .product-title {
    color: #fff
}

.nft-collection-section .basic-product .price {
    color: #fff
}

.nft-collection-section .basic-product del {
    color: #ddd
}

.nft-collection-section .basic-product .product-detail h6 {
    color: #ddd
}

.nft-collection-section .basic-product .add-cart-button button {
    color: #ddd;
    background-color: #404040
}

.nft-collection-section .basic-product.theme-product-1 {
    border-color: #404040
}

.nft-collection-section .basic-product.theme-product-1 .product-detail>div {
    border-color: #404040
}

.nft-collection-section .basic-product.theme-product-1 .product-detail .offer-panel {
    color: #ddd
}

.nft-collection-section .basic-product.theme-product-2 .product-title {
    color: #222
}

.nft-collection-section .basic-product.theme-product-2 .price {
    color: #222
}

.nft-collection-section .basic-product.theme-product-2 del {
    color: #777
}

.nft-collection-section .basic-product.theme-product-3 {
    border-color: #404040
}

.nft-collection-section .basic-product.theme-product-6 {
    border-color: #404040
}

.nft-collection-section .basic-product.theme-product-9 {
    border: none;
    overflow: hidden
}

.nft-collection-section .basic-product.theme-product-9 .product-title {
    color: #222
}

.nft-collection-section .basic-product.theme-product-9 .rating-label>span {
    color: #777
}

.nft-collection-section .basic-product.theme-product-9 del {
    color: #777
}

.nft-collection-section .product-left-title h3 {
    color: #fff;
    max-width: unset
}

.nft-collection-section .product-left-title p {
    width: 90%;
    color: rgba(255, 255, 255, .54)
}

.collection .collection-block {
    text-align: center
}

.collection .collection-block img,
.collection .collection-block .bg-size {
    margin-bottom: 20px
}

.collection .collection-block .collection-content {
    text-align: center
}

.collection .collection-block .collection-content h3 {
    margin-bottom: 10px;
    color: #222;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .05em
}

.collection .collection-block .collection-content h4 {
    color: #222;
    margin-bottom: 10px;
    font-size: 16px
}

.collection .collection-block .collection-content p {
    line-height: 1.5
}

.collection .collection-block .collection-content .btn-solid,
.collection .collection-block .collection-content .btn-outline {
    padding: 10px 25px
}

.search-product {
    margin-bottom: -30px
}

.search-product>div {
    margin-bottom: 30px
}

.custom-2-grid {
    display: flex;
    gap: calc(15px + 9*(100vw - 320px)/1600);
    flex-wrap: wrap
}

.custom-2-grid>div {
    width: calc(50% - 12px)
}

@media(max-width: 400px) {
    .custom-2-grid>div {
        width: 100%
    }
}

.faq-section .faq-accordion {
    margin-bottom: 50px
}

.faq-section .faq-accordion .accordion-item {
    border-radius: 0;
    border: 1px solid #eee;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0)
}

.faq-section .faq-accordion .accordion-item+.accordion-item {
    margin-top: 25px
}

.faq-section .faq-accordion .accordion-item .accordion-header {
    padding: 0;
    border-bottom: 0;
    transition: all .3s ease
}

.faq-section .faq-accordion .accordion-item .accordion-header button {
    color: #333;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    padding: calc(11px + 7*(100vw - 320px)/1600);
    line-height: 1.4;
    font-weight: 500;
    text-transform: unset;
    z-index: 0;
    text-decoration: unset;
    box-shadow: unset;
    background-color: #f8f8f8;
    border: unset;
    align-items: flex-start;
    letter-spacing: unset;
    justify-content: space-between;
    transition: all .3s ease
}

.faq-section .faq-accordion .accordion-item .accordion-header button:not(.collapsed) {
    font-weight: 600;
    color: var(--theme-color)
}

.faq-section .faq-accordion .accordion-item .accordion-header button::after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: unset;
    height: unset;
    margin: unset;
    background: unset;
    font-size: calc(22px + 5*(100vw - 320px)/1600);
    font-weight: 400;
    line-height: 1;
    color: #333
}

.faq-section .faq-accordion .accordion-item .accordion-header button:hover {
    color: var(--theme-color)
}

.faq-section .faq-accordion .accordion-item .card-body {
    padding: calc(10px + 5*(100vw - 320px)/1600) calc(12px + 6*(100vw - 320px)/1600)
}

.faq-section .faq-accordion .accordion-item .card-body p {
    margin-bottom: 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    color: #777;
    line-height: 1.7;
    letter-spacing: unset;
    font-weight: 500
}

.search-block {
    padding: 0
}

.search-block .form-header .input-group {
    gap: 15px
}

.search-block .form-header .input-group svg {
    width: unset;
    height: unset;
    padding-right: 4px;
    font-size: 16px
}

.search-block .form-header .input-group .btn {
    z-index: 0;
    display: flex;
    align-items: center;
    gap: 3px
}

.contact-page .map-box {
    height: 420px
}

.contact-page .map-box iframe {
    width: 100%;
    height: 100%;
    border: none
}

.contact-page .contact-title {
    position: sticky;
    top: 130px;
    left: 0
}

.contact-page .contact-title h2 {
    letter-spacing: unset;
    text-transform: none;
    margin: 0;
    line-height: 1.3
}

.contact-page .contact-title p {
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    line-height: 1.7;
    width: 100%;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0
}

.contact-page .contact-title .footer-social {
    margin-top: calc(18px + 12*(100vw - 320px)/1600);
    display: flex;
    align-items: center
}

@media(max-width: 991px) {
    .contact-page .contact-title .footer-social ul {
        margin: unset
    }
}

.contact-page .contact-right ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: calc(17px + 6*(100vw - 320px)/1600);
    margin-top: calc(20px + 8*(100vw - 320px)/1600)
}

@media(max-width: 1200px) {
    .contact-page .contact-right ul {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 768px) {
    .contact-page .contact-right ul {
        grid-template-columns: 1fr
    }
}

.contact-page .contact-right ul li {
    width: 100%;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 0;
    display: flex;
    gap: 11px
}

.contact-page .contact-right ul li .contact-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0
}

.contact-page .contact-right ul li .contact-icon svg {
    width: unset;
    height: unset;
    font-size: 23px;
    color: var(--theme-color)
}

.contact-page .contact-right ul li .media-body h6 {
    font-weight: 600;
    color: #222;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0
}

.contact-page .contact-right ul li .media-body p {
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 15px;
    margin-top: 3px
}

.contact-page .contact-form {
    background-color: #f8f8f8;
    padding: calc(20px + 24*(100vw - 320px)/1600) calc(16px + 28*(100vw - 320px)/1600);
    border-radius: 0;
    border: 1px solid #eee
}

.contact-page .contact-form .form-box .form-control {
    border: unset
}

.contact-page .contact-form .form-box .form-control::placeholder {
    color: #8a8a8a
}

.contact-page .contact-form .form-box label {
    color: #333
}

.qty-box .input-group span button {
    background: #fff !important;
    border: 1px solid #eee;
    height: 100%;
    z-index: 0
}

.qty-box .input-group span button:first-child:active {
    border-color: #eee
}

.qty-box .input-group span button svg {
    font-size: 16px !important
}

.qty-box .input-group .form-control {
    text-align: center;
    width: 80px;
    flex: unset
}

.qty-box .input-group button {
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    color: #777;
    cursor: pointer;
    padding-left: 12px;
    height: 100%;
    font-size: 12px;
    font-weight: 900;
    line-height: 1
}

.qty-box .input-group button svg {
    font-weight: 900;
    color: #222;
    width: unset;
    height: unset
}

.qty-box .input-group .icon {
    padding-right: 0
}

.wishlist-section tbody tr:last-child td {
    border: unset !important
}

.wishlist-section tbody tr td .icon-box a {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    border: 1px solid #eee;
    width: calc(28px + 4*(100vw - 320px)/1600);
    height: calc(28px + 4*(100vw - 320px)/1600);
    border-radius: 0;
    background-color: #f8f8f8;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 767px) {
    .wishlist-section tbody tr td .mobile-cart-content .col:last-child .td-color {
        display: flex;
        align-items: center;
        gap: calc(7px + 4*(100vw - 320px)/447)
    }

    .wishlist-section tbody tr td .mobile-cart-content .col:last-child .td-color a {
        font-size: calc(18px + 2*(100vw - 320px)/447);
        border: 1px solid #eee;
        width: calc(28px + 4*(100vw - 320px)/447);
        height: calc(28px + 4*(100vw - 320px)/447);
        border-radius: 4px;
        margin: 0 auto;
        background-color: #f8f8f8;
        color: #777;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.cart-section .table tbody+tbody,
.wishlist-section .table tbody+tbody {
    border-top: none
}

.cart-section .cart-buttons,
.wishlist-section .cart-buttons {
    padding-top: 35px
}

.cart-section .cart-buttons>div:last-child,
.wishlist-section .cart-buttons>div:last-child {
    text-align: right
}

.cart-section .cart-buttons a,
.wishlist-section .cart-buttons a {
    background-color: var(--theme-color);
    color: #fff;
    text-transform: none;
    font-weight: 600;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    line-height: 1.3;
    padding: calc(9px + 2*(100vw - 320px)/1600) 20px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0)
}

.cart-section .cart-buttons a:hover,
.wishlist-section .cart-buttons a:hover {
    border-color: var(--theme-color);
    background-color: #fff;
    color: var(--theme-color)
}

.cart-section .wishlist-buttons,
.wishlist-section .wishlist-buttons {
    padding-top: 35px;
    text-align: right
}

.cart-section .wishlist-buttons:last-child a,
.wishlist-section .wishlist-buttons:last-child a {
    margin-left: 15px
}

.cart-section .cart-table,
.wishlist-section .cart-table {
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid #eee
}

.cart-section .cart-table thead th,
.wishlist-section .cart-table thead th {
    font-weight: 600;
    color: #222;
    font-size: calc(17px + 2*(100vw - 320px)/1600);
    border-top: 0;
    text-align: center;
    padding: 16px 12px;
    background-color: #f8f8f8;
    border: unset !important
}

.cart-section tbody h2,
.wishlist-section tbody h2 {
    margin-bottom: 0
}

.cart-section tbody .remove-btn,
.wishlist-section tbody .remove-btn {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    border: 1px solid #eee;
    width: calc(28px + 4*(100vw - 320px)/1600);
    height: calc(28px + 4*(100vw - 320px)/1600);
    border-radius: 0;
    background-color: #f8f8f8;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.cart-section tbody .table-price h2,
.wishlist-section tbody .table-price h2 {
    color: #222;
    font-weight: 600;
    font-size: calc(17px + 3*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap
}

.cart-section tbody .table-price h2 del,
.wishlist-section tbody .table-price h2 del {
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    color: #777
}

.cart-section tbody .table-price h6,
.wishlist-section tbody .table-price h6 {
    font-size: 18px;
    margin-block: 4px 0;
    font-weight: 600;
    color: var(--theme-color)
}

.cart-section tbody .qty-box .input-group,
.wishlist-section tbody .qty-box .input-group {
    justify-content: center;
    flex-wrap: nowrap
}

.cart-section tbody .qty-box .input-group .form-control,
.wishlist-section tbody .qty-box .input-group .form-control {
    padding-block: 10px;
    border: 1px solid #eee;
    font-weight: 500
}

.cart-section tbody .qty-box .input-group button,
.wishlist-section tbody .qty-box .input-group button {
    border: 1px solid #eee;
    font-size: 16px;
    z-index: 0
}

.cart-section tbody .qty-box .input-group button i,
.wishlist-section tbody .qty-box .input-group button i {
    font-weight: 500
}

.cart-section tbody tr td,
.wishlist-section tbody tr td {
    vertical-align: middle;
    color: #777;
    border-top: 0;
    border-bottom: 1px solid #eee !important;
    text-align: center
}

.cart-section tbody tr td:nth-child(2),
.wishlist-section tbody tr td:nth-child(2) {
    width: 29rem
}

.cart-section tbody tr td a,
.cart-section tbody tr td p,
.wishlist-section tbody tr td a,
.wishlist-section tbody tr td p {
    color: #777;
    font-weight: 500;
    font-size: calc(16px + 1*(100vw - 320px)/1600);
    text-transform: capitalize;
    margin-bottom: 0
}

.cart-section tbody tr td a img,
.cart-section tbody tr td p img,
.wishlist-section tbody tr td a img,
.wishlist-section tbody tr td p img {
    height: 90px;
    width: 90px;
    object-fit: contain
}

.cart-section tbody tr td .td-color,
.wishlist-section tbody tr td .td-color {
    color: var(--theme-color)
}

.cart-section tbody tr td h2,
.wishlist-section tbody tr td h2 {
    color: var(--theme-color);
    font-size: calc(19px + 3*(100vw - 320px)/1600);
    font-weight: 500;
    letter-spacing: unset;
    text-transform: unset
}

.cart-section tbody tr td h2 del,
.wishlist-section tbody tr td h2 del {
    font-weight: 500;
    color: #777
}

.cart-section tbody tr td .mobile-cart-content,
.wishlist-section tbody tr td .mobile-cart-content {
    display: none;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: nowrap
}

.cart-section tbody tr td .mobile-cart-content .qty-box,
.wishlist-section tbody tr td .mobile-cart-content .qty-box {
    border-radius: 5px
}

.cart-section tbody tr td .mobile-cart-content .qty-box .input-group .form-control,
.wishlist-section tbody tr td .mobile-cart-content .qty-box .input-group .form-control {
    width: 48px;
    padding: 6px
}

.cart-section tbody tr td .mobile-cart-content .col,
.wishlist-section tbody tr td .mobile-cart-content .col {
    align-self: center;
    margin-left: 10px;
    margin-right: 10px
}

@media(max-width: 768px) {

    .cart-section tbody tr td .mobile-cart-content .col,
    .wishlist-section tbody tr td .mobile-cart-content .col {
        margin-left: 5px;
        margin-right: 5px
    }
}

.cart-section tfoot tr th,
.wishlist-section tfoot tr th {
    padding-top: 35px;
    text-align: right
}

.cart-section tfoot tr td,
.wishlist-section tfoot tr td {
    padding-block: calc(12px + 8*(100vw - 320px)/1600);
    border: none;
    text-align: center;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap
}

.cart-section tfoot tr td h2,
.wishlist-section tfoot tr td h2 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0
}

.cart-section tfoot tr td:first-child,
.wishlist-section tfoot tr td:first-child {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
    color: #777;
    text-align: right
}

.blog-detail-page .blog-detail-contain p {
    color: #777;
    line-height: 1.6;
    margin: 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500
}

.blog-detail-page .blog-detail-contain p+p {
    margin-top: calc(10px + 5*(100vw - 320px)/1600)
}

.blog-detail-page .blog-detail-contain h3 {
    margin-top: calc(14px + 3*(100vw - 320px)/1600);
    font-size: calc(16px + 6*(100vw - 320px)/1600);
    font-weight: 600;
    color: #222;
    margin-bottom: calc(4px + 4*(100vw - 320px)/1600)
}

.blog-detail-page .blog-detail-contain h3 strong {
    font-weight: inherit
}

.blog-detail-page .blog-detail p:last-child {
    margin-bottom: 0
}

.blog-detail-page .blog-detail img {
    margin-bottom: 28px;
    width: 100%;
    max-width: 100%;
    height: auto
}

.blog-detail-page .blog-detail h3 {
    color: #222;
    font-weight: 700;
    margin-bottom: calc(9px + 4*(100vw - 320px)/1600);
    letter-spacing: unset;
    font-size: calc(20px + 18*(100vw - 320px)/1600);
    line-height: 1.3
}

.blog-detail-page .blog-detail .post-social {
    color: #777;
    padding-bottom: 21px
}

.blog-detail-page .blog-detail .post-social li {
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    color: #777
}

.blog-detail-page .blog-detail .post-social li+li {
    padding-left: 11px;
    margin-left: 11px;
    border-left: 1px solid #eee
}

.blog-detail-page .blog-advance>div:last-child p:last-child {
    margin-bottom: 0
}

.blog-detail-page .blog-advance img,
.blog-detail-page .blog-advance .bg-size {
    margin-bottom: 25px;
    margin-top: 25px
}

.blog-detail-page .blog-advance ul {
    list-style-type: decimal;
    list-style-position: inside;
    line-height: 2.5;
    font-size: 15px
}

.blog-detail-page .blog-advance ul li {
    display: list-item;
    font-weight: 700
}

.blog-detail-page .blog-advance p {
    line-height: 1.8
}

.blog-detail-page .comment-section {
    border-bottom: 1px solid #ddd
}

.blog-detail-page .comment-section li {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid #ddd
}

.blog-detail-page .comment-section li img {
    height: 65px;
    width: 65px;
    margin-right: 20px;
    border-radius: 100%
}

.blog-detail-page .comment-section li h6 {
    color: #444;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px
}

.blog-detail-page .comment-section li h6 span {
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    color: #777;
    margin-left: 20px
}

.blog-detail-page .comment-section li p {
    line-height: 1.8;
    margin-bottom: 0
}

.blog-detail-page .blog-contact h2 {
    margin-bottom: 30px;
    margin-top: -5px
}

.blog-detail-page .blog-contact .theme-form label {
    text-transform: capitalize;
    color: #333;
    font-size: 16px;
    font-weight: 700
}

.blog-detail-page .blog-contact .theme-form input,
.blog-detail-page .blog-contact .theme-form textarea {
    border-color: #ddd;
    font-size: 14px;
    padding: 17px 25px;
    margin-bottom: 30px
}

.blog-page .no-sidebar .blog-box .blog-image {
    height: calc(150px + 130*(100vw - 320px)/1600)
}

.blog-page .blog-sidebar h6 {
    margin-bottom: 0;
    line-height: 20px;
    color: #333;
    font-weight: 700
}

.blog-page .blog-sidebar p {
    line-height: 20px;
    margin-bottom: 0;
    color: #555
}

.blog-page .blog-sidebar h4 {
    color: #222;
    text-transform: unset;
    font-weight: 600;
    margin-bottom: calc(15px + 5*(100vw - 320px)/1600);
    line-height: 1.3;
    letter-spacing: unset;
    font-size: calc(17px + 4*(100vw - 320px)/1600);
    padding-bottom: 6px;
    border-bottom: 1px solid #eee
}

.blog-page .blog-sidebar .theme-card {
    position: relative;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: calc(12px + 8*(100vw - 320px)/1600);
    border-radius: 0
}

.blog-page .blog-sidebar .theme-card+.theme-card {
    margin-top: calc(24px + 21*(100vw - 320px)/1600)
}

.blog-page .blog-sidebar .theme-card .recent-blog li+li {
    margin-top: calc(21px + 9*(100vw - 320px)/1600)
}

.blog-page .blog-sidebar .theme-card .recent-blog li .media img {
    width: 100px;
    margin-right: 10px
}

.blog-page .blog-sidebar .theme-card .recent-blog li .media .media-body a h5 {
    font-weight: 600;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    padding-bottom: 0;
    letter-spacing: unset
}

.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box {
    align-items: unset;
    gap: 10px;
    border: unset;
    padding-bottom: 0;
    border-radius: 0
}

.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-image {
    width: calc(90px + 10*(100vw - 320px)/1600);
    height: auto;
    margin: 0
}

.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0
}

.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content {
    width: calc(100% - (90px + 10*(100vw - 320px)/1600) - 10px)
}

.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content a h5 {
    padding-bottom: 0;
    text-transform: unset;
    margin: 0;
    line-height: 1.4;
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    font-weight: 500
}

.blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content h6 {
    line-height: 1.4;
    color: #777;
    font-weight: 500;
    margin-bottom: calc(2px + 3*(100vw - 320px)/1600);
    font-size: calc(13px + 1*(100vw - 320px)/1600)
}

.blog-page .blog-sidebar .theme-card .tags {
    display: flex;
    gap: 9px 12px;
    flex-wrap: wrap
}

.blog-page .blog-sidebar .theme-card .tags li {
    padding: 6px calc(9px + 4*(100vw - 320px)/1600);
    transition: all .2s ease-in-out;
    background-color: #fff;
    border: 1px solid #eee
}

.blog-page .blog-sidebar .theme-card .tags li a {
    font-size: calc(13px + 1*(100vw - 320px)/1600);
    color: #777;
    text-transform: unset;
    font-weight: 500
}

.blog-page .blog-sidebar .theme-card .tags li:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.blog-page .blog-sidebar .theme-card .tags li:hover a {
    color: #fff
}

.blog-page .blog-sidebar .theme-card .popular-blog li .blog-date {
    background-color: var(--theme-color);
    height: 70px;
    width: 70px;
    margin: 0 15px 0 0;
    padding: 15px
}

.blog-page .blog-sidebar .theme-card .popular-blog li .blog-date span {
    display: block;
    text-align: center;
    color: #fff;
    text-transform: uppercase
}

.blog-page .blog-sidebar .theme-card .popular-blog li+li {
    margin-top: 30px
}

.blog-page .blog-sidebar .theme-card .popular-blog li p {
    margin-top: 10px
}

.blog-page .blog-media {
    margin-bottom: 30px
}

.blog-page .blog-media:last-child {
    margin-bottom: 0
}

.blog-page .blog-media .blog-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.blog-page .blog-media .blog-right h6 {
    color: var(--theme-color);
    text-transform: uppercase;
    margin-bottom: 10px
}

.blog-page .blog-media .blog-right h4 {
    color: #333;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px
}

.blog-page .blog-media .blog-right p {
    line-height: 1.8;
    margin-bottom: 0;
    letter-spacing: .04em
}

.blog-page .blog-media .blog-right ul {
    color: #777;
    margin-bottom: 15px
}

.blog-page .blog-media .blog-right ul li {
    font-size: 14px;
    line-height: 1.5
}

.blog-page .blog-media .blog-right ul li+li {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #ddd
}

.blog-page .blog-media .blog-right ul li i {
    padding-right: 3px
}

.blog-page .blog-box {
    overflow: hidden;
    position: relative
}

.blog-page .blog-box:hover .blog-image img {
    transform: scale(1.12);
    overflow: hidden
}

.blog-page .blog-box:hover .blog-detail label {
    color: #fff
}

.blog-page .blog-box:hover .blog-detail label::before {
    opacity: 1
}

.blog-page .blog-box .blog-box-image {
    overflow: hidden;
    border-radius: 0
}

.blog-page .blog-box .blog-box-image a {
    transition: all .2s ease-in-out
}

.blog-page .blog-box .blog-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 0;
    height: calc(140px + 40*(100vw - 320px)/1600)
}

.blog-page .blog-box .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .5s, transform 1.25s cubic-bezier(0, 0, 0.44, 1.18)
}

.blog-page .blog-box .blog-image label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 5px;
    border: none;
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: .9px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, .2)
}

.blog-page .blog-box .blog-contain {
    padding: 0
}

.blog-page .blog-box .blog-contain .blog-label {
    display: flex;
    flex-wrap: wrap;
    margin-block: calc(6px + 6*(100vw - 320px)/1600) calc(8px + 4*(100vw - 320px)/1600);
    align-items: center
}

.blog-page .blog-box .blog-contain .blog-label svg {
    width: unset;
    height: unset
}

.blog-page .blog-box .blog-contain .blog-label>span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: calc(13px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    color: #222
}

.blog-page .blog-box .blog-contain .blog-label>span+span {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #eee
}

.blog-page .blog-box .blog-contain a {
    color: #222
}

.blog-page .blog-box .blog-contain a h3 {
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-size: calc(15px + 2*(100vw - 320px)/1600);
    transition: all .2s ease-in-out;
    letter-spacing: unset;
    margin: 0;
    color: #222
}

.blog-page .blog-box .blog-contain p {
    display: none
}

.blog-page .blog-box .blog-contain .blog-button {
    border: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    font-weight: 500;
    color: var(--theme-color);
    transition: all .2s ease-in-out;
    padding: 0;
    background-color: rgba(0, 0, 0, 0)
}

.blog-page .blog-box .blog-contain .blog-button svg {
    width: unset;
    height: unset;
    margin-left: 4px;
    font-size: 20px;
    line-height: 1;
    transform: rotate(-45deg);
    margin-top: -2px
}

.blog-page .blog-list {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    gap: 15px;
    border-radius: 0;
    padding: 0
}

@media(max-width: 575px) {
    .blog-page .blog-list {
        display: block
    }
}

.blog-page .blog-list .blog-image {
    margin: 0;
    border-radius: 0;
    height: calc(240px + 40*(100vw - 575px)/1345);
    width: calc(230px + 110*(100vw - 575px)/1345)
}

@media(max-width: 575px) {
    .blog-page .blog-list .blog-image {
        width: 100%
    }
}

.blog-page .blog-list .blog-contain {
    width: calc(100% - (230px + 110*(100vw - 575px)/1345) - 15px);
    padding: 0 20px 0 0
}

@media(max-width: 575px) {
    .blog-page .blog-list .blog-contain {
        width: 100%;
        padding: calc(12px + 8*(100vw - 320px)/256)
    }
}

.blog-page .blog-list .blog-contain a h3 {
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    transition: all .2s ease-in-out;
    letter-spacing: unset;
    margin: 0;
    color: #222
}

.blog-page .blog-list .blog-contain p {
    line-height: 1.6;
    color: #777;
    margin-bottom: 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    margin-top: calc(11px + 4*(100vw - 320px)/1600)
}

.blog-page .blog-list .blog-contain .blog-label {
    display: flex;
    flex-wrap: wrap;
    margin-block: 4px 0;
    align-items: center
}

@media(max-width: 380px) {
    .blog-page .blog-list .blog-contain .blog-label {
        display: block
    }
}

.blog-page .blog-list .blog-contain .blog-label>span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: calc(13px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    color: #777
}

.blog-page .blog-list .blog-contain .blog-label>span+span {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #eee
}

@media(max-width: 380px) {
    .blog-page .blog-list .blog-contain .blog-label>span+span {
        margin-left: unset;
        padding-left: unset;
        border-left: unset;
        margin-top: 4px
    }
}

.blog-page .blog-list .blog-contain .blog-button {
    border: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
    font-weight: 500;
    padding: 8px calc(11px + 5*(100vw - 320px)/1600);
    background-color: var(--theme-color);
    transition: all .2s ease-in-out;
    margin-top: calc(9px + 5*(100vw - 320px)/1600);
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    color: #fff
}

.blog-page .blog-list .blog-contain .blog-button svg {
    width: unset;
    height: unset;
    margin-left: 10px;
    font-size: 20px;
    line-height: 1;
    display: none
}

.blog-page .blog-list .blog-contain .blog-button:hover {
    color: #fff
}

.blog-page .blog-list .blog-contain .blog-button:hover::after {
    opacity: 1
}

.blog-page .blog-detail {
    padding: calc(11px + 9*(100vw - 320px)/1600);
    margin-top: 0
}

.blog-page .blog-detail h2 {
    font-size: calc(18px + 4*(100vw - 320px)/1600);
    line-height: 1.4
}

.blog-page .blog-detail label {
    font-size: 12px;
    padding: 7px 11px;
    border-radius: 50px;
    color: var(--theme-color);
    margin-bottom: calc(4px + 8*(100vw - 320px)/1600);
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: all .2s ease-in-out
}

.blog-page .blog-detail label::before {
    top: 0;
    left: 0;
    background-color: var(--theme-color);
    opacity: .1;
    z-index: -1;
    transition: all .2s ease-in-out
}

.blog-page .blog-detail a {
    display: block
}

.blog-page .blog-detail h3 {
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 600
}

.blog-page .blog-detail h5 {
    font-size: 15px;
    margin-top: 10px;
    font-weight: 500
}

.blog-page .blog-detail .blog-list {
    margin-top: 15px;
    gap: calc(14px + 8*(100vw - 320px)/1600)
}

.blog-page .blog-detail .blog-list span {
    margin-bottom: -5px;
    font-size: calc(13px + 1*(100vw - 320px)/1600)
}

.blog-page .blog-detail .blog-list .blog-social-icon {
    position: relative
}

.blog-page .blog-detail .blog-list .blog-social-icon .icon {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    background-color: #fff;
    transition: all .2s ease-in-out;
    opacity: 0
}

.blog-page .blog-detail .blog-list .blog-social-icon .icon li {
    transition: all .2s ease-in-out
}

.blog-page .blog-detail .blog-list .blog-social-icon .icon li .fab {
    font-size: 14px
}

.blog-page .blog-detail .blog-list .blog-social-icon:hover .icon {
    opacity: 1
}

.slider-nav .slider-image {
    border: 1px solid #eee;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
    height: calc(123px + 38*(100vw - 320px)/1600)
}

.slider-nav .slider-image button {
    position: absolute;
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--theme-color);
    border: unset
}

.slider-nav .slider-image button svg {
    position: relative;
    inset: unset;
    transform: unset;
    width: unset;
    height: unset
}

.slider-nav .slider-image span {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 6px
}

.slider-nav .slider-image span svg {
    color: var(--theme-color);
    width: unset;
    height: unset
}

.slider-nav .slider-image video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slider-nav .slider-image img {
    cursor: pointer;
    opacity: .6;
    width: 100%;
    object-fit: contain;
    height: 100%
}

.slider-nav .slider-image.active img {
    opacity: 1;
    border: unset
}

.slider-nav .slick-current .slider-image img {
    opacity: 1
}

.image-scroll div>div {
    padding-bottom: 20px
}

.image-scroll div>div:last-child {
    padding: 0
}

.product-right .trending-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.product-right .trending-text img {
    width: 30px
}

.product-right .trending-text h5 {
    margin-bottom: 0
}

.product-right .product-count {
    background-color: #f8f8f8;
    padding: 10px 12px;
    margin-bottom: 20px
}

.product-right .product-count img {
    margin-right: 6px
}

.product-right .product-count ul {
    margin-bottom: -4px
}

.product-right .product-count ul li {
    margin-bottom: 4px
}

.product-right .product-count ul li:first-child {
    margin-right: 14px
}

.product-right .security-img {
    width: 85%;
    max-width: 440px
}

.product-right .rating span {
    font-size: 20px;
    margin-right: 2px;
    color: #ff9800
}

.product-right p {
    margin-bottom: 0;
    line-height: 1.5em
}

.product-right .shipping-info li {
    display: block;
    font-size: 16px;
    color: #777;
    line-height: 1.8
}

.product-right .border-product {
    padding-top: 25px;
    border-top: 1px dashed #ddd
}

.product-right .delivery-info li {
    font-size: 16px;
    color: #777;
    line-height: 1.8
}

.product-right h2 {
    text-transform: uppercase;
    letter-spacing: unset;
    line-height: 1.3
}

.product-right .price-detail span {
    font-size: 16px;
    color: var(--theme-color)
}

.product-right h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-block: 15px 4px;
    color: var(--theme-color);
    font-weight: 600;
    letter-spacing: .01em;
    font-size: 26px
}

.product-right h3 del {
    font-size: 16px
}

.product-right h4 {
    color: #222;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px
}

.product-right h4 del {
    color: #777
}

.product-right h4 span {
    padding-left: 5px;
    color: var(--theme-color)
}

.product-right .product-buttons {
    margin-bottom: 20px
}

.product-right .product-buttons .btn-solid,
.product-right .product-buttons .btn-outline {
    padding: 12px 45px;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.product-right .product-buttons a:last-child {
    margin-left: 10px
}

.product-right .product-description h6 span {
    float: right
}

.product-right .product-description .qty-box {
    display: flex;
    align-items: center
}

.product-right .product-description .qty-box .input-group {
    justify-content: unset;
    width: unset
}

.product-right .product-description .qty-box .input-group .form-control {
    border-right: none
}

.product-right .product-icon {
    display: flex
}

.product-right .product-icon .product-social {
    margin-top: 5px
}

.product-right .product-icon .product-social li {
    padding-right: 30px
}

.product-right .product-icon .product-social li a {
    color: #333;
    transition: all .3s ease
}

.product-right .product-icon .product-social li a i {
    font-size: 18px
}

.product-right .product-icon .product-social li a:hover {
    color: var(--theme-color)
}

.product-right .product-icon .product-social li:last-child {
    padding-right: 0
}

.product-right .product-icon .wishlist-btn {
    background-color: rgba(0, 0, 0, 0);
    border: none
}

.product-right .product-icon .wishlist-btn i {
    border-left: 1px solid #ddd;
    font-size: 18px;
    padding-left: 10px;
    margin-left: 5px;
    transition: all .5s ease
}

.product-right .product-icon .wishlist-btn span {
    padding-left: 10px;
    font-size: 18px
}

.product-right .product-icon .wishlist-btn:hover i {
    color: var(--theme-color);
    transition: all .5s ease
}

.product-right .payment-card-bottom {
    margin-top: 10px
}

.product-right .payment-card-bottom ul li {
    padding-right: 10px
}

.product-right.product-form-box {
    border: 1px solid #eee;
    padding: calc(12px + 8*(100vw - 575px)/1345);
    border-radius: 0
}

@media(max-width: 767px) {
    .product-right.product-form-box {
        text-align: unset
    }
}

@media(max-width: 575px) {
    .product-right.product-form-box {
        border: unset;
        padding: 0
    }
}

.product-right.product-form-box .product-description .qty-box {
    margin-bottom: 5px
}

.product-right.product-form-box .product-description .qty-box .input-group {
    justify-content: center;
    width: 100%
}

.product-right.product-form-box .product-buttons {
    margin-bottom: 0
}

.product-right.product-form-box .product-buttons {
    margin-top: 0
}

.product-right .product-page-details .main-title {
    text-transform: capitalize
}

.product-right .product-page-details .product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-top: 10px
}

.product-right .product-page-details .product-rating .divider {
    color: #ddd
}

.product-right .product-page-details .product-rating .rating-list {
    color: #ffbc37
}

.product-right .product-page-details .product-rating a {
    color: var(--theme-color);
    text-decoration: underline
}

.product-right .product-page-details .price-text h3 {
    display: flex;
    align-items: center;
    gap: calc(5px + 3*(100vw - 320px)/1600);
    margin-block: calc(9px + 8*(100vw - 320px)/1600) calc(2px + 2*(100vw - 320px)/1600);
    color: var(--theme-color);
    font-weight: 600;
    letter-spacing: .01em;
    font-size: calc(20px + 6*(100vw - 320px)/1600)
}

.product-right .product-page-details .price-text h3 .discounted-price {
    font-weight: 500;
    padding: 5px calc(12px + .0025*(100vw - 320px));
    background-color: rgba(236, 137, 81, .1098039216);
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 0;
    margin-left: 12px;
    font-size: 16px
}

.product-right .product-page-details .price-text h3 .discounted-price del {
    font-size: 18px
}

.product-right .product-page-details .price-text span {
    color: #aaa;
    display: block
}

.product-right .product-page-details .size-delivery-info {
    display: flex;
    align-items: center;
    font-size: 16px;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    padding-block: 12px;
    margin-block: 14px 20px;
    gap: 20px
}

.product-right .product-page-details .size-delivery-info a {
    color: #7d7d7d;
    position: relative;
    display: flex;
    align-items: center
}

.product-right .product-page-details .size-delivery-info a span {
    position: relative;
    width: 1px;
    height: 26px;
    background-color: #eee;
    display: block;
    border-radius: 100%
}

.product-right .product-page-details .size-delivery-info a i {
    margin-right: 10px
}

.product-right .product-page-details .product-offer li {
    display: flex;
    gap: 20px;
    font-size: 14px
}

.product-right .product-page-details .product-offer li:last-child h5 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

.product-right .product-page-details .product-offer li h5 {
    margin-bottom: 17px;
    width: 85%;
    color: #7d7d7d;
    letter-spacing: .01em
}

.product-right .product-page-details .product-offer li h5 span {
    font-weight: 600
}

.product-right .product-page-details .product-offer li img {
    width: 40px;
    height: 40px;
    border-radius: 100%
}

.product-right .product-page-details .description-text {
    color: #777;
    line-height: 1.6;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    margin-top: 7px
}

.product-right .product-page-details .progress {
    background-color: #f6f6f6;
    height: 10px;
    border-radius: 14px
}

.product-right .product-page-details .progress .progress-bar {
    background-image: linear-gradient(to left, #438600, #8fd747)
}

.product-right .product-page-details .left-progressbar {
    margin-top: 20px
}

.product-right .product-page-details .left-progressbar h6 {
    color: #7d7d7d
}

.product-right .product-page-details .buy-box {
    margin-top: 17px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px
}

.product-right .product-page-details .buy-box a {
    color: #4c4c4c
}

.product-right .product-page-details .bordered-box {
    padding-top: calc(15px + 10*(100vw - 320px)/1600);
    margin-top: calc(15px + 10*(100vw - 320px)/1600);
    border-top: 1px dashed #ddd
}

.product-right .product-page-details .dashed-border-box {
    padding: 22px 28px;
    border: 1px dashed #ddd;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    margin-top: calc(24px + 10*(100vw - 320px)/1600)
}

.product-right .product-page-details .dashed-border-box h4 {
    margin-top: -30px;
    background-color: #fff;
    padding-inline: 8px;
    width: max-content
}

@media(max-width: 575px) {
    .product-right .product-page-details .dashed-border-box h4 {
        margin-inline: auto
    }
}

.product-right .product-page-details .shipping-info {
    display: grid;
    line-height: 1.9;
    color: #5f5f5f;
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 0 6px;
    padding-left: 20px;
    margin-bottom: -7px
}

.product-right .product-page-details .shipping-info li {
    font-size: 16px;
    display: list-item;
    color: #7d7d7d
}

.product-right .product-page-details .qty-section {
    display: flex;
    align-items: center;
    gap: 10px
}

.product-right .product-page-details .qty-section .qty-box .input-group {
    background-color: #f8f8f8;
    padding: 6px 6px;
    overflow: hidden;
    border: 1px solid #eee
}

.product-right .product-page-details .qty-section .qty-box .input-group input {
    background-color: #f8f8f8;
    border: none;
    padding: 6px 5px;
    width: 90px
}

.product-right .product-page-details .qty-section .qty-box .input-group button {
    background-color: #fff !important;
    box-shadow: 0 0 8px #e8e8e8;
    border: none;
    padding: 5px 12px
}

.product-right .product-page-details .variation-box {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px
}

.product-right .product-page-details .variation-box .sub-title {
    width: 60px;
    margin-bottom: 0
}

.product-right .product-page-details .wishlist-btn-group {
    display: flex;
    align-items: center;
    gap: 10px
}

.product-right .product-page-details .wishlist-btn-group button {
    padding: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f8f8f8;
    transition: none;
    font-size: 16px;
    line-height: 1;
    color: #6a6a6a
}

.product-right .product-page-details .sub-title {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: .01em
}

.product-right .product-page-details .quantity-variant {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f8f8;
    padding: 6px 6px;
    overflow: hidden;
    border: 1px solid #eee;
    margin: 0
}

.product-right .product-page-details .quantity-variant.active {
    background-color: #fff !important;
    box-shadow: 0 0 8px #e8e8e8
}

.product-right .product-page-details .quantity-variant.active button {
    background-color: #fff !important
}

.product-right .product-page-details .quantity-variant li {
    padding: 6px 10px;
    background-color: #f8f8f8 !important
}

.product-right .product-page-details .quantity-variant li button {
    border: none;
    font-size: 14px;
    font-weight: 500;
    background-color: #f8f8f8;
    color: #222
}

.product-right .product-page-details .quantity-variant.color li span {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: block
}

.product-right .product-page-details .product-buttons {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.product-right .product-page-details .product-buttons .btn {
    padding: 13px 40px
}

.product-right .product-page-details .product-buttons .btn.btn-sm {
    padding: 13px 18px
}

.product-right .product-page-details .product-buttons .btn-animation i {
    font-size: 15px
}

.product-right .product-page-details .trending-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.product-right .product-page-details .trending-text img {
    width: 30px
}

.product-right .product-page-details .trending-text h5 {
    margin-bottom: 0
}

.product-right .product-page-details .top-title-panel {
    display: flex;
    justify-content: space-between
}

.product-right .product-page-details.detail-box {
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f8f8
}

.product-right .product-page-details.detail-box .progress {
    background-color: #fff
}

.product-right .product-page-details.detail-box .quantity-variant {
    background-color: #fff !important
}

.product-right .product-page-details.detail-box .quantity-variant li {
    background-color: #fff !important
}

.product-right .product-page-details.detail-box .quantity-variant li button {
    background-color: #fff
}

.product-right .product-page-details.detail-box .quantity-variant li.active {
    background-color: #f8f8f8 !important;
    box-shadow: none
}

.product-right .product-page-details.detail-box .quantity-variant li.active button {
    background-color: #f8f8f8 !important
}

.product-right .product-page-details.detail-box .qty-section .qty-box .input-group {
    background-color: #fff
}

.product-right .product-page-details.detail-box .qty-section .qty-box .input-group input {
    background-color: #fff
}

.product-right .product-page-details.detail-box .qty-section .qty-box .input-group button {
    background-color: #f8f8f8 !important;
    box-shadow: none
}

.product-right.product-page-details .shipping-info {
    grid-template-columns: 1fr 1fr
}

@media(max-width: 1399px)and (min-width: 1200px) {
    .product-right.product-page-details .shipping-info {
        grid-template-columns: 1fr
    }
}

@media(max-width: 575px) {
    .product-right.product-page-details .shipping-info {
        grid-template-columns: 1fr
    }
}

.product-right.product-page-details .size-delivery-info {
    border-bottom: unset;
    padding-bottom: unset
}

.product-right.product-page-details .sub-title {
    justify-content: center
}

.product-right.product-page-details .dashed-border-box img {
    width: 80%
}

.more-less-box .more-text {
    max-height: 380px;
    overflow: hidden
}

.more-less-box.more .more-text {
    max-height: unset
}

.more-less-box .more-lest-btn {
    display: flex;
    align-items: center;
    gap: 6px
}

.more-less-box .more-lest-btn svg {
    width: unset;
    height: unset;
    font-size: 19px;
    line-height: 1
}

.product-description-box.product-page-details .sub-title {
    justify-content: unset
}

@media(max-width: 767px) {
    .product-description-box.product-page-details .sub-title {
        justify-content: center
    }
}

.product-description-box.product-page-details .description-text {
    display: none
}

.product-description-box.product-page-details .accordion {
    margin-top: 15px
}

.product-accordion .btn-link {
    color: #222
}

.product-accordion .btn-link:hover {
    text-decoration: none
}

.product-accordion .card {
    border: none
}

.product-accordion .accordion .accordion-item {
    border: unset
}

.product-accordion .accordion .accordion-item+.accordion-item {
    margin-top: 17px
}

.product-accordion .accordion .accordion-item .accordion-header {
    padding: 0;
    border: unset
}

.product-accordion .accordion .accordion-item .accordion-header .accordion-button {
    z-index: 0;
    box-shadow: unset;
    line-height: 1.3;
    color: #232323;
    text-align: center;
    padding: calc(10px + 4*(100vw - 320px)/1600) calc(14px + 5*(100vw - 320px)/1600);
    text-decoration: unset;
    border: 1px solid #eee;
    font-weight: 500;
    background-color: #f8f8f8;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    text-transform: unset;
    margin: 0;
    border-radius: 0
}

.product-accordion .accordion .accordion-item .accordion-header .accordion-button::after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: unset;
    height: unset;
    background: unset;
    font-size: 22px;
    line-height: 1
}

.product-accordion .accordion .accordion-item .accordion-header .accordion-button h5 span {
    font-weight: 500;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    padding: 0;
    text-decoration: unset;
    text-transform: capitalize;
    border: unset
}

.product-accordion .accordion .accordion-item .accordion-collapse.card-body {
    padding: 0
}

.product-accordion .accordion .accordion-item .accordion-body {
    padding: 16px 6px 0
}

.product-accordion .accordion .accordion-item .accordion-body p {
    line-height: 1.7;
    color: #626262
}

.product-accordion .accordion .accordion-item .accordion-body .shipping-info {
    grid-template-columns: 1fr 1fr
}

@media(max-width: 480px) {
    .product-accordion .accordion .accordion-item .accordion-body .shipping-info {
        grid-template-columns: 1fr
    }
}

.product-accordion .accordion .accordion-item .accordion-body>*:first-child .bordered-box {
    padding: 0;
    margin: 0;
    border: unset
}

.product-accordion .accordion .bordered-box {
    padding-top: 0;
    margin-top: 0;
    border-top: 0
}

.product-accordion .accordion .bordered-box+.bordered-box {
    padding-top: calc(15px + 10*(100vw - 320px)/1600);
    margin-top: calc(15px + 10*(100vw - 320px)/1600);
    border-top: 1px dashed #ddd
}

.product-accordion .card-body {
    width: 100%;
    height: auto;
    padding: 16px 6px 0
}

.product-accordion .card-header {
    padding: 5px 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, .125);
    background-color: rgba(127, 127, 127, .03)
}

.product-related h2 {
    text-transform: capitalize;
    font-size: calc(18px + 8*(100vw - 320px)/1600);
    color: #222;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px
}

.rating {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: calc(0px + 2*(100vw - 320px)/1600)
}

.rating i {
    font-size: calc(14px + .0025*(100vw - 320px));
    margin-right: calc(0px + .00125*(100vw - 320px));
    line-height: 1;
    color: #ff9800
}

.rating i.fill {
    color: #ffa200
}

.rating span {
    margin: 0
}

.rating svg {
    width: unset;
    height: unset;
    font-size: calc(12px + 6*(100vw - 320px)/1600);
    color: #ff9800
}

.rating svg.fill {
    color: #ffa200
}

.outer-border {
    border: 1px solid #eee;
    overflow: hidden
}

.tab-product .nav-material.nav-tabs {
    display: flex;
    align-items: center;
    flex-wrap: nowrap
}

.tab-product .nav-material.nav-tabs.tab-style .nav-link {
    padding: 8px 10px
}

.tab-product .nav-material.nav-tabs .nav-item .nav-link {
    color: #212121;
    text-align: center;
    padding: 0 15px 20px 15px;
    text-transform: uppercase;
    border: 0;
    font-weight: 500;
    font-size: 18px
}

.tab-product .nav-material.nav-tabs .nav-item .material-border {
    border-bottom: 2px solid var(--theme-color);
    opacity: 0
}

.tab-product .nav-material.nav-tabs .nav-link.active {
    color: var(--theme-color)
}

.tab-product .nav-material.nav-tabs .nav-link.active~.material-border {
    transition: all .3s ease;
    opacity: 1
}

.tab-product .theme-form input {
    border-color: #ddd;
    font-size: 15px;
    padding: 15px 25px;
    margin-bottom: 15px;
    height: inherit;
    text-align: left
}

.tab-product .theme-form .btn-solid,
.tab-product .theme-form .btn-outline {
    margin: 0 auto
}

.tab-product .theme-form textarea {
    border-color: #ddd;
    font-size: 15px;
    padding: 17px 25px;
    margin-bottom: 15px;
    height: inherit
}

.tab-product .tab-content.nav-material {
    padding: calc(11px + 4*(100vw - 320px)/1600)
}

.tab-product .tab-content.nav-material p {
    line-height: 1.5;
    letter-spacing: .03em;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.tab-product .tab-content.nav-material p:last-child {
    margin-bottom: 0
}

.tab-product.product-details-contain {
    padding-top: calc(22px + 26*(100vw - 320px)/1600)
}

.tab-product.product-details-contain>.container {
    padding: 0
}

.tab-product.product-details-contain>.container>.row {
    --bs-gutter-y: 0;
    --bs-gutter-x: 0;
    border: 1px solid #eee;
    overflow: hidden
}

.tab-product.product-details-contain .nav-tabs {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: calc(11px + 4*(100vw - 320px)/1600);
    gap: calc(12px + 6*(100vw - 320px)/1600);
    border-bottom: 1px solid #eee;
    overflow: auto;
    background-color: #f8f8f8
}

.tab-product.product-details-contain .nav-tabs .nav-item .nav-link {
    color: #232323;
    text-align: center;
    padding: calc(8px + 2*(100vw - 320px)/1600) calc(16px + 9*(100vw - 320px)/1600);
    border: 1px solid #eee;
    font-weight: 500;
    background-color: #fff;
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    text-transform: unset;
    margin: 0;
    white-space: nowrap;
    border-radius: 0;
    cursor: pointer
}

.tab-product.product-details-contain .nav-tabs .nav-item .nav-link.active {
    color: var(--theme-color);
    font-weight: 600;
    background-color: rgba(236, 137, 81, .07);
    border-color: rgba(236, 137, 81, 0.5882352941)
}

.tab-product.product-details-contain .nav-tabs .nav-item .material-border {
    display: none
}

.tab-product.product-details-contain .tab-content .tab-pane .no-data-added {
    background-color: rgba(0, 0, 0, 0)
}

.tab-product .product-tab-description p:last-child {
    margin-bottom: 0
}

.tab-product .product-tab-description p strong {
    font-weight: 600;
    color: #222
}

.tab-product .product-tab-description .part .inner-title {
    font-weight: 600;
    text-transform: capitalize
}

.tab-product .product-tab-description .part p:last-child {
    margin-bottom: 0
}

.tab-product .product-tab-description .part p strong {
    font-weight: 600;
    color: #222
}

.tab-product .product-tab-description .ckeditor-content p strong {
    font-weight: 600;
    color: #222
}

.tab-product .title {
    padding-right: 45px;
    color: var(--theme-color);
    padding-bottom: 20px
}

.tab-product .product-box {
    position: relative;
    margin: 5px
}

.tab-product .product-box:hover {
    box-shadow: 0 0 12px 0 #ddd
}

.tab-product .product-box .img-block {
    min-height: unset
}

.tab-product .product-box .cart-info {
    position: absolute;
    padding: 10px 0;
    top: 25%;
    right: 15px;
    width: 40px;
    margin-right: 0
}

.tab-product .product-box .cart-info i {
    padding-right: 0
}

.tab-product .product-box .cart-info a,
.tab-product .product-box .cart-info button {
    color: #333;
    transition: all .3s ease;
    background-color: #fff;
    height: 35px;
    width: 35px;
    margin: 7px 0;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    box-shadow: 0 0 12px 0 #ddd
}

.tab-product .product-box .cart-info a :hover,
.tab-product .product-box .cart-info button :hover {
    transition: all .3s ease;
    color: var(--theme-color)
}

.tab-product .product-box a {
    color: #0072bb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px
}

.tab-product .product-box .product-details {
    position: relative
}

.tab-product .product-box .product-details h6 {
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize
}

.tab-product .product-box .product-details .price {
    padding-bottom: 10px;
    font-size: 16px;
    color: var(--theme-color)
}

.product-load-more .col-grid-box {
    display: none
}

.collection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #222;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    cursor: pointer
}

.collection-overlay.show {
    opacity: .3;
    visibility: visible
}

.collection-wrapper .collection-filter {
    position: sticky;
    top: 120px;
    left: 0
}

@media(max-width: 991px) {
    .collection-wrapper .collection-filter {
        position: fixed;
        height: 100vh;
        top: 0;
        left: -350px
    }

    .collection-wrapper .collection-filter.show {
        left: 0
    }
}

.collection-wrapper .collection-filter .collection-filter-block {
    position: relative;
    inset: unset
}

.load-more-sec {
    margin-top: 40px;
    text-align: center
}

.load-more-sec a {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    background-color: #f8f8f8;
    width: 100%;
    color: var(--theme-color)
}

.load-more-sec a:empty {
    display: none
}

.four-image-sec {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    overflow: hidden
}

.four-image-sec video {
    height: 320px;
    object-fit: cover
}

.top-filter {
    position: absolute;
    z-index: 1;
    top: 80px;
    left: 0;
    width: 100%;
    display: none
}

@media(max-width: 991px) {
    .top-filter {
        position: fixed;
        left: 0;
        top: 0;
        width: calc(300px + 50*(100vw - 320px)/671);
        height: 100vh;
        background-color: #fff;
        z-index: 9;
        overflow: auto
    }

    .top-filter .collection-filter {
        position: relative !important;
        inset: unset;
        width: unset;
        height: unset;
        background-color: rgba(0, 0, 0, 0);
        z-index: 0;
        box-shadow: unset
    }
}

.top-filter ::-webkit-scrollbar {
    width: 4px
}

.top-filter ::-webkit-scrollbar-track {
    background-color: #f1f1f1
}

.top-filter ::-webkit-scrollbar-thumb {
    background-color: #888
}

.top-filter ::-webkit-scrollbar-thumb:hover {
    background-color: #555
}

@media(max-width: 991px) {
    .top-filter .collection-filter-block {
        width: 100%
    }
}

@media(max-width: 991px) {
    .top-filter .collection-filter-block .accordion-item {
        margin: 0;
        padding: 0
    }
}

.top-filter .collection-filter-block .accordion-item+.accordion-item {
    margin-top: 0;
    padding-top: 0;
    border-top: unset
}

@media(max-width: 991px) {
    .top-filter .collection-filter-block .accordion-item+.accordion-item {
        margin-top: 13px;
        padding-top: 13px;
        border-top: 1px solid #eee
    }
}

.top-filter .collection-filter-block .accordion-item:nth-child(n+5) {
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid #eee
}

.top-filter .button_bottom {
    padding-bottom: 20px
}

.filter-bottom-title {
    position: relative;
    cursor: pointer
}

.filter-bottom-title:after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 19px;
    color: #444
}

.sticky-bottom-cart {
    position: fixed;
    bottom: -200px;
    width: 100%;
    z-index: 8;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 0 100px rgba(0, 0, 0, .06);
    transition: all .5s ease;
    left: 50%;
    transform: translateX(-50%) scale(0.95)
}

@media(max-width: 576px) {
    .sticky-bottom-cart {
        width: calc(100% - 24px)
    }
}

.sticky-bottom-cart .qty-box .input-group {
    justify-content: center
}

.sticky-bottom-cart .cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 991px) {
    .sticky-bottom-cart .cart-content .btn-solid {
        padding: 9px 19px
    }
}

.sticky-bottom-cart .cart-content .middle-value {
    display: flex;
    gap: 20px;
    align-items: center
}

.sticky-bottom-cart .cart-content .middle-value .qty-box input {
    background-color: #f8f8f8;
    border-color: #eee
}

.sticky-bottom-cart .cart-content .middle-value .qty-box .input-group span button {
    background: #f8f8f8 !important;
    border-color: #eee
}

.sticky-bottom-cart .product-image {
    display: flex;
    align-items: center
}

.sticky-bottom-cart .product-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: top;
    background-color: #f8f8f8
}

.sticky-bottom-cart .product-image .content {
    margin-left: 12px
}

.sticky-bottom-cart .product-image .content h5,
.sticky-bottom-cart .product-image .content h6 {
    margin-bottom: 0
}

.sticky-bottom-cart .product-image .content h5 {
    font-size: 18px;
    font-weight: 500
}

.sticky-bottom-cart .product-image .content h6 {
    font-size: 15px;
    color: #222
}

.sticky-bottom-cart .product-image .content h6 del {
    margin-left: 7px
}

.sticky-bottom-cart .product-image .content h6 span {
    color: var(--theme-color);
    margin-left: 5px
}

.sticky-bottom-cart .product-right {
    position: relative;
    inset: unset
}

@media(max-width: 1199px) {
    .sticky-bottom-cart .product-right {
        margin: 0
    }
}

.sticky-bottom-cart .selection-section {
    display: flex;
    align-items: center;
    margin: 0 auto;
    text-align: center
}

@media(max-width: 767px) {
    .sticky-bottom-cart .selection-section {
        width: 145px;
        margin: 0
    }
}

.sticky-bottom-cart .selection-section h4 {
    margin-bottom: 0;
    margin-right: 10px;
    font-weight: 500
}

@media(max-width: 1199px) {
    .sticky-bottom-cart .selection-section h4 {
        display: none
    }
}

.sticky-bottom-cart .selection-section .variation-box {
    display: flex;
    align-items: center;
    gap: 0
}

.sticky-bottom-cart .selection-section .variation-box h4 {
    margin-bottom: 0
}

.sticky-bottom-cart .selection-section .form-control {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    text-transform: uppercase;
    font-size: 1rem;
    padding: .375rem 2.25rem .375rem .75rem;
    max-width: 7.8rem
}

.sticky-bottom-cart .selection-section .form-control:focus {
    box-shadow: none
}

@media(max-width: 575px) {
    .sticky-bottom-cart .selection-section .form-control {
        width: max-content
    }
}

@media(max-width: 1399px) {
    .sticky-bottom-cart .add-btn .ring-animation {
        display: none !important
    }
}

.sticky-bottom-cart .add-btn .ring-animation svg {
    font-size: calc(15px + 5*(100vw - 320px)/1600);
    margin-top: calc(-3px + -4*(100vw - 320px)/1600)
}

.stickyCart .sticky-bottom-cart {
    bottom: 20px;
    transition: all .5s ease;
    transform: translateX(-50%) scale(1)
}

.stickyCart .recently-purchase.show {
    bottom: 125px
}

.quick-view {
    width: 100%;
    max-width: 1080px;
    max-height: 600px;
    position: relative
}

.checkout-page .checkout-title {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee
}

.checkout-page .checkout-title h3 {
    color: #222;
    font-weight: 700
}

.checkout-page .order-btn {
    width: 100%;
    margin-top: calc(10px + 6*(100vw - 320px)/1600);
    background-color: var(--theme-color);
    border-radius: 0;
    padding: calc(10px + 3*(100vw - 320px)/1600);
    color: #fff;
    font-weight: 600;
    letter-spacing: unset;
    text-transform: unset;
    font-size: calc(16px + 4*(100vw - 320px)/1600);
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0)
}

.checkout-page .order-btn:hover {
    border-color: var(--theme-color);
    background-color: rgba(0, 0, 0, 0);
    color: var(--theme-color)
}

.checkout-page .promo-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px
}

.checkout-page .promo-title a {
    font-size: 15px;
    cursor: pointer;
    color: #222
}

.checkout-page .checkout-form .custom-select-box .form-control {
    height: 100%;
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border-radius: 0;
    border-color: #eee;
    background-color: #fff;
    font-size: 14px
}

.checkout-page .checkout-form .custom-select-box .form-control.form-select {
    cursor: pointer
}

.checkout-page .checkout-form .checkout-details {
    position: sticky;
    top: 120px;
    left: 0;
    background-color: #f8f8f8;
    padding: calc(18px + 2*(100vw - 320px)/1600) calc(15px + 5*(100vw - 320px)/1600);
    border: 1px solid #eee;
    border-radius: 0
}

.checkout-page .checkout-form .checkout-details .coupon-box {
    padding: 10px;
    border: 1px solid #eee;
    background-color: #fff
}

.checkout-page .checkout-form .checkout-details .coupon-box .coupon-content {
    margin-top: 0px
}

.checkout-page .checkout-form .checkout-details .coupon-box .coupon-content .coupon-apply {
    padding-top: 9px
}

.checkout-page .checkout-form .checkout-details .card-name {
    display: block
}

.checkout-page .checkout-form .checkout-details .card-name h6 {
    line-height: 1.4;
    font-weight: 600
}

.checkout-page .checkout-form .checkout-details .promo-code-box {
    margin-bottom: 10px;
    margin-top: 14px
}

.checkout-page .checkout-form .checkout-details .promo-code-box h5 {
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    color: #222;
    line-height: 1.3;
    margin: 0
}

.checkout-page .checkout-form .checkout-details .promo-code-box>a {
    font-size: 15px;
    cursor: pointer;
    color: var(--theme-color)
}

.checkout-page .checkout-form .checkout-details .promo-code-box .coupon-input-box {
    flex-wrap: nowrap;
    gap: calc(8px + 7*(100vw - 320px)/1600);
    display: flex
}

.checkout-page .checkout-form .checkout-details .promo-code-box .form-control {
    height: auto;
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border-radius: 0;
    border: 1px solid #eee;
    font-size: 14px
}

.checkout-page .checkout-form .checkout-details .promo-code-box .apply-button {
    white-space: nowrap;
    height: 100%;
    border: 1px solid var(--theme-color);
    border-radius: 0;
    font-weight: 600;
    color: var(--theme-color);
    letter-spacing: unset;
    text-transform: none;
    background-color: rgba(0, 0, 0, 0)
}

.checkout-page .checkout-form .checkout-details .promo-code-box .apply-button:hover {
    background-color: var(--theme-color);
    color: #fff
}

.checkout-page .checkout-form .checkout-details .promo-code-box .invalid-feedback {
    font-size: 14px;
    letter-spacing: unset;
    font-weight: 500
}

.checkout-page .checkout-form .checkout-details .order-box {
    margin: 0
}

.checkout-page .checkout-form .checkout-details .order-box .title-box {
    padding-bottom: 8px
}

.checkout-page .checkout-form .checkout-details .order-box .title-box h4 {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    font-weight: 600;
    letter-spacing: unset;
    color: #222;
    line-height: 1.3;
    margin: 0
}

.checkout-page .checkout-form .checkout-details .order-box .title-box p {
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    line-height: 1.5;
    font-weight: 500;
    margin: 4px 0 0
}

.checkout-page .checkout-form .checkout-details .offer-apply-box {
    display: flex;
    gap: 9px;
    margin-top: 25px;
    position: relative;
    border-radius: 0;
    padding: 8px 13px;
    overflow: hidden;
    border: 1px dashed #198754;
    background-color: rgba(25, 135, 84, .18)
}

.checkout-page .checkout-form .checkout-details .offer-apply-box img {
    width: 28px;
    height: 28px
}

.checkout-page .checkout-form .checkout-details .offer-apply-box h4 {
    font-size: 16px !important
}

.checkout-page .checkout-form .checkout-details .offer-apply-box p {
    margin: 3px 0 0 !important;
    font-size: 14px !important
}

.checkout-page .checkout-form .checkout-details .offer-apply-box .close-coupon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
    line-height: 1;
    color: #198754;
    font-weight: 500
}

.checkout-page .checkout-form .check-out .form-group:last-child {
    margin-bottom: -5px
}

.checkout-page .checkout-form .check-out .form-group:last-child label {
    margin-bottom: -5px
}

.checkout-page .checkout-form .form-group {
    position: relative;
    margin-bottom: 25px
}

.checkout-page .checkout-form .form-group h3 {
    color: #444;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 30px
}

.checkout-page .checkout-form .form-group .field-label {
    line-height: 24px;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700
}

.checkout-page .checkout-form .form-group .field-label span {
    font-size: 16px;
    color: #222;
    font-weight: 600
}

.checkout-page .checkout-form .form-group label {
    color: #777
}

.checkout-page .checkout-form select,
.checkout-page .checkout-form textarea {
    width: 100%;
    padding: 0 22px;
    height: 45px;
    border: 1px solid #ddd
}

.checkout-page .checkout-form .no-data-added,
.checkout-page .checkout-form .tab-category {
    position: sticky;
    top: 105px
}

.checkout-page .check-box {
    line-height: 24px;
    font-size: 14px;
    font-weight: normal;
    padding-top: 5px
}

.checkout-page .check-box label {
    position: relative;
    top: -1px;
    font-weight: normal;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    color: #333
}

.checkout-page .lower-content {
    margin-top: 30px
}

.checkout-page .lower-content .order-column {
    margin-bottom: 40px
}

.checkout-page .checkout-form-section {
    display: grid;
    gap: calc(20px + .0125*(100vw - 320px))
}

.checkout-page .checkout-form-section .checkout-title1 h2 {
    font-weight: 600;
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    letter-spacing: unset;
    text-transform: unset;
    margin: 0;
    line-height: 1.3;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
    padding-bottom: 8px
}

.checkout-page .checkout-form-section .checkout-form .country-input .custom-select-box,
.checkout-page .checkout-form-section .country-input .country-input .custom-select-box {
    height: calc(40px + 7*(100vw - 320px)/1600)
}

.checkout-page .checkout-form-section .checkout-form .country-input .custom-select-box input,
.checkout-page .checkout-form-section .country-input .country-input .custom-select-box input {
    cursor: pointer;
    background-color: #fff
}

.checkout-page .checkout-form-section .checkout-form .country-input-box .form-box .form-control,
.checkout-page .checkout-form-section .country-input .country-input-box .form-box .form-control {
    padding-left: calc(108px + 20*(100vw - 320px)/1600)
}

.checkout-page .checkout-form-section .checkout-form .form-box,
.checkout-page .checkout-form-section .country-input .form-box {
    position: relative
}

.checkout-page .checkout-form-section .checkout-form .form-box .form-label,
.checkout-page .checkout-form-section .country-input .form-box .form-label {
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    margin-bottom: 4px;
    color: #777
}

.checkout-page .checkout-form-section .checkout-form .form-box .form-control,
.checkout-page .checkout-form-section .country-input .form-box .form-control {
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border-radius: 0;
    background-color: #fff;
    font-size: calc(14px + 0*(100vw - 320px)/1600)
}

.checkout-page .checkout-form-section .checkout-form .form-box .form-control::-webkit-inner-spin-button,
.checkout-page .checkout-form-section .country-input .form-box .form-control::-webkit-inner-spin-button {
    display: none
}

.checkout-page .checkout-form-section .checkout-form .form-checkbox,
.checkout-page .checkout-form-section .country-input .form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px
}

.checkout-page .checkout-form-section .checkout-form .form-checkbox .form-check-input,
.checkout-page .checkout-form-section .country-input .form-checkbox .form-check-input {
    width: 21px;
    height: 21px;
    background: unset;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: unset;
    border: unset;
    filter: unset;
    position: relative;
    margin: 0;
    vertical-align: unset
}

.checkout-page .checkout-form-section .checkout-form .form-checkbox .form-check-input::before,
.checkout-page .checkout-form-section .country-input .form-checkbox .form-check-input::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    transition: transform .4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0);
    left: 4px;
    top: 5px;
    z-index: 1;
    border: 2px solid var(--theme-color);
    border-top-style: none;
    border-right-style: none
}

.checkout-page .checkout-form-section .checkout-form .form-checkbox .form-check-input::after,
.checkout-page .checkout-form-section .country-input .form-checkbox .form-check-input::after {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    background-color: #fff;
    border: 2px solid #ececec;
    cursor: pointer
}

.checkout-page .checkout-form-section .checkout-form .form-checkbox .form-check-input:checked::before,
.checkout-page .checkout-form-section .country-input .form-checkbox .form-check-input:checked::before {
    transform: rotate(-45deg) scale(1)
}

.checkout-page .checkout-form-section .checkout-form .form-check-label,
.checkout-page .checkout-form-section .country-input .form-check-label {
    color: #4a5568;
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    margin: 0;
    line-height: 1
}

.checkout-page .checkout-form-section .delivery-option,
.checkout-page .checkout-form-section .payment-option {
    height: 100%;
    padding: calc(17px + 9*(100vw - 320px)/1600);
    background-color: #fff;
    height: 100%;
    border-radius: 0
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check,
.checkout-page .checkout-form-section .payment-option .custom-form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input {
    width: calc(15px + .00125*(100vw - 320px));
    height: calc(15px + .00125*(100vw - 320px));
    margin: 0;
    float: unset;
    margin-top: 4px;
    background-color: unset;
    position: relative;
    filter: unset;
    border: unset
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input::before,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 100%;
    transition: all .3s ease-in-out;
    border: 1px solid #eee
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input::after,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 11px;
    height: 11px;
    background-color: var(--theme-color);
    transition: all .3s ease-in-out;
    border-radius: 100%
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0)
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked::before,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked::before {
    border-color: var(--theme-color)
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked::after,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked::after {
    transform: translate(-50%, -50%) scale(1)
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked~label,
.checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked~label {
    color: #222
}

.checkout-page .checkout-form-section .delivery-option .custom-form-check label,
.checkout-page .checkout-form-section .payment-option .custom-form-check label {
    cursor: pointer;
    font-size: calc(15px + 2*(100vw - 320px)/1600);
    padding-left: 12px;
    font-weight: 500;
    margin-bottom: 0
}

.checkout-page .checkout-form-section .checkbox-main-box {
    border-radius: 0;
    padding: calc(14px + 15*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    border: 1px solid #eee;
    position: relative
}

.checkout-page .future-option {
    padding: calc(17px + 9*(100vw - 320px)/1600);
    position: relative;
    background-color: #fff
}

.checkout-page .future-option .delivery-items h4 {
    margin-bottom: 16px;
    color: #222;
    font-weight: 500
}

.checkout-page .future-option ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: calc(10px + 13*(100vw - 320px)/1600)
}

@media(max-width: 1399px) {
    .checkout-page .future-option ul {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 991px) {
    .checkout-page .future-option ul {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media(max-width: 767px) {
    .checkout-page .future-option ul {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 480px) {
    .checkout-page .future-option ul {
        grid-template-columns: 1fr
    }
}

.checkout-page .future-option ul li.active a {
    color: #fff;
    background-color: var(--theme-color)
}

.checkout-page .future-option ul li a {
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #000;
    padding: 12px 8px;
    font-weight: 500
}

.order-box {
    position: relative;
    margin-bottom: 50px
}

.order-box .box-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999
}

.order-box .box-loader .loader-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    inset: unset;
    background-color: #f8f8f8
}

.order-box .title-box {
    position: relative;
    padding-bottom: 25px;
    color: #444;
    font-weight: 600;
    font-size: 22px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px
}

.order-box .title-box i {
    font-weight: 400
}

.order-box .title-box span {
    position: relative;
    text-align: right;
    line-height: 1.2em
}

.order-box .qty {
    position: relative
}

.order-box .qty li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    color: #444;
    line-height: 20px;
    margin-bottom: 18px
}

.order-box .qty li .cart-image {
    width: 60px
}

.order-box .qty li:last-child {
    margin: 0
}

.order-box .qty li .cart-content {
    width: calc(100% - 60px - 11px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px
}

.order-box .qty li .cart-content h4 {
    line-height: 1.3;
    font-weight: 500;
    font-size: calc(15px + 1*(100vw - 320px)/1600);
    margin-bottom: 4px;
    letter-spacing: unset;
    text-transform: unset
}

.order-box .qty li .cart-content h5 {
    font-weight: 500;
    margin: 0;
    font-size: calc(16px + 1*(100vw - 320px)/1600);
    line-height: 1.3
}

.order-box .qty li span {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    text-align: right;
    line-height: 1.3;
    color: #222;
    font-weight: 600
}

.order-box .sub-total {
    position: relative
}

.order-box .sub-total li {
    position: relative;
    display: flex;
    gap: 9px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    line-height: 1.3;
    justify-content: space-between;
    width: 100%
}

.order-box .sub-total li+li {
    margin-top: 14px
}

.order-box .sub-total li.border-cls {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0
}

.order-box .sub-total li.border-cls .form-check-label {
    font-size: 14px;
    font-weight: 500
}

.order-box .sub-total li .count {
    text-align: right;
    position: relative;
    font-size: 17px;
    line-height: 20px;
    color: var(--theme-color);
    font-weight: 500
}

.order-box .sub-total li h4 {
    font-size: 16px;
    font-weight: 600;
    color: #777;
    line-height: 1.3;
    letter-spacing: unset;
    margin: 0
}

.order-box .sub-total li h4+h4 {
    text-align: left
}

.order-box .sub-total li .txt-primary {
    color: var(--theme-color)
}

.order-box .sub-total li .check-it {
    margin-left: 14px;
    margin-right: 0;
    width: 20px;
    height: 20px;
    border: unset;
    position: relative;
    filter: unset
}

.order-box .sub-total li .check-it::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    transition: transform .4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0);
    left: 4px;
    top: 4px;
    z-index: 1;
    border: 2px solid var(--theme-color);
    border-top-style: none;
    border-right-style: none
}

.order-box .sub-total li .check-it::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 2px solid #ececec;
    cursor: pointer
}

.order-box .sub-total li .check-it:checked::before {
    transform: rotate(-45deg) scale(1)
}

.order-box .sub-total .shopping-option label {
    position: relative;
    font-size: 16px;
    line-height: 32px;
    padding-left: 10px;
    color: #6f6f6f
}

.order-box .sub-total .shipping {
    width: 35%;
    float: right
}

.order-box .total {
    position: relative;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid #eee
}

.order-box .total li {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    font-size: 18px
}

.order-box .total li+li {
    margin-top: 8px
}

.order-box .total li .count {
    position: relative;
    font-size: 18px;
    text-align: right;
    line-height: 1.3;
    color: var(--theme-color);
    font-weight: 600
}

.order-box .total li:last-child {
    font-size: calc(18px + 3*(100vw - 320px)/1600)
}

.order-box .total li:last-child .count {
    font-size: calc(18px + 3*(100vw - 320px)/1600)
}

.checkout-section-2 .left-sidebar-checkout .empty-box h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    margin: 0;
    padding-block: 24px;
    color: #9b9b9b;
    text-transform: capitalize
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul {
    display: flex;
    flex-wrap: wrap;
    gap: calc(20px + 20*(100vw - 320px)/1600)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li {
    position: relative;
    width: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li:last-child .checkout-box::before {
    content: none
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box {
    padding: calc(14px + 15*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    border-radius: 0;
    border: 1px solid #eee;
    position: relative
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .payment-method ul {
    display: flex;
    align-items: center;
    gap: 15px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .payment-method ul li {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: #fff;
    padding: 15px 40px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .payment-method ul li i {
    font-size: 28px;
    color: #898989;
    line-height: 1
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .payment-method ul li h5 {
    color: #898989
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .payment-method ul li.active {
    border-color: var(--theme-color);
    color: var(--theme-color)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .payment-method ul li.active i {
    color: var(--theme-color)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .form-select {
    background-color: #fff;
    border-color: #eee;
    line-height: 1.8
}

@media(max-width: 576px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box {
        margin-left: 0
    }
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-title {
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-title h4 {
    font-weight: 600;
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    letter-spacing: unset;
    text-transform: unset;
    margin: 0;
    line-height: 1.3
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-title a {
    cursor: pointer
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box {
    border-radius: 0;
    padding: calc(12px + 12*(100vw - 320px)/1600);
    background-color: #fff;
    height: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div {
    display: flex;
    position: relative;
    cursor: pointer
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .label {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color);
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .8px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .label label {
    margin-bottom: 0;
    line-height: 1.7
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check {
    min-height: unset;
    padding: 0;
    margin: 0
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input {
    width: calc(15px + 2*(100vw - 320px)/1600);
    height: calc(15px + 2*(100vw - 320px)/1600);
    margin-top: 2px;
    float: unset;
    margin-left: 0;
    background-color: unset;
    position: relative;
    filter: unset;
    margin: 0;
    border: unset
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 100%;
    transition: all .3s ease-in-out;
    border: 1px solid #eee
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 11px;
    height: 11px;
    background-color: var(--theme-color);
    transition: all .3s ease-in-out;
    border-radius: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input:checked {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input:checked::before {
    border-color: var(--theme-color)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input:checked::after {
    transform: translate(-50%, -50%) scale(1)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input:focus {
    box-shadow: none;
    border-color: var(--theme-color)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail {
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 4*(100vw - 320px)/1600);
    margin-left: 10px;
    width: calc(85% + -10*(100vw - 320px)/1600)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail li {
    display: block;
    width: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail h4 {
    font-weight: 600;
    margin: 0;
    text-transform: none;
    letter-spacing: unset;
    line-height: 1.3
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail p,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail h6 {
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 400;
    color: #222;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail p span,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail h6 span {
    margin-right: 4px;
    font-weight: 500;
    color: #222
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .add-address {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 100%;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, .07);
    border-radius: 8px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option {
    padding: calc(17px + 9*(100vw - 320px)/1600);
    background-color: #fff;
    border-radius: 0;
    height: 100%
}

@media(max-width: 1460px) {

    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .select-option,
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .select-option {
        margin-top: 6px
    }
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .date-box,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .date-box {
    position: relative
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .date-box i,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .date-box i {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 17px;
    font-size: 18px;
    color: #4a5568
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category {
    display: flex;
    height: 100%
}

@media(max-width: 767px) {

    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category,
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category,
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category,
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category {
        display: block
    }
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check {
    min-height: unset;
    padding: 0;
    margin: 0
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input {
    width: calc(15px + 2*(100vw - 320px)/1600);
    height: calc(15px + 2*(100vw - 320px)/1600);
    margin: 2px 0 0 0;
    float: unset;
    background-color: unset;
    filter: unset;
    position: relative;
    margin-top: 5px;
    border: unset
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 100%;
    transition: all .3s ease-in-out;
    border: 1px solid #eee
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 11px;
    height: 11px;
    background-color: var(--theme-color);
    transition: all .3s ease-in-out;
    border-radius: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:checked,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:checked,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:checked,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:checked {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:checked::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:checked::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:checked::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:checked::before {
    border-color: var(--theme-color)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:checked::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:checked::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:checked::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:checked::after {
    transform: translate(-50%, -50%) scale(1)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:focus,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:focus,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:focus,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:focus {
    box-shadow: none;
    border-color: var(--theme-color)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .custom-form-check,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .custom-form-check {
    display: flex;
    margin-bottom: 0;
    min-height: auto
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .custom-form-check .form-check-label,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .custom-form-check .form-check-label {
    cursor: pointer;
    font-size: calc(15px + 2*(100vw - 320px)/1600);
    padding-left: 12px;
    font-weight: 500;
    margin-bottom: 0;
    width: calc(100% - (15px + 2*(100vw - 320px)/1600))
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-date,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-date {
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    border: 1px solid #eee;
    background-color: #fff;
    display: flex;
    align-items: center;
    color: #4a5568;
    width: 100%;
    padding: calc(8px + 2*(100vw - 320px)/1600) calc(15px + 10*(100vw - 320px)/1600)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-date input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-date input {
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    border: none;
    background-color: #fff;
    display: flex;
    align-items: center;
    color: #4a5568;
    width: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-time,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-time {
    display: flex;
    align-items: center;
    height: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-toggle,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-toggle {
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    border: 1px solid #eee;
    background-color: #fff;
    display: flex;
    align-items: center;
    color: #4a5568
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-toggle i,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-toggle i {
    -webkit-text-stroke: 1px #4a5568;
    color: rgba(0, 0, 0, 0);
    font-size: 18px;
    margin-right: 10px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-toggle::after,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-toggle::after {
    content: none
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-toggle::before,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-menu,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0);
    box-shadow: 0 6px 5px rgba(0, 0, 0, .1)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-menu li a:active,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-menu li a:active {
    color: #000;
    text-decoration: none;
    background-color: #eee
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-time .dropdown-menu li+li,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-time .dropdown-menu li+li {
    margin-top: 5px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box {
    display: none
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box.show {
    display: block
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box .future-option {
    padding: calc(17px + 9*(100vw - 320px)/1600)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box .future-option .delivery-items {
    align-items: center;
    height: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box .future-option .delivery-items h4 {
    margin-bottom: 16px;
    color: #222;
    font-weight: 500
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul {
    width: 100%;
    gap: 23px;
    display: grid
}

@media(max-width: 460px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box .future-option .delivery-items ul {
        margin-inline: 0
    }
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-button {
    padding: calc(14px + 6*(100vw - 320px)/1600) calc(15px + 10*(100vw - 320px)/1600);
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-method .custom-form-check label {
    font-weight: 500;
    font-size: 17px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .credit-card-box .credit-detail {
    position: relative
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .credit-info label {
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    font-weight: 500
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option {
    padding: calc(14px + 6*(100vw - 320px)/1600);
    border-radius: 0;
    position: relative
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .form-check .form-check-input {
    margin-top: 0
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .form-check label {
    font-weight: 500;
    font-size: 18px;
    padding-left: 10px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option img {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 20px;
    width: 60px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10px + 10*(100vw - 320px)/1600);
    align-items: center
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item {
    border: none;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 5px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button {
    color: #4a5568;
    position: relative;
    padding: 0;
    background-color: #f8f8f8
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button::after {
    content: none
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    transition: transform .2s ease-in-out
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #222;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::before {
    top: 20%;
    transform: rotate(-180deg) translateY(-50%)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button .form-check {
    display: flex;
    align-items: center;
    width: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-label {
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    padding: 16px 20px;
    margin-bottom: 0
}

@media(max-width: 480px) {
    .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-label {
        margin-top: 5px
    }
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-label .form-check-input {
    margin-right: calc(6px + 4*(100vw - 320px)/1600)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body {
    padding-top: 0
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .cod-review {
    margin: 0;
    line-height: 1.5;
    color: #4a5568;
    font-size: 16px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .cod-review a:hover {
    color: var(--theme-color)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .custom-form-check {
    margin-bottom: calc(5px + 3*(100vw - 320px)/1600);
    display: flex;
    align-items: center
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .custom-form-check label {
    display: flex;
    align-items: center;
    font-size: calc(14px + 3*(100vw - 320px)/1600)
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-accordion .accordion-item .accordion-collapse .accordion-body .custom-form-check input {
    margin-right: 10px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-select {
    position: absolute;
    left: 1px;
    height: 49px;
    bottom: 1px;
    border-radius: 6px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-select .select2-container {
    height: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-select .selection {
    height: 100%
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-select .selection .select2-selection {
    height: 100% !important;
    min-width: unset;
    background-color: rgba(0, 0, 0, 0) !important;
    width: 110px !important;
    border: unset !important;
    border-right: 1px solid #efefef !important
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .custom-select .selection .select2-selection .select2-selection__rendered {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0) !important
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .phone-field input,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .form-input-box input {
    border: 1px solid #efefef
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .phone-field .form-label,
.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .form-input-box .form-label {
    font-size: calc(15px + 2*(100vw - 320px)/1600);
    color: #222;
    margin-bottom: 4px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .account-checkbox {
    min-height: unset;
    padding: 0;
    margin: 0;
    gap: 5px;
    display: flex;
    align-items: center
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .account-checkbox .checkbox_animated {
    float: unset;
    margin: 0;
    width: 23px;
    height: 23px;
    border: unset;
    background: unset;
    box-shadow: unset
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .account-checkbox .checkbox_animated:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: unset;
    width: 23px;
    height: 23px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .account-checkbox .checkbox_animated:before {
    left: 7px;
    top: 7px;
    width: 10px;
    height: 6px
}

.checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .account-checkbox .form-check-label {
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 400;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.checkout-section-2 .checkout-right-box {
    position: sticky;
    top: 110px;
    left: 0
}

.checkout-section-2 .checkout-right-box .checkout-details {
    position: unset;
    inset: unset
}

.checkout-section-2 .checkout-right-box .checkout-details+.checkout-details {
    margin-top: 20px
}

.dashboard .box-head h2 {
    font-size: 22px;
    margin: 20px 0 0;
    text-transform: capitalize;
    color: #333
}

.dashboard .box a {
    color: var(--theme-color)
}

.dashboard .box h6 {
    margin-bottom: 0
}

.dashboard .box .box-title {
    border-bottom: 1px solid #ddd;
    display: inline-block;
    margin-bottom: 5px;
    padding: 12px 0;
    position: relative;
    width: 100%
}

.dashboard .box .box-title h3 {
    font-size: 16px;
    margin: 0;
    text-transform: capitalize;
    color: #333
}

.dashboard .box .box-title>a {
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--theme-color)
}

.dashboard .box address {
    margin-bottom: 0
}

.box-content {
    padding-left: calc(18px + 4*(100vw - 320px)/1600);
    display: grid;
    gap: 8px
}

.box-content li {
    display: list-item;
    list-style: disc
}

.box-content li::marker {
    color: #777;
    font-size: 13px;
    line-height: 1
}

.box-content h6 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3
}

.box-content a {
    color: var(--theme-color)
}

.custom-badge {
    padding: 6px 10px;
    font-size: 12px
}

.tracking-panel ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 15px;
    padding-right: 20px;
    overflow-y: hidden;
    overflow-x: auto
}

.tracking-panel ul li {
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 0;
    padding: calc(13px + 4*(100vw - 320px)/1600) 0 calc(13px + 4*(100vw - 320px)/1600) calc(21px + 4*(100vw - 320px)/1600)
}

.tracking-panel ul li:after {
    opacity: 1;
    content: "";
    position: absolute;
    top: 0;
    right: -16px;
    width: 0;
    height: 0;
    border-top: 38px solid rgba(0, 0, 0, 0);
    border-bottom: 38px solid rgba(0, 0, 0, 0);
    border-left: 17px solid #f8f8f8;
    transition: border-color .2s ease
}

.tracking-panel ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: calc(28px + 12*(100vw - 320px)/1600) solid rgba(0, 0, 0, 0);
    border-bottom: calc(28px + 12*(100vw - 320px)/1600) solid rgba(0, 0, 0, 0);
    border-left: 17px solid #fff;
    transition: border-color .2s ease
}

.tracking-panel ul li.active {
    background-color: #fdf3ed
}

.tracking-panel ul li.active:after {
    border-left: 17px solid #fdf3ed
}

.tracking-panel ul li.cancelled-box {
    background-color: #fbe9eb
}

.tracking-panel ul li.cancelled-box:after {
    border-left: 17px solid #fbe9eb
}

.tracking-panel ul li:first-child::before {
    display: none
}

.tracking-panel .panel-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0
}

.tracking-panel .panel-content .icon {
    width: calc(30px + 15*(100vw - 320px)/1600)
}

.tracking-panel .panel-content .status {
    margin-top: 0;
    font-size: 17px;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    white-space: nowrap
}

.tracking-panel .panel-content span {
    white-space: nowrap
}

.compare-section .compare-part {
    position: relative
}

.compare-section .compare-part .close-btn {
    background-color: #f8f8f8;
    font-size: 18px;
    position: absolute;
    line-height: 1;
    top: 7px;
    color: #424242;
    font-weight: 400;
    right: 7px;
    border-radius: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #eee
}

.compare-section .compare-part .img-section {
    padding: 25px 15px 15px;
    text-align: center;
    border-right: 1px solid #eee
}

.compare-section .compare-part .img-section img,
.compare-section .compare-part .img-section .bg-size {
    width: 50%;
    margin: 0 auto
}

.compare-section .compare-part .img-section a h5 {
    margin-bottom: 5px;
    text-transform: capitalize;
    margin-top: 10px;
    font-weight: 600;
    color: #000
}

.compare-section .compare-part .img-section h5 {
    margin-bottom: 0;
    line-height: 1.2;
    color: rgba(0, 0, 0, .7)
}

.compare-section .compare-part .detail-part {
    border-right: 1px solid #eee
}

.compare-section .compare-part .detail-part .title-detail {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee
}

.compare-section .compare-part .detail-part .title-detail h5 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600
}

.compare-section .compare-part .detail-part .inner-detail {
    padding: 15px;
    text-align: center
}

.compare-section .compare-part .detail-part .inner-detail p {
    margin-bottom: 0;
    line-height: 1.4;
    letter-spacing: unset;
    font-weight: 500;
    font-size: 16px
}

.compare-section .compare-part .detail-part .inner-detail>span {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    margin-left: 5px
}

.compare-section .compare-part .detail-part .inner-detail .compare-rating {
    display: flex;
    align-items: center;
    justify-content: center
}

.compare-section .compare-part .btn-part {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #eee
}

.compare-section .compare-part .btn-part .btn-solid,
.compare-section .compare-part .btn-part .btn-outline {
    padding: 5px 10px
}

.compare-section .compare-box {
    border: 1px solid #eee
}

.compare-section .compare-box .slick-slider.slick-slider {
    margin: 0
}

.compare-section .compare-box .slick-slider .slick-list {
    margin: 0
}

.compare-section .compare-box .slick-slider .slick-list .slick-slide>div {
    margin: 0
}

.vendor-cover .bg-size {
    height: 350px
}

.vendor-profile {
    margin-top: -70px
}

.vendor-profile .profile-left {
    display: flex;
    padding: 20px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 0
}

.vendor-profile .profile-left .profile-image {
    text-align: center;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center
}

.vendor-profile .profile-left .profile-image a {
    background-color: #fff;
    width: calc(64px + 24*(100vw - 320px)/1600);
    height: calc(64px + 24*(100vw - 320px)/1600);
    margin: 0 auto calc(8px + 8*(100vw - 320px)/1600);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center
}

.vendor-profile .profile-left .profile-image a>* {
    margin-bottom: 0;
    font-size: calc(37px + 23*(100vw - 320px)/1600)
}

.vendor-profile .profile-left .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.vendor-profile .profile-left .profile-image h3 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: calc(20px + 4*(100vw - 320px)/1600);
    color: #222;
    letter-spacing: unset;
    line-height: 1.3
}

.vendor-profile .profile-left .profile-image h6 {
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: unset;
    text-transform: unset;
    font-weight: 500
}

.vendor-profile .profile-left .profile-image .rating>*>span {
    line-height: 1
}

.vendor-profile .profile-left .profile-detail {
    border-left: 1px solid rgba(34, 38, 42, .12);
    padding-left: 20px;
    margin-left: 20px;
    width: 60%;
    display: flex;
    align-items: center
}

.vendor-profile .profile-left .profile-detail h6 {
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: .05em;
    text-transform: capitalize
}

.vendor-profile .profile-left .profile-detail p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400
}

.vendor-profile .profile-left .profile-detail p+p {
    margin-top: 10px
}

.vendor-profile .profile-left .vendor-contact {
    border-left: 1px solid rgba(34, 38, 42, .12);
    padding-left: 20px;
    margin-left: 20px;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.vendor-profile .profile-left .vendor-contact .footer-social {
    margin: 0
}

.vendor-profile .profile-left .vendor-contact .footer-social ul {
    margin-top: 0;
    margin-bottom: 12px;
    padding-bottom: 9px;
    justify-content: center;
    border-bottom: 1px solid rgba(34, 38, 42, .12);
    display: flex
}

.vendor-profile .profile-left .vendor-contact .footer-social ul *:empty {
    display: none
}

.vendor-profile .profile-left .vendor-contact .footer-social svg {
    width: unset;
    height: unset;
    color: #989898
}

.vendor-profile .profile-left .vendor-contact .footer-social li {
    padding: 0 5px
}

.vendor-profile .profile-left .vendor-contact h6 {
    text-transform: capitalize;
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px
}

.vendor-profile .profile-left .vendor-contact .vendor-details {
    display: grid;
    gap: 7px
}

.vendor-profile .profile-left .vendor-contact .vendor-details li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px
}

.vendor-profile .profile-left .vendor-contact .vendor-details li svg {
    width: unset;
    height: unset;
    font-size: 20px;
    line-height: 1;
    color: #777
}

.vendor-profile .profile-left .vendor-contact .vendor-details li h5,
.vendor-profile .profile-left .vendor-contact .vendor-details li a {
    margin: 0;
    font-weight: 500;
    line-height: 1;
    color: #464646
}

.vendor-profile .profile-left+.profile-left {
    margin-top: 40px
}

.vendor-profile .page-link {
    border-color: #efefef;
    background-color: #f9f9f9
}

.vendor-profile .page-link:hover {
    background-color: #f1f1f1
}

.become-vendor {
    background-color: #f8f8f8;
    overflow: hidden
}

.become-vendor h4 {
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.3
}

.become-vendor .step-bg {
    position: relative
}

.become-vendor .step-bg:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    display: block;
    background: url("../../images/vendor/step-arrow.png") no-repeat center center
}

.become-vendor .step-bg .row {
    margin-inline: -50px
}

.become-vendor .step-bg .row>div {
    padding-inline: 50px
}

.become-vendor .step-bg .row>div:nth-child(1),
.become-vendor .step-bg .row>div:nth-child(3) {
    margin-bottom: 30px
}

.become-vendor .step-bg .row>div:nth-child(2) {
    margin-top: 30px
}

.become-vendor .step-bg h4 {
    margin-bottom: 10px;
    text-transform: unset;
    letter-spacing: unset
}

.become-vendor .step-bg .step-box {
    position: relative;
    padding: 26px 23px;
    transition: all .3s ease;
    background-color: #fff;
    text-align: center;
    border-radius: 0;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.become-vendor .step-bg .step-box .steps {
    position: relative;
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    margin: 0 auto 25px auto;
    color: var(--theme-color);
    text-align: center;
    font-weight: 500;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(28px + 12*(100vw - 320px)/1600)
}

.become-vendor .step-bg .step-box p {
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400
}

.start-selling h4 {
    margin-bottom: 10px;
    text-transform: unset;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 600
}

.start-selling p {
    line-height: 1.7;
    letter-spacing: unset;
    margin-bottom: 0;
    font-weight: 400;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.start-selling .btn {
    margin-top: 20px
}

.dashboard-section .dashboard-sidebar {
    position: sticky;
    top: 130px;
    z-index: 1;
    padding: 30px 0 15px 0;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 0
}

@media(max-width: 991px) {
    .dashboard-section .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: -350px;
        width: calc(300px + 20*(100vw - 320px)/672);
        height: 100vh;
        overflow: hidden auto;
        padding-top: 0;
        border: unset;
        transition: all .25s ease-in-out;
        border-radius: 0;
        z-index: 11;
        background-color: #fff
    }

    .dashboard-section .dashboard-sidebar.open {
        left: 0
    }
}

.dashboard-section .dashboard-sidebar .back-btn {
    display: none
}

@media(max-width: 991px) {
    .dashboard-section .dashboard-sidebar .back-btn {
        padding: 15px 18px;
        display: flex;
        border: unset;
        align-items: center;
        gap: 5px;
        border-bottom: 1px solid #eee;
        width: 100%;
        position: sticky;
        top: 0;
        left: 0;
        background-color: #fff;
        z-index: 2
    }

    .dashboard-section .dashboard-sidebar .back-btn svg {
        width: unset;
        height: unset;
        font-size: 20px;
        line-height: 1
    }

    .dashboard-section .dashboard-sidebar .back-btn span {
        font-weight: 500;
        font-size: 16px
    }
}

.dashboard-section .dashboard-sidebar .profile-top {
    padding: 0 16px;
    display: flex;
    gap: 13px;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee
}

@media(max-width: 991px) {
    .dashboard-section .dashboard-sidebar .profile-top {
        margin-bottom: calc(10px + 10*(100vw - 320px)/671);
        background-color: #f8f8f8;
        padding: 15px
    }
}

.dashboard-section .dashboard-sidebar .profile-top .profile-top-box {
    width: 56px;
    height: 56px;
    position: relative
}

.dashboard-section .dashboard-sidebar .profile-top .user-icon-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    cursor: pointer;
    overflow: hidden
}

.dashboard-section .dashboard-sidebar .profile-top .user-icon-2.close-icon {
    top: 0
}

.dashboard-section .dashboard-sidebar .profile-top .user-icon-2 input[type=file] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    cursor: pointer
}

.dashboard-section .dashboard-sidebar .profile-top .user-icon-2 i {
    line-height: 1
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image {
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 0;
    overflow: hidden
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image:hover .user-icon {
    opacity: 1
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: opacity .15s ease-in-out;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, .631);
    border: 1px solid rgba(207, 207, 207, .4);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    font-size: 24px
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon input[type=file] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    cursor: pointer
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon i {
    line-height: 1
}

@media(max-width: 991px) {
    .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon {
        opacity: 1;
        height: auto;
        border-radius: 0;
        inset: unset;
        bottom: 0;
        transform: unset;
        font-size: calc(16px + 2*(100vw - 320px)/1600);
        padding-block: 5px;
        border: unset;
        background-color: rgba(34, 34, 34, .8)
    }
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round {
    height: 56px;
    width: 56px;
    object-fit: contain;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round h4 {
    font-size: 34px;
    margin: 0;
    font-weight: 600
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-color: #f9f9f9;
    box-shadow: 2px 3px 8px rgba(34, 34, 34, .32)
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .cover-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 55%;
    z-index: 1;
    background-color: #fff;
    border-radius: 100%;
    color: #777
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .cover-icon i {
    position: relative
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .cover-icon i input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    width: 35px
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .user-name {
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 500;
    border: 1px solid #eee;
    margin: 0
}

.dashboard-section .dashboard-sidebar .profile-top .profile-detail {
    width: calc(100% - 56px - 13px)
}

.dashboard-section .dashboard-sidebar .profile-top .profile-detail h5 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0
}

.dashboard-section .dashboard-sidebar .profile-top .profile-detail h6 {
    color: #777;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 0
}

.dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
    box-shadow: none;
    padding: 0;
    background-color: #f8f8f8
}

.dashboard-section .counter-section {
    padding: calc(16px + 14*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 0
}

.dashboard-section .counter-section .counter-box {
    background-color: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    border-left: 3px solid var(--theme-color);
    border-radius: 0
}

.dashboard-section .counter-section .counter-box img {
    height: 50px;
    width: auto;
    margin-right: 20px
}

.dashboard-section .counter-section .counter-box h3 {
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 4px;
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    letter-spacing: unset
}

.dashboard-section .counter-section .counter-box h5 {
    margin-bottom: 0;
    font-weight: 500;
    color: #777;
    line-height: 1.3
}

.dashboard-section .show-btn {
    background-color: var(--theme-color);
    border-radius: 0;
    padding: calc(7px + 3*(100vw - 320px)/1600) calc(12px + 7*(100vw - 320px)/1600);
    text-transform: unset;
    font-weight: 600;
    color: #fff;
    margin-bottom: calc(18px + 8*(100vw - 320px)/1600);
    display: none;
    border: 1px solid var(--theme-color)
}

.dashboard-section .show-btn:first-child:active,
.dashboard-section .show-btn.active {
    border: 1px solid var(--theme-color);
    background-color: rgba(0, 0, 0, 0);
    color: var(--theme-color)
}

@media(max-width: 991px) {
    .dashboard-section .show-btn {
        display: block
    }
}

.dashboard-section .faq-content .card {
    border: 1px solid #eee;
    background-color: #f8f8f8;
    border-radius: 0
}

.dashboard-section .faq-content .dashboard-table {
    border: unset;
    background-color: rgba(0, 0, 0, 0)
}

.dashboard-section .faq-content .dashboard-table .card-body {
    padding: 0
}

.dashboard-section .faq-content .dashboard-table .user-download-table .dropdown .dropdown-toggle {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: 12px 18px;
    font-weight: 500;
    color: #222
}

.dashboard-section .faq-content .dashboard-table .user-download-table .dropdown .dropdown-toggle::after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    vertical-align: unset;
    border: unset;
    font-size: 18px;
    line-height: 1;
    font-weight: normal
}

.dashboard-section .faq-content .dashboard-table .user-download-table thead tr th {
    background-color: #f8f8f8;
    text-align: center;
    padding: 14px 10px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee
}

.dashboard-section .faq-content .dashboard-table .user-download-table tbody td {
    text-align: center;
    vertical-align: middle;
    padding: 14px 10px;
    border-color: #eee
}

.dashboard-section .faq-content .dashboard-table .user-download-table tbody tr:last-child td {
    border-bottom: unset
}

.dashboard-section .faq-content .dashboard-table .user-download-table tbody .table-name {
    width: 55%;
    text-align: center;
    font-weight: 500;
    font-size: 16px
}

.dashboard-section .faq-content .dashboard-table .user-download-table tbody .table-image {
    width: auto;
    height: 100px
}

.dashboard-section .faq-content .download-detail {
    padding: 12px calc(15px + 7*(100vw - 320px)/1600);
    border: 1px solid #eee;
    background-color: #f8f8f8;
    border-radius: 0;
    margin-bottom: 20px
}

.dashboard-section .faq-content .download-detail form .input-group {
    gap: 13px
}

.dashboard-section .faq-content .download-detail form .input-group .form-control {
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border-radius: 0 !important;
    border: 1px solid #eee;
    font-size: 14px
}

.dashboard-section .faq-content .download-detail form .input-group button {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 0 !important;
    letter-spacing: unset;
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff
}

.dashboard-section .faq-content .download-detail form .input-group button:hover {
    background-color: #fff;
    color: var(--theme-color)
}

.dashboard-section .wallet-table .table-responsive {
    border: 1px solid #eee;
    border-radius: 0
}

.dashboard-section .wallet-table .order-table {
    border: unset;
    margin: 0;
    border-radius: 0
}

.dashboard-section .wallet-table .order-table thead th {
    font-size: 16px;
    font-weight: 600;
    padding: calc(9px + 5*(100vw - 320px)/1600)
}

.dashboard-section .wallet-table .order-table th,
.dashboard-section .wallet-table .order-table td {
    max-width: 220px;
    min-width: 160px;
    padding: 15px;
    color: #232323;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0)
}

.dashboard-section .wallet-table .order-table th h6,
.dashboard-section .wallet-table .order-table td h6 {
    color: #222;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.dashboard-section .wallet-table .order-table tr:last-child td {
    border-bottom: unset
}

.dashboard-section .wallet-table .order-table tr a {
    color: #222
}

.dashboard-section .wallet-table .order-table tr a.btn-solid {
    color: #fff
}

.dashboard-section .wallet-table .order-table tr a.btn-solid:hover {
    color: var(--theme-color)
}

.dashboard-section .wallet-table .order-table .product-image {
    text-align: center !important
}

.dashboard-section .wallet-table .order-table .product-image img {
    width: 70px;
    max-width: 100%;
    height: auto
}

.dashboard-section .wallet-table .order-table .product-image h6 {
    font-size: 15px;
    font-weight: 500;
    margin: 0
}

.dashboard-section .wallet-table .order-table .product-image a {
    color: #222
}

.dashboard-section .product-table tr th:first-child,
.dashboard-section .product-table tr td:first-child {
    text-align: center
}

.dashboard-section .title-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    display: flex;
    align-items: center
}

.dashboard-section .title-header h5 a {
    line-height: 1
}

.dashboard-section .title-header h5 svg {
    width: unset;
    height: unset;
    color: #222;
    margin-right: 5px
}

.dashboard-section .title-header .right-option a {
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    text-transform: none;
    font-weight: 600;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    line-height: 1.3;
    padding: 8px 20px;
    border-radius: 0
}

.dashboard-section .title-header .right-option a:hover {
    border: 1px solid var(--theme-color);
    background-color: #fff;
    color: var(--theme-color) !important
}

.dashboard-section .title-header .right-option a i {
    font-weight: 500
}

.dashboard-section .dashboard-table h3 {
    text-transform: capitalize;
    font-size: 17px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600
}

.dashboard-section .dashboard-table .product-pagination {
    margin-top: 24px
}

.dashboard-section .dashboard-table .product-pagination .theme-pagination-block {
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    justify-content: center
}

.dashboard-section .top-sec {
    display: flex;
    align-items: center;
    margin-bottom: calc(13px + 9*(100vw - 320px)/1600)
}

.dashboard-section .top-sec-2 {
    border-top: 1px solid #eee;
    margin-top: 34px;
    padding-top: 29px
}

.dashboard-section .top-sec h3 {
    text-transform: capitalize;
    color: #222;
    font-size: calc(16px + 6*(100vw - 320px)/1600);
    margin-bottom: 0;
    font-weight: 600
}

.dashboard-section .top-sec .btn {
    margin-left: auto;
    text-transform: capitalize;
    padding: calc(5px + 2*(100vw - 320px)/1600) calc(7px + 7*(100vw - 320px)/1600)
}

.dashboard-section .top-sec .btn:active {
    border-color: var(--theme-color);
    color: #fff
}

.dashboard-section .top-sec .btn:hover {
    border-color: var(--theme-color)
}

.dashboard-section .top-sec .btn:hover:active {
    color: var(--theme-color)
}

.dashboard-section .top-sec .btn svg {
    width: unset;
    height: unset;
    font-size: 17px;
    stroke-width: 1px
}

.dashboard-section .themeform-auth .form-label {
    font-weight: 500;
    color: #777;
    margin: 0
}

.dashboard-section .themeform-auth .form-control {
    height: auto;
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600);
    font-weight: 500;
    border-radius: 0;
    border: 1px solid #eee;
    font-size: 14px
}

.dashboard-section .dashboard-box .dashboard-title {
    margin-bottom: calc(14px + 6*(100vw - 320px)/1600);
    display: flex;
    align-items: center
}

.dashboard-section .dashboard-box .dashboard-title h4 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0
}

.dashboard-section .dashboard-box .dashboard-title span {
    margin-left: 30px;
    padding: 2px 16px;
    border-radius: 2px;
    text-transform: capitalize;
    color: var(--theme-color);
    cursor: pointer
}

.dashboard-section .dashboard-box .dashboard-detail ul li {
    display: block;
    margin-bottom: 10px
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details {
    display: flex
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details h6 {
    text-transform: capitalize;
    margin-bottom: 0
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details span {
    margin-left: calc(10px + 20*(100vw - 320px)/1600);
    border-radius: 2px;
    text-transform: capitalize;
    color: var(--theme-color);
    cursor: pointer
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details .left {
    width: 150px;
    margin-right: 15px
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details .left h6 {
    color: #4e4e4e
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details .right {
    display: flex;
    align-items: center
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details .right h6 {
    font-weight: 500
}

.dashboard-section .dashboard-box .dashboard-detail ul li:last-child {
    margin-bottom: 0
}

.dashboard-section .radio_animated {
    position: relative;
    margin: 4px 1rem 0 0;
    cursor: pointer
}

.dashboard-section .radio_animated:before {
    transition: transform .4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: scale(0, 0);
    content: "";
    position: absolute;
    top: 0;
    left: .125rem;
    z-index: 1;
    width: .75rem;
    height: .75rem;
    background: var(--theme-color);
    border-radius: 50%
}

.dashboard-section .radio_animated:after {
    content: "";
    position: absolute;
    top: -0.25rem;
    left: -0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #fff;
    border: 2px solid #f8f8f8;
    border-radius: 50%
}

.dashboard-section .radio_animated:checked:before {
    transform: scale(1, 1)
}

.dashboard-section .apexcharts-toolbar {
    z-index: 1
}

.user-dashboard-section .box {
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    line-height: 1.7
}

.user-dashboard-section h6 {
    margin-bottom: 0;
    font-size: calc(14px + 1*(100vw - 320px)/1600);
    font-weight: 500;
    line-height: 1.3
}

.user-dashboard-section .welcome-msg {
    margin-bottom: 20px
}

.user-dashboard-section .welcome-msg h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222
}

.user-dashboard-section .welcome-msg p {
    line-height: 1.6;
    letter-spacing: unset;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.user-dashboard-section .box-head h4 {
    font-size: 18px;
    margin: 34px 0 14px;
    text-transform: capitalize;
    color: #333;
    font-weight: 600
}

.user-dashboard-section .box a {
    color: var(--theme-color)
}

.user-dashboard-section .box h6 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3
}

.user-dashboard-section .box .box-title {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 12px;
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 8px
}

.user-dashboard-section .box .box-title h3 {
    font-size: 16px;
    margin: 0;
    text-transform: capitalize;
    color: #333;
    line-height: 1.3;
    font-weight: 500
}

.user-dashboard-section .box .box-title>a {
    margin-left: auto;
    color: var(--theme-color)
}

.user-dashboard-section .box address {
    margin-bottom: 0
}

.user-dashboard-section .faq-content {
    height: 100%
}

.user-dashboard-section .faq-content .tab-content {
    height: 100%
}

.user-dashboard-section .faq-content .tab-content .tab-pane {
    height: 100%;
    position: relative
}

.user-dashboard-section .faq-content .tab-content .tab-pane .no-data-added,
.user-dashboard-section .faq-content .tab-content .tab-pane .tab-category {
    height: 100%
}

.user-dashboard-section .faq-content .tab-content .tab-pane .box-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999
}

.user-dashboard-section .faq-content .tab-content .tab-pane .box-loader .loader-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    inset: unset;
    background-color: #f8f8f8
}

.user-dashboard-section .faq-content .tab-content .card-body {
    padding: calc(15px + 7*(100vw - 320px)/1600) calc(15px + 7*(100vw - 320px)/1600);
    border-radius: 0
}

.user-dashboard-section .faq-content .tab-content .card-body .tab-pane {
    height: 100%;
    position: relative
}

.user-dashboard-section .faq-content .tab-content .card-body .order-title {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    padding-bottom: 11px;
    margin-bottom: 16px;
    letter-spacing: unset;
    font-weight: 600;
    color: #222;
    border-bottom: 1px solid #dee2e6
}

.user-dashboard-section .faq-content .tab-content .card-body .customer-detail ul li label {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 6px
}

.user-dashboard-section .faq-content .tab-content .card-body .customer-detail ul li h4 {
    margin: 0;
    font-size: 15px;
    letter-spacing: unset;
    font-weight: 500;
    text-transform: unset;
    line-height: 1.3;
    color: #777
}

.user-dashboard-section .faq-content .tab-content .card-body .tracking-total ul {
    display: grid;
    gap: 6px
}

.user-dashboard-section .faq-content .tab-content .card-body .tracking-total ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500
}

.user-dashboard-section .faq-content .tab-content .card-body .tracking-total ul li:nth-child(3) {
    font-weight: 600
}

.user-dashboard-section .faq-content .tab-content .card-body .tracking-total ul li:last-child {
    padding-top: 8px;
    margin-top: 2px;
    border-top: 1px solid #dee2e6;
    font-weight: 600;
    font-size: 18px
}

.user-dashboard-section .faq-content .tab-pane .card-body {
    padding: calc(15px + 7*(100vw - 320px)/1600) calc(15px + 7*(100vw - 320px)/1600);
    border-radius: 0
}

.user-dashboard-section .faq-content .tab-pane .card-body .order-title {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    padding-bottom: 11px;
    margin-bottom: 16px;
    letter-spacing: unset;
    font-weight: 600;
    color: #222;
    border-bottom: 1px solid #dee2e6
}

.user-dashboard-section .faq-content .tab-pane .card-body .customer-detail ul li label {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 6px
}

.user-dashboard-section .faq-content .tab-pane .card-body .customer-detail ul li h4 {
    margin: 0;
    font-size: 15px;
    letter-spacing: unset;
    font-weight: 500;
    text-transform: unset;
    line-height: 1.3;
    color: #777
}

.user-dashboard-section .faq-content .tab-pane .card-body .tracking-total ul {
    display: grid;
    gap: 6px
}

.user-dashboard-section .faq-content .tab-pane .card-body .tracking-total ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500
}

.user-dashboard-section .faq-content .tab-pane .card-body .tracking-total ul li:nth-child(3) {
    font-weight: 600
}

.user-dashboard-section .faq-content .tab-pane .card-body .tracking-total ul li:last-child {
    padding-top: 8px;
    margin-top: 2px;
    border-top: 1px solid #dee2e6;
    font-weight: 600;
    font-size: 18px
}

.user-dashboard-section .wallet-point-box {
    display: flex;
    align-items: center;
    gap: 13px
}

.user-dashboard-section .wallet-point-box .total-image {
    width: 69px;
    height: 69px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px
}

.user-dashboard-section .wallet-point-box .total-image img {
    width: 100%;
    height: 100%
}

.user-dashboard-section .wallet-point-box .total-detail {
    width: calc(100% - 69px - 13px);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.user-dashboard-section .wallet-point-box .total-detail .point-ratio {
    background-color: #fff;
    padding: 15px 18px
}

.user-dashboard-section .wallet-point-box .total-detail .point-ratio .counter {
    text-transform: none;
    letter-spacing: unset;
    font-size: 18px;
    margin: 0;
    color: #232323;
    font-weight: 600
}

.user-dashboard-section .wallet-point-box .total-detail .total-box h5 {
    margin: 0;
    font-weight: 500;
    color: #777
}

.user-dashboard-section .wallet-point-box .total-detail .total-box h3 {
    margin: 0;
    margin-top: 3px;
    font-size: 19px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
    color: #232323
}

.user-dashboard-section .edit-link {
    color: var(--theme-color);
    margin-left: 10px;
    text-transform: capitalize
}

.user-dashboard-section .address-book-section .select-box .address-box {
    padding: 15px;
    background-color: #fff;
    transition: all .5s ease
}

.user-dashboard-section .address-book-section .select-box .address-box .top h6 {
    text-transform: capitalize;
    color: #222;
    font-weight: 600;
    font-size: 14px
}

.user-dashboard-section .address-book-section .select-box .address-box .top h6 span {
    float: right;
    background-color: var(--theme-color);
    color: #fff;
    padding: 2px 15px;
    font-size: 80%;
    border-radius: 0
}

.user-dashboard-section .address-book-section .select-box .address-box .middle {
    margin-top: 15px
}

.user-dashboard-section .address-book-section .select-box .address-box .middle .address p {
    margin-bottom: 5px;
    color: rgba(0, 0, 0, .7);
    line-height: 1.2
}

.user-dashboard-section .address-book-section .select-box .address-box .middle .number {
    margin-top: 15px
}

.user-dashboard-section .address-book-section .select-box .address-box .middle .number p {
    color: rgba(0, 0, 0, .7);
    text-transform: capitalize
}

.user-dashboard-section .address-book-section .select-box .address-box .card-number {
    margin-top: 15px
}

.user-dashboard-section .address-book-section .select-box .address-box .card-number h6,
.user-dashboard-section .address-book-section .select-box .address-box .card-number h5 {
    margin-bottom: 0
}

.user-dashboard-section .address-book-section .select-box .address-box .name-validity {
    margin-top: 10px;
    display: flex;
    align-items: center
}

.user-dashboard-section .address-book-section .select-box .address-box .name-validity h6 {
    text-transform: capitalize
}

.user-dashboard-section .address-book-section .select-box .address-box .name-validity h5,
.user-dashboard-section .address-book-section .select-box .address-box .name-validity h6 {
    margin-bottom: 0
}

.user-dashboard-section .address-book-section .select-box .address-box .name-validity .right {
    margin-left: auto
}

.user-dashboard-section .address-book-section .select-box .address-box .bank-logo {
    display: flex;
    align-items: center
}

.user-dashboard-section .address-book-section .select-box .address-box .bank-logo img {
    height: 22px
}

.user-dashboard-section .address-book-section .select-box .address-box .bank-logo .network-logo {
    margin-left: auto;
    width: 50px;
    height: auto
}

.user-dashboard-section .address-book-section .select-box .address-box .address p {
    font-size: 14px;
    font-weight: 500;
    color: #777
}

.user-dashboard-section .address-book-section .select-box .address-box .bottom {
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 10px
}

.user-dashboard-section .address-book-section .select-box .address-box .bottom .bottom_btn {
    width: 47.5%;
    text-transform: capitalize;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 0;
    background-color: #f8f8f8;
    color: #222;
    border: unset
}

.user-dashboard-section .address-book-section .select-box.active .address-box {
    transition: all .5s ease
}

.user-dashboard-section.dashboard-section .dashboard-table .table thead th {
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    background-color: #f8f8f8
}

.user-dashboard-section .order-table thead tr th {
    background-color: rgba(0, 0, 0, 0)
}

.faq-tab .nav-tabs {
    display: block;
    border-bottom: none;
    background-color: #fff;
    padding: 10px 0
}

.faq-tab .nav-tabs .nav-item {
    display: block;
    margin-bottom: 0
}

@media(max-width: 991px) {
    .faq-tab .nav-tabs .nav-item {
        width: 100%
    }
}

.faq-tab .nav-tabs .nav-item .nav-link {
    text-transform: capitalize;
    color: #232323;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    border: none;
    transition: all .2s ease-in-out;
    border-radius: 0;
    background-color: #f8f8f8;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 500
}

@media(max-width: 991px) {
    .faq-tab .nav-tabs .nav-item .nav-link {
        background-color: #fff;
        padding-block: calc(6px + 2*(100vw - 320px)/1600)
    }
}

.faq-tab .nav-tabs .nav-item .nav-link svg {
    width: calc(36px + 4*(100vw - 320px)/1600);
    height: calc(36px + 4*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 9px;
    border-radius: 0;
    transition: all .2s ease-in-out;
    margin: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0);
    font-size: calc(16px + 3*(100vw - 320px)/1600)
}

@media(max-width: 991px) {
    .faq-tab .nav-tabs .nav-item .nav-link svg {
        background-color: #f8f8f8
    }
}

.faq-tab .nav-tabs .nav-item .nav-link.active {
    border: none;
    border-radius: 0;
    color: var(--theme-color)
}

.faq-tab .nav-tabs .nav-item .nav-link.active svg {
    background-color: var(--theme-color);
    color: #fff
}

.faq-tab .nav-tabs .nav-item .nav-link:hover {
    border: none;
    color: var(--theme-color)
}

.faq-tab .nav-tabs .nav-item .nav-link:hover svg {
    border: 1px solid var(--theme-color)
}

.faq-tab .nav-tabs .logout-cls {
    border-top: 1px solid #eee;
    margin-top: 6px;
    padding-top: 14px;
    padding-inline: 19px
}

.faq-tab .nav-tabs .logout-cls .loagout-btn {
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    text-transform: none;
    font-weight: 500;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    line-height: 1.3;
    padding: calc(9px + 2*(100vw - 320px)/1600);
    border-radius: 0
}

.notification-list {
    display: grid;
    gap: 13px
}

.notification-list li {
    display: block;
    border-radius: 0;
    border: 1px solid #eee;
    background-color: #fff;
    padding: calc(13px + 7*(100vw - 320px)/1600) calc(12px + 6*(100vw - 320px)/1600);
    padding-left: calc(33px + 13*(100vw - 320px)/1600);
    position: relative
}

.notification-list li::after {
    content: "";
    position: absolute;
    left: calc(18px + 12*(100vw - 320px)/1600);
    top: 31px;
    width: 5px;
    height: 5px;
    background-color: #8e8e8e;
    border-radius: 100%
}

.notification-list li+li {
    border-top: 1px solid #eee
}

.notification-list li.unread {
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    z-index: 0;
    border: 1px solid var(--theme-color)
}

.notification-list li.unread::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .09;
    z-index: -1
}

.notification-list li.unread h4 {
    color: var(--theme-color);
    font-weight: 600
}

.notification-list li.unread h5 {
    color: #222
}

.notification-list li.unread::after {
    background-color: var(--theme-color)
}

.notification-list h4 {
    font-weight: 500;
    color: #222;
    letter-spacing: unset;
    text-transform: none;
    line-height: 1.5;
    font-size: calc(15px + 3*(100vw - 320px)/1600)
}

.notification-list h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    color: #777;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.3
}

.sticky-product-height {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    overflow: hidden
}

.sticky-product-height+.sticky-product-height {
    margin-top: 30px
}

.sticky-product-height video {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.sticky-product-height img {
    object-fit: contain;
    height: 100%;
    width: 100%
}

.review-title-2 {
    border-top: 1px solid #eee;
    margin-top: 18px;
    padding-top: 18px
}

.review-title-2 h4 {
    font-weight: 600;
    text-transform: none;
    letter-spacing: unset;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 4px
}

.review-title-2 p {
    letter-spacing: unset;
    font-weight: 500;
    line-height: 1.4
}

.review-title-2 button {
    text-transform: capitalize;
    padding: calc(11px + 2*(100vw - 320px)/1600) calc(11px + 12*(100vw - 320px)/1600);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    margin-top: 17px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0)
}

.review-title-2 button:hover,
.review-title-2 button:first-child:active {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background-color: rgba(0, 0, 0, 0)
}

.quantity-variant {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: #f8f8f8;
    padding: 6px 6px;
    overflow: hidden;
    border: 1px solid #eee;
    width: max-content;
    margin-bottom: 0
}

.quantity-variant li {
    padding: 6px 10px;
    background-color: #f8f8f8 !important
}

.quantity-variant li.active {
    background-color: #fff !important;
    box-shadow: 0 0 8px #e8e8e8
}

.quantity-variant li.active button {
    background-color: #fff !important;
    color: var(--theme-color)
}

.quantity-variant li button {
    border: none;
    font-size: 14px;
    font-weight: 500;
    background-color: #f8f8f8;
    color: #222;
    padding: 0 6px;
    transition: unset
}

.quantity-variant .disabled {
    overflow: hidden;
    position: relative;
    user-select: none;
    cursor: default;
    opacity: .6 !important;
    pointer-events: none
}

.quantity-variant .disabled::after,
.quantity-variant .disabled::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #ff7272;
    width: 100%;
    height: 1px;
    cursor: default;
    user-select: none;
    z-index: 1
}

.quantity-variant .disabled:after {
    transform: translateY(-50%) rotate(-45deg)
}

.quantity-variant .disabled:before {
    transform: translateY(-50%) rotate(45deg)
}

.quantity-variant.radio .disabled::before,
.quantity-variant.radio .disabled::after {
    content: unset
}

.quantity-variant.color li span {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: block
}

.quantity-variant.circle li {
    border-radius: 100% !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0
}

.quantity-variant.circle li button {
    width: calc(36px + 4*(100vw - 320px)/1600);
    height: calc(36px + 4*(100vw - 320px)/1600);
    padding: 0;
    border-radius: 100%
}

.variation-box {
    display: flex;
    align-items: center;
    gap: calc(26px + 24*(100vw - 767px)/1153)
}

.variation-box+.variation-box {
    margin-top: 14px
}

@media(max-width: 767px) {
    .variation-box {
        display: block
    }

    .variation-box .image-box {
        justify-content: center
    }
}

.variation-box .sub-title {
    width: 70px;
    display: block;
    margin-bottom: 0 !important;
    line-height: 1.3
}

@media(max-width: 767px) {
    .variation-box .sub-title {
        width: auto;
        margin-bottom: 9px
    }
}

.variation-box .radio {
    background-color: rgba(0, 0, 0, 0);
    border: unset;
    padding: 0
}

.variation-box .radio .form-check {
    padding: 0;
    margin: 0;
    min-height: unset;
    display: flex;
    align-items: center;
    gap: 10px
}

.variation-box .radio .form-check .form-check-input {
    margin: 0;
    float: unset
}

.variation-box .radio .form-check .form-check-label {
    margin: 0;
    font-size: 18px;
    font-weight: 500
}

.product-page-details {
    position: sticky;
    top: 120px;
    left: 0
}

@media(max-width: 767px) {
    .product-page-details {
        text-align: center
    }
}

.product-page-details .select-dropdown {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 0;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    padding-block: 11px;
    padding-left: 17px;
    width: 100%
}

.product-page-details .main-title {
    text-transform: capitalize;
    line-height: 1.2;
    font-size: calc(22px + 10*(100vw - 320px)/1600)
}

.product-page-details .product-rating {
    display: flex;
    align-items: center;
    gap: calc(6px + 4*(100vw - 320px)/1600);
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    margin-top: calc(7px + 3*(100vw - 320px)/1600)
}

@media(max-width: 767px) {
    .product-page-details .product-rating {
        justify-content: center
    }
}

.product-page-details .product-rating .divider {
    color: #ddd
}

.product-page-details .product-rating .rating-list {
    color: #ffbc37
}

.product-page-details .product-rating a {
    color: var(--theme-color);
    text-decoration: underline
}

.product-page-details .price-text h3 {
    display: flex;
    align-items: center;
    gap: calc(5px + 3*(100vw - 320px)/1600);
    margin-block: calc(9px + 8*(100vw - 320px)/1600) calc(2px + 2*(100vw - 320px)/1600);
    color: var(--theme-color);
    font-weight: 600;
    letter-spacing: .01em;
    flex-wrap: wrap;
    font-size: calc(20px + 6*(100vw - 320px)/1600)
}

@media(max-width: 767px) {
    .product-page-details .price-text h3 {
        justify-content: center
    }
}

.product-page-details .price-text h3 .discounted-price {
    font-weight: 500;
    padding: 5px calc(12px + .0025*(100vw - 320px));
    background-color: rgba(236, 137, 81, .1098039216);
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 0;
    margin-left: calc(10px + 2*(100vw - 320px)/1600);
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.product-page-details .price-text h3 .discounted-price del {
    font-size: 18px
}

.product-page-details .price-text span {
    color: #aaa;
    display: block
}

.product-page-details .size-delivery-info {
    display: flex;
    align-items: center;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    padding-block: 12px;
    margin-block: calc(10px + 4*(100vw - 320px)/1600) calc(14px + 6*(100vw - 320px)/1600);
    gap: 9px calc(10px + 10*(100vw - 320px)/1600);
    flex-wrap: wrap
}

@media(max-width: 767px) {
    .product-page-details .size-delivery-info {
        justify-content: center
    }
}

.product-page-details .size-delivery-info span:empty {
    display: none
}

.product-page-details .size-delivery-info a {
    color: #7d7d7d;
    position: relative;
    display: flex;
    align-items: center
}

.product-page-details .size-delivery-info a span {
    position: relative;
    width: 1px;
    height: 26px;
    background-color: #eee;
    display: block;
    border-radius: 100%
}

.product-page-details .size-delivery-info a svg {
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    width: unset;
    height: unset;
    margin-right: 10px
}

.product-page-details .product-offer {
    display: grid;
    gap: 9px
}

.product-page-details .product-offer li {
    display: flex;
    gap: 9px;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    color: #626262
}

@media(max-width: 767px) {
    .product-page-details .product-offer li {
        justify-content: center
    }
}

.product-page-details .product-offer li:last-child h5 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

.product-page-details .product-offer li h5 {
    margin-bottom: 17px;
    width: 85%;
    color: #7d7d7d;
    letter-spacing: .01em
}

.product-page-details .product-offer li h5 span {
    font-weight: 600
}

.product-page-details .product-offer li img {
    width: 40px;
    height: 40px;
    border-radius: 100%
}

.product-page-details .product-offer li svg {
    font-size: calc(18px + 4*(100vw - 320px)/1600);
    line-height: 1;
    width: unset;
    height: unset
}

.product-page-details .description-text {
    color: #626262;
    text-align: unset;
    line-height: 1.5;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: calc(8px + 12*(100vw - 320px)/1600);
    margin-top: calc(6px + 3*(100vw - 320px)/1600)
}

.product-page-details .progress {
    background-color: #f8f8f8;
    height: 8px
}

.product-page-details .progress .progress-bar {
    background-image: linear-gradient(to right, #8fd747, #6eb427, #438600)
}

.product-page-details .left-progressbar {
    margin-top: 13px
}

.product-page-details .left-progressbar h6 {
    color: #777;
    text-transform: capitalize
}

.product-page-details .buy-box {
    margin-top: 17px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px
}

.product-page-details .buy-box a {
    color: #4c4c4c
}

.product-page-details .compare-box {
    margin-top: 17px;
    display: flex;
    align-items: center;
    gap: calc(10px + 10*(100vw - 320px)/1600) calc(12px + 8*(100vw - 320px)/1600);
    flex-wrap: wrap;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

@media(max-width: 767px) {
    .product-page-details .compare-box {
        justify-content: center
    }
}

.product-page-details .compare-box a {
    color: #626262;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px
}

.product-page-details .compare-box a svg {
    width: unset;
    height: unset
}

.product-page-details .bordered-box {
    padding-top: calc(15px + 10*(100vw - 320px)/1600);
    margin-top: calc(15px + 10*(100vw - 320px)/1600);
    border-top: 1px dashed #ddd
}

.product-page-details .dashed-border-box {
    padding: 22px calc(10px + 18*(100vw - 320px)/1600);
    border: 1px dashed #ddd;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    margin-top: calc(24px + 10*(100vw - 320px)/1600)
}

.product-page-details .dashed-border-box:empty {
    display: none
}

.product-page-details .dashed-border-box h4 {
    margin-top: -30px;
    background-color: #fff;
    padding-inline: 8px;
    width: max-content
}

@media(max-width: 767px) {
    .product-page-details .dashed-border-box h4 {
        margin-inline: auto
    }
}

.product-page-details .dashed-border-box img {
    width: 60%
}

@media(max-width: 767px) {
    .product-page-details .dashed-border-box img {
        margin-inline: auto
    }
}

@media(max-width: 1399px)and (min-width: 992px) {
    .product-page-details .dashed-border-box img {
        width: 70%
    }
}

@media(max-width: 767px) {
    .product-page-details .dashed-border-box img {
        width: 70%
    }
}

@media(max-width: 575px) {
    .product-page-details .dashed-border-box img {
        margin: 0 auto;
        width: 90%
    }
}

.product-page-details .shipping-info {
    display: grid;
    line-height: 1.9;
    color: #5f5f5f;
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 0 6px;
    padding-left: 20px;
    margin-bottom: -7px;
    text-align: left
}

@media(max-width: 480px) {
    .product-page-details .shipping-info {
        grid-template-columns: 1fr
    }
}

.product-page-details .shipping-info li {
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    display: list-item;
    color: #626262
}

.product-page-details .qty-section {
    display: flex;
    align-items: center;
    gap: 10px
}

.product-page-details .qty-section .qty-box .input-group {
    background-color: #f8f8f8;
    padding: 6px 6px;
    overflow: hidden;
    border: 1px solid #eee
}

@media(max-width: 480px) {
    .product-page-details .qty-section .qty-box .input-group {
        width: calc(156px + 24*(100vw - 576px)/1344);
        flex-wrap: nowrap
    }
}

.product-page-details .qty-section .qty-box .input-group input {
    background-color: #f8f8f8;
    border: none;
    padding: 6px 5px;
    width: calc(62px + 28*(100vw - 576px)/1344)
}

@media(max-width: 480px) {
    .product-page-details .qty-section .qty-box .input-group input {
        width: 100%
    }
}

.product-page-details .qty-section .qty-box .input-group button {
    background-color: #fff !important;
    font-weight: normal;
    box-shadow: 0 0 8px #e8e8e8;
    border: none;
    padding: 5px calc(5px + 4*(100vw - 576px)/1344);
    line-height: 1
}

.product-page-details .qty-section .qty-box .input-group button svg {
    font-size: 21px !important;
    font-weight: 400
}

.product-page-details .wishlist-btn-group {
    display: flex;
    align-items: center;
    gap: 10px
}

.product-page-details .wishlist-btn-group button {
    padding: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f8f8f8;
    transition: none;
    font-size: 16px;
    line-height: 1;
    color: #6a6a6a
}

.product-page-details .image-box {
    display: flex;
    align-items: center;
    gap: 10px
}

@media(max-width: 575px) {
    .product-page-details .image-box {
        justify-content: center
    }
}

.product-page-details .image-box li {
    border: 1px solid #eee;
    border-radius: 0;
    padding: 3px
}

.product-page-details .image-box li.active {
    border: 1px solid var(--theme-color)
}

.product-page-details .image-box li.disabled {
    overflow: hidden;
    position: relative
}

.product-page-details .image-box li.disabled::after,
.product-page-details .image-box li.disabled::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #ff7272;
    width: 100%;
    height: 1px;
    cursor: default;
    user-select: none;
    z-index: 1
}

.product-page-details .image-box li.disabled:after {
    transform: translateY(-50%) rotate(-45deg) scale(1.2)
}

.product-page-details .image-box li.disabled:before {
    transform: translateY(-50%) rotate(45deg) scale(1.2)
}

.product-page-details .image-box li img {
    width: 65px;
    border-radius: 0;
    cursor: pointer;
    height: 65px;
    padding: 0;
    overflow: hidden;
    object-fit: cover
}

.product-page-details .image_price {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    overflow: hidden
}

@media(max-width: 767px) {
    .product-page-details .image_price {
        justify-content: center
    }
}

.product-page-details .image_price li {
    border: 1px solid #eee;
    border-radius: 7px;
    width: 100px !important;
    padding: 0;
    overflow: hidden
}

.product-page-details .image_price li.active {
    border-color: var(--theme-color);
    background-color: #fff
}

.product-page-details .image_price li img {
    width: 100%;
    cursor: pointer;
    height: 82px;
    padding: 0;
    overflow: hidden;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 4px
}

.product-page-details .image_price li h4 {
    font-size: 12px;
    letter-spacing: unset;
    line-height: 1.3;
    margin: 0;
    padding-inline: 4px;
    color: #777;
    text-transform: unset;
    padding: 4px;
    font-weight: 500
}

.product-page-details .image_price li h5 {
    font-size: 12px;
    letter-spacing: unset;
    line-height: 1.3;
    margin: 0;
    padding-inline: 4px;
    color: #222;
    text-transform: unset;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden
}

.product-page-details .sub-title {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: .01em;
    margin: 0 0 15px
}

@media(max-width: 767px) {
    .product-page-details .sub-title {
        justify-content: center;
        margin-bottom: 9px !important
    }
}

.product-page-details .product-buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

@media(max-width: 767px) {
    .product-page-details .product-buttons {
        justify-content: center
    }
}

.product-page-details .product-buttons .product-buy-btn-group {
    gap: 12px;
    display: flex;
    align-items: center
}

@media(max-width: 480px) {
    .product-page-details .product-buttons .product-buy-btn-group {
        width: 100%
    }

    .product-page-details .product-buttons .product-buy-btn-group>* {
        width: 100%
    }

    .product-page-details .product-buttons .product-buy-btn-group>* button {
        width: 100%
    }
}

.product-page-details .product-buttons .btn {
    padding: 13px 40px
}

.product-page-details .product-buttons .btn.btn-sm {
    padding: 13px 18px
}

.product-page-details .product-buttons .btn-animation i {
    font-size: 15px
}

.product-page-details .buy-button {
    padding: calc(11px + 2*(100vw - 320px)/1600) calc(17px + 16*(100vw - 320px)/1600) !important;
    font-size: calc(15px + 2*(100vw - 320px)/1600);
    font-weight: 600;
    text-transform: unset;
    letter-spacing: unset;
    border: 1px solid var(--theme-color) !important
}

.product-page-details .buy-button svg {
    font-size: 20px !important;
    font-weight: 500
}

@media(max-width: 480px) {
    .product-page-details .buy-button svg {
        display: none
    }
}

.product-page-details .trending-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

@media(max-width: 768px) {
    .product-page-details .trending-text {
        justify-content: center
    }
}

.product-page-details .trending-text img {
    width: 30px
}

.product-page-details .trending-text h5 {
    letter-spacing: 0;
    margin-bottom: 0
}

.product-page-details .top-title-panel {
    display: flex;
    justify-content: space-between
}

.product-page-details .product-title h4 {
    font-size: 18px;
    letter-spacing: unset;
    text-transform: none;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    margin-top: 13px;
    padding-bottom: 9px;
    border-bottom: 1px dashed #ddd
}

.product-page-details.detail-box {
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f8f8
}

.product-page-details.detail-box .progress {
    background-color: #fff
}

.product-page-details.detail-box .quantity-variant {
    background-color: #fff !important
}

.product-page-details.detail-box .quantity-variant li {
    background-color: #fff !important
}

.product-page-details.detail-box .quantity-variant li button {
    background-color: #fff
}

.product-page-details.detail-box .quantity-variant li.active {
    background-color: #f8f8f8 !important;
    box-shadow: none
}

.product-page-details.detail-box .quantity-variant li.active button {
    background-color: #f8f8f8 !important
}

.product-page-details.detail-box .qty-section .qty-box .input-group {
    background-color: #fff
}

.product-page-details.detail-box .qty-section .qty-box .input-group input {
    background-color: #fff
}

.product-page-details.detail-box .qty-section .qty-box .input-group button {
    background-color: #f8f8f8 !important;
    box-shadow: none
}

.product-page-details.product-form-box {
    text-align: center;
    border: 1px solid #eee;
    padding: calc(10px + 10*(100vw - 320px)/1600);
    border-radius: 0
}

.product-page-details.product-form-box .variation-box {
    display: block
}

.product-page-details.product-form-box .variation-box .sub-title {
    width: 100%;
    margin-bottom: 9px !important
}

.product-page-details.product-form-box .product-buttons {
    margin-top: 15px
}

.product-page-details.product-form-box .variation-box .image-box {
    justify-content: center
}

.product-page-details.product-form-box .product-buttons {
    justify-content: center
}

.product-page-details.product-form-box .buy-box {
    gap: 9px calc(12px + 8*(100vw - 320px)/1600);
    justify-content: center
}

.product-page-details.product-form-box .dashed-border-box .sub-title {
    margin-inline: auto
}

.product-page-details.product-form-box .dashed-border-box img {
    margin-inline: auto;
    width: 90%
}

.product-page-details.product-form-box .timer {
    text-align: left;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    max-width: 315px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.product-page-details.product-form-box .timer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .09;
    z-index: -1
}

.product-page-details.product-form-box .timer p {
    color: #222;
    display: flex;
    gap: 18px
}

.product-page-details.product-form-box .timer p span {
    width: 50px;
    display: inline-block;
    text-align: center;
    position: relative
}

.product-page-details.product-form-box .timer p span .padding-l {
    position: absolute;
    top: 4px;
    transform: unset;
    width: auto;
    right: -11px
}

.product-page-details .timer {
    text-align: left;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    max-width: 315px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 767px) {
    .product-page-details .timer {
        margin-inline: auto
    }
}

.product-page-details .timer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .09;
    z-index: -1
}

.product-page-details .timer p {
    color: #222;
    display: flex;
    gap: 18px
}

.product-page-details .timer p span {
    width: 50px;
    display: inline-block;
    text-align: center;
    position: relative
}

.product-page-details .timer p span .padding-l {
    position: absolute;
    top: 4px;
    transform: unset;
    width: auto;
    right: -11px
}

.product-page-details.product-right-box .variation-box .sub-title {
    justify-content: center
}

.product-label {
    background-color: #fdf2ec;
    position: absolute;
    top: 15px;
    z-index: 1;
    left: 15px;
    padding: 5px 12px;
    color: var(--theme-color);
    font-weight: 500;
    font-size: 15px
}

.vertical-tab>.container {
    padding: 0
}

.vertical-tab.tab-product .nav-material.nav-tabs,
.vertical-tab .product-full-tab .nav-material.nav-tabs {
    border-bottom: none;
    height: 100%;
    background-color: #f8f8f8;
    padding: 20px
}

@media(max-width: 1199px) {

    .vertical-tab.tab-product .nav-material.nav-tabs,
    .vertical-tab .product-full-tab .nav-material.nav-tabs {
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: flex-start;
        padding: 15px;
        overflow: auto
    }
}

.vertical-tab.tab-product .nav-material.nav-tabs li,
.vertical-tab .product-full-tab .nav-material.nav-tabs li {
    width: 100%;
    display: block
}

@media(max-width: 1199px) {

    .vertical-tab.tab-product .nav-material.nav-tabs li,
    .vertical-tab .product-full-tab .nav-material.nav-tabs li {
        width: max-content;
        display: inline-block
    }
}

.vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link,
.vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
    color: #232323;
    text-align: center;
    padding: calc(8px + 2*(100vw - 320px)/1600) calc(16px + 9*(100vw - 320px)/1600);
    border: 1px solid #eee;
    font-weight: 500;
    background-color: #fff;
    font-size: calc(14px + 4*(100vw - 320px)/1600);
    text-transform: unset;
    margin: 0;
    border-radius: 0;
    display: block;
    cursor: pointer;
    width: 100%;
    margin-bottom: 14px !important;
    position: relative
}

@media(max-width: 1199px) {

    .vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link,
    .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
        margin-bottom: 0 !important
    }
}

.vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link.active,
.vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link.active {
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color)
}

.sticky-top-custom {
    position: sticky;
    top: 120px;
    z-index: 1
}

.sticky-top-custom .thumbnail-image-slider {
    position: unset;
    inset: unset
}

.clock {
    border: 2px solid #212529;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    box-sizing: border-box
}

.clock:before {
    border-radius: 3px;
    content: "";
    position: absolute;
    transform-origin: 1px 1px;
    transform: translateX(-1px);
    top: 7px;
    left: 7px;
    margin: 0;
    height: 2px;
    width: 8px;
    background: #212529;
    animation-name: clock;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: backward;
    animation-timing-function: linear
}

.clock:after {
    border-radius: 3px;
    content: "";
    position: absolute;
    transform-origin: 1px 1px;
    transform: translateX(-1px);
    top: 7px;
    left: 7px;
    margin: 0;
    height: 2px;
    width: 5.2631578947px;
    background: #212529;
    animation-name: clock;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-direction: backward;
    animation-timing-function: linear
}

.six-items .basic-product .img-wrapper {
    height: 190px
}

.basic-product {
    position: relative;
    transition: all .5s ease
}

.basic-product.sold-out .img-wrapper img,
.basic-product.sold-out .img-wrapper .bg-size {
    filter: grayscale(100);
    pointer-events: none
}

.basic-product.sold-out .img-wrapper .trending-label {
    filter: none
}

.basic-product .timer {
    border: none;
    position: absolute;
    bottom: 30px;
    z-index: 1;
    width: 100%;
    background-color: rgba(255, 255, 255, .92)
}

.basic-product .timer span .padding-l {
    position: absolute
}

.basic-product .timer p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: center
}

.basic-product .product-right .form-select {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    margin-top: 15px;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    color: #333;
    padding: calc(5px + 4*(100vw - 320px)/1600) calc(30px + 6*(100vw - 320px)/1600) calc(5px + 4*(100vw - 320px)/1600) calc(10px + 6*(100vw - 320px)/1600);
    width: max-content;
    max-width: 100%
}

.basic-product .price {
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    color: #222;
    font-weight: 500;
    margin-bottom: 0;
    transition: all .5s ease;
    gap: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-left: 5px
}

.basic-product .price .discounted-price {
    font-weight: 500;
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.basic-product .product-title {
    line-height: 1;
    transition: all .5s ease;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    color: #222;
    font-weight: 500;
    display: block;
    margin-bottom: 3px
}

.basic-product .img-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8
}

.basic-product .img-wrapper>app-image-variant {
    height: 100%
}

.basic-product .img-wrapper .zoom {
    overflow: hidden;
    width: 100%;
    height: 100%
}

.basic-product .img-wrapper .zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.basic-product .img-wrapper .addto-cart-bottom {
    position: absolute;
    bottom: -54px;
    left: 50%;
    width: calc(80% - (10px + 30*(100vw - 320px)/1600));
    background-color: #fff;
    border: none;
    padding: calc(5px + 4*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    box-shadow: 0px 5px 12px 0px rgba(155, 155, 155, .05);
    transition: all .5s ease;
    text-transform: capitalize;
    transform: translateX(-50%)
}

@media(max-width: 767px) {
    .basic-product .img-wrapper .addto-cart-bottom {
        width: 85%;
        bottom: 16px
    }
}

@media(max-width: 576px) {
    .basic-product .img-wrapper .addto-cart-bottom {
        bottom: 10px
    }
}

.basic-product .img-wrapper .addto-cart-bottom.active {
    color: var(--theme-color)
}

.basic-product .img-wrapper .addto-cart-bottom.active .icon:before {
    content: ""
}

.basic-product .img-wrapper .quick-option {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #fff;
    color: var(--theme-color);
    transition: all .5s ease;
    z-index: 1
}

.basic-product .img-wrapper .quick-option>a {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.basic-product .img-wrapper .quick-option>a svg {
    width: unset;
    height: unset
}

.basic-product .img-wrapper .trending-label {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.basic-product .img-wrapper .trending-label li {
    background-color: #d13447;
    color: #eee;
    padding: 3px 8px;
    font-weight: 500;
    margin-bottom: 0;
    font-size: calc(10px + 2*(100vw - 320px)/1600);
    z-index: 1;
    width: max-content
}

.basic-product .img-wrapper .trending-label li:nth-child(2) {
    background-color: #fff;
    color: var(--theme-color)
}

.basic-product .img-wrapper .trending-label li:nth-child(3) {
    background-color: #585858;
    color: #fff
}

.basic-product .img-wrapper .trending-label li.out_of_stock {
    background-color: #d02f47
}

.basic-product .img-wrapper .trending-label-product11 {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--theme-color);
    color: #fff;
    padding: calc(2px + 2*(100vw - 320px)/1600) calc(7px + 3*(100vw - 320px)/1600);
    font-weight: 500;
    margin-bottom: 0;
    font-size: calc(10px + 2*(100vw - 320px)/1600);
    z-index: 1
}

.basic-product .img-wrapper .rotate-label {
    position: absolute;
    top: 30px;
    left: 0;
    background-color: var(--theme-color);
    color: #eee;
    padding: 11px 6px;
    border-radius: 0;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 12px;
    writing-mode: tb;
    transform: rotate(180deg)
}

.basic-product .img-wrapper .rating-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #fff;
    padding: calc(2px + 3*(100vw - 320px)/1600) calc(5px + 5*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    gap: 5px;
    color: #595959;
    font-weight: 500;
    height: auto
}

.basic-product .img-wrapper .rating-label svg {
    width: unset;
    height: unset;
    color: #ffa200;
    margin-top: -2px
}

.basic-product .img-wrapper .unit-label {
    margin-bottom: 0;
    background-color: #fff;
    padding: 4px 14px;
    position: absolute;
    bottom: 0;
    font-weight: 400;
    font-size: calc(12px + 2*(100vw - 320px)/1600);
    left: 0
}

.basic-product .brand-w-color {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.basic-product .brand-w-color a,
.basic-product .brand-w-color .color-panel ul {
    margin-bottom: 5px
}

.basic-product .cart-info {
    position: absolute;
    bottom: 12px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    right: 12px;
    justify-content: center;
    opacity: 0;
    transition: all .5s ease;
    gap: 8px
}

@media(max-width: 767px) {
    .basic-product .cart-info {
        opacity: 1;
        right: 8px;
        gap: 4px
    }
}

.basic-product .cart-info button,
.basic-product .cart-info a {
    width: calc(25px + 10*(100vw - 320px)/1600);
    height: calc(25px + 10*(100vw - 320px)/1600);
    border-radius: 100%;
    background-color: #fff;
    border: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 12px 0px rgba(155, 155, 155, .05)
}

@media(max-width: 767px) {

    .basic-product .cart-info button,
    .basic-product .cart-info a {
        animation: none !important
    }
}

.basic-product .cart-info button:first-child:active,
.basic-product .cart-info a:first-child:active {
    background-color: #fff;
    color: var(--theme-color)
}

.basic-product .cart-info button:first-child:active i,
.basic-product .cart-info a:first-child:active i {
    color: #222
}

.basic-product .cart-info button.active i,
.basic-product .cart-info a.active i {
    color: var(--theme-color) !important
}

.basic-product .cart-info button.active i::before,
.basic-product .cart-info a.active i::before {
    content: ""
}

.basic-product .cart-info button.active .ri-heart-line::before,
.basic-product .cart-info a.active .ri-heart-line::before {
    content: ""
}

.basic-product .cart-info button span,
.basic-product .cart-info a span {
    display: none
}

.basic-product .cart-info button.theme-color i,
.basic-product .cart-info button.theme-color svg,
.basic-product .cart-info a.theme-color i,
.basic-product .cart-info a.theme-color svg {
    color: var(--theme-color)
}

.basic-product .cart-info .active i,
.basic-product .cart-info .active svg {
    color: var(--theme-color)
}

.basic-product .cart-info .active i::before,
.basic-product .cart-info .active svg::before {
    content: ""
}

.basic-product .cart-info .active .ri-heart-line::before {
    content: ""
}

.basic-product .cart-info i,
.basic-product .cart-info svg {
    color: #848484;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    display: block
}

.basic-product .cart-info i:hover,
.basic-product .cart-info svg:hover {
    color: var(--theme-color)
}

.basic-product .cart-info .addto-cart-bottom {
    position: relative;
    inset: unset;
    transform: unset;
    width: calc(25px + 10*(100vw - 320px)/1600);
    height: calc(25px + 10*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0
}

.basic-product .product-detail {
    margin-top: 15px
}

.basic-product .product-detail select {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    cursor: pointer;
    margin-top: 15px;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    color: #333;
    padding: calc(5px + 4*(100vw - 320px)/1600) calc(30px + 6*(100vw - 320px)/1600) calc(5px + 4*(100vw - 320px)/1600) calc(10px + 6*(100vw - 320px)/1600);
    width: max-content;
    max-width: 100%
}

.basic-product .product-detail .digital-price {
    margin-top: 13px;
    display: flex;
    align-items: center;
    gap: 11px
}

.basic-product .product-detail .digital-price .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 4px
}

.basic-product .product-detail .digital-price .form-check .form-check-input {
    float: unset;
    margin: 0
}

.basic-product .product-detail .digital-price .form-check .form-check-label {
    margin: 0;
    line-height: 1
}

.basic-product .product-detail h6 {
    display: block;
    overflow: hidden;
    line-height: calc(19px + 5*(100vw - 320px)/1600);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    padding-left: 5px
}

.basic-product .product-detail h6 a {
    color: #777
}

.basic-product .ribbon {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
    transition: all .5s ease
}

.basic-product .ribbon span {
    font-size: calc(10px + 2*(100vw - 320px)/1600);
    font-weight: bold;
    color: #eee;
    text-transform: capitalize;
    text-align: center;
    line-height: calc(20px + 5*(100vw - 320px)/1600);
    transform: rotate(-45deg);
    width: 105px;
    display: block;
    background: var(--theme-color);
    position: absolute;
    top: 19px;
    left: -21px
}

.basic-product .ribbon-round {
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    text-align: center;
    z-index: 0;
    width: fit-content;
    position: absolute;
    z-index: 1;
    top: calc(6px + 4*(100vw - 320px)/1600);
    left: calc(6px + 4*(100vw - 320px)/1600);
    padding: calc(7px + 3*(100vw - 320px)/1600);
    font-size: calc(12px + 2*(100vw - 320px)/1600);
    font-weight: 700;
    color: #fff
}

.basic-product .ribbon-round:after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(circle closest-side at 35% 35%, rgba(0, 0, 0, 0) 96%, rgba(0, 0, 0, 0) 97% 99%, rgba(0, 0, 0, 0)) var(--theme-color);
    clip-path: polygon(100% 50%, 88.04% 62.36%, 90.45% 79.39%, 73.51% 82.36%, 65.45% 97.55%, 50% 90%, 34.55% 97.55%, 26.49% 82.36%, 9.55% 79.39%, 11.96% 62.36%, 0% 50%, 11.96% 37.64%, 9.55% 20.61%, 26.49% 17.64%, 34.55% 2.45%, 50% 10%, 65.45% 2.45%, 73.51% 17.64%, 90.45% 20.61%, 88.04% 37.64%);
    animation: animName 20s linear infinite
}

.basic-product .ribbon-outer {
    --f: 0.5em;
    --r: 0.8em;
    font-size: calc(10px + 4*(100vw - 320px)/1600);
    font-weight: 500;
    color: #eee;
    position: absolute;
    top: 12px;
    left: calc(-1*var(--f));
    padding-inline: 10px;
    line-height: 1.8;
    background: var(--theme-color);
    border-bottom: var(--f) solid rgba(0, 0, 0, .3333333333);
    border-right: var(--r) solid rgba(0, 0, 0, 0);
    clip-path: polygon(0 0, 0 calc(100% - var(--f)), var(--f) 100%, var(--f) calc(100% - var(--f)), 100% calc(100% - var(--f)), calc(100% - var(--r)) calc(50% - var(--f) / 2), 100% 0);
    z-index: 1
}

.basic-product .add-cart-button {
    margin-top: 10px
}

@media(max-width: 767px) {
    .basic-product .add-cart-button {
        margin-top: 4px
    }
}

.basic-product .add-cart-button button {
    width: 100%;
    display: block;
    padding: 10px 10px;
    text-align: center;
    text-transform: unset;
    border: none;
    color: #888;
    font-size: 16px;
    font-weight: 500;
    background-color: #f6f6f6
}

.basic-product .add-cart-button button i,
.basic-product .add-cart-button button svg {
    display: none
}

.basic-product .hover-action {
    display: flex;
    flex-direction: column;
    gap: 8px
}

@media(max-width: 767px) {
    .basic-product .hover-action {
        gap: 4px
    }
}

.basic-product .rating-w-count {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px
}

.basic-product .addtocart_btn {
    width: max-content;
    margin: 0 auto;
    position: relative
}

.basic-product .addtocart_btn .add-button {
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    font-size: 16px;
    width: max-content;
    padding: 9px 49px;
    transition: all .5s ease;
    cursor: pointer;
    border: 1px solid var(--theme-color);
    margin-top: 15px;
    color: var(--theme-color);
    position: relative
}

.basic-product .addtocart_btn .add-button:before {
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: var(--theme-color);
    z-index: -2
}

.basic-product .addtocart_btn .add-button:hover,
.basic-product .addtocart_btn .add-button:focus {
    background-color: var(--theme-color) !important;
    color: #fff !important
}

.basic-product .addtocart_btn .add-button:hover i,
.basic-product .addtocart_btn .add-button:focus i {
    color: #fff !important
}

.basic-product .addtocart_btn .add-button:hover:before,
.basic-product .addtocart_btn .add-button:focus:before {
    transition: .5s all ease;
    left: 0;
    right: 0;
    opacity: 1
}

.basic-product .addtocart_btn .qty-box {
    position: absolute;
    bottom: 0;
    display: none;
    width: 100%
}

.basic-product .addtocart_btn .qty-box .input-group {
    padding: 4px;
    display: flex;
    flex-wrap: unset;
    align-items: center;
    border-radius: 0;
    border: 1px solid #eee;
    background-color: #fff
}

.basic-product .addtocart_btn .qty-box .input-group .form-control {
    width: calc(100% - 66px);
    border: none;
    background-color: rgba(0, 0, 0, 0);
    padding-block: 0
}

.basic-product .addtocart_btn .qty-box .input-group .form-control:focus {
    border-color: #efefef;
    box-shadow: none
}

.basic-product .addtocart_btn .qty-box .input-group button {
    height: 33px;
    padding: 0px;
    border: 1px solid #eee;
    width: 33px;
    background-color: #f8f8f8
}

.basic-product .addtocart_btn .qty-box .input-group button svg {
    color: #222;
    font-weight: 500;
    font-size: 15px;
    width: unset;
    height: unset
}

.basic-product .addtocart_btn .qty-box.open {
    display: block
}

.basic-product .product-action {
    border-top: 1px solid #eee;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px
}

.basic-product .product-action a {
    font-size: 20px;
    color: var(--theme-color)
}

.basic-product .product-action button {
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    color: #222;
    background-color: #f8f8f8;
    transition: all .5s ease;
    font-weight: 500;
    text-transform: none;
    letter-spacing: .01em
}

.basic-product .color-panel {
    display: flex;
    align-items: center;
    gap: 6px
}

.basic-product .color-panel ul {
    display: flex;
    align-items: center;
    gap: calc(0px + 4*(100vw - 320px)/1600)
}

.basic-product .color-panel ul li {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    cursor: pointer;
    transition: all .1s ease;
    vertical-align: middle
}

.basic-product .color-panel ul li+li {
    margin-left: calc(2px + 3*(100vw - 320px)/1600)
}

.basic-product .color-panel .color li {
    width: 15px;
    height: 15px
}

.basic-product .color-panel .image li {
    width: unset;
    height: unset
}

.basic-product .color-panel .image li.active a img {
    border-color: var(--theme-color)
}

.basic-product .color-panel .image li a img {
    width: calc(20px + 15*(100vw - 320px)/1600);
    height: calc(25px + 15*(100vw - 320px)/1600);
    margin: 0;
    padding: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
    cursor: pointer
}

.basic-product .color-panel .general-variant.color {
    gap: calc(0px + .0025*(100vw - 320px));
    margin-top: 0;
    flex-wrap: nowrap
}

.basic-product .color-panel .general-variant.color li {
    width: 15px;
    height: 15px;
    outline: unset;
    border: unset
}

.basic-product .color-panel .general-variant.color li.active {
    outline: unset;
    border: unset
}

.basic-product .color-panel.color-lg .color li {
    width: 20px;
    height: 20px
}

.basic-product .general-variant.image li {
    width: unset;
    height: unset
}

.basic-product .general-variant.image li.active a img {
    border-color: var(--theme-color)
}

.basic-product .general-variant.image li a img {
    width: calc(20px + 15*(100vw - 320px)/1600);
    height: calc(25px + 15*(100vw - 320px)/1600);
    margin: 0;
    padding: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
    cursor: pointer
}

.basic-product .general-variant.circle {
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 4*(100vw - 320px)/1600);
    margin-top: 10px;
    margin-left: 1px
}

.basic-product .general-variant.circle li {
    width: unset;
    height: unset;
    background-color: rgba(0, 0, 0, 0);
    display: block;
    border-radius: unset;
    outline: none;
    cursor: pointer;
    border: none
}

.basic-product .general-variant.circle li.active button {
    outline: 1px solid var(--theme-color);
    border: 3px solid #fff
}

.basic-product .general-variant.circle li.disabled {
    opacity: .4;
    cursor: not-allowed
}

.basic-product .general-variant.circle li button {
    width: calc(28px + 7*(100vw - 320px)/1600);
    height: calc(28px + 7*(100vw - 320px)/1600);
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: unset;
    font-weight: 400;
    border-radius: 0;
    outline: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    border: 3px solid #fff
}

.basic-product .general-variant.circle li button:hover {
    color: #222
}

.basic-product .general-variant.color {
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 5*(100vw - 320px)/1600);
    margin-top: 10px;
    margin-left: 1px
}

.basic-product .general-variant.color li {
    width: calc(20px + 10*(100vw - 320px)/1600);
    height: calc(20px + 10*(100vw - 320px)/1600);
    background-color: rgba(0, 0, 0, 0);
    display: block;
    border-radius: 100%;
    outline: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    border: 3px solid #fff
}

.basic-product .general-variant.color li.active {
    outline: 1px solid var(--theme-color);
    border: 3px solid #fff
}

.basic-product .general-variant.color li.disabled {
    opacity: .4;
    cursor: not-allowed
}

.basic-product .general-variant.thumbnail {
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    left: 10px;
    gap: 10px;
    margin: 0
}

.basic-product .general-variant.thumbnail .image {
    margin-bottom: 0
}

.basic-product .general-variant.thumbnail li {
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid #fff;
    display: block
}

.basic-product .general-variant.thumbnail li+li {
    margin-top: 7px
}

.basic-product .general-variant.thumbnail li button,
.basic-product .general-variant.thumbnail li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0
}

.basic-product .general-variant.thumbnail li.active {
    border-color: var(--theme-color)
}

.basic-product .addto-cart-bottom .btn {
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    border: unset;
    color: #222;
    font-weight: 500
}

.basic-product:hover .cart-info {
    opacity: 1;
    transition: all .5s ease
}

.basic-product:hover .cart-info .hover-action li:nth-child(1) a {
    animation: fadeInRight 500ms ease-in-out
}

.basic-product:hover .cart-info .hover-action li:nth-child(2) a {
    animation: fadeInRight 700ms ease-in-out
}

.basic-product:hover .cart-info .hover-action li:nth-child(3) a {
    animation: fadeInRight 1000ms ease-in-out
}

.basic-product:hover .cart-info .hover-action>div:nth-child(1) a {
    animation: fadeInRight 500ms ease-in-out
}

.basic-product:hover .cart-info .hover-action>div:nth-child(2) a {
    animation: fadeInRight 700ms ease-in-out
}

.basic-product:hover .cart-info .hover-action>div:nth-child(3) a {
    animation: fadeInRight 1000ms ease-in-out
}

.basic-product:hover .product-action button {
    color: var(--theme-color)
}

.basic-product:hover .img-wrapper .quick-option {
    transform: translate(-50%, -50%) scale(1)
}

.basic-product:hover .img-wrapper .addto-cart-bottom {
    bottom: 16px
}

@media(max-width: 576px) {
    .basic-product:hover .img-wrapper .addto-cart-bottom {
        bottom: 10px
    }
}

.basic-product.theme-product-1 {
    border: 1px solid #eee;
    overflow: hidden;
    padding: calc(6px + 4*(100vw - 320px)/1600)
}

.basic-product.theme-product-1 .product-detail {
    margin-top: 0;
    padding: 0
}

.basic-product.theme-product-1 .product-detail .offer-panel {
    padding: 10px 0 0;
    margin-top: 0;
    color: #222;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    position: relative;
    transition: .4s ease
}

.basic-product.theme-product-1 .product-detail .offer-panel li+li {
    opacity: 0;
    visibility: hidden
}

.basic-product.theme-product-1 .product-detail .offer-panel .offer-icon {
    color: var(--theme-color);
    animation: animName 2s linear infinite;
    display: inline-block
}

.basic-product.theme-product-1 .product-detail>div {
    padding: calc(10px + 5*(100vw - 320px)/1600) 0;
    border-bottom: 1px solid #eee
}

.basic-product.theme-product-1 .cart-info {
    top: 10px;
    bottom: unset;
    opacity: 1;
    right: 10px
}

.basic-product.theme-product-1 .cart-info button,
.basic-product.theme-product-1 .cart-info a {
    width: calc(26px + 6*(100vw - 320px)/1600);
    height: calc(26px + 6*(100vw - 320px)/1600);
    border: none
}

.basic-product.theme-product-1 .cart-info button i,
.basic-product.theme-product-1 .cart-info button svg,
.basic-product.theme-product-1 .cart-info a i,
.basic-product.theme-product-1 .cart-info a svg {
    color: var(--theme-color);
    font-weight: normal;
    font-size: calc(14px + 3*(100vw - 320px)/1600)
}

.basic-product.theme-product-1 .cart-info button {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-1 .cart-info button {
        opacity: 1
    }
}

.basic-product.theme-product-1 .cart-info :not(.btn-check)+.btn:active {
    background-color: #fff
}

.basic-product.theme-product-1 .cart-info a {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-1 .cart-info a {
        opacity: 1
    }
}

.basic-product.theme-product-1 .cart-info a.wishlist-icon {
    opacity: 1
}

.basic-product.theme-product-1 .hover-action {
    margin-top: 0
}

.basic-product.theme-product-1 .hover-action li:empty {
    display: none
}

.basic-product.theme-product-1 .hover-action li button {
    transition: unset
}

.basic-product.theme-product-1:hover .product-detail .offer-panel {
    animation: marquee-discount 8s linear infinite
}

.basic-product.theme-product-1:hover .product-detail .offer-panel li+li {
    opacity: 1;
    visibility: visible
}

.basic-product.theme-product-1:hover .cart-info .hover-action li:first-child a {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-1:hover .cart-info .hover-action li:nth-child(2) a {
    animation: fadeInDown 1300ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-1:hover .cart-info .hover-action>div:first-child a {
    animation: fadeInDown 900ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-1:hover .cart-info .hover-action>div:nth-child(2) a {
    animation: fadeInDown 1000ms ease-in-out
}

.basic-product.theme-product-1:hover .cart-info .wishlist-icon {
    animation: none
}

.basic-product.theme-product-1:hover .cart-info button {
    animation: fadeInDown 500ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-1:hover .cart-info a {
    opacity: 1
}

.basic-product.theme-product-1:hover .cart-info a:nth-child(3) {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-1:hover .cart-info a:nth-child(4) {
    animation: fadeInDown 1000ms ease-in-out
}

.basic-product.theme-product-1:hover .hover-action li button {
    animation: fadeInDown 300ms ease-in-out
}

.basic-product.theme-product-1:hover .hover-action li:nth-child(2) a {
    animation: fadeInDown 500ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-1:hover .hover-action li:nth-child(3) a {
    animation: fadeInDown 700ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-1:hover .hover-action li:nth-child(4) a {
    animation: fadeInDown 1000ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-2 {
    padding: calc(10px + 8*(100vw - 320px)/1600);
    background-color: #fff;
    position: relative;
    border: 1px solid #eee;
    border-radius: 0
}

.basic-product.theme-product-2 .rating {
    margin-top: calc(3px + 5*(100vw - 320px)/1600);
    margin-bottom: calc(0px + 3*(100vw - 320px)/1600)
}

.basic-product.theme-product-2 .product-title {
    width: 88%
}

@media(max-width: 767px) {
    .basic-product.theme-product-2 .product-title {
        width: 76%
    }
}

.basic-product.theme-product-2 .product-detail {
    margin-bottom: 5px
}

.basic-product.theme-product-2 .product-detail .details li {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    line-height: 24px
}

.basic-product.theme-product-2 .product-detail .details li+li {
    margin-left: 12px
}

.basic-product.theme-product-2 .product-detail .add-wish {
    position: absolute;
    right: calc(10px + 8*(100vw - 320px)/1600);
    top: calc(10px + 8*(100vw - 320px)/1600);
    background-color: #f1f1f1;
    border-radius: 100%;
    width: calc(24px + 4*(100vw - 320px)/1600);
    height: calc(24px + 4*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center
}

.basic-product.theme-product-2 .product-detail .add-wish a {
    line-height: 0;
    cursor: pointer
}

.basic-product.theme-product-2 .product-detail .add-wish a i {
    color: var(--theme-color)
}

.basic-product.theme-product-2 .bottom-detail {
    display: flex;
    align-items: center;
    margin-top: calc(10px + 5*(100vw - 320px)/1600);
    padding-bottom: 0
}

.basic-product.theme-product-2 .bottom-detail .btn {
    margin-left: auto
}

.basic-product.theme-product-2 .bottom-detail .color-panel {
    margin-bottom: 10px
}

.basic-product.theme-product-2 .cart-detail {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-bottom: -5px;
    font-size: 16px
}

@media(max-width: 576px) {
    .basic-product.theme-product-2 .cart-detail {
        display: none
    }
}

.basic-product.theme-product-2 .cart-detail>li {
    padding: 0 10px
}

.basic-product.theme-product-2 .cart-detail>li a,
.basic-product.theme-product-2 .cart-detail>li button {
    color: rgba(0, 0, 0, .5);
    text-transform: capitalize;
    display: flex;
    align-items: center
}

.basic-product.theme-product-2 .cart-detail>li svg,
.basic-product.theme-product-2 .cart-detail>li i {
    width: unset;
    height: unset;
    margin-right: 6px
}

.basic-product.theme-product-2 .cart-detail>li button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 16px;
    padding: 0;
    font-weight: normal
}

.basic-product.theme-product-2 .cart-detail>li+li {
    border-left: 1px solid #eee
}

.basic-product.theme-product-2 .img-wrapper {
    position: relative;
    text-align: center
}

.basic-product.theme-product-2 .img-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .77);
    opacity: 0;
    transition: all .5s ease
}

.basic-product.theme-product-2 .img-wrapper .quick-view-part {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: var(--theme-color);
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0px 1px 2px #a9a9a9;
    transition: all .5s ease
}

.basic-product.theme-product-2 .img-wrapper .quick-view-part a {
    line-height: 0;
    color: #fff
}

.basic-product.theme-product-2 .img-wrapper .quick-view-part a svg {
    width: 16px;
    height: 16px
}

.basic-product.theme-product-2:hover .img-wrapper:after {
    opacity: 1;
    transition: all .5s ease
}

.basic-product.theme-product-2:hover .img-wrapper .quick-view-part {
    transform: translate(-50%, -50%) scale(1);
    transition: all .5s ease
}

.basic-product.theme-product-3 {
    padding: calc(7px + 5*(100vw - 320px)/1600);
    border: 1px solid #eee;
    border-radius: 0
}

.basic-product.theme-product-3 .hover-action {
    margin-top: 0
}

.basic-product.theme-product-3 .hover-action li:empty {
    display: none
}

.basic-product.theme-product-3 .product-title {
    margin-bottom: 6px
}

.basic-product.theme-product-3 .cart-info {
    top: 10px;
    bottom: unset;
    opacity: 1;
    right: 10px
}

.basic-product.theme-product-3 .cart-info button,
.basic-product.theme-product-3 .cart-info a {
    width: calc(26px + 6*(100vw - 320px)/1600);
    height: calc(26px + 6*(100vw - 320px)/1600);
    border: none
}

.basic-product.theme-product-3 .cart-info button i,
.basic-product.theme-product-3 .cart-info a i {
    color: var(--theme-color);
    font-size: calc(14px + 3*(100vw - 320px)/1600)
}

.basic-product.theme-product-3 .cart-info button {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-3 .cart-info button {
        opacity: 1
    }
}

.basic-product.theme-product-3 .cart-info a {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-3 .cart-info a {
        opacity: 1
    }
}

.basic-product.theme-product-3 .cart-info a.wishlist-icon {
    opacity: 1
}

.basic-product.theme-product-3:hover .cart-info .wishlist-icon {
    animation: none
}

.basic-product.theme-product-3:hover .cart-info a {
    opacity: 1
}

.basic-product.theme-product-3:hover .cart-info .hover-action li:nth-child(1) a {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-3:hover .cart-info .hover-action li:nth-child(2) a {
    animation: fadeInDown 1000ms ease-in-out
}

.basic-product.theme-product-3:hover .cart-info .hover-action>div:nth-child(1) a {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-3:hover .cart-info .hover-action>div:nth-child(2) a {
    animation: fadeInDown 1000ms ease-in-out
}

.basic-product.theme-product-4 .color-panel {
    position: absolute;
    bottom: 10px;
    left: 10px
}

.basic-product.theme-product-4 .color-panel select {
    display: none
}

.basic-product.theme-product-4 .price del {
    margin-left: auto
}

@media(max-width: 768px) {
    .basic-product.theme-product-4 .price del {
        margin-left: 0
    }
}

.basic-product.theme-product-4 .price .discounted-price {
    font-weight: 500;
    padding: 5px 6px;
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 0;
    margin-left: 0;
    position: relative;
    font-size: 14px
}

.basic-product.theme-product-4 .price .discounted-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .1
}

.basic-product.theme-product-4 .cart-info {
    top: 10px;
    bottom: unset;
    opacity: 1;
    right: 10px
}

.basic-product.theme-product-4 .cart-info button,
.basic-product.theme-product-4 .cart-info a {
    width: calc(26px + 6*(100vw - 320px)/1600);
    height: calc(26px + 6*(100vw - 320px)/1600);
    border: none
}

.basic-product.theme-product-4 .cart-info button i,
.basic-product.theme-product-4 .cart-info button svg,
.basic-product.theme-product-4 .cart-info a i,
.basic-product.theme-product-4 .cart-info a svg {
    font-weight: normal;
    color: var(--theme-color);
    font-size: calc(14px + 3*(100vw - 320px)/1600)
}

.basic-product.theme-product-4 .cart-info button {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-4 .cart-info button {
        opacity: 1
    }
}

.basic-product.theme-product-4 .cart-info a {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-4 .cart-info a {
        opacity: 1
    }
}

.basic-product.theme-product-4 .cart-info a.wishlist-icon {
    opacity: 1
}

.basic-product.theme-product-4 .cart-info .wishlist-icon a {
    opacity: 1
}

@media(max-width: 768px) {
    .basic-product.theme-product-4 .add-cart-btn {
        margin-top: 8px
    }
}

.basic-product.theme-product-4 .hover-action li:empty {
    display: none
}

.basic-product.theme-product-4:hover .cart-info .wishlist-icon {
    animation: none
}

.basic-product.theme-product-4:hover .cart-info button {
    animation: fadeInDown 500ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-4:hover .cart-info .hover-action li:first-child a {
    animation: fadeInDown 900ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-4:hover .cart-info .hover-action li:nth-child(2) a {
    animation: fadeInDown 1300ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-4:hover .cart-info .hover-action li:nth-child(3) a {
    animation: fadeInDown 700ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-4:hover .cart-info .hover-action li:nth-child(4) a {
    animation: fadeInDown 1000ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-4:hover .cart-info .hover-action>div:first-child a {
    animation: fadeInDown 900ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-4:hover .cart-info .hover-action>div:nth-child(2) a {
    animation: fadeInDown 1300ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-4:hover .cart-info .hover-action>div:nth-child(3) a {
    animation: fadeInDown 700ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-4:hover .cart-info .hover-action>div:nth-child(4) a {
    animation: fadeInDown 1000ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-5 .img-wrapper {
    border-radius: 0
}

.basic-product.theme-product-5 .cart-info {
    background-color: #fff;
    right: -40px;
    bottom: unset;
    top: 0;
    gap: 0;
    padding: 4px
}

.basic-product.theme-product-5 .cart-info button,
.basic-product.theme-product-5 .cart-info a {
    border: none;
    border-radius: 0;
    padding: 0;
    font-weight: unset
}

.basic-product.theme-product-5 .cart-info .hover-action {
    margin-top: 0;
    gap: 0
}

.basic-product.theme-product-5:hover .cart-info {
    right: 0
}

.basic-product.theme-product-5:hover .cart-info button,
.basic-product.theme-product-5:hover .cart-info a {
    animation: none
}

.basic-product.theme-product-5:hover .cart-info .hover-action li a {
    animation: none
}

.basic-product.theme-product-6 {
    padding: calc(6px + 6*(100vw - 320px)/1600);
    border: 1px solid #eee
}

.basic-product.theme-product-6 .hover-action {
    flex-direction: row;
    gap: 0;
    margin-top: 0
}

.basic-product.theme-product-6 .hover-action li a {
    animation: none !important
}

.basic-product.theme-product-6 .product-detail * {
    text-align: center;
    justify-content: center
}

.basic-product.theme-product-6 .addtocart_btn .add-button {
    padding: calc(7px + 2*(100vw - 320px)/1600) calc(19px + 10*(100vw - 320px)/1600);
    font-size: calc(13px + 1*(100vw - 320px)/1600)
}

.basic-product.theme-product-6 .img-wrapper {
    background-color: #f8f8f8
}

.basic-product.theme-product-6 .product-title {
    margin-bottom: calc(6px + 4*(100vw - 320px)/1600);
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.basic-product.theme-product-6 .cart-info {
    flex-direction: row;
    left: 50%;
    right: unset;
    transform: translate(-50%, -50%) scale(0.7);
    bottom: unset;
    top: 50%;
    background-color: #fff;
    gap: 0;
    padding: 2px 5px
}

@media(max-width: 767px) {
    .basic-product.theme-product-6 .cart-info {
        display: none
    }
}

.basic-product.theme-product-6 .cart-info button,
.basic-product.theme-product-6 .cart-info a {
    border: none
}

.basic-product.theme-product-6 .cart-info a {
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none
}

.basic-product.theme-product-6 .cart-info a+a::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 54%;
    top: 50%;
    left: 0;
    background-color: #eee;
    transform: translateY(-50%)
}

.basic-product.theme-product-6:hover .cart-info {
    transform: translate(-50%, -50%) scale(1)
}

.basic-product.theme-product-6:hover .cart-info a {
    animation: none
}

.basic-product.theme-product-7 {
    background-color: #fff;
    border: 1px solid #eee;
    margin-bottom: 1px
}

@media(max-width: 460px) {
    .basic-product.theme-product-7 .product-action {
        display: none
    }
}

.basic-product.theme-product-7 .rating i {
    font-size: 15px;
    margin-right: 0
}

.basic-product.theme-product-7 .product-title {
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    color: #777;
    margin-bottom: 10px !important
}

.basic-product.theme-product-7 .product-detail {
    margin-top: 0;
    padding: 14px;
    position: relative;
    padding-bottom: 14px !important
}

.basic-product.theme-product-7 .img-wrapper {
    margin: 10px 10px 0 10px
}

.basic-product.theme-product-7 .img-wrapper .bg-size {
    transition: all .5s ease
}

.basic-product.theme-product-7 .img-wrapper::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 1
}

.basic-product.theme-product-7 .price {
    font-size: 16px;
    margin-bottom: 4px
}

.basic-product.theme-product-7:hover .img-wrapper .bg-size {
    transform: scale(1.2)
}

.basic-product.theme-product-7:hover .img-wrapper::before {
    content: ""
}

.basic-product.theme-product-8 {
    background-color: #fff;
    border: 1px solid #eee;
    margin-bottom: 1px
}

.basic-product.theme-product-8 .hover-action {
    margin-top: 0
}

.basic-product.theme-product-8 .hover-action li:empty {
    display: none
}

.basic-product.theme-product-8 .product-title {
    margin-bottom: 12px
}

.basic-product.theme-product-8 .add-round-btn {
    position: absolute;
    right: calc(8px + 6*(100vw - 320px)/1600);
    bottom: calc(8px + 6*(100vw - 320px)/1600);
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 100%;
    width: calc(24px + 14*(100vw - 320px)/1600);
    height: calc(24px + 14*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-weight: normal;
    font-size: calc(13px + 5*(100vw - 320px)/1600)
}

.basic-product.theme-product-8 .add-round-btn .ri-shopping-cart-line::before {
    content: ""
}

.basic-product.theme-product-8 .product-detail {
    margin-top: 0;
    padding: calc(8px + 6*(100vw - 320px)/1600) !important;
    position: relative
}

.basic-product.theme-product-8 .product-detail .add-round-btn .ri-shopping-cart-line:before {
    content: ""
}

.basic-product.theme-product-8 .product-detail .add-round-btn span {
    display: none
}

.basic-product.theme-product-8 .product-detail .add-round-btn.active .ri-shopping-cart-line:before {
    content: ""
}

.basic-product.theme-product-8 .rating-w-count {
    margin-top: 10px
}

.basic-product.theme-product-8 .img-wrapper .bg-size {
    transition: all .5s ease
}

.basic-product.theme-product-8 .cart-info {
    top: calc(8px + 2*(100vw - 320px)/1600);
    bottom: unset;
    opacity: 1;
    right: calc(8px + 2*(100vw - 320px)/1600)
}

.basic-product.theme-product-8 .cart-info button,
.basic-product.theme-product-8 .cart-info a {
    width: calc(26px + 6*(100vw - 320px)/1600);
    height: calc(26px + 6*(100vw - 320px)/1600);
    border: none
}

.basic-product.theme-product-8 .cart-info button i,
.basic-product.theme-product-8 .cart-info button svg,
.basic-product.theme-product-8 .cart-info a i,
.basic-product.theme-product-8 .cart-info a svg {
    color: var(--theme-color);
    font-size: calc(14px + 3*(100vw - 320px)/1600)
}

.basic-product.theme-product-8 .cart-info button {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-8 .cart-info button {
        opacity: 1
    }
}

.basic-product.theme-product-8 .cart-info a {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-8 .cart-info a {
        opacity: 1
    }
}

.basic-product.theme-product-8 .cart-info a.wishlist-icon {
    opacity: 1
}

.basic-product.theme-product-8 .wishlist-icon a {
    opacity: 1
}

.basic-product.theme-product-8:hover .cart-info .wishlist-icon {
    animation: none
}

.basic-product.theme-product-8:hover .cart-info a {
    opacity: 1
}

.basic-product.theme-product-8:hover .cart-info a:nth-child(2) {
    animation: fadeInDown 500ms ease-in-out
}

.basic-product.theme-product-8:hover .cart-info a:nth-child(3) {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-8:hover .cart-info .hover-action li:nth-child(3) a {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-8:hover .cart-info .hover-action li:nth-child(4) a {
    animation: fadeInDown 1000ms ease-in-out
}

.basic-product.theme-product-8:hover .cart-info .hover-action>div:nth-child(1) a {
    animation: fadeInRight 700ms ease-in-out
}

.basic-product.theme-product-8:hover .cart-info .hover-action>div:nth-child(2) a {
    animation: fadeInRight 1000ms ease-in-out
}

.basic-product.theme-product-8:hover .img-wrapper .bg-size {
    transform: scale(1.2)
}

.basic-product.theme-product-9 {
    background-color: #f8f8f8;
    border: 1px solid #eee
}

.basic-product.theme-product-9 .img-wrapper {
    background-color: #fff
}

.basic-product.theme-product-9 .hover-action {
    margin-top: 0
}

.basic-product.theme-product-9 .hover-action li:empty {
    display: none
}

.basic-product.theme-product-9 .product-detail {
    margin-top: 0;
    padding: calc(8px + 7*(100vw - 320px)/1600) !important
}

.basic-product.theme-product-9 .bottom-details {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 10px
}

.basic-product.theme-product-9 .rating-label {
    display: flex;
    align-items: center;
    gap: 6px
}

.basic-product.theme-product-9 .rating-label span {
    color: #aaa;
    line-height: 1
}

@media(max-width: 480px) {
    .basic-product.theme-product-9 .rating-label span.review-count {
        display: none
    }
}

.basic-product.theme-product-9 .rating-label>div {
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px calc(6px + 4*(100vw - 320px)/1600);
    border-radius: 13px;
    color: #fff;
    font-size: calc(12px + 2*(100vw - 320px)/1600)
}

.basic-product.theme-product-9 .rating-label>div span {
    color: #fff
}

.basic-product.theme-product-9 .discount-value {
    padding-top: calc(6px + 4*(100vw - 320px)/1600);
    border-top: 1px solid #eee;
    margin-top: calc(10px + 4*(100vw - 320px)/1600);
    color: #222;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.basic-product.theme-product-9 .discount-value .offer-icon {
    color: #767676;
    animation: animName 2s linear infinite;
    display: inline-block
}

.basic-product.theme-product-9 .price-vertical {
    text-align: right
}

.basic-product.theme-product-9 .price-vertical h4 {
    margin-bottom: 0;
    font-weight: 500
}

.basic-product.theme-product-9 .cart-info {
    top: 10px;
    bottom: unset;
    opacity: 1;
    right: 10px
}

.basic-product.theme-product-9 .cart-info button,
.basic-product.theme-product-9 .cart-info a {
    width: calc(26px + 6*(100vw - 320px)/1600);
    height: calc(26px + 6*(100vw - 320px)/1600);
    border: none;
    background-color: #f8f8f8
}

.basic-product.theme-product-9 .cart-info button i,
.basic-product.theme-product-9 .cart-info a i {
    color: var(--theme-color);
    font-size: calc(14px + 3*(100vw - 320px)/1600)
}

.basic-product.theme-product-9 .cart-info button {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-9 .cart-info button {
        opacity: 1
    }
}

.basic-product.theme-product-9 .cart-info a {
    opacity: 0
}

@media(max-width: 767px) {
    .basic-product.theme-product-9 .cart-info a {
        opacity: 1
    }
}

.basic-product.theme-product-9 .cart-info a.wishlist-icon {
    opacity: 1
}

.basic-product.theme-product-9:hover .cart-info .wishlist-icon {
    animation: none
}

.basic-product.theme-product-9:hover .cart-info button {
    animation: fadeInDown 500ms ease-in-out;
    opacity: 1
}

.basic-product.theme-product-9:hover .cart-info a {
    opacity: 1
}

.basic-product.theme-product-9:hover .cart-info .hover-action li:nth-child(2) a {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-9:hover .cart-info .hover-action li:nth-child(3) a {
    animation: fadeInDown 1000ms ease-in-out
}

.basic-product.theme-product-9:hover .cart-info .hover-action>div:nth-child(1) a {
    animation: fadeInRight 700ms ease-in-out
}

.basic-product.theme-product-9:hover .cart-info .hover-action>div:nth-child(2) a {
    animation: fadeInRight 1000ms ease-in-out
}

.basic-product.theme-product-10 .cart-info {
    bottom: unset;
    top: 12px
}

@media(max-width: 767px) {
    .basic-product.theme-product-10 .cart-info {
        top: 10px
    }
}

.basic-product.theme-product-10:hover .cart-info .wishlist-icon {
    animation: none
}

.basic-product.theme-product-10:hover .cart-info a {
    opacity: 1
}

.basic-product.theme-product-10:hover .cart-info a:nth-child(2) {
    animation: fadeInDown 500ms ease-in-out
}

.basic-product.theme-product-10:hover .cart-info a:nth-child(3) {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-10:hover .cart-info .hover-action li:nth-child(2) a {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-10:hover .cart-info .hover-action li:nth-child(3) a {
    animation: fadeInDown 1000ms ease-in-out
}

.basic-product.theme-product-10:hover .cart-info .hover-action>div:nth-child(2) a {
    animation: fadeInRight 700ms ease-in-out
}

.basic-product.theme-product-10:hover .cart-info .hover-action>div:nth-child(3) a {
    animation: fadeInRight 1000ms ease-in-out
}

.basic-product.theme-product-10:hover .img-wrapper .bg-size {
    transform: scale(1.2)
}

.basic-product.theme-product-11 {
    padding: calc(6px + 4*(100vw - 320px)/1600);
    overflow: hidden;
    border: 1px solid #eee
}

.basic-product.theme-product-11 .img-wrapper .bg-size {
    transition: all .5s ease
}

.basic-product.theme-product-11 .product-detail {
    text-align: center;
    overflow: hidden;
    margin-top: 10px
}

.basic-product.theme-product-11 .product-detail * {
    justify-content: center
}

.basic-product.theme-product-11 .cart-info {
    top: 12px;
    bottom: unset
}

.basic-product.theme-product-11 .abs-product {
    position: absolute;
    bottom: -62%;
    width: calc(100% - 20px);
    background-color: #fff;
    padding: 10px;
    transition: all .5s ease;
    display: flex;
    flex-direction: column;
    gap: 8px
}

@media(max-width: 768px) {
    .basic-product.theme-product-11 .abs-product {
        position: relative;
        width: 100%;
        padding: 0
    }

    .basic-product.theme-product-11 .abs-product .product-title {
        display: none
    }

    .basic-product.theme-product-11 .abs-product .price {
        display: none
    }
}

.basic-product.theme-product-11 .abs-product .add-cart-btn {
    margin-top: 0
}

.basic-product.theme-product-11 .abs-product .digital-price {
    flex-wrap: wrap
}

.basic-product.theme-product-11 .abs-product select {
    font-size: 14px
}

.basic-product.theme-product-11 .abs-product .add-cart-btn i {
    display: none
}

.basic-product.theme-product-11 .abs-product .general-variant.image {
    display: flex;
    align-items: center;
    justify-content: center
}

.basic-product.theme-product-11 .abs-product .general-variant.circle {
    margin: 0;
    justify-content: center
}

.basic-product.theme-product-11:hover .abs-product {
    bottom: 0
}

.basic-product.theme-product-11:hover .cart-info .wishlist-icon {
    animation: none
}

.basic-product.theme-product-11:hover .cart-info a {
    opacity: 1
}

.basic-product.theme-product-11:hover .cart-info a:nth-child(2) {
    animation: fadeInDown 500ms ease-in-out
}

.basic-product.theme-product-11:hover .cart-info a:nth-child(3) {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-11:hover .cart-info .hover-action li:nth-child(2) a {
    animation: fadeInDown 700ms ease-in-out
}

.basic-product.theme-product-11:hover .cart-info .hover-action li:nth-child(3) a {
    animation: fadeInDown 1000ms ease-in-out
}

.basic-product.theme-product-11:hover .cart-info .hover-action>div:nth-child(2) a {
    animation: fadeInRight 700ms ease-in-out
}

.basic-product.theme-product-11:hover .cart-info .hover-action>div:nth-child(3) a {
    animation: fadeInRight 1000ms ease-in-out
}

.basic-product.theme-product-11:hover .img-wrapper .bg-size {
    transform: scale(1.2)
}

.flip {
    position: relative;
    overflow: hidden;
    z-index: 0
}

.flip .front {
    opacity: 1;
    transition: all .5s ease;
    background-color: #f8f8f8
}

.flip .back {
    background-color: #f8f8f8;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease;
    transform: translateX
}

.bg_cls .basic-product.theme-product-11 {
    background-color: #fff
}

.bg_cls .service-block1 {
    background-color: #fff
}

.no-data-added,
.tab-category {
    text-align: center;
    padding: 60px 0
}

.no-data-added img,
.tab-category img {
    width: 35%;
    margin-bottom: calc(15px + 11*(100vw - 320px)/1600);
    max-width: 270px
}

.no-data-added h4,
.tab-category h4 {
    font-weight: 500;
    font-size: calc(19px + 6*(100vw - 320px)/1600);
    color: #232323;
    letter-spacing: unset;
    text-transform: none;
    margin-bottom: 0
}

.no-data-added.collection-no-data,
.tab-category.collection-no-data {
    padding: 120px 0
}

.no-data-added.collection-no-data img,
.tab-category.collection-no-data img {
    width: 30%
}

@media(max-width: 1366px) {

    .no-data-added.collection-no-data img,
    .tab-category.collection-no-data img {
        width: 42%
    }
}

@media(max-width: 767px) {

    .no-data-added.collection-no-data img,
    .tab-category.collection-no-data img {
        width: 60%
    }
}

@media(max-width: 480px) {

    .no-data-added.collection-no-data img,
    .tab-category.collection-no-data img {
        width: 80%
    }
}

.no-data-added.collection-no-data p,
.tab-category.collection-no-data p {
    width: 44%
}

@media(max-width: 1206px) {

    .no-data-added.collection-no-data p,
    .tab-category.collection-no-data p {
        width: 53%
    }
}

@media(max-width: 1100px) {

    .no-data-added.collection-no-data p,
    .tab-category.collection-no-data p {
        width: 64%
    }
}

@media(max-width: 575px) {

    .no-data-added.collection-no-data p,
    .tab-category.collection-no-data p {
        width: 80%
    }
}

@media(max-width: 480px) {

    .no-data-added.collection-no-data p,
    .tab-category.collection-no-data p {
        width: 100%
    }
}

.no-data-added p,
.tab-category p {
    width: 100%;
    margin: calc(6px + 4*(100vw - 320px)/1600) auto 0;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    line-height: 1.4;
    color: #777
}

.no-data-added.category-no-data img,
.tab-category.category-no-data img {
    width: 64%
}

.no-data-added.no-shipping img,
.tab-category.no-shipping img {
    width: 32%
}

@media(max-width: 991px) {

    .no-data-added.no-shipping img,
    .tab-category.no-shipping img {
        width: 42%
    }
}

@media(max-width: 576px) {

    .no-data-added.no-shipping img,
    .tab-category.no-shipping img {
        width: 50%
    }
}

@media(max-width: 420px) {

    .no-data-added.no-shipping img,
    .tab-category.no-shipping img {
        width: 80%
    }
}

.tab-category {
    padding: 10px !important
}

.tab-category h4 {
    font-size: 20px !important
}

.empty-cart {
    text-align: center
}

.empty-cart *:empty {
    display: none
}

.empty-cart img {
    width: 65%;
    margin: 0 auto 23px
}

.empty-cart h4 {
    margin: 0;
    line-height: 1.5;
    letter-spacing: unset;
    font-weight: 500;
    text-transform: unset;
    font-size: 18px
}

.seller-grid-box {
    background-color: #f8f8f8;
    padding: calc(12px + 13*(100vw - 320px)/1600);
    border-radius: 0;
    position: relative;
    border: 1px solid #eee;
    display: block
}

.seller-grid-box .grid-image {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px
}

.seller-grid-box .grid-image .image {
    width: 74px;
    height: 74px;
    padding: 10px;
    border-radius: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.seller-grid-box .grid-image .image h4 {
    line-height: 1;
    margin: 0;
    font-size: 60px;
    margin: 0;
    color: #222;
    font-weight: 700;
    text-transform: uppercase
}

.seller-grid-box .grid-image .contain-name {
    width: calc(100% - 74px - 10px);
    position: relative
}

.seller-grid-box .grid-image .contain-name .since-number {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 5px
}

.seller-grid-box .grid-image .contain-name .since-number .rating {
    display: block
}

.seller-grid-box .grid-image .contain-name .since-number .rating>*>span {
    line-height: 1
}

@media(max-width: 480px) {
    .seller-grid-box .grid-image .contain-name .since-number {
        display: block
    }
}

.seller-grid-box .grid-image .contain-name .since-number h6 {
    color: #777;
    font-weight: 500;
    text-align: right;
    margin: 0
}

.seller-grid-box .grid-image .contain-name .since-number .product-rating {
    display: block;
    text-align: right
}

@media(max-width: 480px) {
    .seller-grid-box .grid-image .contain-name .since-number .product-rating {
        margin-top: 2px
    }
}

.seller-grid-box .grid-image .contain-name h3 {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
    width: 50%;
    letter-spacing: unset;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: nowrap
}

.seller-grid-box .grid-image .contain-name .product-label {
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0);
    font-size: 13px;
    letter-spacing: .5px;
    border-radius: 4px;
    color: var(--theme-color);
    position: relative;
    inset: unset;
    z-index: 0
}

.seller-grid-box .grid-image .contain-name .product-label:after {
    position: absolute;
    content: "";
    background-color: var(--theme-color);
    opacity: .1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.seller-grid-box .grid-contain .seller-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 25px
}

.seller-grid-box .grid-contain .seller-contact-details h6 {
    font-weight: 500
}

.seller-grid-box .grid-contain .seller-contact-details ul {
    display: grid;
    gap: 11px
}

.seller-grid-box .grid-contain .seller-contact-details ul li {
    display: flex;
    align-items: center;
    gap: 7px
}

.seller-grid-box .grid-contain .seller-contact-details ul li i {
    font-size: 20px;
    line-height: 1;
    color: #777
}

.seller-grid-box .grid-contain .seller-contact-details ul li h5 {
    margin: 0;
    font-weight: 400;
    line-height: 1.3;
    color: #464646
}

.seller-grid-box .grid-contain .seller-contact-details ul li h5 a {
    color: #222
}

.seller-grid-box .grid-contain .contain-name {
    display: flex;
    align-items: flex-end;
    justify-content: space-between
}

.seller-grid-box .grid-contain .contain-name h6 {
    color: #777;
    margin-left: 4px
}

.seller-grid-box .grid-contain .contain-name h3 {
    font-size: calc(19px + 4*(100vw - 320px)/1600);
    font-weight: 600;
    margin-bottom: calc(5px + 3*(100vw - 320px)/1600);
    color: #222
}

.seller-grid-box .grid-contain .contain-name .product-rating {
    margin-bottom: calc(14px + 5*(100vw - 320px)/1600)
}

.seller-grid-box .grid-contain .contain-name .product-label {
    padding: 5px 10px;
    font-size: 13px;
    letter-spacing: .5px;
    border-radius: 4px;
    color: var(--theme-color);
    position: relative;
    z-index: 0
}

.seller-grid-box .grid-contain .contain-name .product-label:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .1;
    left: 0;
    top: 0;
    z-index: -1
}

.seller-grid-box .grid-contain .contain-name .grid-image {
    width: calc(67px + 33*(100vw - 320px)/1600);
    height: calc(67px + 33*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: calc(10px + 5*(100vw - 320px)/1600);
    border-radius: 0
}

.seller-grid-box .grid-contain .contain-name .grid-image h1 {
    color: #777;
    line-height: 1;
    font-size: calc(43px + 27*(100vw - 320px)/1600)
}

.seller-grid-box .grid-contain .contain-name .grid-image .image a {
    display: flex;
    align-items: center;
    justify-content: center
}

.seller-grid-box .grid-contain .contain-name .grid-image .image a h1 {
    margin: 0;
    font-size: 56px;
    line-height: 1
}

.seller-grid-box .grid-contain .seller-category {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.seller-grid-box .grid-contain .seller-category .product-image {
    display: flex;
    flex-wrap: nowrap
}

.seller-grid-box .grid-contain .seller-category .product-image li {
    width: calc(35px + 5*(100vw - 320px)/1600);
    height: calc(35px + 5*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border-radius: 100%;
    padding: 4px;
    box-shadow: 0 0 2px rgba(34, 34, 34, .2);
    color: #777;
    transition: all .3s ease-in-out
}

.seller-grid-box .grid-contain .seller-category .product-image li:hover {
    transform: scale(1.1) translateY(-7px)
}

.seller-grid-box .grid-contain .seller-category .product-image li:last-child {
    line-height: 1;
    font-weight: 600;
    font-size: calc(13px + 1*(100vw - 320px)/1600)
}

.seller-grid-box .grid-contain .seller-category .product-image li+li {
    margin-left: calc(-19px + 5*(100vw - 320px)/1600)
}

.seller-grid-box .grid-contain .seller-category .btn {
    padding: 11px 16px;
    color: var(--theme-color) !important;
    letter-spacing: unset;
    border: 1px solid var(--theme-color) !important;
    background: unset;
    background-color: #fff !important
}

.seller-grid-box .grid-contain .seller-category .btn:hover {
    background-color: var(--theme-color) !important;
    color: #fff !important
}

.seller-grid-box .grid-contain .seller-category .btn svg {
    width: unset;
    height: unset
}

@media(max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px
    }

    .content {
        height: 30vh
    }

    h1 {
        font-size: 24px
    }
}

.seller-section .banner-content {
    margin-top: 35px
}

.seller-section .banner-content h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: unset;
    letter-spacing: unset;
    line-height: 1.3
}

.seller-section .banner-content p {
    line-height: 1.7;
    margin-bottom: 0
}

.brand-slider-box .logo-block {
    width: 100%;
    height: calc(80px + .025*(100vw - 320px));
    margin-inline: auto;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: calc(14px + 14*(100vw - 320px)/1600) calc(13px + 5*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: center
}

.brand-slider-box .logo-block a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.brand-slider-box .logo-block h4 {
    color: var(--theme-color);
    margin-bottom: 0;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 26px
}

.brand-slider-box .logo-block img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.compare-fix a {
    position: fixed;
    right: 80px;
    background-color: var(--theme-color);
    color: #fff;
    padding: 8px 11px;
    bottom: 30px;
    border-radius: 0;
    z-index: 1;
    transition: all .3s ease-in-out
}

@media(max-width: 768px) {
    .compare-fix a {
        right: 60px;
        bottom: 80px
    }
}

@media(max-width: 577px) {
    .compare-fix a {
        padding: 5px 11px 6px;
        right: 54px
    }
}

.compare-fix h5 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #fff;
    font-weight: 500
}

@media(max-width: 577px) {
    .compare-fix h5 {
        font-size: 12px
    }
}

.order-search-content h3 {
    color: #222;
    font-weight: 600
}

.comment-section .comment-list-box .comment-box {
    padding: calc(15px + 10*(100vw - 320px)/1600);
    height: 100%;
    border-radius: calc(8px + 10*(100vw - 320px)/1600);
    background: #171024
}

.comment-section .comment-list-box .comment-box .profile-name {
    display: flex;
    align-items: center;
    color: #fff;
    gap: calc(13px + 7*(100vw - 320px)/1600)
}

.comment-section .comment-list-box .comment-box .profile-name img {
    width: calc(50px + 10*(100vw - 320px)/1600);
    height: calc(50px + 10*(100vw - 320px)/1600);
    border-radius: 100%
}

.comment-section .comment-list-box .comment-box .profile-name h4 {
    font-size: calc(18px + 2*(100vw - 320px)/1600);
    margin: 0;
    font-weight: 400
}

.comment-section .comment-list-box .comment-box .profile-detail {
    margin-top: calc(12px + 3*(100vw - 320px)/1600)
}

.comment-section .comment-list-box .comment-box .profile-detail p {
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, .37);
    margin: 0
}

.slider-nav .slider-image .video-icon {
    position: absolute;
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--theme-color)
}

.slider-nav .slider-image .video-icon svg {
    width: unset;
    height: unset
}

.brand-product-box-section {
    padding-top: 30px
}

.brand-section>div>.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0
}

.brand-section>div>.row>.col>.container {
    padding: 0
}

.brand-section .brand-box h2 {
    text-align: center;
    margin: 0;
    font-size: calc(20px + 11*(100vw - 320px)/1600);
    font-weight: 600;
    border: 1px solid #eee;
    background-color: #f8f8f8;
    padding: calc(20px + 10*(100vw - 320px)/1600)
}

.basic-product .add-cart-btn {
    width: 100%;
    display: block;
    padding: 10px;
    text-align: center;
    border: none;
    color: #888;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    margin-top: 10px;
    background-color: #f6f6f6
}

.custom-badge {
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .7px
}

.custom-badge.bg-credit,
.custom-badge.bg-completed {
    color: #2f8733;
    background-color: rgba(47, 135, 51, .1);
    border: 1px solid rgba(47, 135, 51, .5411764706)
}

.custom-badge.bg-debit,
.custom-badge.bg-cancelled {
    color: #dc3545;
    background-color: rgba(220, 53, 69, .1);
    border: 1px solid rgba(220, 53, 69, .541)
}

.custom-badge.bg-pending {
    color: #ffc107;
    background-color: rgba(255, 193, 7, .1);
    border: 1px solid rgba(255, 193, 7, .541)
}

.blog-page .blog-featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--theme-color);
    z-index: 1;
    padding: 8px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    font-weight: 600
}

.blog-label-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--theme-color);
    z-index: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff
}

.no-data-added,
.tab-category {
    text-align: center;
    padding: calc(40px + 32*(100vw - 320px)/1600) 13px;
    background-color: #f8f8f8
}

.no-data-added img,
.tab-category img {
    width: 35%;
    margin-bottom: calc(15px + 11*(100vw - 320px)/1600);
    max-width: 270px
}

.no-data-added h4,
.tab-category h4 {
    font-weight: 500;
    font-size: calc(19px + 6*(100vw - 320px)/1600);
    color: #232323;
    letter-spacing: unset;
    text-transform: none;
    margin-bottom: 0;
    line-height: 1.5
}

.no-data-added.collection-no-data,
.tab-category.collection-no-data {
    padding: 120px 0
}

.no-data-added.collection-no-data img,
.tab-category.collection-no-data img {
    width: 30%
}

@media(max-width: 1366px) {

    .no-data-added.collection-no-data img,
    .tab-category.collection-no-data img {
        width: 42%
    }
}

@media(max-width: 767px) {

    .no-data-added.collection-no-data img,
    .tab-category.collection-no-data img {
        width: 60%
    }
}

@media(max-width: 480px) {

    .no-data-added.collection-no-data img,
    .tab-category.collection-no-data img {
        width: 80%
    }
}

.no-data-added.collection-no-data p,
.tab-category.collection-no-data p {
    width: 44%
}

@media(max-width: 1206px) {

    .no-data-added.collection-no-data p,
    .tab-category.collection-no-data p {
        width: 53%
    }
}

@media(max-width: 1100px) {

    .no-data-added.collection-no-data p,
    .tab-category.collection-no-data p {
        width: 64%
    }
}

@media(max-width: 575px) {

    .no-data-added.collection-no-data p,
    .tab-category.collection-no-data p {
        width: 80%
    }
}

@media(max-width: 480px) {

    .no-data-added.collection-no-data p,
    .tab-category.collection-no-data p {
        width: 100%
    }
}

.no-data-added p,
.tab-category p {
    width: 100%;
    margin: calc(6px + 4*(100vw - 320px)/1600) auto 0;
    font-size: calc(15px + 3*(100vw - 320px)/1600);
    line-height: 1.4;
    color: #777
}

.no-data-added.category-no-data img,
.tab-category.category-no-data img {
    width: 64%
}

.no-data-added.no-shipping img,
.tab-category.no-shipping img {
    width: 32%
}

@media(max-width: 991px) {

    .no-data-added.no-shipping img,
    .tab-category.no-shipping img {
        width: 42%
    }
}

@media(max-width: 576px) {

    .no-data-added.no-shipping img,
    .tab-category.no-shipping img {
        width: 50%
    }
}

@media(max-width: 420px) {

    .no-data-added.no-shipping img,
    .tab-category.no-shipping img {
        width: 80%
    }
}

.tab-category {
    padding: 10px !important;
    background-color: rgba(0, 0, 0, 0)
}

.tab-category h4 {
    font-size: 20px !important
}

.empty-cart {
    text-align: center
}

.empty-cart *:empty {
    display: none
}

.empty-cart img {
    width: 65%;
    margin: 0 auto 23px
}

.empty-cart h4 {
    margin: 0;
    line-height: 1.5;
    letter-spacing: unset;
    font-weight: 500;
    text-transform: unset;
    font-size: 18px
}

.single-product .brand-slider-box .logo-block {
    background-color: #171024;
    border-color: #212121
}

.single-product .brand-slider-box .logo-block img {
    filter: invert(1) brightness(100)
}

.single-product .basic-product .product-title {
    color: #fff
}

.single-product .basic-product .price {
    color: #fff
}

.single-product .basic-product .price del {
    color: #ddd
}

.single-product .basic-product .product-action button {
    color: #ddd;
    background-color: #212121
}

.single-product .basic-product .product-detail h6 {
    color: #ddd
}

.single-product .basic-product .cart-info button,
.single-product .basic-product .cart-info a {
    background-color: #0d0914
}

.single-product .basic-product .cart-info button i,
.single-product .basic-product .cart-info a i {
    color: #ddd
}

.single-product .basic-product .img-wrapper {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 15px;
    overflow: hidden
}

.single-product .basic-product .img-wrapper .rating-label {
    background-color: #0d0914;
    color: #ddd
}

.single-product .basic-product .img-wrapper .quick-option {
    background-color: #0a0a16
}

.single-product .basic-product .img-wrapper .unit-label {
    background-color: #0a0a16;
    color: #ddd
}

.single-product .basic-product .img-wrapper .addto-cart-bottom {
    background-color: #0a0a16;
    color: #ddd
}

.single-product .basic-product .img-wrapper .addto-cart-bottom.active {
    color: var(--theme-color)
}

.single-product .basic-product .add-cart-btn {
    color: #ddd;
    background-color: #171024
}

.single-product .basic-product .rating-w-count span {
    color: #ddd
}

.single-product .basic-product .addtocart_btn .qty-box .input-group {
    border-radius: 0;
    background-color: #0a0a16
}

.single-product .basic-product .addtocart_btn .qty-box .input-group .input-number {
    color: #ddd
}

.single-product .basic-product .addtocart_btn .qty-box .input-group button {
    border-color: #212121;
    color: #fff;
    border-radius: 0 !important;
    background-color: #212121;
    width: 34px;
    height: 34px;
    padding: 0
}

.single-product .basic-product .addtocart_btn .qty-box .input-group button i {
    font-weight: 500;
    color: #ddd;
    font-size: 15px
}

.single-product .basic-product .product-action {
    border-color: #212121
}

.single-product .basic-product.theme-product-1 {
    border-color: #212121
}

.single-product .basic-product.theme-product-1 .cart-info a,
.single-product .basic-product.theme-product-1 .cart-info button {
    background-color: #0d0914
}

.single-product .basic-product.theme-product-1 .cart-info a i,
.single-product .basic-product.theme-product-1 .cart-info button i {
    color: #fff
}

.single-product .basic-product.theme-product-1 .product-detail>div {
    border-color: #212121
}

.single-product .basic-product.theme-product-1 .product-detail .offer-panel {
    color: #fff
}

.single-product .basic-product.theme-product-2 {
    border-color: #212121;
    background-color: #0a0a16
}

.single-product .basic-product.theme-product-2 .img-wrapper::after {
    background-color: rgba(10, 10, 22, .77)
}

.single-product .basic-product.theme-product-2 .cart-detail {
    border-color: #212121
}

.single-product .basic-product.theme-product-2 .cart-detail li+li {
    border-color: #212121
}

.single-product .basic-product.theme-product-2 .cart-detail li button,
.single-product .basic-product.theme-product-2 .cart-detail li a {
    color: #ddd
}

.single-product .basic-product.theme-product-2 .product-detail .add-wish {
    background-color: #212121
}

.single-product .basic-product.theme-product-3 {
    border-color: #212121
}

.single-product .basic-product.theme-product-6 {
    border-color: #212121
}

.single-product .basic-product.theme-product-6 .cart-info {
    background-color: #0a0a16
}

.single-product .basic-product.theme-product-7,
.single-product .basic-product.theme-product-8 {
    background-color: #0a0a16;
    border-color: #212121
}

.single-product .basic-product.theme-product-9 {
    background-color: #0a0a16;
    border-color: #212121
}

.single-product .basic-product.theme-product-9 .price-vertical h4 {
    color: #ddd
}

.single-product .basic-product.theme-product-9 .discount-value {
    border-color: #212121;
    color: #ddd
}

.single-product .basic-product.theme-product-11 {
    border-color: #212121
}

.single-product .basic-product.theme-product-11 .abs-product {
    background-color: #0a0a16
}

.single-product .dark-layout {
    background: linear-gradient(106deg, rgb(58, 41, 59) 0%, rgb(11, 11, 23) 100%)
}

.single-product .sub-footer.darker-subfooter {
    background-color: #221926
}

.download-dropdown-menu {
    border: 1px solid #eee;
    z-index: 1;
    border-radius: 0;
    padding: 13px 18px
}

.download-dropdown-menu .dropdown-item {
    padding: 0
}

.download-dropdown-menu .dropdown-item+.dropdown-item {
    padding-top: 6px;
    border-top: 1px solid #eee;
    margin-top: 6px
}

.download-dropdown-menu .dropdown-item:active,
.download-dropdown-menu .dropdown-item.active {
    background-color: var(--theme-color)
}

.download-dropdown-menu .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0)
}

.no-data-footer {
    background-color: #eee;
    padding: 40px 15px
}

.no-data-footer p,
.no-data-footer h4 {
    margin: 0 !important;
    line-height: 1.6 !important;
    letter-spacing: .03em !important;
    margin-bottom: 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #222 !important
}

.breadcrumb-section~.no-data-added {
    background-color: #fff
}

.coupon-box {
    position: relative;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    height: 100%
}

.coupon-box .coupon-name {
    display: block
}

.coupon-box .coupon-name h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    margin: 0;
    letter-spacing: unset;
    line-height: 1.4
}

.coupon-box .coupon-content {
    margin-top: 8px
}

.coupon-box .coupon-content p {
    color: #777;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-weight: 500;
    -webkit-box-orient: vertical;
    font-size: 15px;
    margin-bottom: 11px
}

.coupon-box .coupon-content .coupon-apply {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, .12)
}

.coupon-box .coupon-content .coupon-apply h6 {
    font-weight: 600;
    color: #232323;
    line-height: 1.3;
    margin: 0;
    font-size: 15px
}

.coupon-box .coupon-content .coupon-apply .copy-btn {
    border: unset;
    color: var(--theme-color);
    padding: 0
}

.setting_box_body {
    position: relative;
    background-color: #fff;
    z-index: 9;
    height: 100vh
}

.scroll-setting-box ::-webkit-scrollbar {
    width: 4px;
    height: 7px
}

.scroll-setting-box ::-webkit-scrollbar-track {
    background: #ddd
}

.scroll-setting-box ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px
}

.scroll-setting-box ::-webkit-scrollbar-thumb:hover {
    background: #555
}

.scroll-setting-box .overlay {
    cursor: pointer
}

.setting-box {
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    width: 450px;
    right: -670px;
    background-color: #fff;
    top: 0;
    z-index: 999;
    box-shadow: 0 15px 5px 0 rgba(77, 77, 77, .28);
    transition: all .5s ease
}

.setting-box .form-switch {
    padding: 0;
    margin: 0;
    min-height: unset
}

.setting-box .form-switch .form-check-input {
    height: 22px;
    width: 44px;
    border: 1px solid #eee;
    filter: unset;
    margin: 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    background-image: unset;
    cursor: pointer
}

.setting-box .form-switch .form-check-input:focus {
    background-image: unset;
    border-color: #dee2e6
}

.setting-box .form-switch .form-check-input:checked {
    background-color: var(--theme-color)
}

.setting-box .form-switch .form-check-input:checked::before {
    left: unset;
    right: 3px;
    background-color: #fff
}

.setting-box .form-switch .form-check-input::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
    background-color: #bfbfbf;
    border-radius: 100%;
    width: 15px;
    height: 15px
}

.setting-box.open-setting {
    right: 0;
    transition: all .5s ease
}

.setting-box.open-setting .overlay {
    visibility: visible;
    transition: all .5s ease
}

.setting-box .setting-inner-title a {
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    font-weight: 500;
    color: #222;
    line-height: 24px
}

.setting-box .setting-body {
    padding: 0 calc(12px + 8*(100vw - 320px)/1600)
}

.setting-box .accordion-item {
    border: none;
    background-color: rgba(0, 0, 0, 0)
}

.setting-box .accordion-body {
    padding: 0
}

.setting-box .accordion-button {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    border-bottom: 1px dashed #eee;
    font-weight: 500;
    padding: calc(15px + 5*(100vw - 320px)/1600) 0;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    justify-content: space-between;
    z-index: 0;
    color: #222;
    text-align: unset
}

.setting-box .accordion-button::after {
    width: unset;
    height: unset;
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background: unset;
    font-size: 23px;
    font-weight: 400;
    margin: 0;
    color: #777
}

.setting-box .accordion-button .setting-description-text {
    display: grid
}

.setting-box .accordion-button .setting-description-text .setting-content {
    font-weight: 400;
    font-size: calc(13px + 1*(100vw - 320px)/1600);
    color: #777;
    line-height: 20px;
    margin-top: 3px
}

.setting-box .setting-section {
    border-bottom: 1px dashed #eee;
    font-weight: 500;
    padding: calc(15px + 5*(100vw - 320px)/1600) 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.setting-box .setting-inner-title p {
    font-weight: 400;
    font-size: calc(13px + 1*(100vw - 320px)/1600)
}

.setting-box .setting-inner-title h5,
.setting-box .setting-inner-title p {
    margin-bottom: 0
}

.setting-box .setting-inner-title h5 {
    font-weight: 500;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.setting-box .setting-title {
    border-bottom: 1px solid #efefef;
    margin-bottom: 0;
    padding: calc(15px + 5*(100vw - 320px)/1600) calc(12px + 8*(100vw - 320px)/1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f8f8
}

.setting-box .setting-title .close-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #eee;
    font-size: 12px;
    cursor: pointer
}

.setting-box .setting-title .close-icon svg {
    width: unset;
    height: unset;
    font-size: 18px
}

.setting-box .setting-title h4 {
    font-weight: 600
}

.setting-box .setting-title h3 {
    line-height: 31px;
    margin-top: 10px;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 0;
    color: #a3a3a3
}

.setting-box .setting-title h3 span {
    font-family: "Yellowtail", cursive;
    color: #f54c3b;
    text-transform: uppercase
}

.setting-box .setting-title h4 {
    position: relative;
    margin-bottom: 0;
    cursor: pointer
}

.setting-box .setting-title.active .according-menu:before {
    content: "";
    position: absolute;
    right: 2px;
    top: 2px
}

.setting-box .setting-title .according-menu:before {
    content: "";
    position: absolute;
    right: 2px;
    top: 2px
}

.setting-box .setting-contant {
    margin: 20px 0;
    height: 340px;
    overflow: hidden auto;
    padding-right: 10px
}

.setting-box .setting-contant::-webkit-scrollbar-thumb {
    background: var(--theme-color)
}

.setting-box .setting-contant::-webkit-scrollbar-track {
    background: #eaeaea
}

.setting-box .setting-contant .setting_buttons .setting_btn {
    background-color: var(--theme-color);
    color: #fff;
    width: 100%
}

.setting-box .setting-contant .setting_buttons li:first-child {
    width: 49%
}

.setting-box .setting-contant .setting_buttons li.active {
    box-shadow: 0px 0px 5px 0px #929292
}

.setting-box .setting-contant .setting_buttons li:last-child {
    margin-left: 10px;
    width: 46%
}

.setting-box .overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease
}

.theme-settings {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(12px + 2*(100vw - 320px)/1600);
    padding: calc(9px + 3*(100vw - 320px)/1600) calc(8px + 2*(100vw - 320px)/1600);
    margin: 0;
    color: #fff;
    text-transform: uppercase !important;
    background-color: #333;
    writing-mode: vertical-lr;
    gap: 5px;
    font-weight: 500;
    cursor: pointer
}

.theme-settings ul li {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    box-shadow: none;
    margin-bottom: 0;
    margin-left: auto;
    cursor: pointer;
    font-weight: 600;
    padding: 12px 12px;
    margin: 0;
    color: #fff
}

.theme-settings ul li:last-child {
    margin-bottom: 0
}

.sale {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

.sale a {
    top: 50%;
    right: -20px;
    width: 230px;
    height: 36px;
    line-height: 36px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    transform: translate(50%, -50%) rotate(-90deg);
    text-align: center;
    background-color: var(--theme-color);
    margin-bottom: 0;
    cursor: pointer
}

.demo-section .title-text h3 {
    color: var(--theme-color);
    margin-bottom: 24px;
    display: inline-block;
    padding-bottom: 5px;
    font-size: 40px;
    position: relative
}

.demo-section .title-text h3 i {
    font-size: 22px;
    position: absolute;
    top: 0;
    right: -20px
}

.demo-section .demo-effects h4 {
    text-transform: capitalize
}

.demo-section .demo-effects .set-position {
    display: block
}

.demo-section .demo-effects>div {
    text-decoration: none;
    color: #000
}

.demo-section .demo-effects>div .layout-container {
    height: 100%;
    width: 100%;
    display: inline-flex;
    background-size: cover;
    border: 1px solid #eee
}

.demo-section .demo-effects>div .layout-container.active {
    border-color: var(--theme-color)
}

.demo-section .demo-effects>div .layout-container.active~a h4 {
    color: var(--theme-color)
}

.demo-section .demo-effects>div .layout-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.demo-section .demo-effects>div .demo-text h4 {
    font-size: calc(13px + 3*(100vw - 320px)/1600);
    margin-top: calc(5px + 5*(100vw - 320px)/1600);
    margin-bottom: 0;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all .5s ease
}

.demo-section .demo-effects>div .demo-text h4 span {
    background-color: var(--theme-color);
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    width: 40px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-left: 6px
}

.demo-section .demo-effects:last-child {
    margin-bottom: 0
}

.dark-demo .dark-light-btn {
    display: none
}

.dark-demo .search-modal .modal-header h3 {
    color: #fff
}

.dark-demo.dark2 {
    background-color: #2b2b2b;
    transition: all .3s ease;
    color: #cfd4da
}

.dark-demo.dark2 .header-5.overlay-style.sticky {
    background-color: #232323
}

@media(min-width: 1200px) {
    .dark-demo.dark2 header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header {
        color: #fff
    }

    .dark-demo.dark2 header .navbar-expand-xl .dropdown-menu {
        background-color: #2b2b2b
    }

    .dark-demo.dark2 header .navbar-expand-xl .dropdown-menu .dropdown-column .menu-no-data {
        background-color: #232323
    }

    .dark-demo.dark2 header.header-5.overlay-style .navbar-nav>li>a:hover {
        background-color: rgba(0, 0, 0, 0)
    }

    .dark-demo.dark2 header.header-5.overlay-style .navbar.navbar-expand-xl .navbar-nav .nav-item>.dropdown-menu>.nav-item .nav-link {
        color: #cbcbcb
    }
}

@media(max-width: 1199px) {
    .dark-demo.dark2 header.header-5.overlay-style .navbar-nav>li>a {
        color: #cbcbcb
    }

    .dark-demo.dark2 header.header-5.overlay-style .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
        color: #fff !important
    }

    .dark-demo.dark2 header .navbar-nav .dropdown-menu .dropdown-column .dropdown-header {
        color: rgba(221, 221, 221, .8)
    }

    .dark-demo.dark2 header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item::before {
        background-color: rgba(206, 206, 206, .65)
    }

    .dark-demo.dark2 header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item {
        color: #cecece
    }
}

body.rtl {
    direction: rtl
}

.rtl .ms-5 {
    margin-right: 3rem !important;
    margin-left: 0 !important
}

.rtl .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: unset;
    margin-right: calc(var(--bs-border-width)*-1)
}

.rtl ul {
    -webkit-padding-start: 0
}

.rtl .px-2 {
    padding-right: 0 !important;
    padding-left: .5rem !important
}

.rtl .me-1 {
    margin-left: .25rem !important;
    margin-right: unset !important
}

.rtl .me-2 {
    margin-right: unset !important;
    margin-left: .5rem !important
}

.rtl .ms-2 {
    margin-left: unset !important;
    margin-right: .5rem !important
}

.rtl .me-3 {
    margin-right: unset !important;
    margin-left: 1rem !important
}

.rtl .ms-3 {
    margin-left: unset !important;
    margin-right: 1rem !important
}

.rtl .ms-auto {
    margin-left: unset !important;
    margin-right: auto !important
}

.rtl .text-end {
    text-align: left !important
}

.rtl .compare-tap-top-box {
    right: unset;
    left: calc(18px + 12*(100vw - 320px)/1600)
}

.rtl .text-start {
    text-align: right !important
}

.rtl .theme-form .form-group {
    text-align: right
}

.rtl .pixelstrap ul a {
    text-align: right
}

.rtl .pixelstrap a .sub-arrow {
    right: auto;
    left: 10px
}

.rtl .tap-top {
    right: unset;
    left: 30px
}

.rtl .sm,
.rtl .sm ul,
.rtl .sm li {
    direction: rtl
}

.rtl .onhover-dropdown .onhover-show-div {
    right: unset;
    left: 0
}

.rtl .form-select {
    background-position: left .75rem center;
    padding: .375rem .75rem .375rem 2.25rem
}

.rtl .skeleton-basic-product .img-wrapper .product-image-box {
    animation-direction: reverse
}

.rtl .skeleton-basic-product .product-detail .product-title,
.rtl .skeleton-basic-product .product-detail h6,
.rtl .skeleton-basic-product .product-detail .price {
    animation-direction: reverse
}

.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body {
    text-align: right;
    padding-left: unset;
    padding-right: 12px
}

.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart .cart_product {
    padding-right: unset;
    padding-left: 10px
}

.rtl .main-menu .menu-right .icon-nav .delivery-area i {
    margin-right: 0;
    margin-left: 5px
}

.rtl .main-menu .menu-right .icon-nav li {
    padding-left: unset;
    padding-right: calc(8px + 12*(100vw - 320px)/1600)
}

.rtl .effect-cls:before,
.rtl .effect-cls:after {
    right: 0
}

.rtl .left-header .sidenav .pixelstrap>li>a {
    text-align: right
}

.rtl .left-header .sidenav .pixelstrap li ul li a {
    text-align: right
}

.rtl .product-detail-label {
    left: unset;
    right: 15px
}

.rtl .top-header .header-contact li {
    padding-right: 0;
    padding-left: 25px
}

.rtl .top-header .right-nav-about .right-nav-list+.right-nav-list .theme-form-select .dropdown-toggle {
    padding-left: unset;
    border-left: unset;
    margin-left: unset;
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid rgba(119, 119, 119, 0.5215686275)
}

.rtl .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu .dropdown-item {
    text-align: right
}

.rtl .service-block img {
    margin-left: 15px;
    margin-right: unset
}

.rtl .theme-card .offer-slider .media .media-body .rating svg {
    padding-right: unset;
    padding-left: 5px
}

.rtl .onhover-dropdown:before {
    left: 3px;
    right: unset
}

.rtl .top-header .header-dropdown>li:nth-child(2) {
    padding: 15px 25px;
    padding-left: 20px
}

.rtl .top-header .header-dropdown li i {
    padding-right: 0;
    padding-left: 5px
}

.rtl .top-header .header-dropdown li:first-child {
    padding-right: 20px;
    padding-left: 0
}

.rtl .top-header .header-contact {
    text-align: right
}

.rtl .top-header .header-contact li i {
    transform: rotateY(0deg)
}

.rtl .main-menu .menu-left .navbar {
    padding: 40px 0 40px 45px
}

.rtl .main-menu .menu-right {
    float: left
}

.rtl .main-menu .menu-right .icon-nav li {
    padding-left: 0;
    padding-right: calc(8px + 12*(100vw - 320px)/1600)
}

.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.setting {
    right: unset;
    left: 0
}

.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6 {
    text-align: right
}

.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart {
    right: unset;
    left: 0
}

.rtl .cart_qty_cls {
    right: unset;
    left: calc(-5px + -3*(100vw - 320px)/1600)
}

.rtl .header-style-1 .cart_qty_cls {
    left: -14px;
    right: unset
}

.rtl header .navbar-nav .nav-item .dropdown-menu .nav-item {
    margin-left: unset !important;
    margin-right: 0 !important
}

.rtl header .navbar {
    padding-left: unset;
    padding-right: 15px
}

.rtl header .navbar .navbar-expand-xl .dropdown-menu .dropdown-item {
    text-align: right
}

.rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item+.nav-item {
    margin-left: unset;
    margin-right: calc(15px + 10*(100vw - 1200px)/720)
}

.rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    padding-right: unset;
    padding-left: 18px
}

.rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a::before {
    right: unset;
    left: -4px
}

.rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>.dropdown-menu>.nav-item+.nav-item {
    margin: 0
}

.rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>.dropdown-menu>.nav-item>.dropdown-toggle {
    text-align: right
}

.rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>.dropdown-menu>.nav-item>.dropdown-toggle::after {
    left: 0;
    right: unset;
    margin-left: unset;
    margin-right: .255em
}

.rtl header .main-navbar .nav-menu>li {
    float: right
}

.rtl header .main-navbar .nav-menu>li>a {
    padding-right: 0;
    padding-left: 45px
}

.rtl header .main-navbar .nav-menu>li>a .sub-arrow {
    right: auto;
    left: 7px
}

.rtl header .main-navbar .nav-menu>li .nav-submenu {
    text-align: right
}

.rtl header .main-navbar .nav-menu>li .nav-submenu li a i {
    float: left
}

.rtl header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu {
    left: -203px;
    right: unset
}

.rtl header .sidenav .sidebar-menu li {
    direction: rtl;
    text-align: right
}

.rtl header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
    left: unset;
    right: 0
}

.rtl header.left-header .sidenav {
    right: 0
}

.rtl header.left-header .sidenav .pixelstrap li .mega-menu-container {
    right: 0px;
    margin-right: 270px;
    left: unset;
    margin-left: unset
}

.rtl header.left-header .sidenav .pixelstrap li .nav-submenu {
    right: 0px;
    margin-right: 270px;
    margin-left: 0;
    left: unset
}

.rtl header.left-header .sidenav .pixelstrap li .nav-submenu li .nav-sub-childmenu {
    left: unset;
    margin-left: 0;
    right: 0px;
    margin-right: 228px
}

.rtl header.left-header .sidenav .pixelstrap li .nav-submenu li a i {
    float: left
}

.rtl header.left-header .sidenav .left-sidebar_center {
    padding: 40px 30px 30px 0
}

.rtl header.left-header .sidenav .left-sidebar_center .pixelstrap li a .sub-arrow {
    left: 7px;
    right: unset
}

.rtl header.left-header .setting-box {
    right: unset;
    left: -660px
}

.rtl header.left-header .setting-box.open-setting {
    right: unset;
    left: -4px
}

.rtl header.left-header .full-slider {
    direction: ltr
}

.rtl header.left-header .home-slider {
    direction: ltr
}

.rtl header.left-header .beauty-about {
    text-align: right
}

.rtl header.left-header .beauty-about .about-text p {
    text-align: right
}

.rtl header.left-header .form_search button {
    left: 5px;
    right: unset
}

.rtl header.left-header .cart-qty-cls {
    right: unset;
    left: -8px
}

.rtl header.left-header .collection-banner .contain-banner {
    justify-content: flex-end
}

.rtl header.left-header .collection-banner.p-right .contain-banner {
    justify-content: flex-start
}

.rtl header.left-header .collection-banner.p-left .contain-banner {
    justify-content: flex-end
}

.rtl header.left-header .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close {
    right: unset;
    left: 17px
}

.rtl header.left-header .product-box .product-detail,
.rtl header.left-header .product-box .product-info,
.rtl header.left-header .product-wrap .product-detail,
.rtl header.left-header .product-wrap .product-info {
    text-align: right;
    padding-left: 0;
    padding-right: 5px
}

.rtl header.left-header .product-box .img-wrapper .product-thumb-list,
.rtl header.left-header .product-wrap .img-wrapper .product-thumb-list {
    right: 0;
    left: unset
}

.rtl header.left-header .product-box .product-info,
.rtl header.left-header .product-wrap .product-info {
    text-align: center
}

.rtl header.left-header .product-box .cart-detail,
.rtl header.left-header .product-wrap .cart-detail {
    right: unset;
    left: 20px
}

.rtl header.left-header .product-box .back,
.rtl header.left-header .product-wrap .back {
    right: 0;
    left: unset;
    transform: translateX(100px)
}

.rtl header.left-header .service-block+.service-block {
    border-right: 1px solid #ddd;
    border-left: none
}

.rtl header.left-header .service-block svg {
    margin-right: 0;
    margin-left: 12px
}

.rtl header.left-header .service-block .media .media-body {
    text-align: right
}

.rtl header.left-header .footer-light .subscribe {
    border-right: none;
    border-left: 1px solid #ddd;
    text-align: right
}

.rtl header.left-header .footer-theme {
    text-align: right
}

.rtl header.left-header .footer-theme .sub-title .contact-list li {
    padding-left: 0;
    padding-right: 25px
}

.rtl header.left-header .footer-theme .sub-title .contact-list i {
    left: unset;
    right: 0
}

.rtl header.left-header .footer-social li {
    padding-left: 45px;
    padding-right: 0
}

.rtl header.left-header .sub-footer {
    text-align: right
}

.rtl header.left-header .product-right .product-buttons a:last-child,
.rtl header.left-header .product-right .product-buttons button:last-child {
    margin-left: 0;
    margin-right: 10px
}

.rtl header.left-header .theme-modal.modal-dialog .modal-content .modal-body .modal-bg .close {
    left: 36px;
    right: unset
}

.rtl header.left-header .theme-card h5.title-border {
    text-align: right
}

.rtl header.left-header .theme-card .offer-slider .media {
    direction: rtl
}

.rtl header.left-header .theme-card .offer-slider .media img {
    padding: 15px 0 15px 15px
}

.rtl header.left-header .theme-card .offer-slider .media .media-body {
    text-align: right
}

.rtl header.left-header .theme-card .offer-slider .media .media-body a h6 {
    margin-right: 0;
    margin-left: 0
}

.rtl header.left-header .theme-card.card-border h5 {
    padding-right: 50px;
    padding-left: 0
}

.rtl header.left-header .theme-tab .tab-content .product-tab .tab-box {
    text-align: right
}

.rtl header.left-header .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
    margin-left: 35px;
    margin-right: 0
}

.rtl header.left-header .full-box .theme-card .offer-slider .product-box2 .media .media-body a h6 {
    margin-right: 0;
    margin-left: 20px
}

.rtl header.left-header .pets-box .product-box .product-detail {
    text-align: center
}

.rtl header.left-header .blog.blog_box .blog-details {
    text-align: right
}

.rtl header.left-header .tab-left .theme-tab .left-side {
    text-align: right
}

.rtl header.left-header .tab-left .theme-tab .left-side .tab-title {
    margin-right: 0;
    margin-left: 100px;
    text-align: right
}

.rtl header.left-header .left-header .top-header {
    padding-left: 0;
    padding-right: 300px
}

.rtl header.left-header .absolute-product .product-box .product-detail {
    text-align: center
}

.rtl header.left-header .box-product .full-box .theme-card .offer-slider .product-box2 .media {
    padding-right: 0;
    padding-left: 15px
}

.rtl header.left-header .box-product .full-box .theme-card .offer-slider .product-box2 .media img {
    padding: 0 0 0 15px
}

.rtl header.left-header.left-header-sm .sidenav .left-sidebar_center {
    padding: 0
}

.rtl header.header-tools .main-menu .menu-left .navbar {
    padding: 25px 0 25px 45px
}

.rtl .rating i {
    margin-right: unset;
    margin-left: calc(0px + .00125*(100vw - 320px))
}

.rtl .rating svg {
    padding-left: calc(2px + 3*(100vw - 320px)/1600);
    padding-right: unset
}

.rtl .rating span+span,
.rtl .product-rating span+span {
    margin-right: calc(0px + 2*(100vw - 320px)/1600);
    margin-left: unset
}

.rtl .rating span svg,
.rtl .product-rating span svg {
    padding: 0
}

.rtl .header-style-5 .bottom-part .category-menu .toggle-sidebar svg {
    margin-right: 0;
    margin-left: 10px
}

.rtl .variation-modal .variation-qty-button .btn-animation i {
    margin: 0 !important
}

.rtl .header-compact .menu-row .delivery-area {
    margin-right: 0;
    margin-left: 25px
}

.rtl .header-compact .delivery-area svg {
    margin-left: 10px;
    margin-right: 0
}

.rtl .header-compact .delivery-area .form_search input {
    padding-right: 10px;
    padding-left: 45px
}

.rtl .header-compact .delivery-area div h6 {
    margin-left: 5px;
    margin-right: 0
}

.rtl .header-compact .top-header .header-dropdown li:nth-child(2) {
    padding: 10px 25px
}

.rtl .header-compact .top-header .header-dropdown li:last-child {
    padding-left: 0
}

.rtl .sidenav {
    right: -300px;
    left: unset
}

.rtl .sidenav.open-side {
    right: 0
}

.rtl .sidenav.marketplace-sidebar {
    right: unset
}

.rtl .bg-title .theme-tab .bg-title-part .tab-title {
    margin-right: auto;
    margin-left: unset
}

.rtl .bg-title .theme-tab .bg-title-part .tab-title li {
    padding-right: 25px;
    padding-left: 0
}

.rtl .bg-title .theme-tab .bg-title-part .tab-title li:first-child {
    padding-inline: 0
}

.rtl .setting-box {
    right: unset;
    left: -660px
}

.rtl .setting-box.open-setting {
    right: unset;
    left: -4px
}

.rtl .setting-box .setting-contant {
    padding-right: unset;
    padding-left: 10px
}

.rtl .setting-box .form-switch {
    padding: 0;
    margin: 0
}

.rtl .setting-box .form-switch .form-check-input {
    float: unset;
    margin: 0
}

.rtl .full-slider {
    direction: ltr
}

.rtl .home-slider {
    direction: ltr
}

.rtl .beauty-about {
    text-align: right
}

.rtl .beauty-about .about-text p {
    text-align: right
}

.rtl .form_search button {
    left: 5px;
    right: unset
}

.rtl .cart-qty-cls {
    right: unset;
    left: -8px
}

.rtl .collection-banner .contain-banner {
    justify-content: flex-end
}

.rtl .collection-banner.p-right .contain-banner {
    justify-content: flex-start
}

.rtl .collection-banner.p-left .contain-banner {
    justify-content: flex-end
}

.rtl .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close {
    right: unset;
    left: 17px
}

.rtl .product-box .product-detail,
.rtl .product-box .product-info,
.rtl .product-wrap .product-detail,
.rtl .product-wrap .product-info {
    text-align: right;
    padding-left: 0;
    padding-right: 5px
}

.rtl .product-box .img-wrapper .product-thumb-list,
.rtl .product-wrap .img-wrapper .product-thumb-list {
    right: 0;
    left: unset
}

.rtl .product-box .product-info,
.rtl .product-wrap .product-info {
    text-align: center
}

.rtl .product-box .cart-detail,
.rtl .product-wrap .cart-detail {
    right: unset;
    left: 20px
}

.rtl .product-box .back,
.rtl .product-wrap .back {
    right: 0;
    left: unset;
    transform: translateX(100px)
}

.rtl .service-block+.service-block {
    border-right: 1px solid #ddd;
    border-left: none
}

.rtl .service-block svg {
    margin-right: 0;
    margin-left: 12px
}

.rtl .service-block .media .media-body {
    text-align: right
}

.rtl .footer-light .subscribe {
    border-right: none;
    border-left: 1px solid #ddd;
    text-align: right
}

.rtl .footer-theme {
    text-align: right
}

.rtl .footer-theme .sub-title .contact-list li {
    padding-left: 0;
    padding-right: 25px
}

.rtl .footer-theme .sub-title .contact-list svg {
    left: unset;
    right: -2px
}

.rtl .menu-label {
    margin-left: unset;
    margin-right: 4px
}

.rtl .footer-social li {
    padding-left: 45px;
    padding-right: 0
}

.rtl .sub-footer {
    text-align: right
}

.rtl .product-right .product-buttons a:last-child,
.rtl .product-right .product-buttons button:last-child {
    margin-left: 0;
    margin-right: 10px
}

.rtl .theme-modal.modal-dialog .modal-content .modal-body .modal-bg .close {
    left: 36px;
    right: unset
}

.rtl .theme-card h5.title-border {
    text-align: right
}

.rtl .theme-card .offer-slider .media {
    direction: rtl
}

.rtl .theme-card .offer-slider .media img {
    margin-right: unset;
    margin-left: 10px
}

.rtl .theme-card .offer-slider .media .media-body {
    text-align: right
}

.rtl .theme-card .offer-slider .media .media-body a h6 {
    margin-right: 0;
    margin-left: 0
}

.rtl .theme-card.card-border h5 {
    padding-right: 50px;
    padding-left: 0
}

.rtl .theme-tab .tab-content .product-tab .tab-box {
    text-align: right
}

.rtl .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
    margin-left: 35px;
    margin-right: 0
}

.rtl .full-box .theme-card .offer-slider .product-box2 .media .media-body a h6 {
    margin-right: 0;
    margin-left: 20px
}

.rtl .pets-box .product-box .product-detail {
    text-align: center
}

.rtl .blog.blog_box .blog-details {
    text-align: right
}

.rtl .tab-left .theme-tab .left-side {
    text-align: right
}

.rtl .tab-left .theme-tab .left-side .tab-title {
    margin-right: 0;
    margin-left: 100px;
    text-align: right
}

.rtl .left-header .top-header {
    padding-left: 0;
    padding-right: 300px
}

.rtl .absolute-product .product-box .product-detail {
    text-align: center
}

.rtl .box-product .full-box .theme-card .offer-slider .product-box2 .media {
    padding-right: 0;
    padding-left: 15px
}

.rtl .box-product .full-box .theme-card .offer-slider .product-box2 .media img {
    padding: 0 0 0 15px
}

.rtl .breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
    padding-right: .5rem
}

.rtl .breadcrumb-item+.breadcrumb-item:before {
    padding-left: .5rem;
    padding-right: 0;
    float: right
}

.rtl .custom-control {
    padding-left: 0;
    padding-right: 1.5rem;
    text-align: right
}

.rtl .top-banner-wrapper .top-banner-content {
    text-align: right
}

.rtl .product-filter-tags {
    text-align: right
}

.rtl .product-filter-tags li a i {
    margin-left: 0;
    margin-right: 5px
}

.rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
    margin-left: unset;
    margin-right: 15px
}

.rtl .collection-product-wrapper .product-top-filter .product-filter-content .collection-view ul li:first-child,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .collection-view ul li:first-child {
    margin-right: 0;
    margin-left: 14px
}

.rtl .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
    margin-left: unset;
    margin-right: auto
}

.rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu,
.rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu,
.rtl .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu {
    text-align: right;
    inset: 0px 0 auto auto !important
}

.rtl .collection-product-wrapper .product-top-filter .popup-filter .open-popup {
    left: unset;
    right: 0
}

.rtl .collection-product-wrapper .product-top-filter .search-count,
.rtl .collection-product-wrapper .product-top-filter .sidebar-popup {
    margin-right: unset;
    margin-left: 18px
}

.rtl .product-pagination .product-search-count-bottom {
    padding-left: 15px;
    padding-right: 0
}

.rtl .new-nav-item .new-dropdown {
    right: unset;
    left: 3px
}

.rtl .collection-filter {
    right: -350px;
    left: unset
}

.rtl .collection-filter.open {
    right: 0;
    left: unset
}

.rtl .collection-filter .custom-nav-tab .nav-item .nav-link {
    text-align: right
}

.rtl .collection-filter .custom-nav-tab .nav-item .nav-link:hover img {
    transform: translateY(-50%) rotate(4deg)
}

.rtl .collection-filter .custom-nav-tab .nav-item .nav-link img {
    right: unset;
    left: -10px
}

.rtl .question-answer li .question-box .link-dislike-box {
    margin-left: unset;
    margin-right: auto
}

.rtl .product-sidebar-box .theme-card .offer-slider .media img {
    margin: 0
}

.rtl .product-sidebar-box .theme-card .offer-slider .media .media-body .rating svg {
    padding: 0
}

.rtl .collection-filter-block .accordion-item .accordion-button::after {
    margin-left: unset;
    margin-right: auto
}

.rtl .collection-filter-block .accordion-item .rating span+span,
.rtl .collection-filter-block .accordion-item .product-rating span+span {
    margin-left: unset;
    margin-right: calc(2px + 3*(100vw - 320px)/1600)
}

.rtl .collection-filter-block .accordion-item .accordion-body .search-box::after {
    right: unset;
    left: 0;
    border-left: unset;
    border-right: 1px solid #eee
}

.rtl .collection-filter-block .accordion-item .accordion-body .search-box .form-control {
    padding-right: calc(12px + 3*(100vw - 320px)/1600);
    padding-left: 63px
}

.rtl .collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input {
    margin-right: unset;
    margin-left: 9px
}

.rtl .collection-filter-block .product-service .media .media-body {
    padding-right: 10px;
    padding-left: 0;
    text-align: right
}

.rtl .product-right {
    text-align: right
}

.rtl .product-right h4 span {
    padding-left: 0;
    padding-right: 5px
}

.rtl .product-right .product-description h6 span {
    float: left
}

.rtl .product-right .product-buttons a:last-child {
    margin-left: 0;
    margin-right: 10px
}

.rtl .product-right .product-icon .product-social li {
    padding-right: 0;
    padding-left: 30px
}

.rtl .product-right .product-icon .product-social li:last-child {
    padding-left: 0
}

.rtl .product-right .product-icon .wishlist-btn span {
    padding-left: 0;
    padding-right: 10px
}

.rtl .product-right .product-icon .wishlist-btn i {
    padding-left: 0;
    margin-left: 0;
    padding-right: 10px;
    margin-right: 5px;
    border-left: none;
    border-right: 1px solid #ddd
}

.rtl .product-right.product-form-box {
    text-align: center
}

.rtl .product-right.product-form-box .timer p {
    text-align: right
}

.rtl .product-right.product-form-box .product-description {
    text-align: center
}

.rtl .recently-purchase {
    text-align: right
}

.rtl .recently-purchase .media-body {
    padding: 0px 12px 0px 30px
}

.rtl .recently-purchase .close-popup {
    left: 7px;
    right: unset
}

.rtl .sticky-bottom-cart .product-image .content {
    margin-left: 0;
    margin-right: 12px
}

.rtl .sticky-bottom-cart .product-image .content h6 del {
    margin-left: 0;
    margin-right: 7px
}

.rtl .sticky-bottom-cart .product-image .content h6 span {
    margin-left: 0;
    margin-right: 5px
}

.rtl .sticky-bottom-cart .selection-section h4 {
    margin-right: unset;
    margin-left: 10px
}

.rtl .sticky-bottom-cart .selection-section .form-control {
    padding: .375rem .75rem .375rem 2.25rem
}

.rtl .sticky-bottom-cart .selection-section .form-group:nth-child(2) {
    margin-left: 0;
    margin-right: 40px
}

.rtl .add_to_cart .cart-inner .cart_media li {
    padding-left: unset !important;
    padding-right: 0 !important
}

.rtl .add_to_cart .cart-inner .cart_media li .buttons .checkout {
    float: left
}

.rtl .add_to_cart .cart-inner .cart_media li .media .media-body {
    text-align: right
}

.rtl .add_to_cart .cart-inner .cart_media .close-circle {
    left: 0;
    right: unset
}

.rtl .add_to_cart .cart-inner .cart_top .close-cart {
    margin-right: auto;
    margin-left: unset
}

.rtl .add_to_cart .cart-inner .qty-box {
    right: unset;
    left: 0
}

.rtl .add_to_cart .cart-inner .pere-text-box .progress .progress-bar .progress-icon {
    right: unset;
    left: -16px
}

.rtl .add_to_cart.top .cart_media .cart_product li,
.rtl .add_to_cart.bottom .cart_media .cart_product li {
    margin-left: 18px;
    margin-right: 0
}

.rtl .add_to_cart.right {
    left: -500px;
    right: unset
}

.rtl .add_to_cart.right.open-side {
    right: unset;
    left: 0
}

.rtl .timer {
    padding-left: 0;
    padding-right: 40px;
    text-align: right
}

.rtl .timer span .padding-l {
    padding-left: 0;
    padding-right: 22px
}

.rtl .product-related h2 {
    text-align: right
}

.rtl .element-detail {
    text-align: right
}

.rtl .custom-select-box .box-content {
    padding: calc(5px + 5*(100vw - 320px)/1600)
}

.rtl .country-input .custom-select-box {
    left: unset;
    right: 1px
}

.rtl .country-input .country-input-box input {
    padding-left: unset;
    padding-right: 128px
}

.rtl .dashboard-section .radio_animated {
    margin: 0 0 0 1rem
}

.rtl .dashboard-section .dashboard-box .dashboard-title span {
    margin-left: 0;
    margin-right: 30px
}

.rtl .dashboard-section .top-sec .btn {
    margin-left: unset;
    margin-right: auto
}

.rtl .dashboard-section .counter-section .counter-box {
    text-align: right;
    border-left: none;
    border-right: 3px solid var(--theme-color)
}

.rtl .dashboard-section .counter-section .counter-box img {
    margin-right: 0;
    margin-left: 20px
}

.rtl .dashboard-section .faq-content .card {
    text-align: right
}

.rtl .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
    text-align: right
}

.rtl .dashboard-section .title-header h5 svg {
    margin-left: 5px;
    margin-right: unset
}

.rtl .offer-box {
    display: none
}

.rtl .modal-header .close {
    margin: -1rem auto -1rem -1rem
}

.rtl .modal-dialog .modal-content .modal-body {
    text-align: right
}

.rtl .vendor-profile .profile-left .profile-detail,
.rtl .vendor-profile .profile-left .vendor-contact {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-right: 1px solid #efefef;
    padding-right: 20px;
    margin-right: 20px
}

.rtl .vendor-profile .profile-left .profile-detail {
    text-align: right
}

.rtl .vendor-profile .profile-left .profile-image img {
    margin: 0 auto
}

.rtl .about-page {
    text-align: right
}

.rtl .become-vendor {
    text-align: right
}

.rtl .start-selling {
    text-align: right
}

.rtl .cart-section .wishlist-buttons,
.rtl .wishlist-section .wishlist-buttons {
    text-align: left
}

.rtl .cart-section .cart-buttons>div:first-child,
.rtl .wishlist-section .cart-buttons>div:first-child {
    text-align: right
}

.rtl .cart-section .cart-buttons>div:nth-child(2),
.rtl .wishlist-section .cart-buttons>div:nth-child(2) {
    text-align: left
}

.rtl .dashboard .box .box-title>a {
    right: unset;
    left: 0
}

.rtl .seller-grid-box .grid-image .contain-name .since-number {
    right: unset;
    left: 0;
    padding-left: unset;
    padding-right: 5px
}

.rtl .seller-grid-box .grid-image .contain-name .since-number h6 {
    text-align: left
}

.rtl .seller-grid-box .grid-contain .seller-category .product-image li+li {
    margin-left: unset;
    margin-right: calc(-19px + 5*(100vw - 320px)/1600)
}

.rtl .search-block .form-header .input-group svg {
    padding-left: 4px;
    padding-right: unset
}

.rtl .checkout-page {
    text-align: right
}

.rtl .checkout-page .checkout-form .checkout-details .offer-apply-box .close-coupon {
    right: unset;
    left: 8px
}

.rtl .checkout-page .checkout-form-section .checkout-form .phone-field .country-input-box>.form-box>.form-control,
.rtl .checkout-page .checkout-form-section .country-input .phone-field .country-input-box>.form-box>.form-control {
    padding-left: calc(13px + 6*(100vw - 320px)/1600);
    padding-right: calc(93px + 35*(100vw - 320px)/1600)
}

.rtl .checkout-page .checkout-form-section .checkout-form .phone-field .country-input-box~.col-12>.custom-select-box>.form-control,
.rtl .checkout-page .checkout-form-section .country-input .phone-field .country-input-box~.col-12>.custom-select-box>.form-control {
    padding: calc(10px + 2*(100vw - 320px)/1600) calc(13px + 6*(100vw - 320px)/1600)
}

.rtl .checkout-page .checkout-form-section .delivery-option .custom-form-check label,
.rtl .checkout-page .checkout-form-section .payment-option .custom-form-check label {
    padding-right: 12px;
    padding-left: unset
}

.rtl .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail {
    margin-left: unset;
    margin-right: 10px
}

.rtl .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .custom-form-check .form-check-label,
.rtl .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .custom-form-check .form-check-label {
    padding-left: unset;
    padding-right: 12px
}

.rtl .order-box .title-box span {
    float: left
}

.rtl .order-box .qty li span {
    float: left
}

.rtl .order-box .total li .count {
    text-align: left
}

.rtl .order-box .sub-total .shipping {
    float: left
}

.rtl .order-box .sub-total li .check-it {
    margin-left: unset;
    margin-right: 14px
}

.rtl .order-box .sub-total li .count {
    text-align: left
}

.rtl .order-box .sub-total .shopping-option label {
    padding-right: 10px;
    padding-left: 0
}

.rtl .about-page {
    text-align: right
}

.rtl .testimonial .testimonial-slider .media {
    direction: rtl
}

.rtl .testimonial .testimonial-slider .media .media-body {
    padding: 30px 30px 30px 75px;
    text-align: right
}

.rtl .subscribe-form.classic-form .form-control {
    margin-left: 0;
    margin-right: 15px
}

.rtl .blog-detail-page .comment-section li img {
    margin-right: 0;
    margin-left: 20px
}

.rtl .blog-detail-page .comment-section li h6 span {
    margin-left: 0;
    margin-right: 20px
}

.rtl .faq-section {
    text-align: right
}

.rtl .faq-section .accordion.theme-accordion .card .card-header button {
    text-align: right
}

.rtl .faq-section .accordion.theme-accordion .card .card-header button:before {
    right: unset;
    left: 20px
}

.rtl .Toastify .Toastify__toast-container .Toastify__toast-body {
    flex-direction: row-reverse
}

.rtl .Toastify .Toastify__toast-container .Toastify__toast-body>div {
    text-align: right
}

.rtl .Toastify .Toastify__toast-container .Toastify__toast-body .Toastify__toast-icon {
    margin-right: unset;
    margin-left: 10px
}

.rtl .blog-sidebar {
    text-align: right
}

.rtl .blog-sidebar .theme-card .recent-blog li .media img {
    margin-right: 0;
    margin-left: 10px
}

.rtl .blog-detail-page .blog-detail .post-social li+li {
    padding-right: 11px;
    margin-right: 11px;
    border-right: 1px solid #eee;
    padding-left: unset;
    margin-left: unset;
    border-left: unset
}

.rtl .blog-page .blog-list .blog-contain {
    padding-left: 20px;
    padding-right: 0
}

.rtl .blog-page .blog-list .blog-contain .blog-label>span+span {
    margin-left: unset;
    padding-left: unset;
    border-left: unset;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #eee
}

.rtl .blog-page .blog-media .blog-right {
    text-align: right
}

.rtl .blog-page .blog-media .blog-right ul li+li {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #ddd
}

.rtl .blog-page .blog-sidebar .theme-card .popular-blog li .blog-date {
    margin: 0 0 0 15px
}

.rtl .blog-page .blog-box .blog-contain .blog-label>span+span {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #eee;
    margin-left: unset;
    padding-left: unset;
    border-left: unset
}

.rtl .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle {
    left: 0;
    right: unset
}

.rtl .phone-field .form-box .form-label~.custom-select-box,
.rtl .phone-field .form-box label~.custom-select-box {
    left: unset;
    right: 0
}

.rtl .phone-field .custom-select {
    left: unset;
    right: 0
}

.rtl .phone-field .form-box .form-label~.custom-select,
.rtl .phone-field .form-box label~.custom-select {
    left: unset;
    right: 0
}

.rtl .phone-field .custom-select-box {
    left: unset;
    right: 0
}

.rtl .phone-field .country-input-box~.col-12>.custom-select-box {
    left: unset;
    right: 0
}

.rtl .product-wrapper-grid.list-view .product-box .product-detail {
    padding-right: 15px;
    padding-left: 0;
    text-align: right !important
}

.rtl .auth-modal .modal-content.open .right-content {
    transform: translate(50%);
    animation: slideLeft-2 .45s normal forwards ease-out
}

.rtl .auth-modal .modal-content.open .left-img {
    transform: translate(-50%);
    animation: slideRight-2 .45s normal forwards ease-out
}

.rtl .auth-modal .auth-form-box .phone-field .form-box>.form-control {
    padding-left: unset;
    padding-right: calc(111px + 21*(100vw - 320px)/1600)
}

.rtl .tracking-panel ul {
    padding-left: 20px;
    padding-right: unset
}

.rtl .tracking-panel ul li {
    padding: calc(13px + 4*(100vw - 320px)/1600) calc(21px + 4*(100vw - 320px)/1600) calc(13px + 4*(100vw - 320px)/1600) 0
}

.rtl .tracking-panel ul li.active::after {
    border-right: 17px solid #fdf3ed
}

.rtl .tracking-panel ul li::after {
    border-left: unset;
    border-right: 17px solid #f8f8f8;
    right: unset;
    left: -16px
}

.rtl .tracking-panel ul li::before {
    right: 0;
    left: unset;
    border-right: 17px solid #fff;
    border-left: unset
}

.rtl .box-content {
    padding-right: 22px;
    padding-left: unset
}

.rtl .notification-list li {
    padding-left: calc(12px + 6*(100vw - 320px)/1600);
    padding-right: calc(33px + 13*(100vw - 320px)/1600)
}

.rtl .notification-list li::after {
    left: unset;
    right: calc(18px + 12*(100vw - 320px)/1600)
}

.rtl .theme-modal-2 .modal-header .btn-close {
    right: unset;
    left: 10px
}

.rtl .theme-modal-2 .modal-body .phone-field .form-box .form-control {
    padding-left: calc(13px + 6*(100vw - 320px)/1600);
    padding-right: calc(111px + 21*(100vw - 320px)/1600)
}

.rtl .user-dashboard-section .address-book-section .select-box .address-box .top h6 span {
    float: left
}

.rtl .was-validated textarea.form-control:valid,
.rtl textarea.form-control.is-valid {
    background-position: top calc(.375em + .1875rem) left calc(.375em + .1875rem)
}

.rtl .form-control.is-valid,
.rtl .was-validated .form-control:valid {
    background-position: left calc(.375em + .1875rem) center
}

.rtl .form-control.is-invalid,
.rtl .was-validated .form-control:invalid {
    background-position: left calc(.375em + .1875rem) center
}

.rtl .theme-settings {
    left: 0;
    right: unset
}

.rtl .theme-settings ul li {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-right: auto;
    margin-left: 0
}

.rtl.dark .service-block+.service-block {
    border-color: #404040
}

.rtl .cookie-bar .btn {
    margin-left: 0;
    margin-right: 20px
}

.rtl .product-box .img-wrapper .lable-block .lable3,
.rtl .product-wrap .img-wrapper .lable-block .lable3 {
    right: 7px;
    left: unset
}

.rtl .product-box .img-wrapper .lable-block .lable4,
.rtl .product-wrap .img-wrapper .lable-block .lable4 {
    left: 7px;
    right: unset
}

.rtl .service-w-bg .service-block+.service-block {
    border: none
}

.rtl .service-style-border .service-block .media-body {
    border-right: 1px solid #ddd;
    padding-right: 20px;
    border-left: none;
    padding-left: 0
}

.rtl .service-style-border .service-block+.service-block {
    border-right: none
}

.rtl .ajax-search .typeahead {
    text-align: right
}

.rtl .product-vertical .theme-card.center-align .offer-slider .product-box2 .media .media-body {
    text-align: right
}

.rtl .footer-style-1 .footer-social li {
    padding-left: 15px
}

.rtl .title-basic .timer {
    margin-right: 15px;
    margin-left: 0
}

.rtl .theme-tab .tab-title.border-title li,
.rtl .theme-tab .tab-title2.border-title li {
    border-left: 0;
    border-right: 1px solid #bbb
}

.rtl .theme-tab .tab-title.border-title li:first-child,
.rtl .theme-tab .tab-title2.border-title li:first-child {
    border-right: 0
}

.rtl .space_sm {
    padding-left: 0;
    padding-right: 240px
}

.rtl .bundle .bundle-image-box .bundle-box {
    text-align: right
}

.rtl .bundle .bundle-image-box .bundle-box .form-check {
    right: unset;
    left: 12px
}

.rtl .gradient-slider .product-box {
    direction: rtl
}

.rtl .header-style-5 .form_search .nav-search {
    padding-right: 10px;
    padding-left: 51px
}

.rtl .left-blog hr.style1 {
    margin-left: auto;
    margin-right: unset
}

.rtl .left-blog .blog-details {
    text-align: right
}

.rtl.having-sidemenu {
    padding-right: 242px;
    padding-left: unset
}

.rtl .basic-product .img-wrapper .unit-label {
    left: unset;
    right: 0
}

.rtl .basic-product .cart-info a:first-child:active,
.rtl .basic-product .cart-info button:first-child:active {
    background-color: rgba(0, 0, 0, 0)
}

.rtl .basic-product .color-panel ul li+li {
    margin-right: calc(2px + 3*(100vw - 320px)/1600);
    margin-left: unset
}

.rtl .basic-product .product-right .form-select {
    padding: calc(5px + 4*(100vw - 320px)/1600) calc(10px + 6*(100vw - 320px)/1600) calc(5px + 4*(100vw - 320px)/1600) calc(30px + 6*(100vw - 320px)/1600)
}

.rtl .basic-product.theme-product-1:hover .product-detail .offer-panel {
    animation-direction: reverse
}

.rtl .basic-product.theme-product-2 .product-detail .add-wish {
    right: unset;
    left: calc(10px + 8*(100vw - 320px)/1600)
}

.rtl .basic-product.theme-product-2 .cart-detail li+li {
    border-left: unset;
    border-right: 1px solid #eee
}

.rtl .basic-product.theme-product-2 .cart-detail li i,
.rtl .basic-product.theme-product-2 .cart-detail li svg {
    margin-right: unset;
    margin-left: 6px
}

.rtl .basic-product.theme-product-3 .product-detail {
    text-align: right
}

.rtl .basic-product.theme-product-4 .price del {
    margin-left: unset;
    margin-right: auto
}

.rtl .basic-product.theme-product-5 .cart-info .hover-action li a {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: unset
}

.rtl .basic-product.theme-product-5 .cart-info button,
.rtl .basic-product.theme-product-5 .cart-info a {
    background-color: rgba(0, 0, 0, 0)
}

.rtl .basic-product.theme-product-8 .add-round-btn {
    right: unset;
    left: calc(8px + 6*(100vw - 320px)/1600)
}

.rtl .basic-product.theme-product-9 .price-vertical {
    text-align: left
}

.rtl .basic-product.theme-product-10 .cart-info a,
.rtl .basic-product.theme-product-10 .cart-info button {
    background-color: #404040
}

.rtl .slick-slider .slick-list .slick-slide>div {
    direction: rtl
}

.rtl .product-accordion .accordion .accordion-item .accordion-header .accordion-button::after {
    margin-left: unset;
    margin-right: auto
}

.rtl .quantity-variant {
    padding: 6px 6px
}

.rtl .product-page-details .timer {
    float: unset;
    padding: 15px
}

.rtl .product-page-details .timer p span .padding-l {
    right: unset;
    left: -11px;
    padding-right: 0
}

.rtl .product-page-details .shipping-info {
    padding-left: unset;
    padding-right: 20px;
    text-align: right
}

.rtl .product-page-details .size-delivery-info a svg {
    margin-right: unset;
    margin-left: 10px
}

.rtl .product-page-details .select-dropdown {
    padding-block: 11px
}

.rtl .product-page-details .qty-section .qty-box .input-group button {
    margin: 0
}

.rtl .review-people {
    border-right: 1px solid #ececec;
    border-left: unset;
    padding-right: 23px;
    padding-left: unset
}

.rtl .review-people .review-list {
    padding-right: 0
}

.rtl .review-people .review-list li .people-box .people-comment .people-name h6 {
    margin-right: unset;
    margin-left: auto
}

.rtl.christmas {
    overflow-x: hidden !important
}

.rtl.modal-open {
    overflow-x: hidden !important
}

.rtl.dark .service-block+.service-block {
    border-color: #404040
}

.rtl .cookie-bar .btn {
    margin-left: 0;
    margin-right: 20px
}

.rtl .product-box .img-wrapper .lable-block .lable3,
.rtl .product-wrap .img-wrapper .lable-block .lable3 {
    right: 7px;
    left: unset
}

.rtl .product-box .img-wrapper .lable-block .lable4,
.rtl .product-wrap .img-wrapper .lable-block .lable4 {
    left: 7px;
    right: unset
}

.rtl .service-w-bg .service-block+.service-block {
    border: none
}

.rtl .service-style-border .service-block .media-body {
    border-right: 1px solid #ddd;
    padding-right: 20px;
    border-left: none;
    padding-left: 0
}

.rtl .service-style-border .service-block+.service-block {
    border-right: none
}

.rtl .ajax-search .typeahead {
    text-align: right
}

.rtl .product-vertical .theme-card.center-align .offer-slider .product-box2 .media .media-body {
    text-align: right
}

.rtl .title-basic .timer {
    margin-right: 15px;
    margin-left: 0
}

.rtl .theme-tab .tab-title.border-title li,
.rtl .theme-tab .tab-title2.border-title li {
    border-left: 0;
    border-right: 1px solid #bbb
}

.rtl .theme-tab .tab-title.border-title li:first-child,
.rtl .theme-tab .tab-title2.border-title li:first-child {
    border-right: 0
}

.rtl .gradient-slider .product-box {
    direction: rtl
}

.rtl .basic-product .timer {
    padding: 15px
}

.rtl .basic-product.theme-product-1:hover .product-detail .offer-panel {
    animation-direction: reverse
}

.rtl .search-modal .modal-body .search-box .form-control {
    padding-right: 15px;
    padding-left: 48px
}

.rtl .search-modal .modal-body .search-box svg {
    border-right: 1px solid #eee;
    padding-right: 13px;
    left: 16px;
    border-left: unset;
    padding-left: unset;
    right: unset
}

.rtl .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body {
    padding-left: unset;
    padding-right: 15px
}

@media(max-width: 575px) {
    .rtl .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body {
        padding: 0
    }
}

.rtl .button-dark.category-button .btn img {
    margin-right: unset;
    margin-left: 14px
}

.rtl .cart-section tfoot tr td:first-child,
.rtl .wishlist-section tfoot tr td:first-child {
    text-align: left
}

.rtl .left-skelton-box ul .placeholder {
    margin-left: unset;
    margin-right: 30px
}

.rtl .left-skelton-box ul .placeholder::after {
    left: unset;
    right: -30px
}

.rtl .product-details-box .theme-card .offer-slider .media img {
    margin: 0
}

.rtl .product-details-box .theme-card .offer-slider .media .media-body .rating svg {
    padding: 0
}

.rtl.skeleton-body {
    animation-direction: reverse
}

.rtl.skeleton-body .home-skeleton {
    direction: rtl
}

.rtl.skeleton-body .img-category .img-sec {
    background: #3c3c3c !important
}

.rtl.skeleton-body .img-category h4 a {
    color: rgba(0, 0, 0, 0);
    animation-direction: reverse
}

.rtl.skeleton-body .category-block .category-image {
    animation-direction: reverse
}

.rtl.skeleton-body .category-block .category-details h5 {
    animation-direction: reverse
}

.rtl.skeleton-body .service-block .media .skeleton-img-box {
    margin-right: unset;
    margin-left: 15px;
    animation-direction: reverse
}

.rtl.skeleton-body .service-block .media-body .skeleton-content-p,
.rtl.skeleton-body .service-block .media-body .skeleton-content-h4 {
    animation-direction: reverse
}

.rtl.skeleton-body .placeholder-glow .placeholder {
    animation-direction: reverse
}

.rtl.skeleton-body.tools-bg .home-skeleton,
.rtl.skeleton-body.bg_cls .home-skeleton {
    background-color: #232323
}

.rtl.skeleton-body .vector-category .category-slide .img-category h4 {
    animation-direction: reverse
}

.rtl.skeleton-body .service-block1 .service-skeleton-img,
.rtl.skeleton-body .service-block1 .skeleton-content-h4,
.rtl.skeleton-body .service-block1 .skeleton-content-p {
    animation-direction: reverse
}

.rtl.skeleton-body [class*=skeleton-text-] {
    animation-direction: reverse
}

.rtl.skeleton-body [class*=skeleton-text-] span {
    animation-direction: reverse
}

body.rtl .m-r-15 {
    margin-left: 15px;
    margin-right: unset
}

body.rtl .me-2,
body.rtl .mx-2 {
    margin-left: .5rem !important;
    margin-right: unset !important
}

body.rtl .ps-0,
body.rtl .px-0 {
    padding-right: 0 !important;
    padding-left: unset !important
}

body.rtl .needs-validation .form-group {
    text-align: right
}

body.rtl .needs-validation .form-group .checkbox {
    padding-right: 0;
    padding-left: unset
}

body.rtl .needs-validation .checkbox {
    right: 0;
    margin-left: -16px
}

body.rtl .needs-validation .checkbox label {
    padding-right: 16px;
    padding-left: unset
}

body.rtl .needs-validation .checkbox label::before {
    right: 0;
    left: unset;
    margin-left: unset;
    margin-right: -16px
}

body.rtl .needs-validation .radio-animated label {
    margin-left: 20px;
    margin-right: unset
}

body.rtl .jsgrid-button+.jsgrid-button {
    margin-right: 5px;
    margin-left: unset
}

body.rtl .text-right {
    text-align: left !important
}

body.rtl .br-wrapper {
    text-align: right
}

body.rtl code[class*=language-],
body.rtl pre[class*=language-] {
    text-align: right
}

body.rtl .pull-right {
    float: left
}

body.rtl .right-sidebar.show {
    left: 0;
    right: unset
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-user h6,
body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-user p {
    text-align: center
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li {
    text-align: right
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li.active>.sidebar-submenu {
    margin-right: 15px;
    margin-left: unset
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-submenu>li>a {
    padding-right: 10px;
    padding-left: unset
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-submenu>li>a>.fa-circle {
    right: 0;
    left: unset
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-header svg {
    margin-right: unset;
    margin-left: 14px
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar~.page-body {
    margin-right: 255px;
    margin-left: unset
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar.open {
    margin-right: -260px;
    margin-left: unset
}

body.rtl .page-wrapper .page-body-wrapper .page-sidebar.open~.page-body,
body.rtl .page-wrapper .page-body-wrapper .page-sidebar.open~footer {
    margin-right: 0
}

body.rtl .page-wrapper .page-body-wrapper .page-header .row h3 {
    text-align: right
}

body.rtl .page-wrapper .page-body-wrapper footer {
    margin-right: 255px;
    margin-left: unset
}

body.rtl .page-wrapper .page-body-wrapper footer p i {
    margin-right: 5px;
    margin-left: unset
}

body.rtl .media .media-body {
    text-align: right
}

body.rtl .timer {
    float: right
}

body.rtl .profile-details h5 {
    text-align: center
}

@media only screen and (max-width: 991px) {

    body.rtl .page-wrapper .page-body-wrapper .page-sidebar~.page-body,
    body.rtl .page-wrapper .page-body-wrapper .page-sidebar~footer {
        margin-right: 0
    }
}

@media only screen and (max-width: 767px) {
    body.rtl .needs-validation .form-group .checkbox {
        padding-right: 15px;
        padding-left: unset
    }

    body.rtl .page-wrapper .page-body-wrapper footer p {
        text-align: center
    }
}

@media(min-width: 576px) {
    .rtl .me-sm-3 {
        margin-left: 1rem !important;
        margin-right: 0 !important
    }
}

@media(min-width: 768px) {
    .rtl .offset-md-2 {
        margin-left: 0;
        margin-right: 16.66667%
    }
}

@media(min-width: 992px) {
    .rtl .offset-lg-2 {
        margin-right: 16.66667%;
        margin-left: unset
    }

    .rtl .offset-lg-4 {
        margin-left: unset;
        margin-right: 33.3333333333%
    }

    .rtl .offset-lg-3 {
        margin-right: 25%;
        margin-left: 0
    }

    .rtl .service_slide .service-home .offset-lg-2 {
        margin-right: 16.6666666667%;
        margin-left: 0
    }
}

@media(min-width: 1200px) {
    .rtl .offset-xl-1 {
        margin-right: 8.33333%;
        margin-left: 0
    }

    .rtl header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header {
        text-align: right
    }

    .rtl header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header::after {
        left: unset;
        right: 0
    }

    .rtl header .navbar-expand-xl .dropdown-menu .dropdown-menu {
        right: 100%;
        width: auto
    }

    .rtl header .navbar-expand-xl .dropdown-menu .dropdown-item {
        text-align: right
    }

    .rtl header .navbar-expand-xl .dropdown-menu .dropdown-item::after {
        left: unset;
        right: 0
    }

    .rtl header .main-navbar .nav-menu>li .nav-submenu li a:before {
        right: 35px
    }

    .rtl .sm-vertical a {
        text-align: right
    }

    .rtl .sm-horizontal>li {
        float: right
    }

    .rtl .sm-horizontal>li>a,
    .rtl .sm-horizontal>li>a:hover,
    .rtl .sm-horizontal>li>a:active {
        padding-left: 45px;
        padding-right: 0
    }

    .rtl .pixelstrap ul a:before {
        right: 35px
    }

    .rtl .pixelstrap .mega ul {
        margin-left: auto !important
    }

    .rtl .pixelstrap.sm-vertical .mega-menu ul a:before {
        right: 0
    }

    .rtl .center-margin {
        margin-left: -30px;
        margin-right: 0
    }
}

@media(min-width: 1400px) {
    .offset-xxl-1 {
        margin-left: 0;
        margin-right: 8.33%
    }
}

@media(max-width: 1399px) {
    .rtl .toggle-nav {
        margin-right: unset;
        margin-left: 22px
    }
}

@media(max-width: 1430px) {
    .rtl header.left-header .top-header {
        padding-right: 0
    }

    .rtl header.left-header .sidenav {
        left: unset;
        right: -300px
    }

    .rtl header.left-header .sidenav.open-side {
        right: 0
    }

    .rtl header.left-header.left-header-sm .sidenav {
        right: 0
    }

    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        border-right: 1px solid #ddd;
        border-left: none;
        padding-right: 20px !important;
        padding-left: 0 !important;
        text-align: right
    }

    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
        border-right: 1px solid #ddd
    }

    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul,
    .rtl .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul {
        justify-content: flex-start
    }

    .rtl .product-right .product-icon .product-social li {
        padding-left: 10px
    }

    .rtl .product-form-box .timer {
        padding-right: 17px
    }

    .rtl .cart-section tfoot tr td {
        padding-left: 41px
    }
}

@media(max-width: 1367px) {
    .rtl .timer span .padding-l {
        padding-right: 5px
    }
}

@media(max-width: 1199px) {
    .rtl.having-sidemenu {
        padding-left: unset;
        padding-right: 0
    }

    .rtl .pixelstrap .link-section .menu-title .according-menu:before {
        left: -18px;
        right: unset
    }

    .rtl .pixelstrap .link-section .menu-title.active .according-menu:before {
        left: -18px;
        right: unset
    }

    .rtl .pixelstrap li a {
        text-align: right
    }

    .rtl .pixelstrap li .lable-nav {
        right: 15px;
        left: unset
    }

    .rtl .sidenav.marketplace-sidebar {
        right: -300px
    }

    .rtl .sidenav.marketplace-sidebar.open-side {
        right: 0
    }

    .rtl header .main-navbar .nav-menu li {
        text-align: right
    }

    .rtl header .main-navbar .nav-menu>li a .sub-arrow {
        left: 0;
        right: unset
    }

    .rtl header .main-navbar .nav-menu>li .nav-submenu li .nav-sub-childmenu {
        left: 0
    }

    .rtl header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
        transform: translateX(100%)
    }

    .rtl header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-header {
        text-align: right
    }

    .rtl header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item {
        text-align: right
    }

    .rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item+.nav-item {
        margin-left: unset;
        margin-right: 0
    }

    .rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
        padding-right: unset;
        padding-left: 18px
    }

    .rtl header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a::before {
        right: unset;
        left: 0
    }

    .rtl header .navbar-nav>li>a {
        text-align: right
    }

    .rtl header .navbar-nav .dropdown-menu .dropdown-item {
        margin-left: unset;
        margin-right: 15px
    }

    .rtl header .navbar-nav .dropdown-menu .dropdown-item::before {
        left: unset;
        right: -4px
    }

    .rtl header .navbar-nav .dropdown-menu .dropdown-column .dropdown-header {
        padding-left: unset;
        padding-right: 10px
    }

    .rtl header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item {
        margin-left: unset;
        margin-right: 15px
    }

    .rtl header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item::before {
        left: unset;
        right: -4px
    }

    .rtl header.left-header .sidenav .pixelstrap li .nav-submenu {
        margin-right: 0
    }

    .rtl header.left-header .sidenav .pixelstrap li .nav-submenu li .nav-sub-childmenu {
        margin-right: 0
    }

    .rtl header.left-header.left-header-relative .sidenav .left-sidebar_center {
        padding: 0 0 25px 25px
    }

    .rtl header.left-header.left-header-sm .sidenav {
        right: -300px
    }

    .rtl header.left-header.left-header-sm .sidenav .left-sidebar_center {
        padding: 0
    }

    .rtl header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li>a img {
        margin-left: 12px !important;
        margin-right: 0 !important
    }

    .rtl header.left-header.left-header-sm.open-side .sidenav {
        right: 0
    }

    .rtl .sidenav .sidebar-menu li {
        direction: rtl;
        text-align: right
    }

    .rtl .sidenav .sidebar-menu li a .sub-arrow {
        right: auto;
        left: 15px
    }

    .rtl .service-block+.service-block {
        border: none
    }

    .rtl .main-nav-center .toggle-nav {
        left: 175px;
        right: unset
    }

    .rtl .product-right .product-icon .product-social li {
        padding-left: 4px
    }

    .rtl .product-right .product-icon .wishlist-btn span {
        padding-right: 4px
    }

    .rtl .cart-section tfoot tr td {
        padding-left: 25px
    }

    .rtl .add_to_cart.top .cart_media .cart_product li,
    .rtl .add_to_cart.bottom .cart_media .cart_product li {
        margin-left: 0;
        margin-right: 0
    }

    .rtl .cart-section .cart-buttons>div:last-child,
    .rtl .wishlist-section .cart-buttons>div:last-child {
        padding-left: 17px
    }

    .rtl .collection-product-wrapper .product-filter-content .collection-view {
        padding-right: 20px !important
    }

    .rtl .footer-social li {
        padding-right: 0;
        padding-left: 38px
    }

    .rtl .tab-left .theme-tab .left-side .tab-title {
        text-align: center;
        margin-left: 0
    }

    .rtl .product-form-box.product-right .timer {
        padding-left: 0
    }

    .rtl .pixelstrap li a {
        text-align: right
    }

    .rtl .pixelstrap li .lable-nav {
        right: 15px;
        left: unset
    }

    .rtl .sidenav.marketplace-sidebar {
        right: -300px
    }

    .rtl .sidenav.marketplace-sidebar.open-side {
        right: 0
    }

    .rtl .space_sm {
        padding-right: 0
    }
}

@media(max-width: 991px) {
    .rtl .footer-light .subscribe {
        border: none
    }

    .rtl .auth-modal .modal-content.open .right-content {
        animation: unset;
        transform: unset
    }

    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select {
        border-right: 1px solid #ddd !important
    }

    .rtl .collection-product-wrapper .product-top-filter .search-count,
    .rtl .collection-product-wrapper .product-top-filter .sidebar-popup {
        margin-left: unset;
        margin-right: unset
    }

    .rtl .filter-main-btn {
        text-align: right
    }

    .rtl .product-right {
        text-align: center
    }

    .rtl .product-right .size-text {
        text-align: right
    }

    .rtl .product-right .timer {
        text-align: right
    }

    .rtl .product-right .product-icon .product-social li {
        padding-left: 20px
    }

    .rtl .button-dark.category-button .btn img {
        margin-right: unset;
        margin-left: 14px
    }

    .rtl .faq-tab {
        text-align: right
    }

    .rtl .faq-tab .nav-tabs .nav-item .nav-link.active,
    .rtl .faq-tab .nav-tabs .nav-item .nav-link:hover {
        border-left: none
    }

    .rtl .vendor-profile .profile-left .profile-detail,
    .rtl .vendor-profile .profile-left .vendor-contact {
        margin-right: 0;
        padding-right: 0;
        border-right: none
    }

    .rtl .vendor-profile .profile-left .profile-detail {
        text-align: center
    }

    .rtl .cart-section tfoot tr td {
        padding-left: 0
    }

    .rtl .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
        text-align: center;
        background: none var(--theme-color);
        border: none
    }

    .rtl .testimonial .testimonial-slider .media .media-body {
        padding: 0 30px
    }

    .rtl .beauty-about .about-text p {
        text-align: center
    }

    .rtl .product-left-title.right-content {
        text-align: right
    }

    .rtl .collection-wrapper .collection-filter {
        left: unset;
        right: -350px
    }

    .rtl .collection-wrapper .collection-filter.show,
    .rtl .collection-wrapper .collection-filter.open {
        left: unset;
        right: 0
    }
}

@media(max-width: 767px) {
    .rtl header.left-header .main-menu .menu-right .icon-nav li {
        padding-left: 0;
        padding-right: 15px
    }

    .rtl .footer-title h4 {
        text-align: right
    }

    .rtl .footer-title .according-menu:before {
        left: 2px;
        right: unset
    }

    .rtl .footer-title.active .according-menu:before {
        left: 2px;
        right: unset
    }

    .rtl .footer-content {
        text-align: right
    }

    .rtl .footer-theme .sub-title li {
        text-align: right
    }

    .rtl .footer-theme .sub-title .contact-list li {
        padding-right: 0
    }

    .rtl .footer-theme .sub-title .contact-list i {
        margin-right: 0;
        margin-left: 10px
    }

    .rtl .footer-theme .sub-title .contact-list svg {
        left: 10px;
        right: unset
    }

    .rtl .service-block .media .media-body {
        text-align: center
    }

    .rtl .service-block+.service-block {
        border: none
    }

    .rtl .footer-theme2 .contact-details li {
        text-align: right
    }

    .rtl .product-box .cart-detail,
    .rtl .product-wrap .cart-detail {
        left: 10px;
        right: unset
    }

    .rtl .footer-theme2 .footer-link li,
    .rtl .footer-theme2 .footer-link-b li {
        padding-left: 0;
        padding-right: 20px
    }

    .rtl .layout2-logo {
        padding-left: 70px;
        padding-right: 0
    }

    .rtl .testimonial .testimonial-slider .media .media-body {
        padding: 30px 30px 30px 30px
    }

    .rtl .footer-style-1 .footer-social li {
        padding-left: 5px;
        padding-right: unset
    }

    .rtl .footer-social li {
        padding: 0 15px
    }

    .rtl .service-block svg {
        margin-left: 0;
        margin-bottom: 20px
    }

    .rtl .service-style-border .service-block .media-body {
        border-right: none;
        padding-right: 0
    }

    .rtl .sticky-bottom-cart .selection-section .form-group:nth-child(2) {
        margin-right: 10px
    }
}

@media(max-width: 577px) {
    .rtl header.left-header .main-menu .menu-left .mobile-logo {
        left: unset;
        right: 15px
    }

    .rtl header.left-header .main-menu .menu-left .navbar {
        right: unset;
        left: 15px
    }

    .rtl header.header-5 .main-menu .brand-logo {
        left: unset;
        right: 0
    }

    .rtl header.header-5.left-sidebar-header .main-menu .menu-left .navbar {
        left: 0px;
        right: unset
    }

    .rtl header.header-style .brand-logo {
        right: 0;
        left: unset
    }

    .rtl header.left-header .main-menu .menu-right .icon-nav li {
        padding: 0
    }

    .rtl .top-header .header-dropdown .mobile-wishlist {
        padding: 0
    }

    .rtl .top-header .header-dropdown>li:nth-child(2) {
        padding: 0
    }

    .rtl .top-header .header-dropdown li {
        padding: 0 !important
    }

    .rtl .main-menu .menu-left .navbar {
        padding: 30px 0 30px 45px !important
    }

    .rtl .main-nav-center .toggle-nav {
        right: unset;
        left: 15px
    }

    .rtl .layout2-logo {
        padding-left: 0
    }

    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
        border-right: none !important;
        border: #38352f
    }

    .rtl .recently-purchase .media-body {
        padding: 0 5px 0 0
    }

    .rtl .blog-page .blog-list .blog-contain {
        padding: calc(12px + 8*(100vw - 320px)/256)
    }

    .rtl .collection-product-wrapper .product-top-filter .product-filter-content .dropdown-box-group .product-page-filter,
    .rtl .collection-product-wrapper .product-top-filter .popup-filter .dropdown-box-group .product-page-filter {
        margin: 0;
        margin-top: calc(10px + 7*(100vw - 320px)/672)
    }
}

@media(max-width: 480px) {
    .rtl .testimonial .testimonial-slider .media .media-body {
        text-align: center;
        padding: 6px
    }

    .rtl .blog-detail-page .comment-section li img {
        margin-left: 0
    }

    .rtl .blog-page .blog-media .blog-right ul li+li {
        padding-right: 0;
        margin-right: 0;
        border-right: none
    }
}

@media(max-width: 420px) {
    .rtl .full-box .center-slider .offer-slider .product-box {
        direction: rtl
    }

    .rtl .full-box .center-slider .offer-slider .product-box .img-wrapper img {
        padding: 0 0 0 15px
    }

    .rtl .product-right .product-icon .product-social li {
        padding-left: 5px
    }

    .rtl .timer span .padding-l {
        padding-right: 5px
    }

    .rtl .order-box .sub-total .shipping .shopping-option:last-child {
        padding-left: 0;
        padding-right: 20px
    }

    .rtl .center-slider .offer-slider .product-box .product-detail {
        text-align: right !important
    }
}

@media(max-width: 360px) {
    .rtl .timer span .padding-l {
        padding-right: 10px
    }
}

body.dark {
    background-color: #2b2b2b;
    transition: all .3s ease;
    color: #cfd4da
}

.dark.rtl .tracking-panel ul li.active::after,
.dark2.rtl .tracking-panel ul li.active::after {
    border-right-color: #404040
}

.dark.rtl .tracking-panel ul li::after,
.dark2.rtl .tracking-panel ul li::after {
    border-right-color: #232323
}

.dark.rtl .tracking-panel ul li::before,
.dark2.rtl .tracking-panel ul li::before {
    border-right-color: #2b2b2b
}

.dark h1,
.dark2 h1 {
    color: #fff
}

.dark h2,
.dark2 h2 {
    color: #f1f3f5
}

.dark h3,
.dark2 h3 {
    color: #eaedef
}

.dark h4,
.dark2 h4 {
    color: #e7eaec
}

.dark h5,
.dark2 h5 {
    color: #dee2e6
}

.dark h6,
.dark2 h6 {
    color: #cfd4da
}

.dark p,
.dark2 p {
    color: #cfd4da
}

.dark li,
.dark2 li {
    color: #cfd4da
}

.dark .btn-animation:before,
.dark2 .btn-animation:before {
    background-color: #232323
}

.dark input:-webkit-autofill,
.dark input:-webkit-autofill:hover,
.dark input:-webkit-autofill:focus,
.dark input:-webkit-autofill:active,
.dark2 input:-webkit-autofill,
.dark2 input:-webkit-autofill:hover,
.dark2 input:-webkit-autofill:focus,
.dark2 input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ddd
}

.dark .checkbox_animated::after,
.dark2 .checkbox_animated::after {
    border-color: #404040;
    background-color: #232323
}

.dark .btn-outline,
.dark2 .btn-outline {
    color: var(--theme-color)
}

.dark .dropdown-item:hover,
.dark .dropdown-item:focus,
.dark2 .dropdown-item:hover,
.dark2 .dropdown-item:focus {
    color: #fff;
    background-color: #2b2b2b
}

.dark .form-control::placeholder,
.dark2 .form-control::placeholder {
    color: #757575
}

.dark .search-suggestion-box,
.dark2 .search-suggestion-box {
    box-shadow: 0 0 8px rgba(96, 96, 96, .168627451);
    border-color: #404040;
    background-color: #2b2b2b
}

.dark .search-suggestion-box .not-found-box h5,
.dark2 .search-suggestion-box .not-found-box h5 {
    color: #a7a7a7
}

.dark .search-suggestion-box .not-found-box h5 span,
.dark2 .search-suggestion-box .not-found-box h5 span {
    color: #ddd
}

.dark .search-suggestion-box ul>li .suggestion-category a,
.dark2 .search-suggestion-box ul>li .suggestion-category a {
    color: #fff !important
}

.dark .search-suggestion-box ul>li .suggestion-category p,
.dark2 .search-suggestion-box ul>li .suggestion-category p {
    color: #cbcbcb
}

.dark .search-suggestion-box ul>li .suggestion-category p+p::before,
.dark2 .search-suggestion-box ul>li .suggestion-category p+p::before {
    color: rgba(206, 206, 206, .3)
}

.dark .search-suggestion-box .recent-search-section .filter-row>a,
.dark2 .search-suggestion-box .recent-search-section .filter-row>a {
    background-color: #232323;
    color: #fff !important
}

.dark .search-suggestion-box .recent-search-section .filter-row>a:hover,
.dark2 .search-suggestion-box .recent-search-section .filter-row>a:hover {
    background-color: var(--theme-color);
    color: #fff !important
}

.dark .modal .btn-close span,
.dark2 .modal .btn-close span {
    color: #fff
}

.dark .form-select,
.dark2 .form-select {
    background-color: #2b2b2b;
    border-color: #404040;
    --bs-form-select-bg-img: url("../../svg/dropdown.svg")
}

.dark.digital-download header.header-5.overlay-style.sticky,
.dark2.digital-download header.header-5.overlay-style.sticky {
    background-color: #fff
}

.dark.digital-download header.header-5.overlay-style.sticky .main-menu .menu-right .icon-nav i,
.dark2.digital-download header.header-5.overlay-style.sticky .main-menu .menu-right .icon-nav i {
    color: #fff
}

.dark.digital-download header.header-5.overlay-style.sticky .navbar-nav>li>a,
.dark2.digital-download header.header-5.overlay-style.sticky .navbar-nav>li>a {
    color: #cecece
}

.dark.digital-download header.header-5.overlay-style.sticky .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a,
.dark2.digital-download header.header-5.overlay-style.sticky .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    color: #cecece
}

.dark .service-style-border .service-block .media-body,
.dark2 .service-style-border .service-block .media-body {
    border-color: #404040
}

.dark .footer-background .footer-light .border-section,
.dark2 .footer-background .footer-light .border-section {
    border-color: #404040
}

.dark .footer-background .light-layout,
.dark .footer-background .sub-footer,
.dark2 .footer-background .light-layout,
.dark2 .footer-background .sub-footer {
    background-color: rgba(0, 0, 0, 0)
}

.dark .bg_cls,
.dark2 .bg_cls {
    background-color: #232323
}

.dark .grey-bg,
.dark2 .grey-bg {
    background-color: #232323
}

.dark .border-top,
.dark2 .border-top {
    border-color: #404040 !important
}

.dark .bg-light,
.dark2 .bg-light {
    background-color: #232323 !important
}

.dark .product-details-box .theme-card .offer-slider>div .media:last-child img,
.dark2 .product-details-box .theme-card .offer-slider>div .media:last-child img {
    background-color: #232323;
    border-color: #404040
}

.dark .product-details-box .theme-card .offer-slider .media img,
.dark2 .product-details-box .theme-card .offer-slider .media img {
    background-color: #262626;
    border-color: #404040
}

.dark .product-details-box .collection-filter-block .product-service,
.dark2 .product-details-box .collection-filter-block .product-service {
    border-color: #404040
}

.dark .product-details-box .collection-filter-block.accordion,
.dark2 .product-details-box .collection-filter-block.accordion {
    border-color: #404040
}

.dark .blog-section .blog-details p,
.dark2 .blog-section .blog-details p {
    color: #cfd4da
}

.dark .blog-section .review-box,
.dark2 .blog-section .review-box {
    background-color: #2b2b2b
}

.dark .blog-section .review-box .review-content h6,
.dark2 .blog-section .review-box .review-content h6 {
    color: #cfd4da
}

.dark .page-link,
.dark2 .page-link {
    background-color: #2b2b2b;
    transition: all .3s ease;
    border-color: #404040
}

.dark .breadcrumb-section,
.dark2 .breadcrumb-section {
    background-color: #232323;
    transition: all .3s ease
}

.dark .light-layout,
.dark2 .light-layout {
    background-color: #232323;
    transition: all .3s ease
}

.dark .form-control,
.dark2 .form-control {
    color: #cfd4da;
    background-color: #2b2b2b;
    transition: all .3s ease;
    border: 1px solid #404040
}

.dark mark,
.dark .mark,
.dark2 mark,
.dark2 .mark {
    background-color: #232323;
    color: #fff
}

.dark .product-review-form .product-wrapper,
.dark2 .product-review-form .product-wrapper {
    background-color: #232323;
    border-color: #404040
}

.dark .product-review-form .product-wrapper .product-image,
.dark2 .product-review-form .product-wrapper .product-image {
    background-color: #2b2b2b
}

.dark .product-review-form .product-wrapper .product-content .product-review-rating .price-number,
.dark2 .product-review-form .product-wrapper .product-content .product-review-rating .price-number {
    color: #ddd
}

.dark .btn-solid,
.dark2 .btn-solid {
    color: #fff !important
}

.dark .btn-solid:hover,
.dark2 .btn-solid:hover {
    color: var(--theme-color) !important;
    background-color: rgba(0, 0, 0, 0)
}

.dark .variation-box .radio .form-check .form-check-input,
.dark2 .variation-box .radio .form-check .form-check-input {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .variation-box .radio .form-check .form-check-input:checked,
.dark2 .variation-box .radio .form-check .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.dark .quantity-variant li,
.dark .image-box li,
.dark2 .quantity-variant li,
.dark2 .image-box li {
    background-color: #232323 !important;
    border-color: #404040
}

.dark .quantity-variant,
.dark2 .quantity-variant {
    background-color: #232323;
    border-color: #404040
}

.dark .quantity-variant li,
.dark2 .quantity-variant li {
    background-color: #232323 !important;
    border-color: rgba(0, 0, 0, 0)
}

.dark .quantity-variant li.active,
.dark2 .quantity-variant li.active {
    background-color: #2b2b2b !important;
    box-shadow: unset;
    border-color: var(--theme-color)
}

.dark .quantity-variant li.active button,
.dark2 .quantity-variant li.active button {
    background-color: #2b2b2b !important;
    color: var(--theme-color)
}

.dark .quantity-variant li button,
.dark2 .quantity-variant li button {
    color: #ddd
}

.dark .quantity-variant.color li,
.dark2 .quantity-variant.color li {
    border-color: rgba(0, 0, 0, 0)
}

.dark .quantity-variant.color li.active,
.dark2 .quantity-variant.color li.active {
    border-color: var(--theme-color)
}

.dark .quantity-variant.circle li,
.dark2 .quantity-variant.circle li {
    border-color: rgba(0, 0, 0, 0)
}

.dark select,
.dark2 select {
    color: #cfd4da
}

.dark option,
.dark2 option {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .demo-section .demo-effects>div .demo-text h4,
.dark2 .demo-section .demo-effects>div .demo-text h4 {
    color: #fff
}

.dark .setting_box_body,
.dark2 .setting_box_body {
    background-color: #2b2b2b
}

.dark .setting-box,
.dark2 .setting-box {
    background-color: #2b2b2b
}

.dark .setting-box ::-webkit-scrollbar-track,
.dark2 .setting-box ::-webkit-scrollbar-track {
    background: #3c3c3c
}

.dark .setting-box .setting-section,
.dark2 .setting-box .setting-section {
    border-color: #3c3c3c
}

.dark .setting-box .demo-effects>div .layout-container,
.dark2 .setting-box .demo-effects>div .layout-container {
    border-color: #3c3c3c
}

.dark .setting-box .demo-effects>div .layout-container.active,
.dark2 .setting-box .demo-effects>div .layout-container.active {
    border-color: var(--theme-color)
}

.dark .setting-box .accordion-button,
.dark2 .setting-box .accordion-button {
    color: #ddd;
    border-bottom-color: #3c3c3c
}

.dark .setting-box .accordion-button::after,
.dark2 .setting-box .accordion-button::after {
    color: #ddd
}

.dark .setting-box .sidebar-back,
.dark2 .setting-box .sidebar-back {
    color: #fff;
    background-color: rgba(35, 35, 35, .8)
}

.dark .setting-box .close-icon,
.dark2 .setting-box .close-icon {
    background-color: #2b2b2b;
    border-color: #3c3c3c
}

.dark .setting-box .setting-inner-title a,
.dark2 .setting-box .setting-inner-title a {
    color: #fff
}

.dark .setting-box .form-switch .form-check-input,
.dark2 .setting-box .form-switch .form-check-input {
    border-color: #3c3c3c
}

.dark .setting-box .setting-contant::-webkit-scrollbar-thumb,
.dark2 .setting-box .setting-contant::-webkit-scrollbar-thumb {
    background: var(--theme-color)
}

.dark .setting-box .setting-title,
.dark2 .setting-box .setting-title {
    border-color: #404040;
    background-color: #232323
}

.dark .setting-box .setting-title h3,
.dark2 .setting-box .setting-title h3 {
    color: #ddd
}

.dark .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu,
.dark2 .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu {
    border-color: #404040;
    background-color: #232323
}

.dark .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu:focus,
.dark2 .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu:focus {
    color: #cbcbcb;
    background-color: #2b2b2b
}

.dark .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu .dropdown-item,
.dark2 .top-header .right-nav-about .right-nav-list .theme-form-select .dropdown-menu .dropdown-item {
    color: #fff
}

.dark header,
.dark2 header {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark header .navbar-nav>li>a,
.dark2 header .navbar-nav>li>a {
    color: #cecece
}

.dark header .offcanvas,
.dark2 header .offcanvas {
    background-color: #2b2b2b
}

.dark header .offcanvas .offcanvas-header,
.dark2 header .offcanvas .offcanvas-header {
    background-color: #232323
}

.dark header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item,
.dark2 header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item {
    color: #ddd
}

.dark header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a,
.dark2 header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a {
    color: #cecece
}

.dark header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a:hover,
.dark2 header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a:hover {
    color: var(--theme-color)
}

.dark header.header-5 .pixelstrap a,
.dark header.header-5 .pixelstrap:hover,
.dark header.header-5 .pixelstrap:active,
.dark2 header.header-5 .pixelstrap a,
.dark2 header.header-5 .pixelstrap:hover,
.dark2 header.header-5 .pixelstrap:active {
    color: #cfd4da
}

.dark header.header-5.left-sidebar-header,
.dark2 header.header-5.left-sidebar-header {
    background-color: #2b2b2b
}

.dark header.header-5.left-sidebar-header .top-header .header-dropdown>li img,
.dark2 header.header-5.left-sidebar-header .top-header .header-dropdown>li img {
    filter: invert(1)
}

.dark header.header-5.left-sidebar-header .form_search,
.dark2 header.header-5.left-sidebar-header .form_search {
    box-shadow: 0 0 0 1px #545454
}

.dark header.header-5.left-sidebar-header .onhover-div>div img,
.dark2 header.header-5.left-sidebar-header .onhover-div>div img {
    filter: invert(1)
}

.dark header.header-tools,
.dark2 header.header-tools {
    background-color: rgba(0, 0, 0, 0);
    transition: all .3s ease
}

.dark header.header-tools.sticky,
.dark2 header.header-tools.sticky {
    background-color: #2b2b2b
}

.dark header.header-tools .main-menu .menu-right .icon-nav i,
.dark2 header.header-tools .main-menu .menu-right .icon-nav i {
    color: #cbcbcb
}

.dark header.header-tools .top-header .header-dropdown li i,
.dark2 header.header-tools .top-header .header-dropdown li i {
    color: #cbcbcb
}

.dark header.header-tools .logo-menu-part>.container,
.dark2 header.header-tools .logo-menu-part>.container {
    background-color: #2b2b2b;
    transition: all .3s ease;
    border-color: #404040
}

.dark header.header-tools.header-style.top-relative,
.dark2 header.header-tools.header-style.top-relative {
    background-color: #2b2b2b
}

.dark header.left-header .top-header,
.dark2 header.left-header .top-header {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark header.left-header .main-menu .menu-right .header-dropdown>li img,
.dark2 header.left-header .main-menu .menu-right .header-dropdown>li img {
    filter: invert(100)
}

.dark header.left-header .onhover-div>div img,
.dark2 header.left-header .onhover-div>div img {
    filter: invert(100)
}

.dark header.left-header .sidenav nav,
.dark2 header.left-header .sidenav nav {
    background-color: #232323;
    transition: all .3s ease
}

.dark header.left-header .sidenav .left-sidebar_center,
.dark2 header.left-header .sidenav .left-sidebar_center {
    background-color: #232323;
    transition: all .3s ease
}

.dark header.left-header .sidenav .pixelstrap>li>a,
.dark2 header.left-header .sidenav .pixelstrap>li>a {
    background-color: #232323;
    transition: all .3s ease
}

.dark header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li,
.dark2 header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li {
    border-color: #404040
}

.dark header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li>a img,
.dark2 header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li>a img {
    background-color: rgba(0, 0, 0, 0);
    filter: invert(1)
}

.dark header.header-style .top-header .header-dropdown>li img,
.dark2 header.header-style .top-header .header-dropdown>li img {
    filter: invert(1)
}

.dark header.header-style .onhover-div>div img,
.dark2 header.header-style .onhover-div>div img {
    filter: invert(1)
}

.dark header.left-header.left-header-relative .pixelstrap>li>a,
.dark2 header.left-header.left-header-relative .pixelstrap>li>a {
    color: #fff;
    background-color: #2b2b2b
}

.dark header.left-header .main-menu .brand-logo,
.dark2 header.left-header .main-menu .brand-logo {
    border-color: #404040
}

.dark header.left-header .sidenav .leftside_social,
.dark2 header.left-header .sidenav .leftside_social {
    border-color: #404040
}

.dark .slider-nav .slider-image,
.dark2 .slider-nav .slider-image {
    border-color: #404040;
    background-color: #232323
}

.dark .border-product .product-title,
.dark2 .border-product .product-title {
    color: #fff
}

.dark .review-people::-webkit-scrollbar-thumb,
.dark2 .review-people::-webkit-scrollbar-thumb {
    background-color: #888
}

.dark .review-people::-webkit-scrollbar,
.dark2 .review-people::-webkit-scrollbar {
    background-color: #404040
}

.dark .review-people .review-list li .people-box,
.dark2 .review-people .review-list li .people-box {
    background-color: #262626;
    border-color: #404040
}

.dark .review-people .review-list li .people-box .people-image h4,
.dark2 .review-people .review-list li .people-box .people-image h4 {
    background-color: #2b2b2b;
    color: #ddd
}

.dark .review-people .review-list li .people-box .people-comment .people-name .name,
.dark2 .review-people .review-list li .people-box .people-comment .people-name .name {
    color: #fff
}

.dark .review-people .review-list li .people-box .people-text .user-round,
.dark2 .review-people .review-list li .people-box .people-text .user-round {
    background-color: #2b2b2b
}

.dark .review-people .review-list li .people-box .people-text .user-round h4,
.dark2 .review-people .review-list li .people-box .people-text .user-round h4 {
    color: #fff
}

.dark .review-title-2,
.dark .review-people,
.dark2 .review-title-2,
.dark2 .review-people {
    border-color: #404040
}

.dark .product-rating-box .product-main-rating,
.dark2 .product-rating-box .product-main-rating {
    border-color: #404040
}

.dark .product-rating-box .product-rating-list li .rating-product .progress,
.dark2 .product-rating-box .product-rating-list li .rating-product .progress {
    background-color: #404040
}

.dark .product-rating-box .product-rating-list li .rating-product .total,
.dark2 .product-rating-box .product-rating-list li .rating-product .total {
    color: rgba(221, 221, 221, .78)
}

.dark .product-rating-box .product-rating-list li .rating-product h5 i,
.dark2 .product-rating-box .product-rating-list li .rating-product h5 i {
    color: #ddd
}

.dark .product-rating-box .rating-box h4,
.dark2 .product-rating-box .rating-box h4 {
    color: #ddd
}

.dark .outer-border,
.dark2 .outer-border {
    border-color: #404040
}

.dark .tracking-panel .panel-content .icon img,
.dark2 .tracking-panel .panel-content .icon img {
    filter: invert(1) brightness(100)
}

.dark .tracking-panel ul li,
.dark2 .tracking-panel ul li {
    background-color: #232323
}

.dark .tracking-panel ul li.active,
.dark2 .tracking-panel ul li.active {
    background-color: #4f3d32
}

.dark .tracking-panel ul li.active::after,
.dark2 .tracking-panel ul li.active::after {
    border-left-color: #4f3d32
}

.dark .tracking-panel ul li::after,
.dark2 .tracking-panel ul li::after {
    border-left-color: #232323
}

.dark .tracking-panel ul li:before,
.dark2 .tracking-panel ul li:before {
    border-left-color: #2b2b2b
}

.dark .ckeditor-content p,
.dark2 .ckeditor-content p {
    color: #cfd4da !important
}

.dark .post-question-box h4 a,
.dark2 .post-question-box h4 a {
    background-color: #262626;
    color: #ddd
}

.dark .tab-product.product-details-contain .nav-tabs,
.dark2 .tab-product.product-details-contain .nav-tabs {
    border-color: #404040;
    background-color: #262626
}

.dark .tab-product.product-details-contain .nav-tabs .nav-item .nav-link,
.dark2 .tab-product.product-details-contain .nav-tabs .nav-item .nav-link {
    border-color: #404040;
    background-color: #2b2b2b
}

.dark .tab-product.product-details-contain .nav-tabs .nav-item .nav-link.active,
.dark2 .tab-product.product-details-contain .nav-tabs .nav-item .nav-link.active {
    color: var(--theme-color);
    font-weight: 600;
    background-color: rgba(236, 137, 81, .07);
    border-color: rgba(236, 137, 81, 0.5882352941)
}

.dark .tab-product.product-details-contain .container>.row,
.dark2 .tab-product.product-details-contain .container>.row {
    border-color: #404040
}

.dark .clock,
.dark2 .clock {
    border-color: #ddd
}

.dark .clock::after,
.dark .clock::before,
.dark2 .clock::after,
.dark2 .clock::before {
    background-color: #ddd
}

.dark .theme-modal-2 .modal-header .modal-title,
.dark2 .theme-modal-2 .modal-header .modal-title {
    color: #fff
}

.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-dropdown,
.dark2 .theme-modal-2 .modal-body .form-box .custom-select .select2-dropdown {
    border-color: #404040
}

.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-dropdown .select2-search .select2-search__field,
.dark2 .theme-modal-2 .modal-body .form-box .custom-select .select2-dropdown .select2-search .select2-search__field {
    color: #fff
}

.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-selection .select2-selection__rendered,
.dark2 .theme-modal-2 .modal-body .form-box .custom-select .select2-selection .select2-selection__rendered {
    color: #ddd
}

.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single,
.dark2 .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single {
    border-color: #404040;
    background-color: #232323
}

.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single .select2-selection__placeholder,
.dark2 .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single .select2-selection__placeholder {
    color: #ddd
}

.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single .select2-selection__arrow::before,
.dark2 .theme-modal-2 .modal-body .form-box .custom-select .select2-selection.select2-selection--single .select2-selection__arrow::before {
    color: #ddd
}

.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-results .select2-results__options .select2-results__option--highlighted,
.dark2 .theme-modal-2 .modal-body .form-box .custom-select .select2-results .select2-results__options .select2-results__option--highlighted {
    background-color: var(--theme-color)
}

.dark .theme-modal-2 .modal-body .form-box .custom-select .select2-results .select2-results__options .select2-results__option,
.dark2 .theme-modal-2 .modal-body .form-box .custom-select .select2-results .select2-results__options .select2-results__option {
    background-color: #2b2b2b;
    color: #ddd
}

.dark .theme-modal-2 .modal-body .form-box .form-label,
.dark2 .theme-modal-2 .modal-body .form-box .form-label {
    color: #ddd
}

.dark .theme-modal-2 .modal-body .form-box .form-control,
.dark2 .theme-modal-2 .modal-body .form-box .form-control {
    border-color: #404040
}

.dark .theme-modal-2 .modal-body .phone-field .custom-select-box>.form-control,
.dark2 .theme-modal-2 .modal-body .phone-field .custom-select-box>.form-control {
    border-color: #404040
}

.dark .review-modal .modal-body .product-wrapper,
.dark2 .review-modal .modal-body .product-wrapper {
    background-color: #232323;
    border-color: #404040
}

.dark .review-modal .modal-body .product-wrapper .product-image,
.dark2 .review-modal .modal-body .product-wrapper .product-image {
    background-color: #2b2b2b
}

.dark .review-modal .modal-body .product-wrapper .product-content .product-review-rating label,
.dark2 .review-modal .modal-body .product-wrapper .product-content .product-review-rating label {
    color: #ddd
}

.dark .review-modal .modal-body .product-wrapper .product-content .product-review-rating .product-rating .rating-number,
.dark2 .review-modal .modal-body .product-wrapper .product-content .product-review-rating .product-rating .rating-number {
    color: rgba(221, 221, 221, .6)
}

.dark .review-modal .modal-body .form-box .form-label,
.dark2 .review-modal .modal-body .form-box .form-label {
    color: #ddd
}

.dark .review-modal .modal-body .form-box .form-control,
.dark2 .review-modal .modal-body .form-box .form-control {
    border-color: #404040
}

.dark .review-modal .modal-body .review-box .product-review-rating label,
.dark2 .review-modal .modal-body .review-box .product-review-rating label {
    color: #ddd
}

.dark .sticky-bottom-cart .product-image img,
.dark2 .sticky-bottom-cart .product-image img {
    background-color: #262626
}

.dark .sticky-bottom-cart .cart-content .middle-value .qty-box input,
.dark2 .sticky-bottom-cart .cart-content .middle-value .qty-box input {
    background-color: #232323;
    border-color: #404040
}

.dark .sticky-bottom-cart .cart-content .middle-value .qty-box .input-group span button,
.dark2 .sticky-bottom-cart .cart-content .middle-value .qty-box .input-group span button {
    background: #232323 !important;
    border-color: #404040
}

.dark .bundle .bundle-title,
.dark2 .bundle .bundle-title {
    color: #fff
}

.dark .bundle .bundle-image-box .bundle-box,
.dark2 .bundle .bundle-image-box .bundle-box {
    border-color: #404040;
    background-color: #232323
}

.dark .bundle .bundle-image-box .bundle-box .bundle-content h4,
.dark2 .bundle .bundle-image-box .bundle-box .bundle-content h4 {
    color: #ddd
}

.dark .bundle .bundle-image-box .bundle-box .bundle-content select,
.dark2 .bundle .bundle-image-box .bundle-box .bundle-content select {
    color: #ddd;
    background-color: #2b2b2b;
    background-image: url(../../svg/dropdown.svg)
}

.dark .bundle .bundle-image-box .bundle-box .bundle-image,
.dark2 .bundle .bundle-image-box .bundle-box .bundle-image {
    background-color: #2b2b2b
}

.dark .bundle .bundle-image-box .bundle-box .checkbox_animated::after,
.dark2 .bundle .bundle-image-box .bundle-box .checkbox_animated::after {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .slider-nav .slider-image .video-icon,
.dark2 .slider-nav .slider-image .video-icon {
    background-color: #232323;
    border: 1px solid #404040
}

.dark .product-page-details .compare-box a,
.dark2 .product-page-details .compare-box a {
    color: #cbcbcb
}

.dark .product-page-details .progress,
.dark2 .product-page-details .progress {
    background-color: #232323
}

.dark .product-page-details .left-progressbar h6,
.dark2 .product-page-details .left-progressbar h6 {
    color: #ddd
}

.dark .product-page-details .product-offer li,
.dark2 .product-page-details .product-offer li {
    color: #ddd
}

.dark .product-page-details .dashed-border-box,
.dark2 .product-page-details .dashed-border-box {
    border-color: #404040
}

.dark .product-page-details .dashed-border-box h4,
.dark2 .product-page-details .dashed-border-box h4 {
    background-color: #2b2b2b
}

.dark .product-page-details .shipping-info li,
.dark2 .product-page-details .shipping-info li {
    color: #cfd4da
}

.dark .product-page-details .bordered-box,
.dark2 .product-page-details .bordered-box {
    border-color: #404040
}

.dark .product-page-details .qty-section .qty-box .input-group,
.dark2 .product-page-details .qty-section .qty-box .input-group {
    background-color: #232323;
    border-color: #404040
}

.dark .product-page-details .qty-section .qty-box .input-group button,
.dark2 .product-page-details .qty-section .qty-box .input-group button {
    background-color: #2b2b2b !important;
    box-shadow: unset
}

.dark .product-page-details .qty-section .qty-box .input-group button svg,
.dark2 .product-page-details .qty-section .qty-box .input-group button svg {
    color: #ddd
}

.dark .product-page-details .qty-section .qty-box .input-group input,
.dark2 .product-page-details .qty-section .qty-box .input-group input {
    background-color: #232323
}

.dark .product-page-details .description-text,
.dark2 .product-page-details .description-text {
    color: #ddd
}

.dark .product-page-details .price-text span.text-dark,
.dark2 .product-page-details .price-text span.text-dark {
    color: #fff !important
}

.dark .product-page-details .product-rating .divider,
.dark2 .product-page-details .product-rating .divider {
    color: #404040
}

.dark .product-page-details .size-delivery-info,
.dark2 .product-page-details .size-delivery-info {
    border-color: #404040
}

.dark .product-page-details .size-delivery-info a,
.dark2 .product-page-details .size-delivery-info a {
    color: #ddd
}

.dark .product-page-details .select-dropdown,
.dark2 .product-page-details .select-dropdown {
    background-color: #232323;
    background-image: url(./../../svg/dropdown.svg)
}

.dark .product-page-details .timer p span,
.dark2 .product-page-details .timer p span {
    color: #fff
}

.dark .product-page-details.product-form-box,
.dark2 .product-page-details.product-form-box {
    border-color: #404040
}

.dark .product-page-details.product-form-box .variation-box .quantity-variant,
.dark2 .product-page-details.product-form-box .variation-box .quantity-variant {
    background-color: rgba(0, 0, 0, 0)
}

.dark .four-image-sec,
.dark2 .four-image-sec {
    background-color: #232323
}

.dark .main-product-box .slick-slider .slick-arrow,
.dark2 .main-product-box .slick-slider .slick-arrow {
    color: #ddd;
    background-color: #2b2b2b;
    box-shadow: unset;
    border-color: #404040
}

.dark .thumbnail-image-slider .slider-image,
.dark2 .thumbnail-image-slider .slider-image {
    background-color: #232323
}

.dark .form-box .form-label,
.dark .form-box label,
.dark2 .form-box .form-label,
.dark2 .form-box label {
    color: #ddd
}

.dark .form-box .custom-select .select2-results .select2-results__options::-webkit-scrollbar,
.dark2 .form-box .custom-select .select2-results .select2-results__options::-webkit-scrollbar {
    background-color: #404040
}

.dark .form-box .custom-select .select2-results .select2-results__options .select2-results__option,
.dark2 .form-box .custom-select .select2-results .select2-results__options .select2-results__option {
    background-color: #232323
}

.dark .form-box .custom-select .select2-dropdown,
.dark2 .form-box .custom-select .select2-dropdown {
    border-color: #404040;
    background-color: #232323
}

.dark .form-box .custom-select .select2-dropdown .select2-search .select2-search__field,
.dark2 .form-box .custom-select .select2-dropdown .select2-search .select2-search__field {
    border-color: #404040 !important;
    background: #2b2b2b !important
}

.dark .auth-modal .create a,
.dark2 .auth-modal .create a {
    color: #fff
}

.dark .auth-modal .divider::before,
.dark2 .auth-modal .divider::before {
    border-color: #404040
}

.dark .auth-modal .divider span,
.dark2 .auth-modal .divider span {
    background-color: #2b2b2b;
    color: #ddd
}

.dark .auth-modal .modal-content,
.dark2 .auth-modal .modal-content {
    background-color: rgba(0, 0, 0, 0)
}

.dark .auth-modal .modal-content .right-content,
.dark2 .auth-modal .modal-content .right-content {
    background-color: #2b2b2b
}

.dark .auth-modal .modal-content .right-content .modal-back,
.dark2 .auth-modal .modal-content .right-content .modal-back {
    color: #ddd
}

.dark .auth-modal .auth-form-box .auth-box .form-control,
.dark2 .auth-modal .auth-form-box .auth-box .form-control {
    border-color: #404040
}

.dark .auth-modal .auth-form-box .auth-box .form-label,
.dark2 .auth-modal .auth-form-box .auth-box .form-label {
    color: #ddd
}

.dark .auth-modal .auth-form-box .forgot,
.dark2 .auth-modal .auth-form-box .forgot {
    color: #ddd
}

.dark .auth-modal .auth-title h3,
.dark2 .auth-modal .auth-title h3 {
    color: #fff
}

.dark .header-compact .main-menu .menu-right .icon-nav li.mobile-cart>div img,
.dark2 .header-compact .main-menu .menu-right .icon-nav li.mobile-cart>div img {
    filter: invert(1)
}

.dark .header-compact .delivery-area,
.dark2 .header-compact .delivery-area {
    border-color: #4c3b32
}

.dark .header-style-1 .navbar .nav-link,
.dark2 .header-style-1 .navbar .nav-link {
    color: #cbcbcb
}

.dark.header-style-light .header-style-5 .bottom-part .category-menu .toggle-sidebar,
.dark2.header-style-light .header-style-5 .bottom-part .category-menu .toggle-sidebar {
    color: #ddd;
    background-color: #232323;
    border-color: #404040
}

.dark.header-style-light .header-style-5 .bottom-part .category-menu .toggle-sidebar h5,
.dark2.header-style-light .header-style-5 .bottom-part .category-menu .toggle-sidebar h5 {
    color: #cfd4da
}

.dark .header-style-5 .bottom-part,
.dark2 .header-style-5 .bottom-part {
    background-color: #232323
}

.dark .header-style-5 .bottom-part.bottom-light,
.dark2 .header-style-5 .bottom-part.bottom-light {
    border-color: #404040;
    background-color: rgba(0, 0, 0, 0)
}

.dark .header-style-5 .bottom-part.bottom-light .pixelstrap>li>a,
.dark2 .header-style-5 .bottom-part.bottom-light .pixelstrap>li>a {
    color: #cfd4da
}

.dark .header-style-5 .bottom-part.bottom-light .pixelstrap>li>a:hover,
.dark .header-style-5 .bottom-part.bottom-light .pixelstrap>li>a:focus,
.dark2 .header-style-5 .bottom-part.bottom-light .pixelstrap>li>a:hover,
.dark2 .header-style-5 .bottom-part.bottom-light .pixelstrap>li>a:focus {
    color: #cfd4da
}

.dark .header-style-5.color-style,
.dark2 .header-style-5.color-style {
    background-color: #2b2b2b
}

.dark .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a,
.dark2 .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a {
    color: #cbcbcb
}

.dark .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a:hover,
.dark .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a:focus,
.dark .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a:active,
.dark2 .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a:hover,
.dark2 .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a:focus,
.dark2 .header-style-5.color-style .bottom-part .pixelstrap.sm-vertical>li>a:active {
    color: #cbcbcb
}

.dark .header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a,
.dark2 .header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a {
    color: #cbcbcb
}

.dark .header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a:hover,
.dark .header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a:focus,
.dark .header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a:active,
.dark2 .header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a:hover,
.dark2 .header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a:focus,
.dark2 .header-style-5.color-style.style-classic .bottom-part .pixelstrap>li>a:active {
    color: #cbcbcb
}

.dark .header-style-5.color-style.style-classic .bottom-part .container,
.dark2 .header-style-5.color-style.style-classic .bottom-part .container {
    background-color: #232323
}

.dark .header-style-5 .form_search .nav-search,
.dark2 .header-style-5 .form_search .nav-search {
    background-color: #232323;
    border-color: rgba(0, 0, 0, 0)
}

.dark .bg-theme,
.dark2 .bg-theme {
    background-color: #232323
}

.dark .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical,
.dark2 .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .marketplace-sidebar.sidenav .sm-vertical,
.dark2 .marketplace-sidebar.sidenav .sm-vertical {
    background-color: #232323
}

.dark .marketplace-sidebar.sidenav ul li a,
.dark2 .marketplace-sidebar.sidenav ul li a {
    background-color: #232323;
    color: #fff
}

.dark .svg-icon-menu.wo-bg .pixelstrap>li>a svg,
.dark2 .svg-icon-menu.wo-bg .pixelstrap>li>a svg {
    fill: #fff
}

.dark .svg-icon-menu .pixelstrap>li>a img,
.dark2 .svg-icon-menu .pixelstrap>li>a img {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .ajax-search .typeahead,
.dark2 .ajax-search .typeahead {
    background-color: #2b2b2b !important
}

.dark .ajax-search .tt-menu,
.dark2 .ajax-search .tt-menu {
    background-color: #2b2b2b
}

.dark .ajax-search .description-section h4,
.dark2 .ajax-search .description-section h4 {
    color: #e7eaec
}

.dark .deal-product-space,
.dark2 .deal-product-space {
    background-color: #232323
}

.dark .vegetables-category .category-boxes,
.dark2 .vegetables-category .category-boxes {
    background-color: #232323
}

.dark .vegetables-category .category-boxes h4,
.dark2 .vegetables-category .category-boxes h4 {
    color: #e7eaec
}

.dark .view-image-slider .slick-slider .slick-arrow,
.dark2 .view-image-slider .slick-slider .slick-arrow {
    background-color: #232323;
    box-shadow: 0 0 8px #383838;
    border-color: #404040
}

.dark .view-image-slider .slick-slider .slick-arrow::before,
.dark2 .view-image-slider .slick-slider .slick-arrow::before {
    color: #ddd
}

.dark .no-data-added,
.dark .tab-category,
.dark2 .no-data-added,
.dark2 .tab-category {
    background-color: #232323
}

.dark .product-vertical .full-box .theme-card .offer-slider,
.dark2 .product-vertical .full-box .theme-card .offer-slider {
    background-color: #2b2b2b
}

.dark .top-header,
.dark2 .top-header {
    background-color: #232323;
    transition: all .3s ease
}

.dark .sub-footer,
.dark2 .sub-footer {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .border-section,
.dark2 .border-section {
    border-color: #404040
}

.dark .pixelstrap a,
.dark .pixelstrap:hover,
.dark .pixelstrap:active,
.dark2 .pixelstrap a,
.dark2 .pixelstrap:hover,
.dark2 .pixelstrap:active {
    color: #f1f3f5
}

.dark .sm-vertical,
.dark2 .sm-vertical {
    background-color: #232323;
    transition: all .3s ease
}

.dark .sidenav nav,
.dark2 .sidenav nav {
    background-color: #232323;
    transition: all .3s ease
}

.dark .sidenav .sidebar-back,
.dark2 .sidenav .sidebar-back {
    color: #f1f3f5;
    border-color: #404040
}

.dark .pixelstrap .category-menu,
.dark2 .pixelstrap .category-menu {
    box-shadow: 0 0 1px 0 #2b2b2b
}

.dark .onhover-div .show-div,
.dark2 .onhover-div .show-div {
    background-color: #232323;
    transition: all .3s ease;
    box-shadow: none
}

.dark .error-section h1,
.dark2 .error-section h1 {
    color: #e6e6e6
}

.dark .breadcrumb-section,
.dark2 .breadcrumb-section {
    box-shadow: unset
}

.dark .breadcrumb-section .breadcrumb a,
.dark2 .breadcrumb-section .breadcrumb a {
    color: #f7f7f7
}

.dark .breadcrumb-section .breadcrumb-item,
.dark2 .breadcrumb-section .breadcrumb-item {
    box-shadow: unset
}

.dark .breadcrumb-section .breadcrumb-item+.breadcrumb-item::before,
.dark2 .breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    color: #fff
}

.dark .breadcrumb-section .breadcrumb-item.active,
.dark2 .breadcrumb-section .breadcrumb-item.active {
    color: #e7eaec
}

.dark .main-menu .menu-left .navbar i,
.dark2 .main-menu .menu-left .navbar i {
    color: #f7f7f7
}

.dark .main-menu .menu-right .icon-nav svg,
.dark2 .main-menu .menu-right .icon-nav svg {
    color: #cecece
}

.dark .main-menu .menu-right .icon-nav .onhover-div .empty-cart-box .empty-icon,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .empty-cart-box .empty-icon {
    background-color: #2b2b2b
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6 {
    color: #cfd4da
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.setting ul li a,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.setting ul li a {
    color: #cfd4da
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li {
    border-color: #404040
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body h4,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body h4 {
    color: #e7eaec
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body h4 span,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .media .media-body h4 span {
    color: #dee2e6
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .form-control,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .form-control {
    border-color: #404040 !important
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle i:hover,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .close-circle i:hover {
    color: #fff
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total {
    border-color: #404040
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total h5,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .total h5 {
    color: #dee2e6
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons a,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons a {
    color: #fff
}

.dark .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons a:hover,
.dark2 .main-menu .menu-right .icon-nav .onhover-div .show-div.shopping-cart li .buttons a:hover {
    color: var(--theme-color)
}

.dark .compare-fix a,
.dark .compare-fix h5,
.dark2 .compare-fix a,
.dark2 .compare-fix h5 {
    color: #fff
}

.dark .footer-theme .sub-title li,
.dark2 .footer-theme .sub-title li {
    color: #cfd4da
}

.dark .footer-theme .sub-title li a,
.dark2 .footer-theme .sub-title li a {
    color: #cfd4da
}

.dark .footer-theme .sub-title h4,
.dark2 .footer-theme .sub-title h4 {
    color: #e7eaec
}

.dark .footer-social svg,
.dark2 .footer-social svg {
    color: #cfd4da
}

.dark .footer-light .subscribe,
.dark2 .footer-light .subscribe {
    border-color: #404040
}

.dark .footer-theme2 .contact-details li,
.dark2 .footer-theme2 .contact-details li {
    color: #cfd4da
}

.dark .footer-theme2 .contact-details li a,
.dark2 .footer-theme2 .contact-details li a {
    color: #e7eaec
}

.dark .footer-theme2 .footer-link a,
.dark .footer-theme2 .footer-link-b a,
.dark2 .footer-theme2 .footer-link a,
.dark2 .footer-theme2 .footer-link-b a {
    color: #cbcbcb
}

.dark .footer-theme2 .footer-link a:hover,
.dark .footer-theme2 .footer-link-b a:hover,
.dark2 .footer-theme2 .footer-link a:hover,
.dark2 .footer-theme2 .footer-link-b a:hover {
    color: #fff
}

.dark .top-header .header-contact li,
.dark2 .top-header .header-contact li {
    color: #cfd4da
}

.dark .top-header .header-dropdown li,
.dark2 .top-header .header-dropdown li {
    color: #cfd4da
}

.dark .top-header .header-dropdown li a i,
.dark2 .top-header .header-dropdown li a i {
    color: #cfd4da
}

.dark .top-header .header-dropdown .onhover-dropdown .onhover-show-div li a,
.dark2 .top-header .header-dropdown .onhover-dropdown .onhover-show-div li a {
    color: #cbcbcb
}

.dark .top-header.top-header-dark .header-dropdown li a,
.dark2 .top-header.top-header-dark .header-dropdown li a {
    color: #cbcbcb
}

.dark .top-header.top-header-dark .header-contact li i,
.dark2 .top-header.top-header-dark .header-contact li i {
    color: #cbcbcb
}

.dark .onhover-dropdown .onhover-show-div,
.dark2 .onhover-dropdown .onhover-show-div {
    background-color: #232323;
    transition: all .3s ease;
    box-shadow: none
}

.dark .testimonial,
.dark2 .testimonial {
    background-color: #232323;
    transition: all .3s ease
}

.dark .testimonial .testimonial-slider .media img,
.dark2 .testimonial .testimonial-slider .media img {
    border-color: #404040
}

.dark .team img,
.dark2 .team img {
    border-color: #232323
}

.dark .team h4,
.dark .team h6,
.dark2 .team h4,
.dark2 .team h6 {
    background-color: #232323
}

.dark .service-block+.service-block,
.dark2 .service-block+.service-block {
    border-color: #404040
}

.dark .pixelstrap.light-font-menu li>a,
.dark2 .pixelstrap.light-font-menu li>a {
    color: #f1f3f5
}

.dark .card-white-bg .title2 h4,
.dark2 .card-white-bg .title2 h4 {
    color: var(--theme-color)
}

.dark .card-white-bg .title2 .title-inner2,
.dark2 .card-white-bg .title2 .title-inner2 {
    color: #222
}

.dark .card-white-bg .theme-card h5,
.dark2 .card-white-bg .theme-card h5 {
    color: #222
}

.dark .card-white-bg .theme-card h5.title-border,
.dark2 .card-white-bg .theme-card h5.title-border {
    border-color: #eee
}

.dark .card-white-bg .theme-card .offer-slider .media .media-body h4,
.dark2 .card-white-bg .theme-card .offer-slider .media .media-body h4 {
    color: #222
}

.dark .card-white-bg .theme-card .offer-slider .media .media-body a h6,
.dark2 .card-white-bg .theme-card .offer-slider .media .media-body a h6 {
    color: #777
}

.dark .about-section .service-block1,
.dark2 .about-section .service-block1 {
    background-color: #232323
}

.dark .theme-tab .tab-title a,
.dark .theme-tab .tab-title2 a,
.dark2 .theme-tab .tab-title a,
.dark2 .theme-tab .tab-title2 a {
    color: #cbcbcb
}

.dark .theme-tab .tab-title .current a,
.dark .theme-tab .tab-title2 .current a,
.dark2 .theme-tab .tab-title .current a,
.dark2 .theme-tab .tab-title2 .current a {
    color: var(--theme-color)
}

.dark .theme-tab .tab-title2:after,
.dark2 .theme-tab .tab-title2:after {
    border-color: #404040
}

.dark .theme-tab .tab-title2 .current,
.dark2 .theme-tab .tab-title2 .current {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .theme-tab .tab-title2 .current a,
.dark2 .theme-tab .tab-title2 .current a {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .product-box .product-detail h4,
.dark .product-box .product-info h4,
.dark .product-wrap .product-detail h4,
.dark .product-wrap .product-info h4,
.dark2 .product-box .product-detail h4,
.dark2 .product-box .product-info h4,
.dark2 .product-wrap .product-detail h4,
.dark2 .product-wrap .product-info h4 {
    color: #e7eaec
}

.dark .theme-card .offer-slider .media .media-body h4,
.dark2 .theme-card .offer-slider .media .media-body h4 {
    color: #e7eaec
}

.dark .theme-card h5.title-border,
.dark2 .theme-card h5.title-border {
    border-color: #404040
}

.dark .theme-card.card-border,
.dark2 .theme-card.card-border {
    border-color: #404040
}

.dark .dark-layout,
.dark2 .dark-layout {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .sub-footer.darker-subfooter,
.dark2 .sub-footer.darker-subfooter {
    background-color: #232323;
    transition: all .3s ease
}

.dark .sub-footer.darker-subfooter p,
.dark2 .sub-footer.darker-subfooter p {
    color: #cfd4da
}

.dark .blog-detail-page .blog-detail h3,
.dark2 .blog-detail-page .blog-detail h3 {
    color: #fff
}

.dark .blog-detail-page .blog-detail .post-social li,
.dark2 .blog-detail-page .blog-detail .post-social li {
    color: #ddd
}

.dark .blog-detail-page .blog-detail .post-social li+li,
.dark2 .blog-detail-page .blog-detail .post-social li+li {
    border-color: #404040
}

.dark .blog-detail-page .blog-detail-contain h3,
.dark2 .blog-detail-page .blog-detail-contain h3 {
    color: #fff
}

.dark .blog-skeleton .blog-image,
.dark2 .blog-skeleton .blog-image {
    background-color: #232323
}

.dark .blog-skeleton .blog-contain h3,
.dark .blog-skeleton .blog-contain .blog-label,
.dark .blog-skeleton .blog-contain .blog-button,
.dark2 .blog-skeleton .blog-contain h3,
.dark2 .blog-skeleton .blog-contain .blog-label,
.dark2 .blog-skeleton .blog-contain .blog-button {
    background-color: #1d1d22;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(44, 44, 44, 0.5), rgba(255, 255, 255, 0))
}

.dark .blog-page .blog-box .blog-contain .blog-label>span,
.dark2 .blog-page .blog-box .blog-contain .blog-label>span {
    color: #ddd
}

.dark .blog-page .blog-box .blog-contain .blog-label>span+span,
.dark2 .blog-page .blog-box .blog-contain .blog-label>span+span {
    border-color: #404040
}

.dark .blog-page .blog-box .blog-contain a h3,
.dark2 .blog-page .blog-box .blog-contain a h3 {
    color: #fff
}

.dark .blog-page .blog-list,
.dark2 .blog-page .blog-list {
    border-color: #404040
}

.dark .blog-page .blog-list .blog-contain p,
.dark2 .blog-page .blog-list .blog-contain p {
    color: #ddd
}

.dark .blog-page .blog-list .blog-contain .blog-label>span,
.dark2 .blog-page .blog-list .blog-contain .blog-label>span {
    color: #ddd
}

.dark .blog-page .blog-list .blog-contain .blog-label>span+span,
.dark2 .blog-page .blog-list .blog-contain .blog-label>span+span {
    border-color: #404040
}

.dark .blog-page .blog-list .blog-contain a h3,
.dark2 .blog-page .blog-list .blog-contain a h3 {
    color: #fff
}

.dark .blog-page .blog-media .blog-right h4,
.dark2 .blog-page .blog-media .blog-right h4 {
    color: #e7eaec
}

.dark .blog-page .blog-media .blog-right ul,
.dark2 .blog-page .blog-media .blog-right ul {
    color: #cfd4da
}

.dark .blog-page .blog-media .blog-right ul li+li,
.dark2 .blog-page .blog-media .blog-right ul li+li {
    border-color: #404040
}

.dark .blog-page .blog-sidebar .categories li a span,
.dark2 .blog-page .blog-sidebar .categories li a span {
    color: #ddd
}

.dark .blog-page .blog-sidebar .theme-card,
.dark2 .blog-page .blog-sidebar .theme-card {
    background-color: #232323;
    transition: all .3s ease;
    border-color: #404040
}

.dark .blog-page .blog-sidebar .theme-card .tags li,
.dark2 .blog-page .blog-sidebar .theme-card .tags li {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .blog-page .blog-sidebar .theme-card .tags li:hover,
.dark2 .blog-page .blog-sidebar .theme-card .tags li:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.dark .blog-page .blog-sidebar .theme-card .tags li:hover a,
.dark2 .blog-page .blog-sidebar .theme-card .tags li:hover a {
    color: #fff
}

.dark .blog-page .blog-sidebar .theme-card .tags li a,
.dark2 .blog-page .blog-sidebar .theme-card .tags li a {
    color: #ddd
}

.dark .blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content h6,
.dark2 .blog-page .blog-sidebar .theme-card .recent-blog li .blog-box .blog-content h6 {
    color: #ddd
}

.dark .blog-page .blog-sidebar .left-skelton-box,
.dark2 .blog-page .blog-sidebar .left-skelton-box {
    background-color: #232323
}

.dark .blog-page .blog-sidebar .left-skelton-box ul li,
.dark2 .blog-page .blog-sidebar .left-skelton-box ul li {
    background-color: #1d1d22;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(44, 44, 44, 0.5), rgba(255, 255, 255, 0))
}

.dark .blog-page .blog-sidebar .left-skelton-box ul .placeholder::after,
.dark2 .blog-page .blog-sidebar .left-skelton-box ul .placeholder::after {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .blog-page .blog-sidebar h4,
.dark2 .blog-page .blog-sidebar h4 {
    border-color: #404040;
    color: #e7eaec
}

.dark .blog-page .blog-sidebar h6,
.dark2 .blog-page .blog-sidebar h6 {
    color: #cfd4da
}

.dark .blog-page .blog-sidebar p,
.dark2 .blog-page .blog-sidebar p {
    color: #cfd4da
}

.dark .theme-bg-service.service-w-bg .service-block .media,
.dark2 .theme-bg-service.service-w-bg .service-block .media {
    background-color: var(--theme-color)
}

.dark .address-modal-2 .right-sidebar-box>form>.row>.custom-box .form-select,
.dark2 .address-modal-2 .right-sidebar-box>form>.row>.custom-box .form-select {
    border-color: #404040
}

.dark .address-modal-2 .right-sidebar-box>form>.row>label,
.dark .address-modal-2 .right-sidebar-box>form>.row>.form-label,
.dark2 .address-modal-2 .right-sidebar-box>form>.row>label,
.dark2 .address-modal-2 .right-sidebar-box>form>.row>.form-label {
    color: #ddd
}

.dark .form_search,
.dark2 .form_search {
    background-color: #232323;
    box-shadow: none
}

.dark .form_search input,
.dark2 .form_search input {
    color: #ddd
}

.dark .form_search input:focus,
.dark2 .form_search input:focus {
    background-color: #2b2b2b
}

.dark .img-category .img-sec,
.dark2 .img-category .img-sec {
    border-color: #404040
}

.dark .img-category h4 a,
.dark2 .img-category h4 a {
    color: #ddd
}

.dark .vector-category .container,
.dark2 .vector-category .container {
    background-color: #2b2b2b;
    box-shadow: 0 0 8px #0a0a0a
}

.dark .vector-category .category-slide .img-category .img-sec,
.dark2 .vector-category .category-slide .img-category .img-sec {
    background-color: #232323
}

.dark .vector-category .category-slide .img-category .img-sec img,
.dark2 .vector-category .category-slide .img-category .img-sec img {
    filter: invert(0.6)
}

.dark .cart-section .cart-table thead th,
.dark .wishlist-section .cart-table thead th,
.dark2 .cart-section .cart-table thead th,
.dark2 .wishlist-section .cart-table thead th {
    color: #f1f3f5
}

.dark .cart-section tbody tr td,
.dark .wishlist-section tbody tr td,
.dark2 .cart-section tbody tr td,
.dark2 .wishlist-section tbody tr td {
    border-color: #404040 !important
}

.dark .cart-section tbody tr td a,
.dark .wishlist-section tbody tr td a,
.dark2 .cart-section tbody tr td a,
.dark2 .wishlist-section tbody tr td a {
    color: #cbcbcb
}

.dark .cart-section tbody tr td h2,
.dark .wishlist-section tbody tr td h2,
.dark2 .cart-section tbody tr td h2,
.dark2 .wishlist-section tbody tr td h2 {
    color: #f1f3f5
}

.dark .cart-section .table-price h2 del,
.dark .wishlist-section .table-price h2 del,
.dark2 .cart-section .table-price h2 del,
.dark2 .wishlist-section .table-price h2 del {
    color: #ddd
}

.dark .table tbody+tbody,
.dark2 .table tbody+tbody {
    border-color: #404040
}

.dark .table thead th,
.dark2 .table thead th {
    border-color: #404040 !important
}

.dark .top-banner-wrapper .top-banner-content h4,
.dark2 .top-banner-wrapper .top-banner-content h4 {
    color: #e7eaec
}

.dark .top-banner-wrapper .top-banner-content h5,
.dark2 .top-banner-wrapper .top-banner-content h5 {
    color: #dee2e6
}

.dark .top-banner-wrapper .top-banner-content p,
.dark2 .top-banner-wrapper .top-banner-content p {
    color: #cfd4da
}

.dark .top-filter ::-webkit-scrollbar-track,
.dark2 .top-filter ::-webkit-scrollbar-track {
    background: #404040
}

.dark .category-box,
.dark2 .category-box {
    background-color: #232323;
    border-color: #404040
}

.dark .category-box.active,
.dark2 .category-box.active {
    background-color: var(--theme-color);
    border-color: rgba(0, 0, 0, 0)
}

.dark .collection-product-wrapper .product-top-filter,
.dark2 .collection-product-wrapper .product-top-filter {
    border-color: #404040;
    background-color: #232323
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .search-count,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .sidebar-popup,
.dark .collection-product-wrapper .product-top-filter .popup-filter .search-count,
.dark .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .search-count,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .sidebar-popup,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .search-count,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
    border-color: #404040;
    background-color: #2b2b2b
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-toggle,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-toggle,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-toggle,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-toggle,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-toggle,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-toggle,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-toggle,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-toggle {
    border-color: #404040;
    background-color: #2b2b2b;
    color: #fff
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu {
    border-color: #404040;
    background-color: #232323
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu::-webkit-scrollbar,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu::-webkit-scrollbar {
    background-color: #404040
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu .dropdown-item,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu .dropdown-item,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu .dropdown-item,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu .dropdown-item,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu .dropdown-item,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu .dropdown-item,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu .dropdown-item,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu .dropdown-item {
    color: #fff
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu .dropdown-item:hover,
.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu .dropdown-item:hover,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu .dropdown-item:hover,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu .dropdown-item:hover,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view .dropdown .dropdown-menu .dropdown-item:hover,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter .dropdown .dropdown-menu .dropdown-item:hover,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view .dropdown .dropdown-menu .dropdown-item:hover,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--theme-color);
    color: #fff
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view,
.dark .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
    border-color: #404040
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
.dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select {
    border-color: #404040
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li,
.dark .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li.active,
.dark .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li.active,
.dark2 .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li.active,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li.active {
    background-color: var(--theme-color)
}

.dark .collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-track,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-track {
    background: #2b2b2b
}

.dark .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup a,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup a {
    color: #cbcbcb
}

.dark .collection-product-wrapper .product-top-filter .popup-filter .open-popup,
.dark2 .collection-product-wrapper .product-top-filter .popup-filter .open-popup {
    border-color: #404040;
    box-shadow: none
}

.dark .product-pagination,
.dark2 .product-pagination {
    border-color: #404040
}

.dark .product-pagination .pagination li.active a,
.dark2 .product-pagination .pagination li.active a {
    background-color: #232323;
    transition: all .3s ease;
    border-color: #404040
}

.dark .product-pagination .pagination li.disabled .page-link,
.dark2 .product-pagination .pagination li.disabled .page-link {
    border-color: #404040;
    color: #eee
}

.dark .product-pagination .pagination li a,
.dark2 .product-pagination .pagination li a {
    border-color: #404040;
    background-color: #232323;
    color: #ddd
}

.dark .product-pagination .product-search-count-bottom,
.dark2 .product-pagination .product-search-count-bottom {
    border-color: #404040
}

.dark .product-pagination .product-search-count-bottom h5,
.dark2 .product-pagination .product-search-count-bottom h5 {
    color: #dee2e6
}

.dark .portfolio-section.metro-section .product-box .product-detail,
.dark2 .portfolio-section.metro-section .product-box .product-detail {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .portfolio-section.metro-section .product-box .product-detail h4,
.dark2 .portfolio-section.metro-section .product-box .product-detail h4 {
    color: #e7eaec
}

.dark .portfolio-section.metro-section .product-box .product-detail h6,
.dark2 .portfolio-section.metro-section .product-box .product-detail h6 {
    color: #cfd4da
}

.dark .vertical-tab.tab-product .nav-material.nav-tabs,
.dark .vertical-tab .product-full-tab .nav-material.nav-tabs,
.dark2 .vertical-tab.tab-product .nav-material.nav-tabs,
.dark2 .vertical-tab .product-full-tab .nav-material.nav-tabs {
    background-color: #232323
}

.dark .vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link,
.dark .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link,
.dark2 .vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link,
.dark2 .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link.active,
.dark .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link.active,
.dark2 .vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link.active,
.dark2 .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link.active {
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color)
}

.dark .collection-filter-block,
.dark2 .collection-filter-block {
    border-color: #404040;
    background-color: #232323;
    transition: all .3s ease
}

.dark .collection-filter-block .accordion-item+.accordion-item,
.dark2 .collection-filter-block .accordion-item+.accordion-item {
    border-color: #404040
}

.dark .collection-filter-block .accordion-item .accordion-button,
.dark2 .collection-filter-block .accordion-item .accordion-button {
    color: #fff
}

.dark .collection-filter-block .accordion-item .accordion-button:not(.collapsed),
.dark2 .collection-filter-block .accordion-item .accordion-button:not(.collapsed) {
    color: #fff
}

.dark .collection-filter-block .accordion-item .accordion-body .search-not-found-box,
.dark2 .collection-filter-block .accordion-item .accordion-body .search-not-found-box {
    background-color: #2b2b2b
}

.dark .collection-filter-block .accordion-item .accordion-body .search-box::after,
.dark2 .collection-filter-block .accordion-item .accordion-body .search-box::after {
    border-color: #404040
}

.dark .collection-filter-block .accordion-item .accordion-body .search-box .form-control,
.dark2 .collection-filter-block .accordion-item .accordion-body .search-box .form-control {
    border-color: #404040
}

.dark .collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input::after,
.dark2 .collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-input::after {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-label,
.dark2 .collection-filter-block .accordion-item .accordion-body .collection-filter-checkbox .form-check-label {
    color: #ddd
}

.dark .collection-filter-block .accordion-item .accordion-body .shop-category-list>li>a,
.dark .collection-filter-block .accordion-item .accordion-body .category-list>li>a,
.dark2 .collection-filter-block .accordion-item .accordion-body .shop-category-list>li>a,
.dark2 .collection-filter-block .accordion-item .accordion-body .category-list>li>a {
    color: #ddd
}

.dark .collection-filter-block .product-service .media+.media,
.dark2 .collection-filter-block .product-service .media+.media {
    border-color: #404040 !important
}

.dark .custom-sidebar-height::-webkit-scrollbar,
.dark2 .custom-sidebar-height::-webkit-scrollbar {
    background-color: #2b2b2b
}

.dark .load-more-sec a,
.dark2 .load-more-sec a {
    border-color: #404040
}

.dark .coupon-modal .coupon-box,
.dark2 .coupon-modal .coupon-box {
    background-color: #232323
}

.dark .coupon-modal .coupon-box .coupon-content p,
.dark2 .coupon-modal .coupon-box .coupon-content p {
    color: rgba(221, 221, 221, .678)
}

.dark .coupon-modal .coupon-box .coupon-content .coupon-apply,
.dark2 .coupon-modal .coupon-box .coupon-content .coupon-apply {
    border-color: #404040
}

.dark .coupon-modal .coupon-box .coupon-content .coupon-apply h6,
.dark2 .coupon-modal .coupon-box .coupon-content .coupon-apply h6 {
    color: #fff
}

.dark .checkout-page .checkout-title h3,
.dark2 .checkout-page .checkout-title h3 {
    color: #eaedef
}

.dark .checkout-page .coupon-content .coupon-apply,
.dark2 .checkout-page .coupon-content .coupon-apply {
    border-color: #404040
}

.dark .checkout-page .coupon-content .coupon-apply h6,
.dark2 .checkout-page .coupon-content .coupon-apply h6 {
    color: #ddd
}

.dark .checkout-page .checkout-form .form-group .field-label,
.dark2 .checkout-page .checkout-form .form-group .field-label {
    color: #cfd4da
}

.dark .checkout-page .checkout-form input[type=text],
.dark .checkout-page .checkout-form input[type=email],
.dark .checkout-page .checkout-form input[type=password],
.dark .checkout-page .checkout-form input[type=tel],
.dark .checkout-page .checkout-form input[type=number],
.dark .checkout-page .checkout-form input[type=url],
.dark2 .checkout-page .checkout-form input[type=text],
.dark2 .checkout-page .checkout-form input[type=email],
.dark2 .checkout-page .checkout-form input[type=password],
.dark2 .checkout-page .checkout-form input[type=tel],
.dark2 .checkout-page .checkout-form input[type=number],
.dark2 .checkout-page .checkout-form input[type=url] {
    background-color: #2b2b2b;
    transition: all .3s ease;
    border-color: #404040
}

.dark .checkout-page .checkout-form select,
.dark .checkout-page .checkout-form textarea,
.dark2 .checkout-page .checkout-form select,
.dark2 .checkout-page .checkout-form textarea {
    border-color: #404040
}

.dark .checkout-page .checkout-form .checkout-details,
.dark2 .checkout-page .checkout-form .checkout-details {
    background-color: #232323;
    transition: all .3s ease;
    border: 1px solid #404040
}

.dark .checkout-page .checkout-form .checkout-details .coupon-box,
.dark2 .checkout-page .checkout-form .checkout-details .coupon-box {
    border-color: #404040;
    background-color: #2b2b2b
}

.dark .checkout-page .checkout-form .checkout-details .order-box .title-box h4,
.dark2 .checkout-page .checkout-form .checkout-details .order-box .title-box h4 {
    color: #fff
}

.dark .checkout-page .checkout-form .checkout-details .promo-code-box h5,
.dark2 .checkout-page .checkout-form .checkout-details .promo-code-box h5 {
    color: #ddd
}

.dark .checkout-page .checkout-form .checkout-details .promo-code-box .form-control,
.dark2 .checkout-page .checkout-form .checkout-details .promo-code-box .form-control {
    border-color: #404040
}

.dark .checkout-page .future-option,
.dark2 .checkout-page .future-option {
    background-color: #2b2b2b
}

.dark .checkout-page .future-option .delivery-items h4,
.dark2 .checkout-page .future-option .delivery-items h4 {
    color: #fff
}

.dark .checkout-page .future-option ul li.active a,
.dark2 .checkout-page .future-option ul li.active a {
    color: #fff;
    background-color: var(--theme-color)
}

.dark .checkout-page .future-option ul li a,
.dark2 .checkout-page .future-option ul li a {
    background-color: #232323;
    color: #fff
}

.dark .checkout-page .promo-title a,
.dark2 .checkout-page .promo-title a {
    color: #fff
}

.dark .checkout-page .checkout-form-section .checkout-title1 h2,
.dark2 .checkout-page .checkout-form-section .checkout-title1 h2 {
    border-color: #404040
}

.dark .checkout-page .checkout-form-section .checkbox-main-box,
.dark2 .checkout-page .checkout-form-section .checkbox-main-box {
    background-color: #232323;
    border-color: #404040
}

.dark .checkout-page .checkout-form-section .checkout-form .form-box .form-control,
.dark .checkout-page .checkout-form-section .country-input .form-box .form-control,
.dark2 .checkout-page .checkout-form-section .checkout-form .form-box .form-control,
.dark2 .checkout-page .checkout-form-section .country-input .form-box .form-control {
    background-color: #2b2b2b
}

.dark .checkout-page .checkout-form-section .checkout-form .form-box .form-control::placeholder,
.dark .checkout-page .checkout-form-section .country-input .form-box .form-control::placeholder,
.dark2 .checkout-page .checkout-form-section .checkout-form .form-box .form-control::placeholder,
.dark2 .checkout-page .checkout-form-section .country-input .form-box .form-control::placeholder {
    color: #cfd4da
}

.dark .checkout-page .checkout-form-section .checkout-form .form-box .form-label,
.dark .checkout-page .checkout-form-section .country-input .form-box .form-label,
.dark2 .checkout-page .checkout-form-section .checkout-form .form-box .form-label,
.dark2 .checkout-page .checkout-form-section .country-input .form-box .form-label {
    color: #cfd4da
}

.dark .checkout-page .checkout-form-section .checkout-form .form-checkbox .form-check-input::after,
.dark .checkout-page .checkout-form-section .country-input .form-checkbox .form-check-input::after,
.dark2 .checkout-page .checkout-form-section .checkout-form .form-checkbox .form-check-input::after,
.dark2 .checkout-page .checkout-form-section .country-input .form-checkbox .form-check-input::after {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .checkout-page .checkout-form-section .checkout-form .phone-field .country-input-box~.col-12>.custom-select-box .form-control,
.dark .checkout-page .checkout-form-section .country-input .phone-field .country-input-box~.col-12>.custom-select-box .form-control,
.dark2 .checkout-page .checkout-form-section .checkout-form .phone-field .country-input-box~.col-12>.custom-select-box .form-control,
.dark2 .checkout-page .checkout-form-section .country-input .phone-field .country-input-box~.col-12>.custom-select-box .form-control {
    background-color: #232323
}

.dark .checkout-page .checkout-form-section .checkout-form .custom-select-box input,
.dark .checkout-page .checkout-form-section .country-input .custom-select-box input,
.dark2 .checkout-page .checkout-form-section .checkout-form .custom-select-box input,
.dark2 .checkout-page .checkout-form-section .country-input .custom-select-box input {
    background-color: #2b2b2b
}

.dark .checkout-page .checkout-form-section .checkout-form .custom-select-box input.form-control,
.dark .checkout-page .checkout-form-section .country-input .custom-select-box input.form-control,
.dark2 .checkout-page .checkout-form-section .checkout-form .custom-select-box input.form-control,
.dark2 .checkout-page .checkout-form-section .country-input .custom-select-box input.form-control {
    background-color: #232323
}

.dark .checkout-page .checkout-form-section .checkout-form .custom-select-box input.form-control.form-select,
.dark .checkout-page .checkout-form-section .country-input .custom-select-box input.form-control.form-select,
.dark2 .checkout-page .checkout-form-section .checkout-form .custom-select-box input.form-control.form-select,
.dark2 .checkout-page .checkout-form-section .country-input .custom-select-box input.form-control.form-select {
    background-color: #2b2b2b
}

.dark .checkout-page .checkout-form-section .delivery-option,
.dark .checkout-page .checkout-form-section .payment-option,
.dark2 .checkout-page .checkout-form-section .delivery-option,
.dark2 .checkout-page .checkout-form-section .payment-option {
    background-color: #2b2b2b
}

.dark .checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input::before,
.dark .checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input::before,
.dark2 .checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input::before,
.dark2 .checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input::before {
    background-color: #232323;
    border-color: #404040
}

.dark .checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked~label,
.dark .checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked~label,
.dark2 .checkout-page .checkout-form-section .delivery-option .custom-form-check .form-check-input:checked~label,
.dark2 .checkout-page .checkout-form-section .payment-option .custom-form-check .form-check-input:checked~label {
    color: #fff
}

.dark .phone-field .custom-select-box>.form-control,
.dark2 .phone-field .custom-select-box>.form-control {
    border-color: #404040
}

.dark .wishlist-section tbody tr td .icon-box a,
.dark2 .wishlist-section tbody tr td .icon-box a {
    border-color: #404040;
    background-color: #232323
}

.dark .coupon-box,
.dark2 .coupon-box {
    background: #232323
}

.dark .coupon-box .coupon-content p,
.dark2 .coupon-box .coupon-content p {
    color: #ddd
}

.dark .coupon-box .coupon-content .coupon-apply,
.dark2 .coupon-box .coupon-content .coupon-apply {
    border-color: #404040
}

.dark .coupon-box .coupon-content .coupon-apply h6,
.dark2 .coupon-box .coupon-content .coupon-apply h6 {
    color: #fff
}

.dark .intl-tel-input .flag-box,
.dark2 .intl-tel-input .flag-box {
    margin-left: 6px;
    margin-right: unset
}

.dark .refund-modal .product-review-form .form-select,
.dark2 .refund-modal .product-review-form .form-select {
    border-color: #404040
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box {
    background-color: #232323;
    border-color: #404040
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-title,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-title {
    border-color: #404040
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-title a,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-title a {
    color: var(--theme-color)
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box {
    background-color: #2b2b2b
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input::before {
    background-color: #232323;
    border-color: #404040
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input:checked::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .form-check .form-check-input:checked::before {
    border-color: var(--theme-color)
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail h6,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail p,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail h6,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail p {
    color: #ddd
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail h6 span,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail p span,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail h6 span,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-address-box>div .delivery-address-detail p span {
    color: #ddd
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option {
    background-color: #2b2b2b
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input::before {
    background-color: #232323;
    border-color: #404040
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:checked::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:checked::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:checked::before,
.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:checked::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .delivery-category .form-check .form-check-input:checked::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .delivery-option .payment-category .form-check .form-check-input:checked::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .delivery-category .form-check .form-check-input:checked::before,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .payment-option .payment-category .form-check .form-check-input:checked::before {
    border-color: var(--theme-color)
}

.dark .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box .future-option .delivery-items h4,
.dark2 .checkout-section-2 .left-sidebar-checkout .checkout-detail-box>ul>li .checkout-box .checkout-detail .future-box .future-option .delivery-items h4 {
    color: #fff
}

.dark .order-box .title-box,
.dark2 .order-box .title-box {
    color: #eaedef;
    border-color: #404040
}

.dark .order-box .qty,
.dark2 .order-box .qty {
    border-color: #404040
}

.dark .order-box .qty li,
.dark2 .order-box .qty li {
    color: #cfd4da
}

.dark .order-box .qty li .cart-image,
.dark2 .order-box .qty li .cart-image {
    background-color: #2b2b2b
}

.dark .order-box .qty li span,
.dark2 .order-box .qty li span {
    color: #dee2e6
}

.dark .order-box .sub-total,
.dark2 .order-box .sub-total {
    border-color: #404040
}

.dark .order-box .sub-total li,
.dark2 .order-box .sub-total li {
    color: #cfd4da
}

.dark .order-box .sub-total li .check-it::after,
.dark2 .order-box .sub-total li .check-it::after {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .order-box .sub-total li h4.text-muted,
.dark2 .order-box .sub-total li h4.text-muted {
    color: #cfd4da !important
}

.dark .order-box .sub-total .shopping-option label,
.dark2 .order-box .sub-total .shopping-option label {
    color: #929292
}

.dark .order-box .total,
.dark2 .order-box .total {
    border-color: #404040
}

.dark .order-box .total li,
.dark2 .order-box .total li {
    color: #cfd4da
}

.dark .order-box .box-loader .loader-wrapper,
.dark2 .order-box .box-loader .loader-wrapper {
    background-color: #2b2b2b
}

.dark .collection .collection-block .collection-content h4,
.dark2 .collection .collection-block .collection-content h4 {
    color: #e7eaec
}

.dark .collection .collection-block .collection-content h3,
.dark2 .collection .collection-block .collection-content h3 {
    color: #eaedef
}

.dark .table th,
.dark .table td,
.dark2 .table th,
.dark2 .table td {
    border-color: #404040
}

.dark .dashboard .box-head h2,
.dark2 .dashboard .box-head h2 {
    color: #f1f3f5
}

.dark .dashboard .box .box-title,
.dark2 .dashboard .box .box-title {
    border-color: #404040
}

.dark .dashboard .box .box-title h3,
.dark2 .dashboard .box .box-title h3 {
    color: #eaedef
}

.dark .card,
.dark2 .card {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .card .card-header,
.dark2 .card .card-header {
    background-color: #232323;
    transition: all .3s ease
}

.dark .cart-section .cart-table,
.dark .wishlist-section .cart-table,
.dark2 .cart-section .cart-table,
.dark2 .wishlist-section .cart-table {
    border-color: #404040
}

.dark .cart-section thead th,
.dark .wishlist-section thead th,
.dark2 .cart-section thead th,
.dark2 .wishlist-section thead th {
    background-color: #232323
}

.dark .cart-section tbody tr td,
.dark .wishlist-section tbody tr td,
.dark2 .cart-section tbody tr td,
.dark2 .wishlist-section tbody tr td {
    background-color: rgba(0, 0, 0, 0)
}

.dark .cart-section tbody .remove-btn,
.dark .wishlist-section tbody .remove-btn,
.dark2 .cart-section tbody .remove-btn,
.dark2 .wishlist-section tbody .remove-btn {
    border-color: #404040;
    background-color: #232323
}

.dark .cart-section .qty-box .input-group .form-control,
.dark .wishlist-section .qty-box .input-group .form-control,
.dark2 .cart-section .qty-box .input-group .form-control,
.dark2 .wishlist-section .qty-box .input-group .form-control {
    border-color: #404040
}

.dark .cart-section tfoot tr td,
.dark .wishlist-section tfoot tr td,
.dark2 .cart-section tfoot tr td,
.dark2 .wishlist-section tfoot tr td {
    background-color: rgba(0, 0, 0, 0);
    color: #ddd
}

.dark .cart-section tfoot tr td:first-child,
.dark .wishlist-section tfoot tr td:first-child,
.dark2 .cart-section tfoot tr td:first-child,
.dark2 .wishlist-section tfoot tr td:first-child {
    color: #ddd
}

.dark .compare-section .compare-box,
.dark2 .compare-section .compare-box {
    border-color: #404040
}

.dark .compare-section .compare-part .detail-part,
.dark2 .compare-section .compare-part .detail-part {
    border-color: #404040
}

.dark .compare-section .compare-part .close-btn,
.dark2 .compare-section .compare-part .close-btn {
    background-color: #232323;
    color: #ddd;
    border-color: #404040
}

.dark .compare-section .compare-part .detail-part .title-detail,
.dark2 .compare-section .compare-part .detail-part .title-detail {
    border-color: #404040
}

.dark .compare-section .compare-part .img-section,
.dark2 .compare-section .compare-part .img-section {
    border-color: #404040
}

.dark .compare-section .compare-part .img-section a h5,
.dark2 .compare-section .compare-part .img-section a h5 {
    color: #fff
}

.dark .compare-section .compare-part .detail-part .title-detail,
.dark2 .compare-section .compare-part .detail-part .title-detail {
    background-color: #232323
}

.dark .compare-section .compare-part .btn-part,
.dark2 .compare-section .compare-part .btn-part {
    border-color: #404040
}

.dark .faq-section .faq-accordion .accordion-item,
.dark2 .faq-section .faq-accordion .accordion-item {
    border-color: #404040
}

.dark .faq-section .faq-accordion .accordion-item .accordion-header button,
.dark2 .faq-section .faq-accordion .accordion-item .accordion-header button {
    color: #fff;
    background-color: #232323
}

.dark .faq-section .faq-accordion .accordion-item .accordion-header button:not(.collapsed),
.dark2 .faq-section .faq-accordion .accordion-item .accordion-header button:not(.collapsed) {
    color: var(--theme-color)
}

.dark .faq-section .faq-accordion .accordion-item .accordion-header button:hover,
.dark2 .faq-section .faq-accordion .accordion-item .accordion-header button:hover {
    color: var(--theme-color)
}

.dark .faq-section .faq-accordion .accordion-item .accordion-header button::after,
.dark2 .faq-section .faq-accordion .accordion-item .accordion-header button::after {
    color: #ddd
}

.dark .faq-section .faq-accordion .accordion-item .card-body p,
.dark2 .faq-section .faq-accordion .accordion-item .card-body p {
    color: #ddd
}

.dark.box-layout-body .box-layout-header,
.dark2.box-layout-body .box-layout-header {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark.box-layout-body .box-layout.bg-image,
.dark2.box-layout-body .box-layout.bg-image {
    background-color: #232323;
    transition: all .3s ease;
    background-image: none;
    box-shadow: none
}

.dark.box-layout-body .light-layout,
.dark2.box-layout-body .light-layout {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark.box-layout-body .sub-footer,
.dark2.box-layout-body .sub-footer {
    background-color: #232323;
    transition: all .3s ease
}

.dark.box-layout-body .brand-slider-box .logo-block,
.dark2.box-layout-body .brand-slider-box .logo-block {
    background-color: #2b2b2b
}

.dark.box-layout-body .general-variant .active,
.dark2.box-layout-body .general-variant .active {
    border-color: #404040
}

.dark.box-layout-body .basic-product .img-wrapper,
.dark2.box-layout-body .basic-product .img-wrapper {
    background-color: #2b2b2b
}

.dark.box-layout-body .basic-product .cart-info a,
.dark.box-layout-body .basic-product .cart-info button,
.dark2.box-layout-body .basic-product .cart-info a,
.dark2.box-layout-body .basic-product .cart-info button {
    background-color: #232323
}

.dark .bg-title.wo-bg .theme-tab .bg-title-part,
.dark2 .bg-title.wo-bg .theme-tab .bg-title-part {
    border-color: #404040
}

.dark .bg-title.wo-bg .theme-tab .bg-title-part .title-border,
.dark2 .bg-title.wo-bg .theme-tab .bg-title-part .title-border {
    color: #fff
}

.dark .bg-title.wo-bg .theme-tab .tab-title a,
.dark2 .bg-title.wo-bg .theme-tab .tab-title a {
    color: #cfd4da
}

.dark .bg-title.wo-bg .theme-tab .tab-title .current a,
.dark2 .bg-title.wo-bg .theme-tab .tab-title .current a {
    color: var(--theme-color)
}

.dark .full-box .theme-card .offer-slider .product-box2+.product-box2,
.dark2 .full-box .theme-card .offer-slider .product-box2+.product-box2 {
    border-top: none
}

.dark .center-slider,
.dark2 .center-slider {
    border-color: #404040
}

.dark .bg-block,
.dark2 .bg-block {
    background-color: #232323;
    transition: all .3s ease;
    background-image: none
}

.dark .theme-tab .tab-content .product-tab .tab-box,
.dark2 .theme-tab .tab-content .product-tab .tab-box {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .theme-tab .tab-content .product-tab .tab-box .product-box2,
.dark2 .theme-tab .tab-content .product-tab .tab-box .product-box2 {
    background-color: #2b2b2b
}

.dark .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body h4,
.dark2 .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body h4 {
    color: #e7eaec
}

.dark .flower-bg,
.dark2 .flower-bg {
    background-color: #232323;
    transition: all .3s ease;
    background-image: none
}

.dark header.full-scroll-menu,
.dark2 header.full-scroll-menu {
    background-color: rgba(0, 0, 0, 0);
    transition: all .3s ease
}

.dark.tools-bg .basic-product,
.dark2.tools-bg .basic-product {
    background-color: #232323
}

.dark.tools-bg .basic-product .img-wrapper,
.dark2.tools-bg .basic-product .img-wrapper {
    background-color: #2b2b2b
}

.dark.tools-bg .basic-product .img-wrapper .rating-label,
.dark2.tools-bg .basic-product .img-wrapper .rating-label {
    background-color: #232323
}

.dark.tools-bg .basic-product .cart-info a,
.dark.tools-bg .basic-product .cart-info button,
.dark2.tools-bg .basic-product .cart-info a,
.dark2.tools-bg .basic-product .cart-info button {
    background-color: #232323
}

.dark .category-m.w-bg .category-wrapper,
.dark2 .category-m.w-bg .category-wrapper {
    background-color: #2b2b2b
}

.dark .category-m .category-wrapper h4 a,
.dark2 .category-m .category-wrapper h4 a {
    color: #cbcbcb
}

.dark .category-block .category-image,
.dark2 .category-block .category-image {
    border-color: #404040
}

.dark .category-block .category-image.svg-image,
.dark2 .category-block .category-image.svg-image {
    background-color: #232323;
    transition: all .3s ease
}

.dark .footer-theme2.footer-border,
.dark2 .footer-theme2.footer-border {
    border-color: #404040
}

.dark .footer-theme2.section-light .footer-block .subscribe-white,
.dark2 .footer-theme2.section-light .footer-block .subscribe-white {
    border-color: #404040
}

.dark .footer-theme2.section-light .footer-block h4,
.dark2 .footer-theme2.section-light .footer-block h4 {
    color: #e7eaec
}

.dark .footer-theme2.section-light .footer-block .contact-details li a,
.dark2 .footer-theme2.section-light .footer-block .contact-details li a {
    color: #e7eaec
}

.dark .footer-theme2 .footer-link.link-white h4,
.dark2 .footer-theme2 .footer-link.link-white h4 {
    color: #e7eaec
}

.dark .absolute-banner .absolute-bg,
.dark2 .absolute-banner .absolute-bg {
    background-color: #232323;
    transition: all .3s ease;
    box-shadow: none
}

.dark footer .dark-layout,
.dark2 footer .dark-layout {
    background-color: #232323
}

.dark .logo-block img,
.dark2 .logo-block img {
    filter: invert(100)
}

.dark .logo-block img:hover,
.dark2 .logo-block img:hover {
    filter: invert(100)
}

.dark .bg-white,
.dark2 .bg-white {
    background-color: #2b2b2b !important;
    transition: all .3s ease
}

.dark .product-box .img-wrapper .cart-box,
.dark .product-wrap .img-wrapper .cart-box,
.dark2 .product-box .img-wrapper .cart-box,
.dark2 .product-wrap .img-wrapper .cart-box {
    background-color: #2b2b2b;
    transition: all .3s ease;
    box-shadow: none
}

.dark .tab-bg.tab-grey-bg,
.dark2 .tab-bg.tab-grey-bg {
    background-color: #232323;
    transition: all .3s ease
}

.dark .blog.blog_box .blog-details p,
.dark2 .blog.blog_box .blog-details p {
    color: #cfd4da
}

.dark .blog.blog_box .blog-details a p,
.dark2 .blog.blog_box .blog-details a p {
    color: #cfd4da
}

.dark .blog.blog_box .blog-details .read-cls,
.dark2 .blog.blog_box .blog-details .read-cls {
    color: #cbcbcb
}

.dark .btn-close,
.dark2 .btn-close {
    color: #fff
}

.dark .sticky-bottom-cart,
.dark2 .sticky-bottom-cart {
    background-color: #2b2b2b
}

.dark .sticky-bottom-cart .selection-section .form-control,
.dark2 .sticky-bottom-cart .selection-section .form-control {
    background-color: #232323;
    border-color: #404040;
    background-image: url(./../../svg/dropdown.svg)
}

.dark .sticky-bottom-cart .product-image .content h6,
.dark2 .sticky-bottom-cart .product-image .content h6 {
    color: #cfd4da
}

.dark .recently-purchase,
.dark2 .recently-purchase {
    background: #2b2b2b;
    box-shadow: 0 0 7px 0px rgba(124, 124, 124, .2784313725)
}

.dark .recently-purchase img,
.dark2 .recently-purchase img {
    background-color: #252525
}

.dark .recently-purchase .close-popup,
.dark2 .recently-purchase .close-popup {
    color: #fff
}

.dark .product-slider-image,
.dark .sticky-product-height,
.dark2 .product-slider-image,
.dark2 .sticky-product-height {
    background-color: #232323;
    border-color: #404040
}

.dark .product-social li,
.dark2 .product-social li {
    background-color: #232323;
    border-color: #404040
}

.dark .product-social li i,
.dark2 .product-social li i {
    color: #fff
}

.dark .product-right .product-title,
.dark2 .product-right .product-title {
    color: #cfd4da
}

.dark .product-right .border-product,
.dark2 .product-right .border-product {
    border-color: #404040
}

.dark .product-right .product-icon .product-social li a,
.dark2 .product-right .product-icon .product-social li a {
    color: #cbcbcb
}

.dark .product-right .product-icon .wishlist-btn,
.dark2 .product-right .product-icon .wishlist-btn {
    color: #cbcbcb
}

.dark .product-right .product-icon .wishlist-btn i,
.dark2 .product-right .product-icon .wishlist-btn i {
    border-color: #404040
}

.dark .product-right.product-form-box,
.dark2 .product-right.product-form-box {
    border-color: #404040
}

.dark .product-right.product-form-box .timer,
.dark2 .product-right.product-form-box .timer {
    background-color: #232323;
    transition: all .3s ease
}

.dark .product-right .timer,
.dark2 .product-right .timer {
    background-color: #232323;
    transition: all .3s ease
}

.dark .product-right .timer p,
.dark2 .product-right .timer p {
    color: #cfd4da
}

.dark .product-right h4 del,
.dark2 .product-right h4 del {
    color: #929292
}

.dark .timer span .timer-cal,
.dark2 .timer span .timer-cal {
    color: #929292
}

.dark .qty-box .input-group span button,
.dark2 .qty-box .input-group span button {
    background: #2b2b2b !important;
    border-color: #404040
}

.dark .qty-box .input-group button svg,
.dark2 .qty-box .input-group button svg {
    color: #929292
}

.dark .nav-tabs,
.dark2 .nav-tabs {
    border-color: #404040
}

.dark .nav-tabs .nav-link.active,
.dark2 .nav-tabs .nav-link.active {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .tab-product .nav-material.nav-tabs .nav-item .nav-link,
.dark2 .tab-product .nav-material.nav-tabs .nav-item .nav-link {
    color: #cbcbcb
}

.dark .tab-product .nav-material.nav-tabs .nav-link.active,
.dark2 .tab-product .nav-material.nav-tabs .nav-link.active {
    color: var(--theme-color)
}

.dark .tab-product .theme-form input,
.dark .tab-product .theme-form textarea,
.dark2 .tab-product .theme-form input,
.dark2 .tab-product .theme-form textarea {
    border-color: #404040
}

.dark .product-related h2,
.dark2 .product-related h2 {
    border-color: #404040
}

.dark .product-accordion .btn-link,
.dark2 .product-accordion .btn-link {
    color: #e7eaec
}

.dark .product-accordion .card-header,
.dark2 .product-accordion .card-header {
    border-color: rgba(64, 64, 64, .125)
}

.dark .product-accordion .accordion .accordion-item,
.dark2 .product-accordion .accordion .accordion-item {
    background-color: rgba(0, 0, 0, 0)
}

.dark .product-accordion .accordion .accordion-item .accordion-header .accordion-button,
.dark2 .product-accordion .accordion .accordion-item .accordion-header .accordion-button {
    color: #ddd;
    border-color: #404040;
    background-color: #232323
}

.dark .product-accordion .accordion .accordion-item .accordion-body p,
.dark2 .product-accordion .accordion .accordion-item .accordion-body p {
    color: #ddd
}

.dark .product-accordion .accordion .bordered-box+.bordered-box,
.dark2 .product-accordion .accordion .bordered-box+.bordered-box {
    border-color: #404040
}

.dark .bundle .bundle_detail .price_product,
.dark2 .bundle .bundle_detail .price_product {
    color: #fff
}

.dark .brand-section .brand-box h2,
.dark2 .brand-section .brand-box h2 {
    border-color: #404040;
    background-color: #232323
}

.dark .product-detail-label li.featured,
.dark2 .product-detail-label li.featured {
    background-color: #2b2b2b
}

.dark .modal-content,
.dark2 .modal-content {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark button.close,
.dark2 button.close {
    color: #fff
}

.dark .modal-header,
.dark2 .modal-header {
    border-color: #404040
}

.dark .collection-filter-block .product-service .media,
.dark2 .collection-filter-block .product-service .media {
    border-color: #404040
}

.dark .collection-filter-block .accordion-item .accordion-body .shop-category-list>li>a,
.dark2 .collection-filter-block .accordion-item .accordion-body .shop-category-list>li>a {
    color: #ddd
}

.dark .category-border,
.dark2 .category-border {
    background-color: #404040;
    transition: all .3s ease
}

.dark .category-border div .category-banner .category-box,
.dark2 .category-border div .category-banner .category-box {
    background-color: #232323;
    border-color: #404040
}

.dark .category-border div .category-banner .category-box h2,
.dark2 .category-border div .category-banner .category-box h2 {
    background-color: #232323;
    transition: all .3s ease
}

.dark .background,
.dark2 .background {
    background-color: #404040;
    transition: all .3s ease
}

.dark .background .contain-bg,
.dark2 .background .contain-bg {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .background .contain-bg h4,
.dark2 .background .contain-bg h4 {
    color: #e7eaec
}

.dark .background .contain-bg:hover h4,
.dark2 .background .contain-bg:hover h4 {
    color: var(--theme-color)
}

.dark .blog-bg,
.dark2 .blog-bg {
    background-color: #404040;
    transition: all .3s ease
}

.dark .sub-footer.black-subfooter,
.dark2 .sub-footer.black-subfooter {
    background-color: #232323;
    transition: all .3s ease
}

.dark.tools-bg,
.dark2.tools-bg {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark.tools-bg section,
.dark2.tools-bg section {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .category-tools .category-m .category-wrapper,
.dark2 .category-tools .category-m .category-wrapper {
    background-color: #232323;
    transition: all .3s ease
}

.dark .category-m .category-wrapper,
.dark2 .category-m .category-wrapper {
    border-color: #404040
}

.dark .category-m .category-wrapper h4,
.dark2 .category-m .category-wrapper h4 {
    color: #e7eaec
}

.dark .category-m .category-wrapper .category-link li a,
.dark2 .category-m .category-wrapper .category-link li a {
    color: #cbcbcb
}

.dark .tools-brand .row,
.dark2 .tools-brand .row {
    background-color: #232323;
    transition: all .3s ease;
    box-shadow: none
}

.dark .absolute_banner .collection-banner .absolute-contain,
.dark2 .absolute_banner .collection-banner .absolute-contain {
    background-color: #232323;
    transition: all .3s ease;
    box-shadow: none
}

.dark .absolute_banner .collection-banner .absolute-contain h4,
.dark2 .absolute_banner .collection-banner .absolute-contain h4 {
    color: #e7eaec
}

.dark .collection-banner .contain-banner.content-bg h2,
.dark2 .collection-banner .contain-banner.content-bg h2 {
    background-color: #2b2b2b;
    color: #f1f3f5
}

.dark .absolute-product .product-box,
.dark2 .absolute-product .product-box {
    background-color: #232323;
    transition: all .3s ease
}

.dark .absolute-product .product-box .product-detail .cart-bottom,
.dark2 .absolute-product .product-box .product-detail .cart-bottom {
    border-color: #404040
}

.dark .absolute-product .product-box .product-detail .cart-bottom i,
.dark2 .absolute-product .product-box .product-detail .cart-bottom i {
    color: #cbcbcb
}

.dark .absolute-product .product-box .product-detail .cart-bottom i:hover,
.dark2 .absolute-product .product-box .product-detail .cart-bottom i:hover {
    color: #fff
}

.dark .seller-grid-box,
.dark2 .seller-grid-box {
    background-color: #232323;
    border-color: #404040
}

.dark .seller-grid-box .grid-contain .seller-contact-details ul li i,
.dark2 .seller-grid-box .grid-contain .seller-contact-details ul li i {
    color: #ddd
}

.dark .seller-grid-box .grid-contain .seller-contact-details ul li h5,
.dark2 .seller-grid-box .grid-contain .seller-contact-details ul li h5 {
    color: #ddd
}

.dark .seller-grid-box .grid-contain .seller-contact-details ul li h5 a,
.dark2 .seller-grid-box .grid-contain .seller-contact-details ul li h5 a {
    color: #ddd
}

.dark .seller-grid-box .grid-contain .seller-category .product-image li,
.dark2 .seller-grid-box .grid-contain .seller-category .product-image li {
    background: #2b2b2b;
    color: #ddd
}

.dark .seller-grid-box .grid-contain .seller-category .btn,
.dark2 .seller-grid-box .grid-contain .seller-category .btn {
    background-color: #2b2b2b !important
}

.dark .seller-grid-box .grid-contain .seller-category .btn:hover,
.dark2 .seller-grid-box .grid-contain .seller-category .btn:hover {
    background-color: var(--theme-color) !important
}

.dark .seller-grid-box .grid-image .image,
.dark2 .seller-grid-box .grid-image .image {
    background-color: #2b2b2b
}

.dark .seller-grid-box .grid-image .image h4,
.dark2 .seller-grid-box .grid-image .image h4 {
    color: #ddd
}

.dark .seller-grid-box .grid-image .contain-name h3,
.dark2 .seller-grid-box .grid-image .contain-name h3 {
    color: #fff
}

.dark .service-block1,
.dark2 .service-block1 {
    background-color: #232323;
    border-color: #404040
}

.dark .service-block1 .service-svg,
.dark2 .service-block1 .service-svg {
    background-color: #2b2b2b
}

.dark .box-product .full-box .theme-card .offer-slider .product-box2,
.dark2 .box-product .full-box .theme-card .offer-slider .product-box2 {
    box-shadow: none;
    border-color: #404040;
    background-color: #232323
}

.dark .box-product .full-box .theme-card .offer-slider .product-box2 .media,
.dark2 .box-product .full-box .theme-card .offer-slider .product-box2 .media {
    background-color: #232323;
    transition: all .3s ease
}

.dark .box-product .full-box .theme-card .offer-slider .product-box2 .cart-bottom,
.dark2 .box-product .full-box .theme-card .offer-slider .product-box2 .cart-bottom {
    border-color: #404040
}

.dark .pets-box .product-box .img-wrapper .cart-info i,
.dark2 .pets-box .product-box .img-wrapper .cart-info i {
    background-color: #2b2b2b
}

.dark .tab-bg,
.dark2 .tab-bg {
    background-color: #232323;
    transition: all .3s ease
}

.dark .darken-layout,
.dark2 .darken-layout {
    background-color: #232323;
    transition: all .3s ease
}

.dark .darken-layout p,
.dark2 .darken-layout p {
    color: #cfd4da
}

.dark .darken-layout .sub-title .contact-list li,
.dark2 .darken-layout .sub-title .contact-list li {
    color: #cfd4da
}

.dark .darken-layout .sub-title .contact-list i,
.dark2 .darken-layout .sub-title .contact-list i {
    color: #cfd4da
}

.dark .darken-layout .footer-social i,
.dark2 .darken-layout .footer-social i {
    color: #cfd4da
}

.dark .sub-footer.dark-subfooter p,
.dark2 .sub-footer.dark-subfooter p {
    color: #cfd4da
}

.dark .cart-section tbody tr td a,
.dark .cart-section tbody tr td p,
.dark .wishlist-section tbody tr td a,
.dark .wishlist-section tbody tr td p,
.dark2 .cart-section tbody tr td a,
.dark2 .cart-section tbody tr td p,
.dark2 .wishlist-section tbody tr td a,
.dark2 .wishlist-section tbody tr td p {
    color: #cbcbcb
}

.dark .footer-title,
.dark2 .footer-title {
    border-color: #404040
}

.dark .category-bg,
.dark2 .category-bg {
    background-color: #232323;
    transition: all .3s ease
}

.dark .category-bg .contain-block,
.dark2 .category-bg .contain-block {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .category-bg .contain-block h2,
.dark2 .category-bg .contain-block h2 {
    color: #f1f3f5
}

.dark .category-bg .contain-block h6 span,
.dark2 .category-bg .contain-block h6 span {
    color: #929292
}

.dark .service_slide .service-home .row>div:nth-child(even) .service-block1,
.dark2 .service_slide .service-home .row>div:nth-child(even) .service-block1 {
    background-color: rgba(43, 43, 43, .85)
}

.dark .service_slide .service-home .service-block1,
.dark2 .service_slide .service-home .service-block1 {
    background-color: rgba(35, 35, 35, .9);
    transition: all .3s ease
}

.dark .service_slide .service-home .service-block1:nth-child(even),
.dark2 .service_slide .service-home .service-block1:nth-child(even) {
    background-color: rgba(35, 35, 35, .7);
    transition: all .3s ease
}

.dark .service_slide .service-home .service-block1 svg path,
.dark2 .service_slide .service-home .service-block1 svg path {
    fill: #fff
}

.dark .bg-grey,
.dark2 .bg-grey {
    background-color: #232323;
    transition: all .3s ease
}

.dark .detail-cannabis .detail_section>div,
.dark2 .detail-cannabis .detail_section>div {
    background-color: #2b2b2b;
    transition: all .3s ease;
    box-shadow: none
}

.dark .detail-cannabis .detail_section svg,
.dark2 .detail-cannabis .detail_section svg {
    fill: #fff
}

.dark .demo-card.theme-card,
.dark2 .demo-card.theme-card {
    background-color: #232323
}

.dark .theme-modal .modal-dialog .modal-content .modal-body,
.dark2 .theme-modal .modal-dialog .modal-content .modal-body {
    background-image: linear-gradient(135deg, var(--theme-color) 5.77%, #232323 5.77%, #232323 25%, #f1f3f5 25%, #f1f3f5 30.77%, #232323 30.77%, #232323 50%, var(--theme-color) 50%, var(--theme-color) 55.77%, #232323 55.77%, #232323 75%, #f1f3f5 75%, #f1f3f5 80.77%, #232323 80.77%, #232323 100%)
}

.dark .theme-modal .modal-dialog .modal-content .modal-body .modal-bg,
.dark2 .theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h4,
.dark2 .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h4 {
    color: #e7eaec
}

.dark .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close span,
.dark2 .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close span {
    color: #fff
}

.dark .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2,
.dark2 .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
    color: #f1f3f5
}

.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body,
.dark2 .theme-modal.demo-modal .modal-dialog .modal-content .modal-body {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .demo-effects>div .layout-container,
.dark2 .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .demo-effects>div .layout-container {
    box-shadow: none
}

.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .demo-effects>div .demo-text h4,
.dark2 .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .demo-effects>div .demo-text h4 {
    color: #e7eaec
}

.dark .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .title-text h3,
.dark2 .theme-modal.demo-modal .modal-dialog .modal-content .modal-body .demo-section .title-text h3 {
    color: #eaedef
}

.dark .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart #upsell_product .product-box .product-detail h6 a,
.dark2 .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart #upsell_product .product-box .product-detail h6 a {
    color: #cbcbcb
}

.dark .theme-modal.exit-modal .media .media-body h5,
.dark2 .theme-modal.exit-modal .media .media-body h5 {
    color: #dee2e6
}

.dark #quick-view .modal-dialog .modal-content .modal-body,
.dark2 #quick-view .modal-dialog .modal-content .modal-body {
    background-color: #2b2b2b;
    transition: all .3s ease
}

.dark .effect-cls:before,
.dark .effect-cls:after,
.dark2 .effect-cls:before,
.dark2 .effect-cls:after {
    filter: invert(0.83)
}

.dark .contact-page .contact-form,
.dark2 .contact-page .contact-form {
    background-color: #232323;
    border-color: #404040
}

.dark .contact-page .contact-form .form-box label,
.dark2 .contact-page .contact-form .form-box label {
    color: #ddd
}

.dark .contact-page .contact-right ul li,
.dark2 .contact-page .contact-right ul li {
    border-color: #404040;
    background-color: #232323
}

.dark .contact-page .contact-right ul li .contact-icon,
.dark2 .contact-page .contact-right ul li .contact-icon {
    background-color: #2b2b2b
}

.dark .contact-page .contact-right ul li .media-body h6,
.dark2 .contact-page .contact-right ul li .media-body h6 {
    color: #fff
}

.dark .setting-box .setting-title h4,
.dark2 .setting-box .setting-title h4 {
    color: #fff
}

.dark .vendor-profile .profile-left,
.dark2 .vendor-profile .profile-left {
    background-color: #232323;
    border-color: #404040
}

.dark .vendor-profile .profile-left .profile-image h3,
.dark2 .vendor-profile .profile-left .profile-image h3 {
    color: #e7eaec
}

.dark .vendor-profile .profile-left .profile-image a,
.dark2 .vendor-profile .profile-left .profile-image a {
    background-color: #2b2b2b
}

.dark .vendor-profile .profile-left .profile-detail,
.dark2 .vendor-profile .profile-left .profile-detail {
    border-color: #404040
}

.dark .vendor-profile .profile-left .vendor-contact,
.dark2 .vendor-profile .profile-left .vendor-contact {
    border-color: #404040
}

.dark .vendor-profile .profile-left .vendor-contact .vendor-details li svg,
.dark .vendor-profile .profile-left .vendor-contact .vendor-details li h5,
.dark2 .vendor-profile .profile-left .vendor-contact .vendor-details li svg,
.dark2 .vendor-profile .profile-left .vendor-contact .vendor-details li h5 {
    color: #ddd
}

.dark .vendor-profile .profile-left .vendor-contact .vendor-details li svg a,
.dark .vendor-profile .profile-left .vendor-contact .vendor-details li h5 a,
.dark2 .vendor-profile .profile-left .vendor-contact .vendor-details li svg a,
.dark2 .vendor-profile .profile-left .vendor-contact .vendor-details li h5 a {
    color: #ddd
}

.dark .vendor-profile .profile-left .vendor-contact h6,
.dark2 .vendor-profile .profile-left .vendor-contact h6 {
    color: #cfd4da
}

.dark .vendor-profile .collection-product-wrapper .product-top-filter,
.dark2 .vendor-profile .collection-product-wrapper .product-top-filter {
    background-color: #232323
}

.dark .vendor-profile .product-pagination,
.dark2 .vendor-profile .product-pagination {
    background-color: #232323
}

.dark .vendor-profile .page-link,
.dark2 .vendor-profile .page-link {
    background-color: #232323
}

.dark .vendor-profile .profile-title h3,
.dark2 .vendor-profile .profile-title h3 {
    color: #eaedef
}

.dark .vendor-profile .profile-title h4,
.dark2 .vendor-profile .profile-title h4 {
    color: #e7eaec
}

.dark .vendor-profile .collection-filter-block,
.dark2 .vendor-profile .collection-filter-block {
    border-color: rgba(0, 0, 0, 0);
    background-color: #232323
}

.dark .become-vendor,
.dark2 .become-vendor {
    background-color: #232323
}

.dark .become-vendor .step-bg .step-box,
.dark2 .become-vendor .step-bg .step-box {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .become-vendor .step-bg .step-box .steps,
.dark2 .become-vendor .step-bg .step-box .steps {
    background-color: #232323
}

.dark .user-dashboard-section .welcome-msg h4,
.dark2 .user-dashboard-section .welcome-msg h4 {
    color: #fff
}

.dark .user-dashboard-section .wallet-point-box .total-detail .point-ratio,
.dark2 .user-dashboard-section .wallet-point-box .total-detail .point-ratio {
    background-color: #2b2b2b
}

.dark .user-dashboard-section .wallet-point-box .total-detail .point-ratio .counter,
.dark2 .user-dashboard-section .wallet-point-box .total-detail .point-ratio .counter {
    color: #fff
}

.dark .user-dashboard-section .faq-content .tab-content .tab-pane .box-loader .loader-wrapper,
.dark2 .user-dashboard-section .faq-content .tab-content .tab-pane .box-loader .loader-wrapper {
    background-color: #232323;
    border-color: #404040
}

.dark .notification-list li,
.dark2 .notification-list li {
    border-color: #404040;
    background-color: #2b2b2b
}

.dark .notification-list li.unread,
.dark2 .notification-list li.unread {
    border: 1px solid var(--theme-color)
}

.dark .notification-list li.unread h5,
.dark2 .notification-list li.unread h5 {
    color: #ddd
}

.dark .notification-list li h5,
.dark2 .notification-list li h5 {
    color: #dee2e6
}

.dark .download-dropdown-menu,
.dark2 .download-dropdown-menu {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .download-dropdown-menu .dropdown-item,
.dark2 .download-dropdown-menu .dropdown-item {
    color: #ddd
}

.dark .download-dropdown-menu .dropdown-item+.dropdown-item,
.dark2 .download-dropdown-menu .dropdown-item+.dropdown-item {
    border-color: #404040
}

.dark .custom-select-box .box-content,
.dark2 .custom-select-box .box-content {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .custom-select-box .box-content ul::-webkit-scrollbar,
.dark2 .custom-select-box .box-content ul::-webkit-scrollbar {
    background-color: #404040
}

.dark .custom-select-box .box-content ul li,
.dark2 .custom-select-box .box-content ul li {
    color: #ddd !important
}

.dark .custom-select-box .box-content ul li+li,
.dark2 .custom-select-box .box-content ul li+li {
    border-color: #404040
}

.dark .custom-select-box .box-content input,
.dark2 .custom-select-box .box-content input {
    border-color: #404040
}

.dark .country-input .custom-select-box .form-select,
.dark2 .country-input .custom-select-box .form-select {
    background-color: #232323;
    border-color: #404040;
    color: #ddd
}

.dark .dashboard-section .title-header h5 svg,
.dark2 .dashboard-section .title-header h5 svg {
    color: #fff
}

.dark .dashboard-section .wallet-table .table-responsive,
.dark2 .dashboard-section .wallet-table .table-responsive {
    border-color: #404040
}

.dark .dashboard-section .wallet-table .order-table td h6,
.dark2 .dashboard-section .wallet-table .order-table td h6 {
    color: #fff
}

.dark .dashboard-section .wallet-table .order-table tr a,
.dark2 .dashboard-section .wallet-table .order-table tr a {
    color: #ddd
}

.dark .dashboard-section .wallet-table .order-table td,
.dark .dashboard-section .wallet-table .order-table th,
.dark2 .dashboard-section .wallet-table .order-table td,
.dark2 .dashboard-section .wallet-table .order-table th {
    border-color: #404040
}

.dark .dashboard-section .wallet-point-box .total-image,
.dark2 .dashboard-section .wallet-point-box .total-image {
    background-color: #2b2b2b
}

.dark .dashboard-section .wallet-point-box .total-detail .total-box h5,
.dark2 .dashboard-section .wallet-point-box .total-detail .total-box h5 {
    color: #eaedef
}

.dark .dashboard-section .wallet-point-box .total-detail .total-box h3,
.dark2 .dashboard-section .wallet-point-box .total-detail .total-box h3 {
    color: #fff
}

.dark .dashboard-section .top-sec-2,
.dark2 .dashboard-section .top-sec-2 {
    border-color: #404040
}

.dark .dashboard-section .themeform-auth .form-label,
.dark2 .dashboard-section .themeform-auth .form-label {
    color: #ddd
}

.dark .dashboard-section .themeform-auth .form-control,
.dark2 .dashboard-section .themeform-auth .form-control {
    border-color: #404040
}

.dark .dashboard-section .top-sec h3,
.dark2 .dashboard-section .top-sec h3 {
    color: #fff
}

.dark .dashboard-section .counter-section,
.dark2 .dashboard-section .counter-section {
    background-color: #232323;
    border-color: #404040
}

.dark .dashboard-section .dashboard-sidebar,
.dark2 .dashboard-section .dashboard-sidebar {
    background-color: #232323;
    border-color: #404040
}

.dark .dashboard-section .dashboard-sidebar .profile-top,
.dark2 .dashboard-section .dashboard-sidebar .profile-top {
    border-color: #404040
}

.dark .dashboard-section .dashboard-sidebar .profile-top .profile-image h4,
.dark2 .dashboard-section .dashboard-sidebar .profile-top .profile-image h4 {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round,
.dark2 .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round {
    background-color: #2b2b2b
}

.dark .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon,
.dark2 .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-icon {
    background-color: #404040;
    border-color: #404040
}

.dark .dashboard-section .dashboard-sidebar .profile-top .user-icon-2,
.dark2 .dashboard-section .dashboard-sidebar .profile-top .user-icon-2 {
    background-color: #404040;
    border-color: #404040;
    color: #ddd
}

.dark .dashboard-section .dashboard-sidebar .profile-top .profile-detail,
.dark2 .dashboard-section .dashboard-sidebar .profile-top .profile-detail {
    border-color: #404040
}

.dark .dashboard-section .dashboard-sidebar .profile-top .profile-detail h6,
.dark2 .dashboard-section .dashboard-sidebar .profile-top .profile-detail h6 {
    color: #ddd
}

.dark .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs,
.dark2 .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
    background-color: #232323
}

.dark .dashboard-section .address-book-section .select-box .address-box,
.dark2 .dashboard-section .address-book-section .select-box .address-box {
    background-color: #2b2b2b
}

.dark .dashboard-section .address-book-section .select-box .address-box .top h6,
.dark2 .dashboard-section .address-book-section .select-box .address-box .top h6 {
    color: #ddd
}

.dark .dashboard-section .address-book-section .select-box .address-box .middle .address p,
.dark .dashboard-section .address-book-section .select-box .address-box .middle .number p,
.dark2 .dashboard-section .address-book-section .select-box .address-box .middle .address p,
.dark2 .dashboard-section .address-book-section .select-box .address-box .middle .number p {
    color: #fff
}

.dark .dashboard-section .address-book-section .select-box .address-box .bottom,
.dark2 .dashboard-section .address-book-section .select-box .address-box .bottom {
    border-color: #404040
}

.dark .dashboard-section .address-book-section .select-box .address-box .bottom .bottom_btn,
.dark2 .dashboard-section .address-book-section .select-box .address-box .bottom .bottom_btn {
    background-color: #232323;
    color: #fff
}

.dark .dashboard-section .faq-content .card,
.dark2 .dashboard-section .faq-content .card {
    background-color: #232323;
    border-color: #404040
}

.dark .dashboard-section .faq-content .dashboard-table,
.dark2 .dashboard-section .faq-content .dashboard-table {
    background-color: rgba(0, 0, 0, 0)
}

.dark .dashboard-section .faq-content .dashboard-table .table thead th,
.dark2 .dashboard-section .faq-content .dashboard-table .table thead th {
    background-color: #232323
}

.dark .dashboard-section .faq-content .dashboard-table .user-download-table .dropdown .dropdown-toggle,
.dark2 .dashboard-section .faq-content .dashboard-table .user-download-table .dropdown .dropdown-toggle {
    background-color: #2b2b2b;
    border-color: #404040;
    color: #ddd
}

.dark .dashboard-section .faq-content .dashboard-table .user-download-table tbody td,
.dark2 .dashboard-section .faq-content .dashboard-table .user-download-table tbody td {
    border-color: #404040
}

.dark .dashboard-section .faq-content .download-detail,
.dark2 .dashboard-section .faq-content .download-detail {
    border-color: #404040;
    background-color: #232323
}

.dark .dashboard-section .faq-content .download-detail form .input-group .form-control,
.dark2 .dashboard-section .faq-content .download-detail form .input-group .form-control {
    border-color: #404040
}

.dark .dashboard-section .faq-content .tab-pane .card-body .tracking-total ul li:last-child,
.dark2 .dashboard-section .faq-content .tab-pane .card-body .tracking-total ul li:last-child {
    border-color: #404040
}

.dark .dashboard-section .faq-content .tab-pane .card-body .customer-detail ul li h4,
.dark2 .dashboard-section .faq-content .tab-pane .card-body .customer-detail ul li h4 {
    color: #ddd
}

.dark .dashboard-section .faq-content .tab-pane .card-body .order-title,
.dark2 .dashboard-section .faq-content .tab-pane .card-body .order-title {
    color: #fff;
    border-color: #404040
}

.dark .dashboard-section .counter-section .counter-box,
.dark2 .dashboard-section .counter-section .counter-box {
    background-color: #2b2b2b
}

.dark .dashboard-section .counter-section .counter-box h5,
.dark2 .dashboard-section .counter-section .counter-box h5 {
    color: #ddd
}

.dark .dashboard-section .box-head h4,
.dark2 .dashboard-section .box-head h4 {
    color: #fff
}

.dark .dashboard-section .dashboard-table h3,
.dark2 .dashboard-section .dashboard-table h3 {
    color: #eaedef
}

.dark .dashboard-section .dashboard-table .table th,
.dark .dashboard-section .dashboard-table .table td,
.dark2 .dashboard-section .dashboard-table .table th,
.dark2 .dashboard-section .dashboard-table .table td {
    color: #fff
}

.dark .dashboard-section .dashboard-box .dashboard-detail ul li .details .left h6,
.dark2 .dashboard-section .dashboard-box .dashboard-detail ul li .details .left h6 {
    color: #9c9c9c
}

.dark .faq-tab .nav-tabs .nav-item .nav-link,
.dark2 .faq-tab .nav-tabs .nav-item .nav-link {
    background-color: #232323;
    color: #cfd4da
}

.dark .faq-tab .nav-tabs .nav-item .nav-link.active,
.dark2 .faq-tab .nav-tabs .nav-item .nav-link.active {
    background-color: #232323;
    color: var(--theme-color)
}

.dark .faq-tab .nav-tabs .nav-item .nav-link.active svg,
.dark2 .faq-tab .nav-tabs .nav-item .nav-link.active svg {
    background-color: var(--theme-color)
}

.dark .faq-tab .nav-tabs .nav-item .nav-link:hover,
.dark2 .faq-tab .nav-tabs .nav-item .nav-link:hover {
    color: var(--theme-color)
}

.dark .faq-tab .nav-tabs .nav-item .nav-link svg,
.dark2 .faq-tab .nav-tabs .nav-item .nav-link svg {
    background-color: #2b2b2b
}

.dark .faq-tab .nav-tabs .logout-cls,
.dark2 .faq-tab .nav-tabs .logout-cls {
    border-color: #404040
}

.dark .category-img-wrapper .category-wrap .category-content h3,
.dark2 .category-img-wrapper .category-wrap .category-content h3 {
    color: #eaedef
}

.dark .add_to_cart,
.dark2 .add_to_cart {
    background-color: #2b2b2b
}

.dark .add_to_cart ::-webkit-scrollbar-thumb,
.dark2 .add_to_cart ::-webkit-scrollbar-thumb {
    background: #404040
}

.dark .add_to_cart ::-webkit-scrollbar-track,
.dark2 .add_to_cart ::-webkit-scrollbar-track {
    background: #2b2b2b
}

.dark .add_to_cart .cart-inner,
.dark2 .add_to_cart .cart-inner {
    background-color: #2b2b2b
}

.dark .add_to_cart .cart-inner .pere-text-box,
.dark2 .add_to_cart .cart-inner .pere-text-box {
    border-color: #404040
}

.dark .add_to_cart .cart-inner .pere-text-box .progress,
.dark2 .add_to_cart .cart-inner .pere-text-box .progress {
    background-color: #232323
}

.dark .add_to_cart .cart-inner .cart_top,
.dark2 .add_to_cart .cart-inner .cart_top {
    border-color: #404040
}

.dark .add_to_cart .cart-inner .cart_top h3,
.dark2 .add_to_cart .cart-inner .cart_top h3 {
    color: #eaedef
}

.dark .add_to_cart .cart-inner .cart_top .close-cart,
.dark2 .add_to_cart .cart-inner .cart_top .close-cart {
    background-color: #232323;
    border-color: #404040
}

.dark .add_to_cart .cart-inner .cart_top .close-cart svg,
.dark2 .add_to_cart .cart-inner .cart_top .close-cart svg {
    color: #cbcbcb
}

.dark .add_to_cart .cart-inner .cart_media li+li,
.dark2 .add_to_cart .cart-inner .cart_media li+li {
    border-color: #404040
}

.dark .add_to_cart .cart-inner .cart_media li .total,
.dark2 .add_to_cart .cart-inner .cart_media li .total {
    border-color: #404040
}

.dark .add_to_cart .cart-inner .cart_media li .media .media-body .gram,
.dark2 .add_to_cart .cart-inner .cart_media li .media .media-body .gram {
    color: #dee2e6
}

.dark .add_to_cart .cart-inner .cart_media li .media .media-body h4,
.dark2 .add_to_cart .cart-inner .cart_media li .media .media-body h4 {
    color: #e7eaec
}

.dark .add_to_cart .cart-inner .cart_media li .media img,
.dark2 .add_to_cart .cart-inner .cart_media li .media img {
    background-color: #232323;
    border-color: #404040
}

.dark .add_to_cart .cart-inner .cart_media li .total h5,
.dark2 .add_to_cart .cart-inner .cart_media li .total h5 {
    color: #ddd
}

.dark .add_to_cart .cart-inner .cart_media .close-circle button,
.dark2 .add_to_cart .cart-inner .cart_media .close-circle button {
    background-color: #232323;
    border-color: #404040
}

.dark .add_to_cart .cart-inner .cart_media .cart_total,
.dark2 .add_to_cart .cart-inner .cart_media .cart_total {
    border-color: #404040;
    background-color: #232323
}

.dark .add_to_cart .cart-inner .qty-box,
.dark2 .add_to_cart .cart-inner .qty-box {
    background-color: #232323;
    border-color: #404040
}

.dark .add_to_cart.top .cart-inner .cart_top,
.dark .add_to_cart.bottom .cart-inner .cart_top,
.dark2 .add_to_cart.top .cart-inner .cart_top,
.dark2 .add_to_cart.bottom .cart-inner .cart_top {
    background-color: #232323
}

.dark .theme-settings ul li,
.dark2 .theme-settings ul li {
    background-color: #232323;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .54);
    color: #fff
}

.dark .theme-settings ul li a,
.dark2 .theme-settings ul li a {
    color: #fff
}

.dark .theme-settings ul li .backend-btn a,
.dark2 .theme-settings ul li .backend-btn a {
    color: #fff
}

.dark .cookie-bar.left-bottom,
.dark2 .cookie-bar.left-bottom {
    box-shadow: 0 19px 38px rgba(0, 0, 0, .12), 0 15px 12px rgba(0, 0, 0, .13);
    background-color: #2b2b2b
}

.dark .cookie-bar.left-bottom p,
.dark2 .cookie-bar.left-bottom p {
    color: #cfd4da
}

.dark .cookie-bar.left-bottom .btn-close i,
.dark2 .cookie-bar.left-bottom .btn-close i {
    color: #cbcbcb
}

.dark .service-w-bg .service-block .media,
.dark2 .service-w-bg .service-block .media {
    background-color: #232323
}

.dark .title-basic .timer,
.dark2 .title-basic .timer {
    background-color: #232323
}

.dark .title-basic .timer p,
.dark2 .title-basic .timer p {
    color: #cfd4da
}

.dark .loader-wrapper,
.dark2 .loader-wrapper {
    background-color: #2b2b2b
}

.dark .loader-wrapper .loader:after,
.dark2 .loader-wrapper .loader:after {
    border-color: #2b2b2b
}

.dark .product-parallax .theme-card .offer-slider>div .media,
.dark2 .product-parallax .theme-card .offer-slider>div .media {
    background-color: #2b2b2b
}

.dark .product-parallax .theme-card .offer-slider .media,
.dark2 .product-parallax .theme-card .offer-slider .media {
    background-color: #2b2b2b
}

.dark .load-more-button .btn.loading,
.dark2 .load-more-button .btn.loading {
    border-color: #404040 #404040 #404040 #999;
    background: #2b2b2b
}

.dark .footer-style-1 .footer-social i,
.dark2 .footer-style-1 .footer-social i {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .category-width .category-block .category-image img,
.dark2 .category-width .category-block .category-image img {
    filter: invert(0.6)
}

.dark .category-width .category-block:hover .category-image img,
.dark2 .category-width .category-block:hover .category-image img {
    filter: invert(1)
}

.dark .image-swatch li img,
.dark2 .image-swatch li img {
    border-color: #404040
}

.dark .image-swatch li.active img,
.dark2 .image-swatch li.active img {
    border-color: var(--theme-color)
}

.dark .gradient-category .gradient-border .img-sec,
.dark2 .gradient-category .gradient-border .img-sec {
    background-color: #232323
}

.dark .gradient-category .gradient-border .img-sec:after,
.dark2 .gradient-category .gradient-border .img-sec:after {
    filter: invert(0.9)
}

.dark .deal-category .deal-content,
.dark2 .deal-category .deal-content {
    background-color: #2b2b2b
}

.dark .mobile-menu,
.dark2 .mobile-menu {
    background-color: #232323
}

.dark .mobile-menu ul li.active i,
.dark .mobile-menu ul li.active span,
.dark2 .mobile-menu ul li.active i,
.dark2 .mobile-menu ul li.active span {
    color: #fff
}

.dark .mobile-menu ul li a svg,
.dark2 .mobile-menu ul li a svg {
    color: #ddd
}

.dark .mobile-menu ul li a span,
.dark2 .mobile-menu ul li a span {
    color: rgba(221, 221, 221, .8)
}

.dark.bg_cls .basic-product.theme-product-11,
.dark2.bg_cls .basic-product.theme-product-11 {
    background-color: #2b2b2b
}

.dark.bg_cls .service-block1,
.dark2.bg_cls .service-block1 {
    background-color: #232323;
    border-color: #404040
}

.dark .title1.title5 hr[role=tournament6]::before,
.dark2 .title1.title5 hr[role=tournament6]::before {
    background-color: #2b2b2b
}

.dark .brand-slider-box .logo-block,
.dark2 .brand-slider-box .logo-block {
    background-color: #232323;
    border-color: #404040
}

.dark .skeleton-basic-product .img-wrapper .product-image-box,
.dark2 .skeleton-basic-product .img-wrapper .product-image-box {
    background: linear-gradient(90deg, rgba(64, 64, 64, 0.85) 8%, #404040 18%, rgba(64, 64, 64, 0.85) 33%)
}

.dark .skeleton-basic-product .product-detail .product-title,
.dark .skeleton-basic-product .product-detail h6,
.dark .skeleton-basic-product .product-detail .price,
.dark2 .skeleton-basic-product .product-detail .product-title,
.dark2 .skeleton-basic-product .product-detail h6,
.dark2 .skeleton-basic-product .product-detail .price {
    background: linear-gradient(90deg, rgba(64, 64, 64, 0.85) 8%, #404040 18%, rgba(64, 64, 64, 0.85) 33%)
}

.dark .left-header .menu-left ul li a,
.dark2 .left-header .menu-left ul li a {
    color: #ddd;
    background-color: #2b2b2b
}

.dark .product-tab-description p span,
.dark .product-tab-description p strong,
.dark .product-tab-description h5 span,
.dark .product-tab-description h5 strong,
.dark2 .product-tab-description p span,
.dark2 .product-tab-description p strong,
.dark2 .product-tab-description h5 span,
.dark2 .product-tab-description h5 strong {
    color: rgba(255, 255, 255, .8) !important;
    background-color: rgba(0, 0, 0, 0) !important
}

.dark .blog-wo-bg .brand-slider-box .logo-block,
.dark2 .blog-wo-bg .brand-slider-box .logo-block {
    background-color: rgba(0, 0, 0, 0)
}

.dark.christmas header.sticky,
.dark2.christmas header.sticky {
    background-color: #232323
}

.dark.christmas header:not(.sticky) .navbar-expand-xl .navbar-nav>.nav-item>a:hover,
.dark2.christmas header:not(.sticky) .navbar-expand-xl .navbar-nav>.nav-item>a:hover {
    background-color: rgba(0, 0, 0, 0)
}

.dark .basic-product .price,
.dark2 .basic-product .price {
    color: #fff
}

.dark .basic-product .addtocart_btn .qty-box .input-group,
.dark2 .basic-product .addtocart_btn .qty-box .input-group {
    border-color: #404040;
    background-color: #232323
}

.dark .basic-product .addtocart_btn .qty-box .input-group button,
.dark2 .basic-product .addtocart_btn .qty-box .input-group button {
    border-color: #404040;
    background-color: #2b2b2b
}

.dark .basic-product .circle li button,
.dark2 .basic-product .circle li button {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .basic-product .product-title,
.dark2 .basic-product .product-title {
    color: #fff
}

.dark .basic-product .cart-info button,
.dark .basic-product .cart-info a,
.dark2 .basic-product .cart-info button,
.dark2 .basic-product .cart-info a {
    background-color: #2b2b2b
}

.dark .basic-product .cart-info button.theme-color i,
.dark .basic-product .cart-info a.theme-color i,
.dark2 .basic-product .cart-info button.theme-color i,
.dark2 .basic-product .cart-info a.theme-color i {
    color: var(--theme-color)
}

.dark .basic-product .cart-info button:first-child:active i,
.dark .basic-product .cart-info a:first-child:active i,
.dark2 .basic-product .cart-info button:first-child:active i,
.dark2 .basic-product .cart-info a:first-child:active i {
    color: var(--theme-color)
}

.dark .basic-product .cart-info button i,
.dark .basic-product .cart-info a i,
.dark2 .basic-product .cart-info button i,
.dark2 .basic-product .cart-info a i {
    color: #ddd
}

.dark .basic-product .cart-info button svg,
.dark .basic-product .cart-info a svg,
.dark2 .basic-product .cart-info button svg,
.dark2 .basic-product .cart-info a svg {
    color: #fff
}

.dark .basic-product .timer,
.dark2 .basic-product .timer {
    background-color: rgba(43, 43, 43, .92)
}

.dark .basic-product .img-wrapper,
.dark2 .basic-product .img-wrapper {
    background-color: #232323
}

.dark .basic-product .img-wrapper .rating-label,
.dark2 .basic-product .img-wrapper .rating-label {
    background-color: #2b2b2b;
    color: #fff
}

.dark .basic-product .img-wrapper .addto-cart-bottom,
.dark2 .basic-product .img-wrapper .addto-cart-bottom {
    background-color: #2b2b2b;
    color: #ddd
}

.dark .basic-product .img-wrapper .addto-cart-bottom .btn,
.dark2 .basic-product .img-wrapper .addto-cart-bottom .btn {
    color: #fff
}

.dark .basic-product .img-wrapper .trending-label li:nth-child(2),
.dark2 .basic-product .img-wrapper .trending-label li:nth-child(2) {
    background-color: #2b2b2b
}

.dark .basic-product .img-wrapper .unit-label,
.dark2 .basic-product .img-wrapper .unit-label {
    background-color: #2b2b2b
}

.dark .basic-product .img-wrapper .quick-option,
.dark2 .basic-product .img-wrapper .quick-option {
    background-color: #232323
}

.dark .basic-product .product-right .form-select,
.dark2 .basic-product .product-right .form-select {
    background-color: #232323;
    border-color: #404040;
    color: #ddd;
    background-image: url(../../../assets/svg/dropdown.svg)
}

.dark .basic-product .add-cart-btn,
.dark2 .basic-product .add-cart-btn {
    color: #ddd;
    background-color: #404040
}

.dark .basic-product .product-action,
.dark2 .basic-product .product-action {
    border-color: #404040
}

.dark .basic-product .product-action button,
.dark2 .basic-product .product-action button {
    color: #ddd;
    background-color: #404040
}

.dark .basic-product .general-variant li,
.dark2 .basic-product .general-variant li {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .basic-product .general-variant li button,
.dark2 .basic-product .general-variant li button {
    color: #fff
}

.dark .basic-product .general-variant li button:hover,
.dark2 .basic-product .general-variant li button:hover {
    color: #fff
}

.dark .basic-product .general-variant .active,
.dark2 .basic-product .general-variant .active {
    border-color: #232323
}

.dark .basic-product .general-variant.color li.active,
.dark2 .basic-product .general-variant.color li.active {
    border-color: #404040
}

.dark .basic-product .general-variant.color li.active button,
.dark2 .basic-product .general-variant.color li.active button {
    border-color: #404040
}

.dark .basic-product .general-variant.image li a img,
.dark2 .basic-product .general-variant.image li a img {
    border-color: #404040
}

.dark .basic-product .general-variant.circle li button,
.dark2 .basic-product .general-variant.circle li button {
    border-color: #404040
}

.dark .basic-product .product-detail .digital-price .form-check .form-check-input,
.dark2 .basic-product .product-detail .digital-price .form-check .form-check-input {
    background-color: #232323;
    border-color: #404040
}

.dark .basic-product .product-detail .digital-price .form-check .form-check-input:checked,
.dark2 .basic-product .product-detail .digital-price .form-check .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.dark .basic-product .product-detail select,
.dark2 .basic-product .product-detail select {
    background-color: #232323;
    border-color: #404040;
    color: #ddd
}

.dark .basic-product.theme-product-1,
.dark2 .basic-product.theme-product-1 {
    border-color: #404040
}

.dark .basic-product.theme-product-1 .product-detail>div,
.dark2 .basic-product.theme-product-1 .product-detail>div {
    border-color: #404040
}

.dark .basic-product.theme-product-1 .cart-info :not(.btn-check)+.btn:active,
.dark2 .basic-product.theme-product-1 .cart-info :not(.btn-check)+.btn:active {
    background-color: #232323
}

.dark .basic-product.theme-product-2,
.dark2 .basic-product.theme-product-2 {
    background-color: #232323;
    border-color: #404040
}

.dark .basic-product.theme-product-2 .cart-detail,
.dark2 .basic-product.theme-product-2 .cart-detail {
    border-color: #404040
}

.dark .basic-product.theme-product-2 .cart-detail li+li,
.dark2 .basic-product.theme-product-2 .cart-detail li+li {
    border-color: #404040
}

.dark .basic-product.theme-product-2 .cart-detail li button,
.dark .basic-product.theme-product-2 .cart-detail li a,
.dark2 .basic-product.theme-product-2 .cart-detail li button,
.dark2 .basic-product.theme-product-2 .cart-detail li a {
    color: #ddd
}

.dark .basic-product.theme-product-2 .img-wrapper,
.dark2 .basic-product.theme-product-2 .img-wrapper {
    background-color: #2b2b2b
}

.dark .basic-product.theme-product-2 .img-wrapper::after,
.dark2 .basic-product.theme-product-2 .img-wrapper::after {
    background-color: rgba(34, 34, 34, .77)
}

.dark .basic-product.theme-product-2 .product-detail .details li,
.dark2 .basic-product.theme-product-2 .product-detail .details li {
    color: #ddd
}

.dark .basic-product.theme-product-2 .product-detail .add-wish,
.dark2 .basic-product.theme-product-2 .product-detail .add-wish {
    background-color: #404040
}

.dark .basic-product.theme-product-3,
.dark2 .basic-product.theme-product-3 {
    border-color: #404040
}

.dark .basic-product.theme-product-5 .cart-info,
.dark2 .basic-product.theme-product-5 .cart-info {
    background-color: #404040
}

.dark .basic-product.theme-product-6,
.dark2 .basic-product.theme-product-6 {
    border-color: #404040
}

.dark .basic-product.theme-product-6 .cart-info,
.dark2 .basic-product.theme-product-6 .cart-info {
    background-color: #2b2b2b
}

.dark .basic-product.theme-product-7,
.dark2 .basic-product.theme-product-7 {
    background-color: #232323;
    border-color: #404040
}

.dark .basic-product.theme-product-7 .img-wrapper,
.dark2 .basic-product.theme-product-7 .img-wrapper {
    background-color: #2b2b2b
}

.dark .basic-product.theme-product-8,
.dark2 .basic-product.theme-product-8 {
    background-color: #2b2b2b;
    border-color: #404040
}

.dark .basic-product.theme-product-8 .cart-info a svg,
.dark2 .basic-product.theme-product-8 .cart-info a svg {
    color: var(--theme-color)
}

.dark .basic-product.theme-product-9,
.dark2 .basic-product.theme-product-9 {
    background-color: #232323;
    border-color: #404040
}

.dark .basic-product.theme-product-9 .img-wrapper,
.dark2 .basic-product.theme-product-9 .img-wrapper {
    background-color: #2b2b2b
}

.dark .basic-product.theme-product-9 .discount-value,
.dark2 .basic-product.theme-product-9 .discount-value {
    border-color: #404040;
    color: #ddd
}

.dark .basic-product.theme-product-9 .discount-value .offer-icon,
.dark2 .basic-product.theme-product-9 .discount-value .offer-icon {
    color: #ddd
}

.dark .basic-product.theme-product-10 .product-title,
.dark2 .basic-product.theme-product-10 .product-title {
    color: #fff
}

.dark .basic-product.theme-product-11,
.dark2 .basic-product.theme-product-11 {
    border-color: #404040
}

.dark .basic-product.theme-product-11 .abs-product,
.dark2 .basic-product.theme-product-11 .abs-product {
    background-color: #2b2b2b
}

.dark .collection-filter .custom-nav-tab .nav-item,
.dark2 .collection-filter .custom-nav-tab .nav-item {
    border-color: #404040;
    background-color: #232323
}

.dark .collection-filter .custom-nav-tab .nav-item .nav-link,
.dark2 .collection-filter .custom-nav-tab .nav-item .nav-link {
    color: #ddd
}

.dark .collection-filter .custom-nav-tab .nav-item .nav-link img,
.dark2 .collection-filter .custom-nav-tab .nav-item .nav-link img {
    filter: invert(1) brightness(100)
}

.dark .category-slider .category-box:hover,
.dark2 .category-slider .category-box:hover {
    background-color: var(--theme-color)
}

.dark .category-slider .category-box:hover h5,
.dark2 .category-slider .category-box:hover h5 {
    color: #fff
}

.dark .category-slider .category-box img,
.dark2 .category-slider .category-box img {
    filter: invert(1) brightness(100)
}

.dark .question-answer li,
.dark2 .question-answer li {
    border-color: #404040
}

.dark .question-answer li h6,
.dark2 .question-answer li h6 {
    color: #fff
}

.dark .question-answer li .answer-box p,
.dark2 .question-answer li .answer-box p {
    color: #ddd
}

.dark .question-answer li .question-box h5,
.dark2 .question-answer li .question-box h5 {
    border-color: #404040;
    background-color: #262626
}

.dark .question-answer li .question-box .link-dislike-box li a span,
.dark2 .question-answer li .question-box .link-dislike-box li a span {
    color: rgba(221, 221, 221, .67)
}

.dark .shop-filter-category,
.dark2 .shop-filter-category {
    border-color: #404040
}

.dark .shop-filter-category .filter-list,
.dark2 .shop-filter-category .filter-list {
    border-color: #404040
}

.dark .shop-filter-category .filter-list li,
.dark2 .shop-filter-category .filter-list li {
    background-color: #2b2b2b
}

.dark .shop-filter-category .filter-list li a,
.dark .shop-filter-category .filter-list li i,
.dark2 .shop-filter-category .filter-list li a,
.dark2 .shop-filter-category .filter-list li i {
    color: #ddd
}

.dark .shop-filter-category .filter-title h2,
.dark2 .shop-filter-category .filter-title h2 {
    color: #fff
}

.dark .search-modal .search-title,
.dark2 .search-modal .search-title {
    color: #fff
}

.dark .search-modal .modal-header h3,
.dark2 .search-modal .modal-header h3 {
    color: #fff
}

.dark .search-modal .search-category-box li.text-secondary,
.dark2 .search-modal .search-category-box li.text-secondary {
    color: #fff !important
}

.dark .search-modal .modal-body .search-box svg,
.dark .search-modal .modal-body .search-box .form-control,
.dark2 .search-modal .modal-body .search-box svg,
.dark2 .search-modal .modal-body .search-box .form-control {
    border-color: #3c3c3c
}

.dark .product-sidebar-box .collection-filter-block .product-service,
.dark2 .product-sidebar-box .collection-filter-block .product-service {
    border-color: #404040
}

.dark .product-sidebar-box .collection-filter-block.accordion,
.dark2 .product-sidebar-box .collection-filter-block.accordion {
    border-color: #3c3c3c
}

.dark .product-sidebar-box .theme-card .offer-slider .media img,
.dark2 .product-sidebar-box .theme-card .offer-slider .media img {
    background-color: #232323;
    border-color: #404040
}

.dark .wo-box .service-block1,
.dark2 .wo-box .service-block1 {
    background-color: rgba(0, 0, 0, 0)
}

.dark .setting-box .accordion-button .setting-description-text .setting-content,
.dark2 .setting-box .accordion-button .setting-description-text .setting-content {
    color: #cecece
}

.dark .filter-bottom-title:after,
.dark2 .filter-bottom-title:after {
    color: #ddd
}

.dark .variation-modal .variation-title .main-title a,
.dark2 .variation-modal .variation-title .main-title a {
    color: #fff
}

.dark .variation-modal .variation-qty-button,
.dark2 .variation-modal .variation-qty-button {
    border-color: #404040
}

.dark .variation-modal .variation-qty-button .qty-section .qty-box .input-group,
.dark2 .variation-modal .variation-qty-button .qty-section .qty-box .input-group {
    background-color: #232323
}

.dark .variation-modal .variation-qty-button .qty-section .qty-box .input-group button,
.dark2 .variation-modal .variation-qty-button .qty-section .qty-box .input-group button {
    background-color: #2b2b2b !important
}

.dark .variation-modal .variation-qty-button .qty-section .qty-box .input-group button svg,
.dark2 .variation-modal .variation-qty-button .qty-section .qty-box .input-group button svg {
    color: #ddd
}

.dark .pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-label,
.dark2 .pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-label {
    color: #ddd
}

.dark .pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input,
.dark2 .pay-modal .checkout-box .payment-option .payment-category .form-check .form-check-input {
    background-color: #232323;
    border-color: #404040
}

.dark.skeleton-body .banner-skeleton .skeleton-content,
.dark2.skeleton-body .banner-skeleton .skeleton-content {
    background-color: #151515
}

.dark.skeleton-body .blog-wo-bg .brand-slider-box .logo-block,
.dark2.skeleton-body .blog-wo-bg .brand-slider-box .logo-block {
    background-color: #151515
}

.dark.skeleton-body .beauty-about .skeleton-loader-img,
.dark2.skeleton-body .beauty-about .skeleton-loader-img {
    background-color: #3c3c3c
}

.dark.skeleton-body.bg_cls .home-skeleton,
.dark2.skeleton-body.bg_cls .home-skeleton {
    background-color: #1f1f1f
}

@media(min-width: 1200px) {

    .dark header .navbar-expand-xl .dropdown-menu,
    .dark2 header .navbar-expand-xl .dropdown-menu {
        background-color: #2b2b2b
    }

    .dark header .navbar-expand-xl .dropdown-menu .dropdown-item,
    .dark2 header .navbar-expand-xl .dropdown-menu .dropdown-item {
        color: #ddd
    }

    .dark header .navbar-expand-xl .dropdown-menu .dropdown-item:active,
    .dark2 header .navbar-expand-xl .dropdown-menu .dropdown-item:active {
        color: #fff
    }

    .dark header .navbar-expand-xl .dropdown-menu .dropdown-column .menu-no-data,
    .dark2 header .navbar-expand-xl .dropdown-menu .dropdown-column .menu-no-data {
        background-color: #232323
    }

    .dark header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header,
    .dark2 header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header {
        color: #ddd
    }

    .dark header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item:hover,
    .dark header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item:focus,
    .dark2 header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item:hover,
    .dark2 header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item:focus {
        color: #fff
    }

    .dark header .navbar.navbar-expand-xl .navbar-nav .nav-item:hover>.nav-link:not(.disabled),
    .dark2 header .navbar.navbar-expand-xl .navbar-nav .nav-item:hover>.nav-link:not(.disabled) {
        color: var(--theme-color)
    }

    .dark header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a:hover,
    .dark2 header .navbar.navbar-expand-xl .navbar-nav .nav-item.dropdown>a:hover {
        color: var(--theme-color)
    }
}

@media(max-width: 1430px) {

    .dark header.left-header .sidenav .sidebar-back,
    .dark2 header.left-header .sidenav .sidebar-back {
        color: #cfd4da;
        border-color: #404040
    }

    .dark .collection-product-wrapper .product-top-filter .product-filter-content .collection-view,
    .dark2 .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        border-color: #404040
    }

    .dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter,
    .dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        border-color: #404040
    }
}

@media(max-width: 1199px) {

    .dark .sm-horizontal,
    .dark2 .sm-horizontal {
        background-color: #2b2b2b;
        border-color: #404040
    }

    .dark .sm-horizontal .mobile-back,
    .dark2 .sm-horizontal .mobile-back {
        border-color: #404040;
        color: #e7eaec
    }

    .dark .sm-horizontal.pixelstrap ul,
    .dark2 .sm-horizontal.pixelstrap ul {
        background-color: #2b2b2b
    }

    .dark .tab-product .nav-material.nav-tabs,
    .dark2 .tab-product .nav-material.nav-tabs {
        background-color: #2b2b2b;
        border-color: #404040
    }

    .dark .tab-product.product-details-contain .nav-tabs,
    .dark .tab-product.product-details-contain .nav-tabs,
    .dark2 .tab-product.product-details-contain .nav-tabs,
    .dark2 .tab-product.product-details-contain .nav-tabs {
        border-color: #404040;
        background-color: #262626
    }

    .dark header.left-header .pixelstrap ul,
    .dark2 header.left-header .pixelstrap ul {
        background-color: #232323
    }

    .dark header.left-header.left-header-relative .pixelstrap>li>a,
    .dark2 header.left-header.left-header-relative .pixelstrap>li>a {
        background-color: #232323
    }

    .dark header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item,
    .dark2 header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item {
        color: #cbcbcb
    }

    .dark header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item::before,
    .dark2 header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item::before {
        background-color: rgba(206, 206, 206, .65)
    }

    .dark header .navbar-nav .dropdown-menu .dropdown-column .dropdown-header,
    .dark2 header .navbar-nav .dropdown-menu .dropdown-column .dropdown-header {
        color: rgba(221, 221, 221, .8)
    }

    .dark header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item,
    .dark2 header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item {
        color: #cbcbcb
    }

    .dark header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item::before,
    .dark2 header .navbar-nav .dropdown-menu-2 .dropdown-column .dropdown-item::before {
        background-color: rgba(206, 206, 206, .65)
    }

    .dark .header-style-1 .bg-light-xl,
    .dark2 .header-style-1 .bg-light-xl {
        background-color: #232323 !important
    }

    .dark .header-style-5 .bottom-part .pixelstrap>li>a,
    .dark2 .header-style-5 .bottom-part .pixelstrap>li>a {
        color: #cbcbcb
    }

    .dark .header-style-5 .bottom-part .pixelstrap>li>a:hover,
    .dark .header-style-5 .bottom-part .pixelstrap>li>a:focus,
    .dark .header-style-5 .bottom-part .pixelstrap>li>a:active,
    .dark2 .header-style-5 .bottom-part .pixelstrap>li>a:hover,
    .dark2 .header-style-5 .bottom-part .pixelstrap>li>a:focus,
    .dark2 .header-style-5 .bottom-part .pixelstrap>li>a:active {
        color: #cbcbcb
    }

    .dark .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar,
    .dark2 .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar {
        background-color: #232323
    }

    .dark .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical,
    .dark2 .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
        background-color: #232323
    }

    .dark .header-style-5.color-style .marketplace-sidebar.sidenav.fixed-sidebar,
    .dark2 .header-style-5.color-style .marketplace-sidebar.sidenav.fixed-sidebar {
        background-color: #232323
    }

    .dark .header-style-5.color-style .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical,
    .dark2 .header-style-5.color-style .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
        background-color: #232323
    }

    .dark .header-style-5.color-style.style-classic .bottom-part .container,
    .dark2 .header-style-5.color-style.style-classic .bottom-part .container {
        background-color: rgba(0, 0, 0, 0)
    }

    .dark .marketplace-sidebar.sidenav.wo-bg,
    .dark2 .marketplace-sidebar.sidenav.wo-bg {
        background-color: #232323
    }

    .dark.christmas header .navbar-nav>li>a,
    .dark2.christmas header .navbar-nav>li>a {
        color: #fff
    }
}

@media(max-width: 991px) {

    .dark .collection-filter,
    .dark2 .collection-filter {
        background-color: #232323;
        box-shadow: none
    }

    .dark .collection-product-wrapper .product-top-filter,
    .dark2 .collection-product-wrapper .product-top-filter {
        background-color: rgba(0, 0, 0, 0)
    }

    .dark .collection-product-wrapper .product-top-filter .product-filter-content,
    .dark2 .collection-product-wrapper .product-top-filter .product-filter-content {
        background-color: #232323;
        border-color: #404040
    }

    .dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
    .dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select,
    .dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select,
    .dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select {
        border-color: #404040
    }

    .dark .collection-product-wrapper .product-top-filter .popup-filter,
    .dark2 .collection-product-wrapper .product-top-filter .popup-filter {
        background-color: #232323
    }

    .dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter,
    .dark .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view,
    .dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter,
    .dark2 .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view {
        border-color: #404040
    }

    .dark .collection-mobile-back,
    .dark2 .collection-mobile-back {
        border-color: #404040;
        background-color: #2b2b2b
    }

    .dark .collection-mobile-back span,
    .dark2 .collection-mobile-back span {
        color: #fff
    }

    .dark header.header-tools .logo-menu-part,
    .dark2 header.header-tools .logo-menu-part {
        background-color: #2b2b2b
    }

    .dark header.header-style.header-tools .top-header,
    .dark2 header.header-style.header-tools .top-header {
        background-color: #2b2b2b
    }

    .dark .service_slide .service-home .service-block1,
    .dark2 .service_slide .service-home .service-block1 {
        background-color: #2b2b2b
    }

    .dark .service_slide .service-home .service-block1:nth-child(even),
    .dark2 .service_slide .service-home .service-block1:nth-child(even) {
        background-color: #2b2b2b
    }

    .dark .dashboard-section .dashboard-sidebar,
    .dark2 .dashboard-section .dashboard-sidebar {
        left: unset;
        right: -350px
    }

    .dark .dashboard-section .dashboard-sidebar.open,
    .dark2 .dashboard-section .dashboard-sidebar.open {
        left: unset;
        right: 0
    }

    .dark .dashboard-section .dashboard-sidebar .back-btn,
    .dark2 .dashboard-section .dashboard-sidebar .back-btn {
        color: #fff;
        border-color: #404040;
        background-color: #232323
    }

    .dark .dashboard-section .dashboard-sidebar .profile-top,
    .dark2 .dashboard-section .dashboard-sidebar .profile-top {
        background-color: #2b2b2b
    }

    .dark .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round,
    .dark .dashboard-section .dashboard-sidebar .profile-top .profile-image h4,
    .dark2 .dashboard-section .dashboard-sidebar .profile-top .profile-image .user-round,
    .dark2 .dashboard-section .dashboard-sidebar .profile-top .profile-image h4 {
        background-color: #232323
    }

    .dark .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs,
    .dark2 .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
        background-color: #232323
    }

    .dark .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs .nav-item,
    .dark2 .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs .nav-item {
        background-color: #232323
    }
}

@media(max-width: 767px) {

    .dark .collection-product-wrapper .product-pagination .theme-pagination-block nav,
    .dark2 .collection-product-wrapper .product-pagination .theme-pagination-block nav {
        border-color: #404040
    }

    .dark .product-pagination .pagination,
    .dark2 .product-pagination .pagination {
        border-color: #404040
    }

    .dark .product-wrapper-grid.list-view .product-box,
    .dark2 .product-wrapper-grid.list-view .product-box {
        border-color: #404040
    }
}

@media(max-width: 577px) {

    .dark header.header-style .top-header .header-dropdown>li img,
    .dark2 header.header-style .top-header .header-dropdown>li img {
        filter: invert(0.55)
    }

    .dark .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view,
    .dark2 .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
        border-color: #404040 !important
    }

    .dark .tools-service.absolute-banner .absolute-bg,
    .dark2 .tools-service.absolute-banner .absolute-bg {
        box-shadow: none
    }

    .dark .full-banner .banner-contain,
    .dark2 .full-banner .banner-contain {
        background-color: rgba(0, 0, 0, .2)
    }
}

@media(max-width: 420px) {

    .dark .full-box .theme-card .offer-slider .sec-1 .product-box2,
    .dark2 .full-box .theme-card .offer-slider .sec-1 .product-box2 {
        border-color: #404040
    }

    .dark .full-box .center-slider .offer-slider .product-box,
    .dark2 .full-box .center-slider .offer-slider .product-box {
        border-color: #404040
    }
}

@media(min-width: 1630px) {
    body.christmas .container {
        max-width: 1600px
    }
}

@media(max-width: 1630px) {
    body.christmas .home-slider .slider-details {
        width: 400px;
        height: 400px
    }
}

@media(min-width: 1430px) {
    .container {
        max-width: 1400px
    }
}

@media(min-width: 1630px) {
    .container-lg {
        max-width: 1610px
    }
}

@media(max-width: 1630px) {
    .gradient-category .gradient-border {
        height: 180px
    }
}

@media(max-width: 1430px) {
    header.left-header .top-header {
        padding-left: 0
    }

    header.left-header .top-header .header-contact {
        display: none
    }

    header.left-header .sidenav {
        left: -300px
    }

    header.left-header .sidenav.open-side {
        left: 0
    }

    header.left-header .sidenav .sidebar-back {
        display: block;
        color: #000;
        border-bottom: 1px dashed #ddd
    }

    header.left-header .sidenav .brand-logo {
        display: none
    }

    header.left-header .sidenav .left-sidebar_center {
        padding: 0 0 25px 25px
    }

    header.left-header .sidenav .left-sidebar_center .skeleton-category-img,
    header.left-header .sidenav .left-sidebar_center .skeleton-category-text {
        display: none
    }

    header.left-header .main-menu .menu-left .navbar {
        display: block
    }

    header.left-header .main-menu .menu-left .mobile-logo {
        display: block;
        border: none
    }

    .blog-section .review-box .review-content p {
        margin-bottom: 35px
    }

    .service-w-bg .service-block .media {
        height: 100%
    }

    .service-w-bg .service-block h4 {
        font-size: 16px;
        margin-bottom: 4px
    }

    .service-w-bg .service-block svg {
        width: 50px;
        height: 50px
    }

    .banner-slider .height-banner {
        height: unset
    }

    .box-product .theme-card .offer-slider .media .media-body .rating i {
        padding-right: 0
    }

    .box-product .full-box .theme-card .offer-slider .product-box2 .media .media-body h4 {
        font-size: 16px
    }

    .pet-parallax .pet-decor {
        left: 60px;
        bottom: -125px
    }

    .pet-parallax .pet-decor img {
        width: 240px
    }

    .tools_slider .home-slider .slider-contain {
        margin-left: 80px
    }

    .tools_slider .home-slider .home .tools-parts img,
    .tools_slider .home-slider .home .tools-parts1 img {
        width: 250px
    }

    .tools_slider .home-slider .home .tools-parts {
        right: 0
    }

    .tools_slider .home-slider .home .tools-parts1 {
        right: 10%
    }

    .tools_slider .home-slider .home #tools-move2 {
        right: 7%
    }

    .banner-style-1 .custom-height {
        height: 374px
    }

    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 210px
    }

    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img img {
        width: 38%
    }

    .header-style-5.color-style .form_search {
        width: 500px
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        width: 20%;
        padding-right: 0 !important;
        border-left: 1px solid #ddd
    }

    .cart-section .cart-buttons>div:last-child {
        padding-right: 38px
    }

    .cart-section tbody tr td {
        min-width: 175px
    }

    .cart-section tbody tr td .qty-box .input-group .form-control {
        width: 75px
    }

    .cart-section tfoot tr td {
        padding-right: 41px
    }
}

@media(max-width: 1400px) {
    .gradient-category .gradient-border {
        height: 140px
    }
}

@media(max-width: 1367px) {
    h2 {
        font-size: 32px
    }

    .title1 .title-inner1 {
        padding-bottom: 10px
    }

    .title1 .title-inner1:after {
        height: 2px
    }

    .title3 .line {
        height: 3px
    }

    .title3 .line:after,
    .title3 .line:before {
        height: 3px
    }

    .title3 .title-inner3 {
        margin-bottom: 10px
    }

    .title4 .title-inner4 {
        padding-bottom: 15px
    }

    .title1.title5 hr[role=tournament6] {
        margin: 10px auto 30px auto
    }

    hr.style1 {
        height: 1px;
        margin-top: 7px;
        margin-bottom: 7px
    }

    .home-slider .slider-details {
        right: 14%
    }

    .product-box .product-detail .rating i,
    .product-box .product-info .rating i,
    .product-wrap .product-detail .rating i,
    .product-wrap .product-info .rating i {
        padding-right: 0
    }

    .blog-details h4 {
        margin-top: 20px
    }

    .blog-details p {
        font-size: 16px
    }

    .service-block h4 {
        font-size: 16px;
        margin-bottom: 5px
    }

    .service-w-bg .service-block h4 {
        font-size: 15px
    }

    .service-w-bg .service-block svg {
        width: 40px;
        height: 40px
    }

    .subscribe-form .form-control {
        width: 215px
    }

    .category-bg .image-block.even:after {
        bottom: 91%
    }

    .category-bg .contain-block h2 {
        font-size: 30px
    }

    .category-bg .contain-block.even:after {
        top: 91%
    }

    .category-bg .contain-block .category-btn {
        margin-bottom: 20px;
        margin-top: 20px
    }

    .category-bg .contain-block:after {
        bottom: 91%
    }

    .full-banner .banner-contain h4 {
        padding-top: 8px
    }

    .full-banner .banner-contain .color {
        padding-top: 0
    }

    .collection-banner .contain-banner.banner-4 {
        padding-left: 45px;
        padding-right: 45px
    }

    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 28px
    }

    .collection-banner .contain-banner h2 {
        font-size: 55px;
        letter-spacing: .01em
    }

    .collection-banner .contain-banner h4 {
        letter-spacing: .01em
    }

    .collection-banner.christmas-banner .contain-banner>div {
        background-color: rgba(0, 0, 0, .2);
        padding: 25px 40px
    }

    .footer-theme2 .contact-details li {
        padding: 0 40px
    }

    .footer-theme2 .footer-mobile-title {
        display: none !important
    }

    .footer-theme .sub-title h4 {
        font-size: calc(15px + 1*(100vw - 320px)/1047)
    }

    .footer-theme .sub-title .contact-list li {
        line-height: 26px
    }

    .footer-theme .sub-title .contact-list i {
        top: 17px
    }

    .theme-card .offer-slider .media .media-body h4 {
        margin-top: 10px
    }

    .full-box .theme-card .offer-slider .product-box2 .media .media-body a h6 {
        margin-right: 0
    }

    .blog-page .blog-media .blog-right h4 {
        line-height: 1.2;
        margin-bottom: 10px
    }

    .blog-page .blog-media .blog-right h6 {
        margin-bottom: 5px
    }

    .blog-page .blog-media .blog-right ul {
        margin-bottom: 10px
    }

    .blog-page .blog-media .blog-right p {
        line-height: 1.4
    }
}

@media(max-width: 1199px) {
    .p-0-xl {
        padding: 0
    }

    header.left-header.left-header-relative {
        height: 100%;
        z-index: 9;
        height: 0
    }

    header.left-header.left-header-relative .pixelstrap ul ul {
        background: rgba(0, 0, 0, 0)
    }

    header.left-header.left-header-relative .pixelstrap a .sub-arrow {
        display: block
    }

    header.left-header.left-header-relative .pixelstrap>li>a {
        text-align: left;
        padding: 10px 25px
    }

    header.left-header.left-header-relative .pixelstrap>li>a:hover,
    header.left-header.left-header-relative .pixelstrap>li>a:focus,
    header.left-header.left-header-relative .pixelstrap>li>a.highlighted {
        padding: 10px 25px
    }

    header.left-header.left-header-relative .sidenav {
        position: fixed;
        left: -300px;
        width: 300px;
        top: 0;
        z-index: 10;
        height: 100vh;
        box-shadow: 0 0 1px 0 rgba(0, 0, 0, .25)
    }

    header.left-header.left-header-relative .sidenav nav {
        height: 100%
    }

    header.left-header.left-header-relative .sidenav .sidebar-overlay {
        z-index: -1
    }

    header.left-header.left-header-relative .sidenav.open-side {
        left: 0
    }

    header.left-header.left-header-relative .sidenav .left-sidebar_center {
        padding: 0 0 25px 25px
    }

    header.left-header.left-header-sm .sidenav {
        left: -300px;
        top: 0;
        width: 300px
    }

    header.left-header.left-header-sm .sidenav .sidebar-back {
        margin-bottom: 0
    }

    header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap a .sub-arrow {
        display: block
    }

    header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li>a {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 10px 25px;
        font-size: 14px
    }

    header.left-header.left-header-sm .sidenav .left-sidebar_center .pixelstrap>li>a img {
        margin-left: 0;
        margin-right: 12px !important;
        width: 38px
    }

    header.left-header.left-header-sm.open-side .sidenav {
        left: 0
    }

    header.header-tools .pixelstrap.sm-horizontal li .lable-nav {
        top: -8px
    }

    header.header-5.overlay-style .pixelstrap>li>a,
    header.header-5.overlay-style .pixelstrap>li>a:hover,
    header.header-5.overlay-style .pixelstrap>li>a:active {
        color: #000
    }

    header .main-navbar.classic-header .header-nav-middle {
        height: 0
    }

    .header-style-1 .main-menu {
        margin-bottom: -4px
    }

    .header-style-1 .bg-light-xl {
        background-color: #f8f9fa !important
    }

    .header-style-light .header-style-5 .bottom-part.bottom-light .main-nav-center .sm>li>a {
        padding-top: 12px;
        padding-bottom: 12px
    }

    .header-style-5 .bottom-part {
        height: 0
    }

    .header-style-5 .bottom-part .category-menu .toggle-sidebar {
        padding-bottom: 18px
    }

    .header-style-5 .bottom-part .pixelstrap>li>a {
        color: #222
    }

    .header-style-5 .bottom-part .pixelstrap>li>a:hover,
    .header-style-5 .bottom-part .pixelstrap>li>a:focus,
    .header-style-5 .bottom-part .pixelstrap>li>a:active {
        color: #222
    }

    .header-style-5 .bottom-part.bottom-light {
        padding-top: 0;
        border-top: none
    }

    .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar {
        position: fixed;
        top: 0;
        height: 100vh;
        width: 300px;
        display: block;
        z-index: 9;
        left: -300px
    }

    .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
        border: none
    }

    .header-style-5 .bottom-part.bottom-light .marketplace-sidebar.sidenav.fixed-sidebar.open-side {
        left: 0
    }

    .header-style-5.border-style .bottom-part.bottom-light {
        border-bottom: none
    }

    .header-style-5.border-style .main-menu .menu-left .navbar {
        padding: 30px 45px 30px 0
    }

    .header-style-5.border-style .main-nav-center .toggle-nav {
        right: 160px;
        top: -98px
    }

    .header-style-5.color-style.style-classic .bottom-part {
        margin-bottom: 0;
        z-index: unset
    }

    .header-style-5.color-style.style-classic .bottom-part .main-nav-center .sm>li>a {
        padding-top: 10px;
        padding-bottom: 10px
    }

    .header-style-5.color-style.style-classic .bottom-part .container {
        background-color: rgba(0, 0, 0, 0);
        padding-left: 15px;
        padding-right: 15px
    }

    .header-compact .menu-row {
        height: 0
    }

    .header-compact .menu-row .delivery-area {
        position: absolute;
        top: -58px;
        left: 200px
    }

    .header-compact .main-menu .brand-logo {
        padding-top: 25px;
        padding-bottom: 25px
    }

    .header-compact .bottom-part {
        padding-bottom: 0
    }

    .header-compact .main-menu {
        z-index: unset
    }

    .header-compact .main-nav-center .toggle-nav {
        top: -91px
    }

    .left-sidebar-header .main-menu .menu-left .navbar {
        padding: 20px 25px 20px 0
    }

    .pt-res-0 {
        padding-top: 0 !important
    }

    .svg-icon-menu .pixelstrap>li>a img {
        width: 30px
    }

    .service-w-bg .service-block img {
        margin-right: 10px;
        width: 40px;
        height: 40px
    }

    .service-w-bg .service-block svg {
        width: 50px;
        height: 50px
    }

    .service-style-border .service-block {
        justify-content: unset
    }

    .service-style-border .service-block svg {
        width: 66px;
        margin-right: 4px
    }

    .service-style-border .service-block .media-body {
        padding-left: 10px
    }

    .marketplace-sidebar.sidenav {
        height: 100vh;
        width: 300px;
        position: fixed;
        z-index: 9;
        top: 0;
        left: -300px
    }

    .marketplace-sidebar.sidenav .sm-vertical {
        background-color: rgba(0, 0, 0, 0);
        padding: 0
    }

    .marketplace-sidebar.sidenav.open-side {
        left: 0
    }

    .marketplace-sidebar.sidenav.fixed-sidebar {
        display: block;
        height: 100vh;
        width: 300px;
        position: fixed;
        z-index: 9;
        top: 0;
        left: -300px
    }

    .marketplace-sidebar.sidenav.fixed-sidebar .sm-vertical {
        background-color: rgba(0, 0, 0, 0);
        padding: 0;
        border: none
    }

    .marketplace-sidebar.sidenav.fixed-sidebar.open-side {
        left: 0
    }

    section,
    .section-t-space {
        padding-top: 60px
    }

    .section-b-space {
        padding-bottom: 60px
    }

    .title1 h4 {
        padding-bottom: 8px
    }

    .title1 .title-inner1 {
        padding-bottom: 12px;
        margin-bottom: 25px
    }

    .title1.title5 hr[role=tournament6] {
        margin: 12px auto 25px auto
    }

    .title2 h4 {
        padding-bottom: 8px
    }

    .title2 .title-inner2 {
        margin-bottom: 25px
    }

    .title3 h4 {
        padding-bottom: 8px
    }

    .title3 .title-inner3 {
        margin-bottom: 10px
    }

    .title3 .line {
        margin-bottom: 25px
    }

    .title4 .title-inner4 {
        padding-bottom: 15px
    }

    .title4 .line {
        margin-bottom: 25px
    }

    .title-borderless {
        margin-bottom: 25px
    }

    header.header-tools .toggle-nav {
        padding-top: 25px;
        padding-bottom: 25px
    }

    header.header-tools .pixelstrap>li>a {
        padding: 10px 15px !important
    }

    header.header-tools .pixelstrap>li>a:hover,
    header.header-tools .pixelstrap>li>a:active,
    header.header-tools .pixelstrap>li>a:focus,
    header.header-tools .pixelstrap>li>a.highlighted {
        padding: 10px 15px
    }

    header.header-tools .pixelstrap li .lable-nav {
        top: 5px
    }

    .form_search {
        display: none
    }

    .tab-left .theme-tab {
        display: block
    }

    .tab-left .theme-tab .left-side {
        width: 100%
    }

    .tab-left .theme-tab .left-side li {
        width: unset;
        border-bottom: none;
        padding: 0 5px
    }

    .tab-left .theme-tab .left-side li:first-child {
        border-top: none
    }

    .tab-left .theme-tab .left-side .tab-title {
        margin-right: 0;
        text-align: center
    }

    .tab-left .theme-tab .tab-content-cls {
        width: 100%
    }

    .pet-parallax .pet-decor {
        left: 45px;
        bottom: -105px
    }

    .pet-parallax .pet-decor img {
        width: 200px
    }

    .about-text p {
        margin-bottom: 25px
    }

    .footer-theme2 p {
        line-height: 25px
    }

    .footer-theme2 .subscribe-block {
        padding: 10px 70px
    }

    .footer-theme2 .footer-mobile-title {
        display: none !important
    }

    .footer-theme2 .contact-details li {
        line-height: 25px;
        padding: 0 10px
    }

    .footer-theme2 .footer-link li {
        padding-right: 25px
    }

    .footer-theme2.section-light .footer-block .subscribe-white {
        padding: 50px
    }

    .service-block svg,
    .service-block1 svg {
        width: 50px;
        height: 50px
    }

    .service-block1 svg {
        margin-bottom: 15px
    }

    .category-border div .category-banner .category-box h2 {
        padding: 13px 27px
    }

    .collection-banner .contain-banner {
        padding-left: 30px;
        padding-right: 30px
    }

    .category-bg .image-block.even:after {
        bottom: 87%
    }

    .category-bg .contain-block.even:after {
        top: 87%
    }

    .category-bg .contain-block:after {
        bottom: 87%
    }

    .theme-tab .tab-title2 {
        font-size: 22px
    }

    .theme-tab .tab-title2:after {
        top: 17px
    }

    .blog-section .review-box {
        padding: 15px
    }

    .blog-section .review-box .review-content p {
        margin-top: 0
    }

    .full-banner .banner-contain h4 {
        padding-top: 5px
    }

    .instagram .insta-decor {
        display: none
    }

    .logo-section .logo-decor {
        display: none
    }

    .collection-banner .contain-banner.banner-3 {
        padding-left: 25px;
        padding-right: 25px
    }

    .collection-banner .contain-banner.banner-3 h2 {
        font-size: 22px
    }

    .collection-banner .contain-banner.banner-3 h4 {
        font-size: 12px
    }

    .collection-banner .contain-banner.banner-4 {
        padding-left: 35px;
        padding-right: 35px
    }

    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 24px
    }

    .collection-banner .contain-banner.banner-4 h4 {
        font-size: 16px
    }

    .collection-banner .contain-banner h2 {
        font-size: 40px
    }

    .home-slider .home {
        height: 70vh
    }

    .home-slider .slider-contain {
        height: 70vh
    }

    .home-slider .slider-contain h1 {
        font-size: 50px
    }

    .height-85 .home-slider .home {
        height: 80vh
    }

    .height-85 .home-slider .slider-contain {
        height: 80vh
    }

    .digital-download .height-85 .home-slider {
        height: 80vh
    }

    .nft-home .home-slider .slider-contain {
        padding-top: 82px
    }

    .background .contain-bg {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .theme-card .offer-slider .media .media-body .rating i {
        padding-right: 3px
    }

    .full-box .theme-card .offer-slider img {
        padding: 15px 10px 15px 0
    }

    .full-box .theme-card .offer-slider .product-box2 .media img {
        height: 250px
    }

    .full-box .theme-card .offer-slider .product-box2 .media .media-body {
        padding-right: 5px
    }

    .home-slider .slider-details {
        width: 335px !important;
        height: 335px !important
    }

    .home-slider .slider-details h1 {
        font-size: 50px
    }

    .home-slider .slider-details h2 {
        font-size: 36px
    }

    .home-slider.fullpage .home .slider-contain h1 {
        font-size: 35px
    }

    .home-slider.fullpage .home .slider-contain p {
        max-width: 450px;
        font-size: 14px
    }

    .home-slider.fullpage .home .slider-contain .btn-solid {
        padding: 10px 15px
    }

    .about-section h2 {
        font-size: 22px
    }

    .about-section .about-text p {
        line-height: 24px
    }

    .about-section .service .service-block1 svg {
        margin-bottom: 5px
    }

    .about-section .service .service-block1 h5 {
        line-height: 18px
    }

    .about-section .small-section {
        padding-top: 20px
    }

    .add_to_cart.top,
    .add_to_cart.bottom {
        left: -300px;
        top: 0;
        height: 100vh;
        width: 300px
    }

    .add_to_cart.top .cart-inner,
    .add_to_cart.bottom .cart-inner {
        height: 100vh;
        overflow: auto
    }

    .add_to_cart.top .cart-inner .cart_top,
    .add_to_cart.bottom .cart-inner .cart_top {
        padding: 20px !important;
        margin-bottom: 20px
    }

    .add_to_cart.top .cart-inner .cart_media,
    .add_to_cart.bottom .cart-inner .cart_media {
        padding: 0 20px !important;
        display: block
    }

    .add_to_cart.top .cart-inner .cart_media .cart_product,
    .add_to_cart.bottom .cart-inner .cart_media .cart_product {
        padding: 0;
        width: 100%;
        display: block;
        overflow-y: hidden
    }

    .add_to_cart.top .cart-inner .cart_media .cart_product li,
    .add_to_cart.bottom .cart-inner .cart_media .cart_product li {
        min-width: 100%;
        max-width: 100%;
        margin-right: 0;
        padding-bottom: 10px
    }

    .add_to_cart.top .cart-inner .cart_media .cart_total,
    .add_to_cart.bottom .cart-inner .cart_media .cart_total {
        padding: 0;
        width: 100%
    }

    .add_to_cart.top.open-side,
    .add_to_cart.bottom.open-side {
        left: 0
    }

    .category-slide .img-category .img-sec {
        width: 85%
    }

    .p-0-responsive {
        padding-top: 0 !important
    }

    .banner-style-1 .custom-height {
        height: 314px
    }

    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 170px
    }

    .button-dark.category-button .btn {
        padding: 13px 10px
    }

    .button-dark.category-button .btn img {
        width: 24px
    }

    .gradient-category .gradient-border {
        height: 185px
    }

    .cart-section tbody tr td,
    .wishlist-section tbody tr td {
        min-width: 186px
    }

    .blog-detail-page .comment-section li {
        padding-top: 45px;
        padding-bottom: 45px
    }

    .product-wrapper-grid.list-view .product-box .img-wrapper,
    .product-wrapper-grid.list-view .product-box .img-block {
        width: 50%
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        width: 20%;
        padding-right: 0 !important;
        border-left: 1px solid #ddd
    }

    .cart-section tbody tr td {
        min-width: 140px
    }

    .cart-section tbody tr td .qty-box .input-group .form-control {
        width: 52px
    }

    .cart-section tfoot tr td {
        padding-right: 25px
    }

    .collection-filter-block .product-service .media .media-body h4 {
        font-size: 16px
    }

    .testimonial .testimonial-slider .media .media-body {
        padding: 30px
    }

    .testimonial .testimonial-slider .media .media-body p {
        line-height: 1.5
    }

    .blog-page .blog-media {
        margin-bottom: 20px
    }

    .blog-page .blog-media .blog-right {
        display: block;
        margin-top: 15px
    }

    .blog-page .blog-media .blog-right p {
        line-height: 1.3
    }

    .product-description-box .product-icon .product-social li {
        padding-right: 4px
    }

    .product-description-box .product-icon .wishlist-btn span {
        padding-left: 4px
    }

    .product-form-box .product-buttons .btn-solid,
    .product-form-box .product-buttons .btn-outline {
        padding: 7px 13px
    }

    .tab-product .flex-column {
        flex-direction: unset !important;
        justify-content: center
    }

    .dashboard-section .counter-section .counter-box {
        padding: calc(13px + 7*(100vw - 320px)/1600)
    }

    .dashboard-section .counter-section .counter-box img {
        height: 40px;
        margin-right: 10px
    }
}

@media(min-width: 992px) {
    .demo-modal .modal-lg {
        max-width: 1400px
    }

    .exit-modal .modal-lg {
        max-width: 600px
    }
}

@media(max-width: 991px) {
    body.home header.header-5 {
        position: relative
    }

    body.home header.header-5.overlay-style {
        background-color: #2d2a25
    }

    h2 {
        font-size: 28px
    }

    .gradient-category .gradient-border {
        height: 128px
    }

    section,
    .section-t-space {
        padding-top: 50px
    }

    .section-b-space {
        padding-bottom: 50px
    }

    .header-style-1 .navbar .nav-link {
        padding-right: 18px;
        padding-left: 0;
        font-size: 14px
    }

    .header-style-5.color-style.style-classic .main-menu .onhover-div {
        padding-top: 25px;
        padding-bottom: 25px
    }

    .header-style-5.color-style.style-classic .main-menu .menu-left .navbar {
        padding: 25px 45px 25px 0
    }

    .header-style-5.color-style.style-classic .toggle-nav {
        padding-top: 25px;
        padding-bottom: 25px
    }

    .small-section {
        padding: 30px 0
    }

    .service-w-bg .service-block svg {
        margin-bottom: 0
    }

    header.header-tools {
        position: relative;
        top: 0
    }

    header.header-tools .top-header {
        background-color: var(--theme-color)
    }

    header.header-tools .top-header .container {
        background-color: rgba(0, 0, 0, 0)
    }

    header.header-tools .logo-menu-part {
        background-color: #fff
    }

    header.header-tools .logo-menu-part>.container {
        border-bottom: none
    }

    .tools_slider .home-slider .slider-contain {
        margin-top: 0
    }

    .tools_product .banner-tools {
        margin-left: 10px;
        margin-right: 10px
    }

    .tools-service .service-block+.service-block {
        border-left: none
    }

    .tools-service .service-block svg,
    .tools-service .service-block1 svg {
        margin-bottom: 0
    }

    .tools-brand .row {
        margin: 0 10px;
        padding: 10px 0
    }

    .tools_slider .home-slider .slider-contain {
        margin-left: 40px
    }

    .tools_slider .home-slider .home .tools-parts,
    .tools_slider .home-slider .home .tools-parts1 {
        margin-top: 20px
    }

    .tools_slider .home-slider .home .tools-parts img,
    .tools_slider .home-slider .home .tools-parts1 img {
        width: 180px
    }

    .tools_slider .home-slider .home .tools-parts {
        right: 0
    }

    .tools_slider .home-slider .home .tools-parts1 {
        right: 10%
    }

    .tools_slider .home-slider .home #tools-move2 {
        right: 7%
    }

    .pet-parallax .pet-decor {
        left: 34px;
        bottom: -86px
    }

    .pet-parallax .pet-decor img {
        width: 165px
    }

    .pet-parallax .banner-contain p {
        max-width: 100%
    }

    .service_slide .service-home {
        position: relative
    }

    .service_slide .service-home .service-block1 {
        padding: 0
    }

    .service_slide .partition4>div+div {
        margin-top: 0
    }

    .service_slide .partition4>div+div+div {
        margin-top: 30px
    }

    .blog-section .review-box {
        margin-top: 30px
    }

    .blog-section .review-box .review-content p {
        margin-bottom: 45px
    }

    hr.style1 {
        margin-top: 12px;
        margin-bottom: 12px
    }

    h4 {
        font-size: 16px
    }

    .gym-banner .collection-banner .contain-banner {
        padding-left: 30px;
        padding-right: 30px
    }

    .blog-details h4 {
        margin-top: 17px;
        font-size: 13px
    }

    .blog-details p {
        font-size: 15px;
        line-height: 1.3;
        margin-top: 10px
    }

    .service-block svg,
    .service-block1 svg {
        margin-bottom: 20px;
        height: auto;
        width: 46px
    }

    .about-text p {
        line-height: 24px
    }

    .category-bg.onerow-cat {
        padding: 20px 30px
    }

    .footer-light .subscribe {
        text-align: center;
        justify-content: center;
        border: none;
        margin-bottom: 5px
    }

    .footer-light .subscribe p {
        display: none
    }

    .footer-light .subscribe-form {
        justify-content: center;
        margin-bottom: 0
    }

    .footer-theme .col {
        max-width: 50%;
        flex-basis: unset
    }

    .footer-theme .footer-logo {
        margin-bottom: 30px
    }

    .footer-theme .sub-title h4 {
        margin-bottom: 0
    }

    .footer-social {
        margin-top: 15px
    }

    .subscribe-wrapper {
        order: 0;
        padding-top: 20px;
        padding-bottom: 20px
    }

    .footer-theme2 .footer-mobile-title {
        display: none !important
    }

    .footer-theme2 h4 {
        padding-bottom: 10px
    }

    .footer-theme2 .col {
        flex-basis: unset;
        padding: 20px 0
    }

    .footer-theme2.section-light .footer-block h4 {
        padding-bottom: 15px
    }

    .footer-theme2.section-light .footer-block .subscribe-white {
        border: none
    }

    .footer-theme2 .footer-logo {
        margin-bottom: 20px
    }

    .footer-theme2 .subscribe-block {
        border: none
    }

    .category-border div .category-banner .category-box h2 {
        padding: 5px 15px
    }

    .category-bg .image-block.even:after {
        bottom: 85%
    }

    .category-bg .image-block:after {
        width: 35px
    }

    .category-bg .image-block:hover:after {
        height: 70px
    }

    .category-bg .contain-block h2 {
        font-size: 20px;
        margin-top: 8px
    }

    .category-bg .contain-block:after {
        width: 35px
    }

    .category-bg .contain-block.even:after {
        top: 85%
    }

    .category-bg .contain-block .category-btn {
        margin-bottom: 15px;
        margin-top: 15px;
        letter-spacing: .2em;
        padding: 4px 5px
    }

    .category-bg .contain-block:after {
        bottom: 85%
    }

    .category-bg .contain-block:hover:after {
        height: 70px
    }

    .full-banner {
        padding-top: 180px;
        padding-bottom: 180px
    }

    .full-banner.parallax-layout {
        padding-top: 180px;
        padding-bottom: 180px
    }

    .full-banner .banner-contain h4 {
        padding-top: 5px
    }

    .full-banner .decor {
        display: none
    }

    .collection-banner .contain-banner.banner-3 {
        padding-left: 30px;
        padding-right: 30px
    }

    .collection-banner .contain-banner.banner-3 h2 {
        font-size: 20px
    }

    .collection-banner .contain-banner.banner-4 {
        padding-left: 40px;
        padding-right: 40px
    }

    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 18px
    }

    .collection-banner .contain-banner.banner-4 h4 {
        font-size: 18px
    }

    .collection-banner .contain-banner h2 {
        font-size: 25px
    }

    .service_slide .home-slider .slider-contain {
        height: 65vh
    }

    .home-slider .home {
        height: 65vh
    }

    .home-slider .slider-contain {
        height: 65vh
    }

    .home-slider .slider-contain h1 {
        font-size: 36px
    }

    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 17px
    }

    .home-slider .slider-details {
        top: 20%;
        padding: 0;
        width: 260px !important;
        height: 260px !important
    }

    .home-slider .slider-details h1 {
        line-height: 1;
        font-size: 30px;
        margin: 5px 0
    }

    .home-slider .slider-details h2 {
        font-size: 24px
    }

    .home-slider .slider-details h3 {
        font-size: 20px
    }

    .home-slider .slider-details h4 {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 2px
    }

    .height-85 .home-slider .home {
        height: 70vh
    }

    .height-85 .home-slider .slider-contain {
        height: 70vh
    }

    .digital-download .height-85 .home-slider {
        height: 70vh
    }

    .nft-home .home-slider .slider-contain {
        padding-top: 74px
    }

    .background .contain-bg {
        padding-top: 25px;
        padding-bottom: 25px
    }

    .background .contain-bg h4 {
        font-size: 16px
    }

    .beauty-about .about-text p {
        text-align: center
    }

    .full-box .center-slider .offer-slider .product-box .product-info h4 {
        padding-bottom: 5px
    }

    .full-box .center-slider .offer-slider .product-box .product-info .btn-outline {
        padding: 7px 20px
    }

    .full-box .theme-card .offer-slider .product-box2 .media img {
        height: 150px
    }

    .alert {
        max-width: 45% !important
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content img {
        margin-bottom: 20px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
        margin-bottom: 18px
    }

    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 15px
    }

    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media .media-body .buttons a {
        font-size: 13px;
        padding: 4px 10px;
        margin: 3px 6px
    }

    .theme-modal.exit-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 20px
    }

    .parallax-cls .banner-contain {
        background-color: rgba(255, 255, 255, .5);
        padding: 35px
    }

    .parallax-cls section .banner-contain {
        margin-top: 0
    }

    .about-section {
        padding-top: 30px
    }

    .about-section h2 {
        text-align: center
    }

    .product-box .cart-info {
        bottom: 20px
    }

    .absolute-banner {
        margin-top: -60px
    }

    header.header-style.header-tools .top-header {
        background-color: #fff
    }

    header.header-style.header-tools .top-header .onhover-dropdown:before {
        display: none
    }

    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img img {
        width: 29%;
        left: 26px;
        top: -12px
    }

    .service-style-border .service-block {
        justify-content: flex-start
    }

    .product-left-title {
        margin-bottom: 30px
    }

    .product-left-title h3 {
        max-width: 100%
    }

    .product-left-title.right-content {
        text-align: left
    }

    .cookie-bar.left-bottom {
        display: none;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px
    }

    .cookie-bar.left-bottom img {
        display: none
    }

    .cookie-bar.left-bottom p {
        margin-bottom: 6px
    }

    .cookie-bar.left-bottom .btn-close {
        display: none
    }

    .cookie-bar.left-bottom.subscribe-box {
        left: 20px;
        bottom: 20px
    }

    .cookie-bar.left-bottom.subscribe-box .btn-close {
        display: inline-block
    }

    .testimonial .testimonial-slider .media .media-body {
        padding: 0 30px;
        height: 100%;
        align-self: center
    }

    .testimonial .testimonial-slider .media .media-body p {
        margin-bottom: 0
    }

    .blog-detail-page .blog-advance ul {
        margin-bottom: 20px
    }

    .blog-detail-page .blog-advance p:last-child {
        margin-bottom: 0
    }

    .top-banner-content h4 {
        font-size: 20px
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
        display: none
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view,
    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
        width: 100%
    }

    .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select {
        border-right: none !important
    }

    .filter-main-btn {
        display: inline-block
    }

    .collection-filter {
        position: fixed !important;
        height: 100vh;
        top: 0;
        left: -350px;
        background-color: #fff;
        z-index: 99;
        overflow-y: scroll;
        padding: 0;
        width: calc(300px + 20*(100vw - 320px)/1600);
        transition: all .5s ease;
        box-shadow: 1px 0 5px #ddd;
        display: block;
        margin: 0;
        padding: 0
    }

    .collection-filter>.collection-filter-block {
        position: relative;
        inset: unset
    }

    .collection-filter .collection-sidebar-banner {
        text-align: center
    }

    .collection-filter .theme-card {
        padding-inline: 30px
    }

    .collection-filter .collection-sidebar-banner {
        padding: 0 30px
    }

    .collection-filter.open {
        left: 0
    }

    .collection-filter .shop-left-sidebar .custom-nav-tab {
        margin: calc(16px + 4*(100vw - 320px)/671) calc(12px + 8*(100vw - 320px)/671)
    }

    .collection-filter-block {
        border: none;
        background-color: rgba(0, 0, 0, 0)
    }

    .collection-filter-block .accordion-item {
        margin-top: calc(16px + 4*(100vw - 320px)/671)
    }

    .collection-mobile-back {
        display: block;
        padding: calc(11px + 4*(100vw - 320px)/671) calc(12px + 8*(100vw - 320px)/671);
        position: sticky !important;
        top: 0;
        left: 0;
        background-color: #f6f6f6;
        z-index: 1
    }

    .collection .section-t-space {
        padding-top: 30px
    }

    .collection .partition-collection>div:nth-last-child(1) {
        margin-top: 30px
    }

    .collection .partition-collection>div:nth-last-child(2) {
        margin-top: 30px
    }

    .right-login {
        margin-top: 30px
    }

    .cart-section .cart-table thead th:last-child {
        display: none
    }

    .cart-section tbody tr td {
        min-width: 135px
    }

    .cart-section tbody tr td:last-child {
        display: none
    }

    .cart-section .cart-buttons>div:last-child {
        padding-right: 15px
    }

    .cart-section tfoot tr td {
        padding-right: 0
    }

    .wishlist-section tbody tr td {
        min-width: 138px
    }

    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
        width: 100%
    }

    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup h5 {
        padding-block: 10px;
        display: block
    }

    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup h5.filter-panel-title {
        width: 100%
    }

    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .open-popup {
        text-align: left
    }

    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup>a {
        color: #fff
    }

    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter {
        height: 100vh;
        left: -350px;
        background-color: #fff;
        transition: all .5s ease
    }

    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
        width: 50%
    }

    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
        padding-top: 10px;
        padding-bottom: 10px
    }

    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view:before,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
        top: 13px
    }

    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
        left: unset;
        right: 35px
    }

    .order-up {
        order: -1
    }

    .vendor-cover .bg-size {
        height: 270px
    }

    .vendor-profile .profile-left {
        display: block
    }

    .vendor-profile .profile-left .profile-image {
        margin: 0 auto;
        width: 100%
    }

    .vendor-profile .profile-left .profile-detail {
        margin: 0 auto;
        text-align: center;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #efefef;
        padding-top: calc(8px + 7*(100vw - 320px)/671);
        width: 100%;
        margin-top: calc(8px + 7*(100vw - 320px)/671)
    }

    .vendor-profile .profile-left .vendor-contact {
        width: 100%;
        text-align: center;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #efefef;
        padding-top: 15px;
        margin-top: 15px
    }

    .vendor-profile .profile-left .vendor-contact .footer-social {
        justify-content: center
    }

    .vendor-profile .profile-left .vendor-contact .footer-social li {
        padding: 0 5px
    }

    .become-vendor h4 {
        margin-bottom: 20px
    }

    .become-vendor .step-bg .row {
        margin-left: -15px;
        margin-right: -15px
    }

    .become-vendor .step-bg .row>div {
        padding-left: 15px;
        padding-right: 15px
    }

    .become-vendor .step-bg .row>div:nth-child(2) {
        margin-top: 0;
        margin-bottom: 30px
    }

    .become-vendor .step-bg .row>div:nth-child(1) {
        margin-bottom: 30px
    }

    .become-vendor .step-bg .row>div:nth-child(3) {
        margin-bottom: 0
    }

    .become-vendor .step-bg:before {
        transform: rotate(90deg)
    }

    .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        overflow: auto;
        background-color: #fff
    }

    .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs .nav-item {
        white-space: nowrap;
        background-color: #fff
    }

    .dashboard-section .counter-section {
        margin-top: 20px
    }

    .bg-title .theme-tab .bg-title-part {
        margin-top: 30px
    }

    .element-page .left-sidebar .sticky-sidebar {
        position: fixed !important;
        width: 290px;
        height: 100vh;
        overflow: auto;
        left: -300px;
        transition: all .5s ease;
        z-index: 9;
        background-color: #fff;
        top: 0;
        box-shadow: 1px 0 5px #ddd
    }

    .element-page .left-sidebar .sticky-sidebar .doc-nav {
        padding: 25px
    }

    .element-page .left-sidebar .sticky-sidebar .collection-mobile-back {
        padding: 25px
    }

    .element-page .left-sidebar .sticky-sidebar.show {
        left: 0;
        transition: all .5s ease
    }

    .footer-background .footer-light .subscribe {
        border: unset
    }
}

@media(max-width: 767px) {
    body {
        padding-bottom: 62px
    }

    body.stickyCart {
        padding-bottom: 0
    }

    .title-basic {
        display: block
    }

    .title-basic .timer {
        margin-left: 0;
        margin-top: 15px;
        padding-left: 30px
    }

    .title-basic .timer p {
        font-size: 16px
    }

    .title-basic .timer span {
        width: 60px
    }

    .title-basic .timer span .padding-l {
        padding-left: 12px
    }

    header.header-5.left-sidebar-header {
        position: relative
    }

    .header-style-1 .main-menu .brand-logo {
        padding-block: 15px
    }

    .header-style-5.color-style .main-menu .menu-right .icon-nav li {
        padding-left: 12px
    }

    .header-style-5.color-style .top-header .header-dropdown>li {
        padding-left: 12px
    }

    .theme-modal.cart-modal .product-section {
        display: none
    }

    .absolute-banner {
        margin-top: -60px
    }

    .footer-style-1 .contact-list {
        margin-bottom: 10px
    }

    .footer-style-1 .footer-content .footer-social li {
        padding-right: 5px
    }

    .tools_slider .home-slider .home .tools-parts,
    .tools_slider .home-slider .home .tools-parts1 {
        display: none
    }

    .tools_slider .home-slider .slider-contain {
        margin-left: 0;
        justify-content: center !important
    }

    .pet-parallax .pet-decor {
        display: none
    }

    .pets-box .product-box .img-wrapper .cart-info {
        transform: none
    }

    .pets-box .product-box .img-wrapper .cart-info i {
        font-size: 16px
    }

    .service-w-bg .service-block img {
        margin-right: 0
    }

    .service-w-bg .service-block svg {
        margin-bottom: 15px;
        margin-right: 0
    }

    .service-w-bg .service-block h4 {
        margin-bottom: 8px
    }

    .detail-cannabis .detail_section {
        margin-top: 30px;
        text-align: center
    }

    .detail-cannabis .row>div:first-child .detail_section {
        margin-top: 0
    }

    .service_slide .home-slider .slider-contain {
        height: 60vh
    }

    .portfolio-section.metro-section .product-box .product-detail {
        opacity: 1;
        bottom: 15px;
        background-color: rgba(255, 255, 255, .5)
    }

    .portfolio-section.metro-section .product-box .product-detail h6 {
        color: #000
    }

    .portfolio-section.metro-section .product-box:hover .product-detail {
        opacity: 1
    }

    .bg-title .theme-tab .bg-title-part {
        display: block;
        text-align: center
    }

    .bg-title .theme-tab .bg-title-part .tab-title {
        margin-left: unset;
        text-align: center
    }

    .bg-title .theme-tab .bg-title-part .tab-title li {
        padding-left: 5px;
        padding-right: 5px
    }

    .bg-title .theme-tab .bg-title-part .tab-title.w-bg {
        margin-top: 15px
    }

    header.left-header .top-header .header-dropdown li {
        padding: 15px
    }

    header.left-header .main-menu .menu-right .icon-nav li {
        padding-left: 15px
    }

    section,
    .section-t-space {
        padding-top: 40px
    }

    .section-b-space {
        padding-bottom: 40px
    }

    .product-box.single-product .product-detail .btn-solid {
        padding: 8px 36px
    }

    .small-section {
        padding: 20px 0
    }

    .theme-tab .tab-title a,
    .theme-tab .tab-title2 a {
        text-transform: capitalize
    }

    .about-cls .service.border-section {
        border-bottom: none
    }

    .about-cls .service.small-section {
        padding-bottom: 0
    }

    .service-block .media {
        display: block;
        text-align: center;
        padding-top: 0;
        padding-bottom: 0
    }

    .service-block svg {
        margin-right: 0
    }

    .service-block+.service-block {
        border-left: 0
    }

    .service-block:last-child .media .media-body p {
        margin-bottom: 0
    }

    .partition4>div+div {
        margin-top: 30px
    }

    .center-slider {
        border-left: none;
        border-right: none
    }

    .about-text p {
        line-height: 25px
    }

    .darken-layout .footer-title,
    .dark-layout .footer-title {
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .darken-layout .footer-title::after,
    .dark-layout .footer-title::after {
        content: "";
        font-family: remixicon;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        font-size: 20px;
        transition: transform .3s ease-in-out;
        line-height: 1;
        color: #fff
    }

    .darken-layout .footer-title.show::after,
    .dark-layout .footer-title.show::after {
        transform: rotate(180deg)
    }

    .darken-layout .footer-title.show~.footer-content,
    .dark-layout .footer-title.show~.footer-content {
        height: 100%;
        padding-bottom: 10px
    }

    .darken-layout .subscribe-wrapper,
    .dark-layout .subscribe-wrapper {
        padding-bottom: 10px
    }

    .footer-background .footer-title {
        border-bottom-color: rgba(255, 255, 255, .22)
    }

    .footer-title {
        text-align: left;
        border-bottom: 1px solid #eee;
        position: relative
    }

    .footer-title.footer-mobile-title {
        margin-top: 0
    }

    .footer-title h4 {
        text-transform: uppercase;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px !important
    }

    .footer-title.active .according-menu:before {
        content: "";
        position: absolute;
        right: 2px;
        top: 2px
    }

    .footer-title .according-menu:before {
        content: "";
        position: absolute;
        right: 2px;
        top: 2px
    }

    .box-layout-body .box-layout {
        margin-top: -40px
    }

    .layout-20 {
        padding: 15px
    }

    .home-slider .slider-details {
        top: 15%;
        right: 8%;
        padding: 0px;
        width: 225px !important;
        height: 225px !important
    }

    .home-slider .slider-details h1 {
        font-size: 25px;
        margin: 5px 0
    }

    .home-slider .slider-details h2 {
        font-size: 20px
    }

    .home-slider .slider-details h3 {
        font-size: 18px
    }

    .home-slider .slider-details h3:before,
    .home-slider .slider-details h3:after {
        width: 8px;
        height: 8px;
        top: 5px
    }

    .home-slider .slider-details h4 {
        font-size: 16px
    }

    .footer-content {
        height: 0;
        overflow: hidden;
        transition: height .15s ease-in-out;
        text-align: left
    }

    .footer-content .footer-logo {
        margin-bottom: 20px
    }

    .footer-content li {
        text-align: left
    }

    .footer-content .footer-social ul {
        margin: unset
    }

    .footer-content .footer-social ul li {
        padding-right: calc(18px + 7*(100vw - 320px)/447);
        padding-left: 0
    }

    .footer-theme {
        text-align: center
    }

    .footer-theme .footer-mobile-title {
        display: block !important
    }

    .footer-theme .col {
        max-width: 100%;
        flex-basis: unset
    }

    .footer-theme>[class*=col-] {
        padding: 0 20px 0 20px
    }

    .footer-theme .sub-title li {
        padding: 0
    }

    .footer-theme .sub-title li+li {
        padding-top: 7px
    }

    .footer-theme .sub-title .contact-list svg {
        position: relative;
        inset: unset;
        margin-right: 10px
    }

    .footer-theme .sub-title .contact-list li {
        padding-left: 0
    }

    .footer-social ul {
        margin: 0 auto
    }

    .footer-social li {
        padding: 0 15px
    }

    .footer-end {
        text-align: center
    }

    .sub-footer .payment-card-bottom {
        justify-content: center;
        padding-bottom: 25px
    }

    .subscribe-wrapper {
        margin: 10px 0 0 0;
        order: 0
    }

    .darken-layout .footer-theme .footer-mobile-title h4 {
        color: #fff
    }

    .dark-layout .small-section {
        padding-bottom: 40px
    }

    .dark-layout section {
        padding-top: 0
    }

    .dark-layout .section-b-space {
        border: none;
        padding-bottom: 0
    }

    .dark-layout .subscribe-wrapper {
        order: -1
    }

    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block {
        padding: 10px 60px
    }

    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block h2 {
        display: none
    }

    .box-layout .small-section {
        padding-top: 0
    }

    .category-bg {
        padding: 30px 40px
    }

    .category-bg .image-block.even:after {
        bottom: 85%
    }

    .category-bg .image-block:after {
        width: 25px;
        margin-top: -25px
    }

    .category-bg .image-block:hover:after {
        height: 50px
    }

    .category-bg .contain-block h2 {
        font-size: 18px;
        margin-top: 8px
    }

    .category-bg .contain-block h6 {
        letter-spacing: .1em;
        font-size: 12px
    }

    .category-bg .contain-block:after {
        width: 25px
    }

    .category-bg .contain-block.even:after {
        top: 87%
    }

    .category-bg .contain-block .category-btn {
        margin-bottom: 6px;
        margin-top: 6px;
        letter-spacing: .1em;
        padding: 1px 5px;
        font-size: 12px
    }

    .category-bg .contain-block:after {
        bottom: 87%
    }

    .category-bg .contain-block:hover:after {
        height: 50px
    }

    .layout9-box .product-box .img-block {
        min-height: unset
    }

    .product-box .img-wrapper .cart-box.style-1,
    .product-wrap .img-wrapper .cart-box.style-1 {
        padding: 7px 4px;
        bottom: 7px
    }

    .product-box .img-wrapper .cart-box.style-1 i,
    .product-wrap .img-wrapper .cart-box.style-1 i {
        padding-left: 4px;
        padding-right: 4px
    }

    .product-box .cart-detail,
    .product-wrap .cart-detail {
        top: 5px;
        right: 10px
    }

    .product-box:hover .product-info .add-btn,
    .product-wrap:hover .product-info .add-btn {
        animation: none
    }

    .product-box .img-wrapper .cart-box,
    .product-wrap .img-wrapper .cart-box {
        padding: 8px 10px;
        bottom: 20px
    }

    .product-box .img-wrapper .cart-box i,
    .product-wrap .img-wrapper .cart-box i {
        font-size: 15px;
        padding-left: 4px;
        padding-right: 4px
    }

    .product-box .cart-info,
    .product-box .cart-detail {
        opacity: 1
    }

    .product-box .img-wrapper .cart-box {
        opacity: 1
    }

    .product-box:hover .img-wrapper .cart-box {
        animation: none
    }

    .product-box:hover .cart-info button,
    .product-box:hover .cart-detail button {
        animation: none
    }

    .product-box:hover .cart-info a i,
    .product-box:hover .cart-detail a i {
        animation: none
    }

    .product-box:hover .cart-info a:nth-child(2) i,
    .product-box:hover .cart-detail a:nth-child(2) i {
        animation: none
    }

    .product-box:hover .cart-info a:nth-child(3) i,
    .product-box:hover .cart-detail a:nth-child(3) i {
        animation: none
    }

    .product-box:hover .cart-info a:nth-child(4) i,
    .product-box:hover .cart-detail a:nth-child(4) i {
        animation: none
    }

    .product-box .product-info .add-btn,
    .product-wrap .product-info .add-btn {
        opacity: 1
    }

    .theme-tab .tab-title2 {
        font-size: 20px
    }

    .theme-tab .tab-title2 li {
        padding-left: 15px;
        padding-right: 15px
    }

    .theme-tab .tab-title2:after {
        top: 15px
    }

    .full-banner {
        padding-top: 120px;
        padding-bottom: 120px
    }

    .full-banner.parallax-layout {
        padding-top: 120px;
        padding-bottom: 120px
    }

    .pet-parallax .full-banner {
        padding-top: 120px;
        padding-bottom: 120px
    }

    .collection-banner .contain-banner {
        padding-left: 60px;
        padding-right: 60px
    }

    .collection-banner .contain-banner.banner-3 {
        padding-left: 40px;
        padding-right: 40px
    }

    .collection-banner .contain-banner.banner-3 h2 {
        font-size: 20px
    }

    .collection-banner .contain-banner.banner-3 h4 {
        font-size: 18px
    }

    .collection-banner .contain-banner.banner-4 {
        padding-left: 45px;
        padding-right: 45px
    }

    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 18px
    }

    .collection-banner .contain-banner h2 {
        font-size: 35px
    }

    .home-slider .home {
        height: 60vh
    }

    .home-slider .slider-contain {
        height: 60vh
    }

    .home-slider .slider-contain h1 {
        font-size: 35px;
        margin-top: 5px
    }

    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 10px;
        padding: 10px 25px
    }

    .upper-canvas-section.height-100 .home-slider .slider-contain.left-canvas-section {
        height: auto;
        padding-top: 120px
    }

    .upper-canvas-section.height-100 .home-slider .slider-contain.right-canvas-section {
        height: auto;
        padding-top: 0;
        padding-bottom: 50px
    }

    .lower-canvas-section .left-canvas-section {
        padding: 20px 0 40px
    }

    .canvas-bg {
        background-position: right !important
    }

    .height-85 .home-slider .home {
        height: 65vh
    }

    .height-85 .home-slider .slider-contain {
        height: 65vh
    }

    .digital-download .height-85 .home-slider {
        height: 46vh
    }

    .nft-home .home-slider .slider-contain {
        padding-top: 70px;
        height: 46vh
    }

    .background .col {
        flex-basis: unset
    }

    .background .contain-bg {
        margin: 10px 0
    }

    .full-box .center-slider .offer-slider {
        text-align: center
    }

    .full-box .center-slider .offer-slider .product-box {
        border: none;
        display: inline-block
    }

    .full-box .center-slider .offer-slider .product-box .img-wrapper {
        text-align: center
    }

    .full-box .center-slider .offer-slider .product-box .img-wrapper img {
        height: 200px
    }

    .full-box .center-slider .offer-slider .product-box:hover {
        box-shadow: none
    }

    .full-box .theme-card .offer-slider .sec-1 {
        display: flex
    }

    .full-box .theme-card .offer-slider .sec-1 .product-box2+.product-box2 {
        border-top: none
    }

    .theme-tab .tab-title li,
    .theme-tab .tab-title2 li {
        padding-left: 5px;
        padding-right: 5px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h2 {
        margin-bottom: 20px;
        padding-bottom: 20px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content h4 {
        margin-bottom: 20px;
        font-size: 15px
    }

    .filter-main-btn span {
        font-size: 16px
    }

    .tap-top {
        bottom: 80px;
        right: 10px
    }

    .footer-theme2 p {
        margin-bottom: 10px
    }

    .footer-theme2 .footer-mobile-title {
        display: block !important
    }

    .footer-theme2 .p-set {
        padding: 0 15px !important
    }

    .footer-theme2 .col {
        padding: 0
    }

    .footer-theme2 .footer-link li {
        display: flex;
        padding-top: 10px
    }

    .footer-theme2 .footer-link h4 {
        padding-bottom: 10px
    }

    .footer-theme2 .contact-details li {
        padding-left: 0;
        padding-top: 10px
    }

    .footer-theme2 .contact-details li:last-child {
        margin-bottom: 20px
    }

    .footer-theme2 .footer-link-b li {
        display: flex;
        padding-top: 10px
    }

    .footer-theme2 .footer-link-b h4 {
        margin-top: 15px;
        padding-bottom: 10px
    }

    .footer-theme2.section-light .footer-block h4 {
        padding-bottom: 10px
    }

    .footer-theme2.section-light .footer-block .subscribe-white {
        padding: 40px 65px
    }

    .footer-theme2.section-light .footer-block .subscribe-white h2 {
        margin-bottom: 20px
    }

    .footer-theme2.section-light .footer-block .subscribe-white .form-group {
        display: flex
    }

    .footer-theme2.section-light .footer-block .subscribe-white .form-group .btn-solid,
    .footer-theme2.section-light .footer-block .subscribe-white .form-group .btn-outline {
        margin-top: 0
    }

    .footer-theme2 .subscribe-block h2 {
        margin-bottom: 20px
    }

    .footer-theme2 h4 {
        padding-bottom: 10px
    }

    .footer-theme2 .footer-link li,
    .footer-theme2 .footer-link-b li {
        padding-left: 0
    }

    .bg-dark-bottom {
        padding: 14px !important
    }

    .height-100.sm-responsive .home-slider .home {
        height: 80vh
    }

    .height-100.sm-responsive .home-slider .slider-contain {
        height: calc(80vh + 80px)
    }

    .height-100.xs-responsive .home-slider .home {
        height: 60vh
    }

    .height-100.xs-responsive .home-slider .slider-contain {
        height: calc(60vh + 80px)
    }

    .pt-res-0 {
        padding-top: 0
    }

    .category-img-wrapper .row {
        margin-bottom: -30px
    }

    .category-img-wrapper .row>div {
        margin-bottom: 30px
    }

    .banner-style-1 .full-box .card-margin {
        margin-bottom: 20px
    }

    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 {
        width: 100%;
        padding: 20px
    }

    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 200px
    }

    .banner-style-2.absolute-banner .absolute-bg .collection-banner .absolute-img img {
        left: 60px;
        top: 30px
    }

    .service-style-border .service-block {
        justify-content: center
    }

    .service-style-border .service-block .media-body {
        padding-left: 0;
        border-left: none
    }

    .service-style-border .service-block svg {
        margin-right: 0
    }

    .blog-detail-page .comment-section li {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .testimonial {
        background-color: #f7f7f7
    }

    .testimonial .testimonial-slider .media .media-body {
        padding: 30px 30px 30px 30px
    }

    .about-page {
        text-align: center
    }

    .about-page p {
        line-height: 1.5
    }

    .team h2 {
        font-size: 25px
    }

    .layout2-logo {
        padding-right: 70px
    }

    .faq-section .theme-accordion .card .card-body p {
        line-height: 1.5 !important
    }

    .faq-section .theme-accordion .card .card-header button {
        font-size: 14px !important;
        white-space: normal;
        width: 100%;
        padding: 16px 30px 16px 18px !important
    }

    .product-wrapper-grid.list-view .product-box {
        display: block;
        border: 1px solid #eee;
        padding: 15px
    }

    .product-wrapper-grid.list-view .product-box .img-wrapper,
    .product-wrapper-grid.list-view .product-box .img-block {
        margin: 0 auto 15px
    }

    .product-wrapper-grid.list-view .product-box .product-detail {
        padding-left: 0
    }

    .collection .partition-collection>div:nth-last-child(1),
    .collection .partition-collection>div:nth-last-child(2),
    .collection .partition-collection>div:nth-last-child(3) {
        margin-top: 30px
    }

    .cart-section tbody tr td a,
    .wishlist-section tbody tr td a {
        display: flex;
        align-items: center;
        justify-content: center
    }

    .cart-section .cart-table thead th:nth-last-child(-n+4) {
        display: none
    }

    .cart-section tbody tr td:nth-last-child(-n+4) {
        display: none
    }

    .cart-section tbody tr td .mobile-cart-content {
        display: flex
    }

    .wishlist-section .cart-table thead th:nth-last-child(-n+3) {
        display: none
    }

    .wishlist-section tbody tr td:nth-last-child(-n+3) {
        display: none
    }

    .wishlist-section tbody tr td .mobile-cart-content {
        display: flex
    }

    .blog-page .order-sec {
        order: -1
    }

    .blog-page .blog-media:last-child {
        margin-bottom: 30px
    }

    .blog-page .blog-sidebar ul li {
        display: block
    }

    .tab-pane iframe {
        width: 100%
    }

    .dashboard-section .counter-section .row>div {
        margin-bottom: calc(12px + 8*(100vw - 320px)/447)
    }

    .dashboard-section .counter-section .row>div:last-child {
        margin-bottom: 0
    }

    .dashboard-section .apexcharts-canvas {
        margin: 0 auto
    }

    .dashboard-section .dashboard-table .table.product-table th:nth-child(2),
    .dashboard-section .dashboard-table .table.product-table th:nth-child(3),
    .dashboard-section .dashboard-table .table.product-table td:nth-child(2),
    .dashboard-section .dashboard-table .table.product-table td:nth-child(3) {
        min-width: 200px
    }

    .dashboard-section .dashboard-table .table.order-table-vendor td:nth-child(2),
    .dashboard-section .dashboard-table .table.order-table-vendor th:nth-child(2) {
        min-width: 200px
    }

    .setting-box {
        width: 460px
    }

    .dashboard-section .dashboard-table .table.wishlist-table th:nth-child(2),
    .dashboard-section .dashboard-table .table.wishlist-table td:nth-child(2) {
        min-width: 80px
    }

    .dashboard-section .dashboard-table .table.wishlist-table th:nth-child(3),
    .dashboard-section .dashboard-table .table.wishlist-table td:nth-child(3) {
        min-width: 180px
    }

    .dashboard-section .dashboard-table .table.wishlist-table th:nth-child(5),
    .dashboard-section .dashboard-table .table.wishlist-table td:nth-child(5) {
        min-width: 150px
    }

    .theme-invoice-1 .invoice-header .detail-bottom ul {
        display: block
    }

    .theme-invoice-2 .invoice-header .top-bar {
        display: block
    }

    .theme-invoice-2 .invoice-body .date-detail {
        display: block
    }

    .theme-invoice-2 .invoice-body .date-detail li {
        width: 32%
    }

    .theme-invoice-2 .invoice-body .date-detail li:first-child {
        display: block;
        width: 100%
    }

    .theme-invoice-3 .invoice-header ul {
        margin-bottom: -18px
    }

    .theme-invoice-3 .invoice-header ul li {
        margin-bottom: 18px
    }

    .theme-invoice-3 .invoice-header ul li:first-child {
        display: block;
        width: 100%
    }

    .theme-invoice-4 .title-sec .title {
        position: relative;
        text-align: center;
        margin-top: 20px
    }

    .theme-invoice-5 .header-panel ul {
        margin-bottom: -20px
    }

    .theme-invoice-5 .header-panel ul li {
        margin-bottom: 20px
    }

    .theme-invoice-5 .header-panel ul li:first-child {
        display: block;
        width: 100%
    }
}

@media(max-width: 577px) {
    .header-style-1 .top-header .header-dropdown li {
        padding: 0
    }

    .header-style-1 .top-header .header-dropdown li i {
        color: #999
    }

    .header-style-1 .brand-logo {
        position: relative;
        left: 0;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        transform: none
    }

    .header-style-1 .brand-logo img {
        width: auto;
        height: 25px
    }

    .header-style-1 .btn-solid.btn-xs {
        padding: 2px 11px
    }

    .header-style-5.border-style .main-menu {
        z-index: 9
    }

    .header-style-5.border-style .main-menu .menu-right .icon-nav li {
        padding-top: 0;
        padding-bottom: 0
    }

    .header-style-5.border-style .main-nav-center .toggle-nav {
        right: 15px;
        top: -78px
    }

    .header-style-5.color-style .top-header .header-dropdown>li {
        padding: 0
    }

    .header-style-5.color-style .top-header .header-dropdown>li img {
        opacity: .6;
        width: 22px;
        filter: invert(0.7)
    }

    .header-style-5.color-style.style-classic .main-menu .menu-right .icon-nav li {
        padding: 0
    }

    .header-style-5.color-style.style-classic .top-header .header-dropdown>li {
        padding: 0
    }

    .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view,
    .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
        width: 100%
    }

    .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
        width: 100%
    }

    .setting-box {
        width: 360px
    }

    header.sticky .top-header {
        display: block
    }

    header.header-5.left-sidebar-header .top-header .header-dropdown .mobile-wishlist img {
        filter: invert(1);
        opacity: .8
    }

    .gift-card-section {
        margin: 0 15px
    }

    .gift-card-section .container {
        padding: 0
    }

    .deal-product-space {
        padding-top: 155px;
        padding-bottom: 85px !important
    }

    .header-compact .main-menu .brand-logo {
        position: relative;
        left: 0;
        margin-right: 0;
        transform: none;
        padding-top: 20px !important;
        padding-bottom: 20px !important
    }

    .header-compact .main-nav-center .toggle-nav {
        top: -72px
    }

    .header-compact .top-header .header-dropdown li {
        padding: 0
    }

    #fb-root {
        display: none
    }

    .section-b-space {
        padding-bottom: 30px
    }

    section,
    .section-t-space {
        padding-top: 30px
    }

    header.left-header .top-header {
        height: 70px
    }

    header.left-header .top-header .header-dropdown li {
        padding: 0
    }

    header.left-header .top-header .header-dropdown .mobile-wishlist img {
        display: none
    }

    header.left-header .top-header .header-dropdown .mobile-wishlist i {
        display: block
    }

    header.left-header .main-menu .menu-left .mobile-logo {
        position: absolute;
        padding: 0 !important;
        transform: unset;
        right: unset;
        left: 15px;
        margin-right: 0;
        top: 16px
    }

    header.left-header .main-menu .menu-left .navbar {
        position: absolute;
        right: 15px;
        padding: 0 !important;
        top: 22px
    }

    header.header-tools .top-header .header-dropdown li {
        padding: 0
    }

    header.header-style .brand-logo {
        left: 0;
        margin-right: 0;
        transform: none
    }

    header.header-style .top-header .header-dropdown li img {
        filter: invert(0.55)
    }

    header.header-5.left-sidebar-header .main-menu .menu-left .navbar {
        position: absolute;
        right: 0px;
        padding: 0 !important
    }

    header.header-5.left-sidebar-header .brand-logo {
        position: relative
    }

    header.header-5.left-sidebar-header .container-fluid {
        padding-left: 15px;
        padding-right: 15px
    }

    .offer-box {
        display: none
    }

    .service_slide .home-slider .slider-contain {
        height: 58vh
    }

    h2 {
        font-size: 24px
    }

    .tools-service.absolute-banner .absolute-bg {
        padding-bottom: 15px;
        box-shadow: none
    }

    .tools-service .service-block svg,
    .tools-service .service-block1 svg {
        margin-bottom: 7px
    }

    .top-header .header-dropdown li i {
        padding-right: 0;
        font-size: 18px
    }

    header.header-5 .top-header .header-dropdown .onhover-dropdown .onhover-show-div {
        top: unset
    }

    .header-style-1 .main-menu .menu-right .icon-nav .onhover-div .show-div {
        top: unset
    }

    .gym-banner .collection-banner .contain-banner {
        padding-left: 15px;
        padding-right: 15px
    }

    .gym-banner .collection-banner .contain-banner h2 {
        font-size: 25px;
        margin-bottom: -3px
    }

    .btn-solid,
    .btn-outline {
        padding: 7px 15px
    }

    footer .btn-solid {
        padding: 13px 29px
    }

    footer p {
        line-height: 20px
    }

    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media a img {
        max-width: 105px;
        margin-bottom: 10px
    }

    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media .media-body .buttons a {
        padding: 4px 5px
    }

    .theme-modal.exit-modal .media {
        align-items: center
    }

    .theme-modal.exit-modal .media img {
        width: 25%
    }

    .theme-modal.exit-modal .media .media-body h4 {
        font-size: 16px;
        margin-bottom: 0
    }

    .theme-modal.exit-modal .media .media-body h2 {
        margin-bottom: 2px
    }

    .theme-modal.exit-modal .media .media-body h5 {
        font-size: 16px;
        line-height: 18px
    }

    .theme-modal.exit-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 12px
    }

    .dark-layout .footer-theme2 .col {
        padding: 0 15px
    }

    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block {
        padding: 10px 20px 20px 10px
    }

    .footer-theme2 .col {
        padding: 0 15px
    }

    .footer-theme2 .form-p {
        padding: 0
    }

    .footer-theme2.footer-border {
        padding: 15px 0
    }

    .footer-theme2 .subscribe-block {
        padding: 0 75px
    }

    .footer-theme2 .footer-link h4 {
        padding-bottom: 10px
    }

    .footer-theme2 .footer-link li {
        padding-right: 20px
    }

    .footer-theme2 .footer-link-b h4 {
        padding-bottom: 15px
    }

    .footer-theme2 .footer-link-b li {
        padding-right: 20px
    }

    .category-border div .category-banner .category-box h2 {
        padding: 10px 20px
    }

    .filter-main-btn span {
        font-size: 14px
    }

    .category-bg .image-block:after {
        display: none
    }

    .category-bg .contain-block:after {
        display: none
    }

    .category-bg .order-section div {
        order: 1
    }

    .category-bg .order-section div:nth-child(2) {
        order: 4;
        margin-bottom: 30px;
        margin-top: 30px
    }

    .category-bg .order-section div:nth-child(3) {
        order: 3
    }

    .category-bg .order-section div:nth-child(4) {
        order: 2;
        margin-bottom: 30px;
        margin-top: 30px
    }

    .category-bg .order-section div:nth-child(5) {
        order: 5;
        margin-bottom: 30px
    }

    .category-bg .order-section div:nth-child(6) {
        order: 6
    }

    .category-bg .contain-block {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .theme-tab .tab-title {
        margin-bottom: 15px
    }

    .full-banner {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .full-banner.parallax-layout {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .full-banner .banner-contain {
        background-color: rgba(255, 255, 255, .48);
        padding: 25px
    }

    .full-banner .banner-contain .btn-solid,
    .full-banner .banner-contain .btn-outline {
        padding: 10px 20px
    }

    .full-banner.p-left .banner-contain,
    .full-banner.p-right .banner-contain {
        float: none
    }

    .full-banner .banner-contain h4 {
        padding-top: 0;
        letter-spacing: .3em
    }

    .pet-parallax .full-banner {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .home-slider .home {
        height: 58vh
    }

    .home-slider .slider-contain {
        height: 58vh
    }

    .home-slider .slider-contain h1 {
        font-size: 30px
    }

    .home-slider .slider-details {
        top: 18%;
        right: 8%;
        width: 180px !important;
        height: 180px !important
    }

    .home-slider .slider-details h1 {
        font-size: 22px;
        margin: 5px 0
    }

    .home-slider .slider-details h2 {
        font-size: 18px
    }

    .home-slider .slider-details h3 {
        font-size: 16px
    }

    .home-slider .slider-details h4 {
        display: none
    }

    .home-slider.fullpage .home .slider-contain {
        text-align: center;
        justify-content: center;
        padding-left: 0
    }

    .home-slider.fullpage .home .slider-contain>div {
        background-color: rgba(0, 0, 0, .15);
        padding: 30px 50px
    }

    .home-slider.fullpage .home .slider-contain h1,
    .home-slider.fullpage .home .slider-contain p {
        color: #fff
    }

    .home-slider.fullpage .home .slider-contain h1 {
        font-size: 22px
    }

    .home-slider.fullpage .home .slider-contain p {
        max-width: 330px;
        font-size: 12px
    }

    .home-slider.fullpage .home .slider-contain .btn-solid {
        padding: 10px 15px
    }

    .height-85 .home-slider .home {
        height: 60vh
    }

    .height-85 .home-slider .slider-contain {
        height: 60vh
    }

    .digital-download .height-85 .home-slider {
        height: 34vh
    }

    .nft-home .home-slider .slider-contain {
        height: 30vh
    }

    .background {
        padding: 10px 10px
    }

    .background .contain-bg {
        padding-top: 10px;
        padding-bottom: 10px;
        margin: 10px 0
    }

    .background .contain-bg:hover {
        background-color: unset
    }

    .category-border {
        padding: 10px 10px
    }

    .category-border .border-padding {
        padding: 10px 10px
    }

    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
        margin-right: 10px
    }

    .alert {
        right: 0 !important;
        left: 0;
        max-width: 90% !important
    }

    .tap-top {
        width: 35px;
        height: 35px;
        padding: 2px;
        font-size: 19px
    }

    .layout2-logo {
        padding-right: 0
    }

    .absolute-banner {
        margin-top: 0
    }

    .absolute-banner .absolute-bg {
        box-shadow: none;
        padding-bottom: 0;
        padding-inline: calc(var(--bs-gutter-x)*.5)
    }

    .absolute-banner.banner-padding {
        padding-top: 0
    }

    .box-layout-body .box-layout {
        margin-top: 0
    }

    header.full-scroll-menu .container-fluid {
        padding-left: 15px;
        padding-right: 15px
    }

    .layout-20 {
        padding: 0
    }

    .bake-header.header-5 .main-menu .brand-logo {
        left: 50%;
        transform: translateX(-50%)
    }

    .pd-sm-0 {
        padding: 0
    }

    .img-category h4 {
        font-size: 14px
    }

    .img-category .img-sec {
        width: 100%
    }

    .category-bg.onerow-cat .order-section div:nth-child(2) {
        order: 3;
        margin-bottom: 15px;
        margin-top: 15px
    }

    .category-bg .contain-block {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .button-dark.category-button .btn {
        padding: 10px 6px;
        font-size: 12px
    }

    .button-dark.category-button .btn img {
        margin-right: 8px
    }

    .absolute-banner.banner-padding.banner-style-2 {
        padding-top: 15px
    }

    .banner-style-2.absolute-banner .absolute-bg .collection-banner:hover .absolute-img img {
        top: 30px
    }

    .subscribe-form {
        display: block;
        text-align: center
    }

    .subscribe-form .form-control {
        padding: 12px
    }

    .vector-category {
        margin-top: 0
    }

    .product-vertical .full-banner {
        padding-top: 45px !important;
        padding-bottom: 45px !important
    }

    .cookie-bar {
        display: block;
        text-align: center;
        bottom: -130px
    }

    .cookie-bar p {
        margin-bottom: 8px
    }

    .cookie-bar.show {
        bottom: 0
    }

    .recently-purchase {
        left: 10px
    }

    .recently-purchase .close-popup {
        right: 2px;
        top: 0
    }

    .recently-purchase .media-body {
        padding: 0 0px 0 5px
    }

    .subscribe-box {
        display: none !important
    }

    .error-section {
        padding: 100px 0
    }

    .error-section h1 {
        font-size: 100px
    }

    .error-section h2 {
        margin: 20px 0;
        font-size: 18px
    }

    .blog-detail-page .blog-detail .post-social li {
        display: block
    }

    .blog-detail-page .blog-detail .post-social li+li {
        padding-left: 0;
        margin-left: 0;
        border-left: none
    }

    .collection .collection-block .collection-content p {
        margin-bottom: 10px
    }

    .collection .collection-block .collection-content h4,
    .collection .collection-block .collection-content h3 {
        margin-bottom: 5px
    }

    .cart-section .cart-buttons>div:last-child {
        padding-right: 15px
    }

    .cart-section .cart-buttons .btn-solid {
        padding: 7px 8px;
        white-space: nowrap
    }

    .wishlist-section .btn-solid {
        padding: 7px 8px
    }

    .collection-wrapper .order-up {
        order: -1
    }

    .product-box .img-wrapper .lable-block .lable3 {
        font-size: 12px;
        padding: 13px 8px
    }

    .product-box .img-block .lable-wrapper .lable1,
    .product-box .img-block .lable-wrapper .lable2 {
        padding: 6px 9px 8px 15px;
        font-size: 12px
    }

    .tab-product .tab-content.nav-material p {
        line-height: 1.5
    }

    .beauty-about .service .service-block1 {
        margin-bottom: 20px
    }

    .beauty-about .service .service-block1:last-child {
        margin-bottom: 0
    }

    .main-menu .menu-left .navbar i {
        font-size: 24px
    }

    .vendor-cover .bg-size {
        height: 250px
    }

    .vendor-profile {
        margin-top: -50px
    }

    .start-selling form .row>div:nth-child(2) {
        margin-top: 15px
    }

    .become-vendor .step-bg .step-box .steps {
        margin: 0 auto 15px auto
    }

    .bg-title .theme-tab .bg-title-part {
        display: block;
        text-align: center
    }

    .bg-title .theme-tab .bg-title-part .tab-title {
        margin-left: unset;
        text-align: center
    }

    .bg-title .theme-tab .bg-title-part .tab-title li {
        padding-left: 5px;
        padding-right: 5px
    }

    .bg-title .theme-tab .bg-title-part .tab-title.w-bg {
        margin-top: 15px
    }

    .portfolio-section.metro-section .product-box .product-detail.default-view {
        bottom: 0;
        width: 100%
    }

    .sticky-bottom-cart .selection-section .form-control {
        text-transform: capitalize;
        font-size: 13px
    }

    .sticky-bottom-cart .add-btn .btn {
        padding: 5px 8px;
        font-size: 13px;
        text-transform: capitalize
    }

    .theme-invoice-2 .invoice-body .date-detail {
        margin-bottom: 14px;
        padding-bottom: 14px
    }

    .theme-invoice-2 .invoice-body .date-detail li {
        width: 100%
    }

    .theme-invoice-4 .invoice-header .background-invoice {
        left: 40px
    }

    .element-page {
        margin-bottom: 60px
    }

    .newsletter-custom-mb {
        margin-bottom: .5rem !important
    }
}

@media(max-width: 575px) {
    footer .sub-title .footer-title {
        margin-top: 11px
    }

    .gradient-category .gradient-border {
        height: 220px
    }

    .breadcrumb-section .page-title {
        text-align: center;
        margin: 0 auto;
        vertical-align: middle;
        display: unset
    }

    .breadcrumb-section .page-title h2 {
        margin-top: -2px
    }

    .button-dark.category-button .btn {
        justify-content: center
    }
}

@media(max-width: 480px) {
    .title1 .title-inner1 {
        margin-bottom: 20px
    }

    .title1.title5 hr[role=tournament6] {
        margin: 12px auto 20px auto
    }

    .title2 .title-inner2 {
        margin-bottom: 20px
    }

    .title3 .line {
        margin-bottom: 20px
    }

    .title4 .line {
        margin-bottom: 20px
    }

    .title-borderless {
        margin-bottom: 20px
    }

    .setting-box .setting-title img {
        width: 60%
    }

    .setting-box .setting-title h3 {
        line-height: 24px;
        font-size: 18px
    }

    .demo-section .demo-effects>div .demo-text h4 span {
        position: absolute;
        top: 0;
        right: 7px;
        padding: 0;
        font-size: 11px;
        border-radius: 2px;
        margin-left: 0;
        width: 36px;
        height: 18px;
        line-height: 18px
    }

    .service_slide .home-slider .slider-contain {
        height: 55vh
    }

    header.left-header .main-menu .menu-left .mobile-logo {
        top: 22px
    }

    .gym-banner .collection-banner .contain-banner>div {
        background-color: rgba(0, 0, 0, .5);
        padding: 10px
    }

    .gym-banner .collection-banner .contain-banner h2 {
        font-size: 20px;
        margin-top: 4px
    }

    .gym-banner .collection-banner .contain-banner h4 {
        font-size: 14px
    }

    .subscribe-form.classic-form .form-control {
        margin-left: 0
    }

    .theme-tab .tab-title li {
        padding-left: 5px;
        padding-right: 5px
    }

    .theme-tab .tab-title2 {
        margin-bottom: 30px;
        font-size: 18px;
        font-weight: 400
    }

    .theme-tab .tab-title2 li {
        padding-left: 15px;
        padding-right: 15px
    }

    .theme-tab .tab-title2:after {
        display: none
    }

    .blog-details {
        padding-left: 0;
        padding-right: 0
    }

    .full-banner {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .full-banner.parallax-layout {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .pet-parallax .full-banner {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .collection-banner .contain-banner {
        padding-left: 30px;
        padding-right: 30px
    }

    .collection-banner .contain-banner h2 {
        font-size: 24px
    }

    .home-slider .home {
        height: 45vh
    }

    .home-slider .slider-details {
        width: 150px !important;
        height: 150px !important
    }

    .home-slider .slider-details h1 {
        font-size: 20px
    }

    .home-slider .slider-details h2 {
        font-size: 16px
    }

    .home-slider .slider-details h3 {
        font-size: 14px
    }

    .home-slider .slider-contain {
        height: 45vh
    }

    .home-slider .slider-contain h1 {
        font-size: 28px
    }

    .home-slider .slider-contain h4 {
        letter-spacing: .1em
    }

    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 5px
    }

    .height-85 .home-slider .home {
        height: 55vh
    }

    .height-85 .home-slider .slider-contain {
        height: 55vh
    }

    .digital-download .height-85 .home-slider {
        height: 34vh
    }

    .nft-home .home-slider .slider-contain {
        height: 30vh
    }

    .footer-theme2.section-light .footer-block .subscribe-white {
        padding: 30px 30px
    }

    .footer-theme2.section-light .footer-block .subscribe-white .form-control {
        letter-spacing: 3px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 35px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content img {
        margin-bottom: 10px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
        margin-bottom: 15px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form .form-control {
        height: 40px;
        padding: 0
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form .btn-solid,
    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .age-content form .btn-outline {
        padding: 8px 15px
    }

    .theme-modal.cart-modal .modal-dialog .modal-content .modal-body .modal-bg.addtocart .media {
        display: block;
        text-align: center
    }

    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body h4 {
        font-size: 15px
    }

    .tab-bg,
    .setting-box {
        width: 305px;
        padding-inline: 0
    }

    .setting-box .setting-contant .setting_buttons {
        display: flex
    }

    .setting-box .setting-contant .setting_buttons li {
        width: 40% !important
    }

    .upper-canvas-section.height-100 .home-slider .slider-contain.left-canvas-section {
        padding-top: 80px
    }

    .lower-canvas-section .left-canvas-section {
        padding: 20px 0 20px
    }

    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 160px;
        max-width: unset
    }

    .gradient-category .gradient-border {
        height: 180px
    }

    .about-page p {
        line-height: 1.5;
        margin-bottom: 0
    }

    .testimonial .testimonial-slider .media {
        display: inline-block
    }

    .testimonial .testimonial-slider .media img {
        margin: 0 auto;
        height: 100px;
        width: 100px
    }

    .testimonial .testimonial-slider .media .media-body {
        padding: 0;
        text-align: center
    }

    .blog-detail-page .blog-contact h2 {
        font-size: 30px;
        margin-bottom: 25px
    }

    .blog-detail-page .blog-contact .theme-form input,
    .blog-detail-page .blog-contact .theme-form textarea {
        padding: 12px 20px;
        margin-bottom: 20px
    }

    .blog-detail-page .blog-advance ul {
        line-height: 1.5
    }

    .blog-detail-page .blog-advance img {
        margin-bottom: 20px;
        margin-top: 10px
    }

    .blog-detail-page .blog-advance p {
        line-height: 1.5
    }

    .blog-detail-page .comment-section li {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .blog-detail-page .comment-section li p {
        line-height: 1.5
    }

    .blog-detail-page .comment-section li h6 {
        margin-top: 10px;
        margin-bottom: 10px
    }

    .blog-detail-page .comment-section li h6 span {
        display: inherit;
        margin-left: 0
    }

    .blog-detail-page .comment-section .media {
        display: inline-block;
        text-align: center
    }

    .faq-section .theme-accordion .card .card-body p {
        line-height: 1.5 !important
    }

    .faq-section .theme-accordion .card .card-header button {
        line-height: 1.3;
        padding: 12px 35px 12px 12px !important
    }

    .faq-section .accordion.theme-accordion .card .card-header button:before {
        top: 20px
    }

    .blog-page .blog-media .blog-right h6 {
        margin-bottom: 0
    }

    .blog-page .blog-media .blog-right p {
        line-height: 1.3
    }

    .blog-page .blog-media .blog-right h4 {
        margin-bottom: 5px
    }

    .blog-page .blog-media .blog-right ul {
        margin-bottom: 5px
    }

    .blog-page .blog-media .blog-right ul li {
        display: block
    }

    .blog-page .blog-media .blog-right ul li+li {
        padding-left: 0;
        margin-left: 0;
        border-left: none
    }

    .dashboard-section .dashboard-box .dashboard-detail ul li .details {
        display: block
    }

    .dashboard-section .dashboard-box .dashboard-detail ul li .details .left {
        width: auto
    }

    .dashboard-section .dashboard-box .dashboard-detail ul li .details .left h6 {
        font-weight: 600
    }

    .theme-invoice-4 .invoice-header .background-invoice {
        left: 110px
    }

    .cart-section tfoot tr td:first-child {
        width: auto
    }
}

@media(max-width: 420px) {
    h2 {
        font-size: 22px
    }

    .header-style-1 .navbar .nav-link {
        padding-right: 12px
    }

    .portfolio-section.metro-section .product-box .product-detail {
        width: 95%;
        bottom: 5px
    }

    .portfolio-section.metro-section .product-box .product-detail h6,
    .portfolio-section.metro-section .product-box .product-detail h4 {
        font-size: 12px
    }

    .subscribe h4 {
        display: block
    }

    footer p {
        line-height: 25px
    }

    .blog-details p {
        font-size: 14px;
        line-height: 1.3
    }

    .product-box .cart-detail i,
    .product-wrap .cart-detail i {
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 14px
    }

    .product-box .cart-info i,
    .product-wrap .cart-info i {
        padding: 5px;
        font-size: 13px
    }

    .product-box .img-wrapper .lable-block .lable4,
    .product-wrap .img-wrapper .lable-block .lable4 {
        font-size: 10px
    }

    .product-box .img-wrapper .cart-box i,
    .product-wrap .img-wrapper .cart-box i {
        font-size: 14px;
        padding-left: 4px;
        padding-right: 4px
    }

    .product-box .product-detail,
    .product-box .product-info,
    .product-wrap .product-detail,
    .product-wrap .product-info {
        margin-top: 5px
    }

    .product-box .product-detail h6,
    .product-box .product-info h6,
    .product-wrap .product-detail h6,
    .product-wrap .product-info h6 {
        font-size: 14px
    }

    .product-box .product-detail h4,
    .product-box .product-info h4,
    .product-wrap .product-detail h4,
    .product-wrap .product-info h4 {
        font-size: 15px
    }

    .absolute_banner .collection-banner .absolute-contain {
        padding: 10px;
        bottom: 10px
    }

    .absolute-product .product-box .product-detail .cart-bottom i {
        padding-right: 4px;
        padding-left: 4px;
        font-size: 16px
    }

    .timer span .padding-l {
        padding-left: 5px
    }

    .about-text p {
        line-height: 22px
    }

    .service_slide .service-home .service-block1 svg {
        width: 40px;
        height: 40px
    }

    .footer-theme .sub-title .contact-list li {
        line-height: 25px
    }

    .footer-theme2 p {
        line-height: 25px
    }

    .footer-light .subscribe-form .form-control {
        width: 280px
    }

    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .btn-solid,
    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .btn-outline {
        padding: 13px 8px
    }

    .footer-theme2 .subscribe-block .form-control {
        letter-spacing: 3px
    }

    .subscribe-form {
        display: inline-block
    }

    .subscribe-form .form-group {
        margin-bottom: 10px
    }

    .home-slider .slider-contain h1 {
        font-size: 25px;
        margin-top: 10px
    }

    .home-slider .slider-contain h4 {
        letter-spacing: .01em
    }

    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 10px;
        padding: 5px 18px
    }

    .home-slider .slider-details {
        width: 120px !important;
        height: 120px !important;
        top: 24%
    }

    .home-slider .slider-details h1 {
        font-size: 18px
    }

    .home-slider .slider-details h2 {
        font-size: 14px
    }

    .home-slider .slider-details h3 {
        font-size: 12px
    }

    .full-box .center-slider .offer-slider .product-box {
        display: flex;
        border-bottom: 1px solid #f1f5f4;
        border-top: 1px solid #f1f5f4;
        padding: 15px 0
    }

    .full-box .center-slider .offer-slider .product-box .img-wrapper img {
        height: 120px;
        padding: 0 15px 0 0
    }

    .full-box .center-slider .offer-slider .product-box .product-info {
        text-align: left
    }

    .full-box .center-slider .offer-slider .product-box .product-info h6 {
        padding-top: 5px
    }

    .full-box .center-slider .offer-slider .product-box .product-detail {
        padding-left: 0
    }

    .full-box .center-slider .offer-slider .product-box .product-detail h4 {
        font-size: 20px
    }

    .full-box .center-slider .offer-slider .product-box:hover .product-info .btn-outline {
        display: none
    }

    .full-box .theme-card .offer-slider .sec-1 {
        display: inline
    }

    .full-box .theme-card .offer-slider .sec-1 .product-box2 {
        border-bottom: 1px solid #f1f5f4
    }

    .full-box .theme-card .offer-slider .sec-1 .product-box2:last-child {
        border-bottom: none
    }

    .full-box .theme-card .offer-slider .sec-1 .product-box2+.product-box2 {
        border-left: none
    }

    .center-slider .offer-slider .product-box .product-detail {
        text-align: left !important
    }

    .center-slider .offer-slider .product-box .product-detail .rating i {
        padding-right: 3px
    }

    .center-slider .offer-slider .product-box .product-detail h4 {
        padding-bottom: .5rem
    }

    .center-slider .offer-slider .product-box .img-wrapper .cart-box {
        display: none
    }

    .product-box .img-wrapper .lable-block .lable3 {
        font-size: 10px;
        padding: 10px 5px
    }

    .product-box .img-wrapper .cart-box {
        padding: 4px 8px;
        bottom: 10px
    }

    .product-box .img-block .lable-wrapper {
        top: 20px
    }

    .product-box .img-block .lable-wrapper .lable1,
    .product-box .img-block .lable-wrapper .lable2 {
        padding: 5px 5px 5px 8px;
        font-size: 12px
    }

    .product-box .cart-info {
        bottom: 10px
    }

    .team h6 {
        line-height: 15px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 30px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
        font-size: 30px
    }

    .tab-product .theme-form input,
    .tab-product .theme-form textarea {
        font-size: 12px;
        padding: 8px 15px
    }

    .order-box .sub-total .shipping {
        width: unset;
        float: unset;
        display: block
    }

    .order-box .sub-total .shipping .shopping-option label {
        margin-bottom: 0
    }

    .order-box .sub-total .shipping .shopping-option:last-child {
        padding-left: 0
    }

    .checkout-page .checkout-form .form-group {
        margin-bottom: 15px
    }

    .checkout-page .checkout-form input[type=text],
    .checkout-page .checkout-form input[type=email],
    .checkout-page .checkout-form input[type=password],
    .checkout-page .checkout-form input[type=tel],
    .checkout-page .checkout-form input[type=number],
    .checkout-page .checkout-form input[type=url] {
        height: 40px
    }

    .checkout-page .checkout-form select,
    .checkout-page .checkout-form textarea {
        height: 40px
    }

    .banner-style-1 .theme-card.center-align {
        display: block
    }

    .banner-style-1 .theme-card.center-align .offer-slider .product-box2 .media .media-body {
        margin: 10px 0
    }

    .banner-style-1 .full-box .theme-card .offer-slider .product-box2 .media img.h-cls {
        height: 130px
    }

    .sticky-bottom-cart .product-image img {
        width: 50px;
        height: 60px
    }

    .sticky-bottom-cart .add-btn .btn {
        padding: 5px 4px;
        font-size: 12px
    }

    .deal-category .deal-content {
        width: calc(100% - 15px);
        height: calc(100% - 15px)
    }

    .deal-category .deal-content h2 {
        font-size: 14px;
        margin-bottom: 3px
    }

    .gradient-category .gradient-border {
        height: 140px
    }
}

@media(max-width: 360px) {
    .recently-purchase {
        left: 0;
        width: -webkit-fill-available;
        margin-inline: 13px
    }

    .btn-solid,
    .btn-outline {
        padding: 10px 15px
    }

    h2 {
        font-size: 18px
    }

    .category-button .col {
        flex-basis: unset
    }

    .gym-banner .collection-banner .contain-banner h2 {
        font-size: 18px
    }

    .service_slide .home-slider .slider-contain {
        height: 50vh
    }

    footer .btn-solid {
        padding: 7px 8px
    }

    .footer-theme2 .subscribe-block {
        padding: 0 30px
    }

    .footer-theme2.section-light .footer-block .subscribe-white {
        padding: 20px 20px
    }

    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .form-group .form-control {
        border: none
    }

    .footer-end p {
        font-size: 13px
    }

    .category-border div .category-banner .category-box h2 {
        padding: 7px 15px
    }

    .full-banner {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .full-banner.parallax-layout {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .pet-parallax .full-banner {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .home-slider .home {
        height: 21vh
    }

    .home-slider .slider-contain {
        height: 40vh
    }

    .home-slider .slider-contain h1 {
        font-size: 22px
    }

    .home-slider .slider-contain h4 {
        font-size: 14px
    }

    .home-slider .slider-contain .btn-solid,
    .home-slider .slider-contain .btn-outline {
        margin-top: 8px;
        padding: 5px 15px
    }

    .home-slider .slider-details {
        top: 20%
    }

    .home-slider .slider-details h1 {
        font-size: 16px
    }

    .home-slider .slider-details h2 {
        font-size: 13px
    }

    .height-85 .home-slider .home {
        height: 50vh
    }

    .height-85 .home-slider .slider-contain {
        height: 50vh
    }

    .digital-download .height-85 .home-slider {
        height: 34vh
    }

    .nft-home .home-slider .slider-contain {
        height: 30vh;
        padding-top: 105px
    }

    .layout-7.home-slider .home {
        height: 40vh
    }

    .layout-7.home-slider .home .slider-contain {
        height: 40vh
    }

    .layout-7.sm-size .home {
        height: 30vh
    }

    .layout-7.sm-size .home .slider-contain {
        height: 30vh
    }

    .theme-tab .tab-content .product-tab .tab-box .product-box2 .media .media-body a h6 {
        font-size: 13px
    }

    .theme-modal .modal-dialog .modal-content .modal-body {
        padding: 10px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg {
        padding: 20px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .btn-close {
        right: 10px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content form .form-group .form-control {
        padding-top: 10px;
        padding-bottom: 10px
    }

    .theme-modal .modal-dialog .modal-content .modal-body .modal-bg .offer-content h2 {
        font-size: 20px;
        margin-bottom: 10px
    }

    .cart-section tbody tr td,
    .wishlist-section tbody tr td {
        min-width: 115px
    }

    .cart-section tbody tr td .mobile-cart-content .col,
    .wishlist-section tbody tr td .mobile-cart-content .col {
        margin-left: 5px;
        margin-right: 5px
    }

    .cart-section tbody tr td a img,
    .wishlist-section tbody tr td a img {
        height: 80px
    }

    .cart-section tfoot tr td,
    .wishlist-section tfoot tr td {
        padding-right: 27px
    }

    .cart-section tfoot tr td h2,
    .wishlist-section tfoot tr td h2 {
        font-size: 21px
    }

    .wishlist-section .wishlist-buttons:last-child a {
        margin-left: 0
    }

    .product-buttons .btn-solid,
    .product-buttons .btn-outline {
        padding: 7px 16px
    }

    .product-description .qty-box .input-group {
        width: 100%
    }

    .product-form-box .timer span {
        width: 47px
    }

    .product-form-box .timer span .padding-l {
        padding-left: 9px
    }

    .product-form-box .product-buttons .btn-solid,
    .product-form-box .product-buttons .btn-outline {
        padding: 5px 5px
    }

    .gradient-category .gradient-border {
        height: 130px
    }
}

@media(max-width: 320px) {
    .home-slider .slider-details {
        top: 16%
    }

    .footer-theme .footer-logo {
        margin-bottom: 20px
    }

    .footer-theme2 .col {
        padding: 10px 5px
    }

    .dark-layout .footer-theme2 .subscribe-wrapper .subscribe-block .form-group .form-control {
        letter-spacing: 1px
    }

    .footer-theme2.section-light .footer-block .subscribe-white .form-control {
        letter-spacing: 1px
    }

    .collection-banner .contain-banner.banner-3 {
        padding-left: 25px;
        padding-right: 25px
    }

    .collection-banner .contain-banner.banner-3 h2 {
        font-size: 15px
    }

    .collection-banner .contain-banner.banner-4 {
        padding-left: 35px;
        padding-right: 35px
    }

    .collection-banner .contain-banner.banner-4 h2 {
        font-size: 15px
    }

    .gradient-category .gradient-border {
        height: 110px
    }
}

.quick-view-modal .modal-body {
    padding: calc(15px + 10*(100vw - 320px)/1600) !important
}

.quick-view-modal .modal-body .product-page-details {
    position: relative;
    inset: unset
}

.quick-view-modal .modal-body .product-page-details .sale-timer-box {
    display: none
}

.quick-view-modal .product-page-details .product-rating {
    margin-top: 0
}

.quick-view-modal .product-page-details .main-title {
    font-size: calc(20px + 10*(100vw - 320px)/1600);
    margin-bottom: calc(5px + 5*(100vw - 320px)/1600)
}

.quick-view-modal .product-page-details .description-text {
    font-size: calc(14px + 1*(100vw - 320px)/1600)
}

.quick-view-modal .product-page-details .price-text {
    margin-bottom: 13px
}

.quick-view-modal .product-page-details .price-text h3 {
    font-size: calc(20px + 4*(100vw - 320px)/1600);
    gap: 10px;
    margin-block: 13px calc(2px + 2*(100vw - 320px)/1600)
}

.quick-view-modal .product-page-details .price-text h3 .discounted-price {
    font-weight: 500;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 0;
    margin-left: 7px;
    font-size: calc(14px + 2*(100vw - 320px)/1600)
}

.quick-view-modal .product-page-details .price-text h3 .discounted-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: .1
}

.quick-view-modal .product-page-details .buy-button {
    padding: calc(7px + 3*(100vw - 320px)/1600) calc(12px + 10*(100vw - 320px)/1600) !important
}

.quick-view-modal .product-page-details .shipping-info {
    display: grid;
    line-height: 1.9;
    color: #5f5f5f;
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 7px 21px;
    padding-left: 20px;
    margin-bottom: calc(0px + -7*(100vw - 320px)/1600);
    text-align: left
}

.quick-view-modal .product-page-details .shipping-info li {
    line-height: 1.4
}

.quick-view-modal .product-page-details .product-detail-label {
    gap: 8px
}

.quick-view-modal .product-page-details .product-detail-label li {
    padding: 4px 8px
}

.quick-view-modal .product-page-details .qty-section .qty-box .input-group input {
    padding-block: 0
}

.quick-view-modal .product-page-details .qty-section .qty-box .input-group button {
    padding: 0;
    width: 32px;
    height: 32px
}

.quick-view-modal .product-page-details .bordered-box {
    padding-top: 14px;
    margin-top: 14px
}

/*# sourceMappingURL=style.css.map */

.add_to_cart {
    z-index: 1300 !important;
}

.compare-tap-top-box {
    z-index: 1000 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .main-menu {
    height: 50px;
    align-items: center;
  }
}
