:root {
    --primary: #0c5d25;
    --primaryDark: #099235;
    --dark: #3a3a3a;
    --dark50: #54595f;
    --red: #d60000;
    --redDark: #bd0000;
    --green: #00ab61;
    --lime: #59f076;
    --white: #fff;
    --bs-link-color: var(--lime);
    --greylight: #f0eeee;
    --bs-text-mode: #000000;
}

/* =================animate css starts here================= */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

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

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

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

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

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

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

.os-animation {
    opacity: 0;
}

.os-animation.animated {
    opacity: 1;
}

/* =================animate css end here================= */
body {
    display: flex;
    flex-flow: column;
    padding-top: 70px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: calc(100% - 16px);
    max-width: 1300px;
}

.container-fluid {
    width: calc(100% - 16px);
}

.strike_price {
    font-size: 12px;
}

.chosen_price .strike_price,
.side-cart-item-price .strike_price {
    font-size: 16px;
}

a,
input,
button {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    outline: none;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
}

a img {
    border: 0px none;
}

a:hover {
    outline: none;
    color: var(--primary);
    text-decoration: none;
}

a:active {
    outline: none;
    text-decoration: none;
}

a:focus {
    outline: none;
    outline-offset: 0px;
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    border: 0;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: inherit;
}

#news-details p b,
.product-description b {
    font-weight: 700;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 27px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
    padding: 0px;
    margin-bottom: 16px;
}

strong {
    font-weight: 700;
}

b {
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

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

.tooltip {
    z-index: 9;
}

/* =================slick css ends here================= */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
}

.slick-slide img {
    display: block;
    width: 100%;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-arrow.slick-disabled {
    cursor: no-drop;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev,
.slick-next {
    z-index: 99;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    float: left;
    padding: 0;
    margin-top: -25px\9;
    /*lte IE 8*/
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #fff;
    outline: none;
    box-shadow: 0 0 10px rgb(0 0 0 / 25%);
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.3;
}

.slick-prev:before,
.slick-next:before {
    font-family: "font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
    opacity: 0.9;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: transparent;
    border-radius: 50%;
    display: inline-block;
    padding: 0;
}

.slick-slider:hover .slick-next {
    right: 15px;
    opacity: 1;
}

.slick-slider:hover .slick-prev {
    /* left: 15px; */
    opacity: 1;
}

.slick-prev {
    left: -30px;
    opacity: 0;
}

.slick-prev:before {
    content: "\f053";
}

.slick-next {
    right: -30px;
    opacity: 0;
}

.slick-next:before {
    content: "\f054";
}

.slick-slider {
    margin-bottom: 0;
    padding-bottom: 0px;
}

.slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 0px;
    padding: 0;
    text-align: center;
    cursor: pointer;
    vertical-align: text-bottom;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    outline: none;
    background: #e0e0e0;
    opacity: 1;
    border: none;
    border-radius: 50%;
    margin: 2px 3px;
}

.slick-dots li.slick-active button,
.slick-dots li:hover button {
    opacity: 1;
    background-color: var(--primary);
}

.white-dots .slick-dots li button {
    border-color: #fff;
    background: #fff;
    opacity: 0.4;
}

.white-dots .slick-dots li.slick-active button,
.white-dots .slick-dots li:hover button {
    background-color: #fff;
    opacity: 1;
}

.slider__counter {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.arrow-visible .slick-slider .slick-prev {
    left: 15px !important;
    opacity: 1;
}

.arrow-visible .slick-slider .slick-next {
    right: 15px !important;
    opacity: 1;
}

/* =================slick css end here=================  */

.btn {
    border-radius: 4px;
    font-weight: 600;
    padding: 10px 20px;
    min-width: 130px;
    font-size: 14px;
    line-height: 18px;
    box-shadow: none;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
}

.btn.btn-lg {
    padding: 14px 30px;
    font-size: 16px;
}

.btn-default,
.btn-default:focus {
    color: var(--white);
    background-color: var(--primary);
    border: solid 1px var(--primary);
}

.btn-default:hover,
.btn-default:active {
    color: var(--white) !important;
    background-color: var(--primaryDark) !important;
    border-color: var(--primaryDark) !important;
}

.btn-default-outline,
.btn-default-outline:focus {
    color: var(--primary);
    background-color: var(--white);
    border: solid 1px var(--primary);
}

.btn-default-outline:hover,
.btn-default-outline:active {
    color: var(--white) !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-danger,
.btn-danger:focus {
    color: var(--white);
    background-color: var(--red);
    border: solid 1px var(--red);
}

.btn-danger:hover,
.btn-danger:active {
    color: var(--white) !important;
    background-color: var(--redDark) !important;
    border-color: var(--red) !important;
}

.btn-primary,
.btn-primary:focus {
    color: var(--white);
    background-color: var(--dark);
    border: solid 1px var(--dark);
}

.btn-primary:hover,
.btn-primary:active {
    color: var(--white) !important;
    background-color: #2f2f2f !important;
    border-color: #2f2f2f !important;
}

.btn-white,
.btn-white:focus {
    color: var(--dark);
    background-color: var(--white);
    border: solid 1px var(--greylight);
}

.btn-white:hover,
.btn-white:active {
    color: var(--dark) !important;
    background-color: var(--greylight) !important;
    border: solid 1px var(--greylight);
}

.btn-lime,
.btn-lime:focus {
    color: var(--dark);
    background-color: var(--white);
    border: solid 2px var(--lime);
}

.btn-lime:hover,
.btn-lime:active {
    color: var(--dark) !important;
    background-color: var(--lime) !important;
    border-color: var(--lime) !important;
}

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

.btn + .btn {
    margin-left: 16px;
}

.btn .spinner-border {
    width: 16px;
    height: 16px;
}

ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

ul:not([class]) {
    list-style: none;
    margin-bottom: 15px;
    text-align: left;
    line-height: 22px;
}

ul:not([class]) > li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 14px;
}

ul:not([class]) > li:last-child {
    margin-bottom: 0;
}

ul:not([class]) > li:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    background: #000;
    height: 5px;
    width: 5px;
    border-radius: 50%;
}

.grey-bg {
    background: #f5f5f5;
}

.content-container {
    padding: 80px 0;
}

/*.content-container.less-padd{padding: 50px 0;}*/
.content-container.less-padd {
    margin: 30px 0;
    padding: 0 !important;
}

/*durgesh changes*/
@media only screen and (max-width: 600px) {
    .content-container.less-padd {
    }
}

/*end durgesh*/
.heading {
    margin-bottom: 30px;
}

.heading h2 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 27px;
}

.heading.heading-lg h2 {
    font-size: 40px;
}

.heading h3 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 20px;
}

.heading h4 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 18px;
}

.heading p {
    margin-bottom: 0px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.heading h3 span,
.heading h4 span {
    position: relative;
    padding-bottom: 8px;
}

.heading h3 span::before,
.heading h4 span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dark50);
    bottom: -1px;
    left: 0;
}

@keyframes moveLine {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.font-weight-600 {
    font-weight: 600;
}

/*core css end */

/*header css start */
#header {
    color: var(--dark);
    background: var(--white);
    border-bottom: 1px solid #f2f2f2;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding: 0;
    z-index: 999;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    display: flex;
    align-items: center;
}

#header .container {
    max-width: 1640px;
}

#header .container-fluid {
    padding: 0 12px !important;
}

.header-fixed #header {
    background: var(--white);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

#header .navbar {
    padding: 0;
    width: 100%;
    height: 70px;
}

#header .navbar-brand {
    width: 230px;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 999;
}

.navbar-expand-xl .navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-expand-xl .navbar-nav .nav-link {
    font-size: 14px;
    line-height: 70px;
    font-weight: 700;
    padding: 0 4px !important;
    position: relative;
    color: #000 !important;
    padding: 0;
    margin: 0;
}

.navbar-expand-xl .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--dark);
    right: 0;
    transition: 0.3s ease;
    bottom: 20px;
}

.navbar-expand-xl .navbar-nav .nav-item:hover .nav-link,
.navbar-expand-xl .navbar-nav .nav-item.active .nav-link {
    color: var(--primary) !important;
}

.navbar-expand-xl .navbar-nav .nav-item:hover .nav-link::before,
.navbar-expand-xl .navbar-nav .nav-item.active .nav-link::before {
    width: 100%;
    right: auto;
    left: 0;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
    display: none;
}

.nav-inside {
    width: 100%;
    padding: 0;
}

.header-right {
    margin-left: 15px;
}

.nav-inside-content {
    padding: 30px 0;
}

.content-container.inner-banner.bg-light {
    padding-top: 80px;
}

.inner-banner h1 {
    font-size: 48px;
}

@media only screen and (min-width: 1200px) {
    .navbar-nav > li > .dropdown-menu {
        display: block !important;
        top: calc(100% + 1px) !important;
        border-top: 1px solid #f2f2f2;
        margin-top: 10px !important;
        opacity: 0;
        visibility: hidden;
        background: var(--white);
        color: var(--dark);
        min-width: 184px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
        border: 0;
        border-radius: 0;
        transition: all 0.1s ease-in;
        -moz-transition: all 0.1s ease-in;
        -webkit-transition: all 0.1s ease-in;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0px !important;
        transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -webkit-transition: all 0.2s ease-in;
    }

    .dropdown-item {
        color: var(--dark);
        padding: 5px 15px;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        color: var(--primary);
        background: transparent;
    }
}

.navbar-toggler {
    width: 45px;
    height: 45px;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    border: 0;
    background: transparent;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.navbar-default .navbar-toggler:hover,
.navbar-default .navbar-toggler:focus {
    background: transparent;
}

.navbar-toggler:not([class="collapsed"]),
.navbar-toggler:not([class="collapsed"]):focus,
.navbar-toggler:not([class="collapsed"]):hover {
    background: transparent;
}

.navbar-toggler.collapsed,
.navbar-toggler.collapsed:focus,
.navbar-toggler.collapsed:hover {
    background: transparent;
}

.navbar-toggler .icon-bar {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 4px;
    color: #243238;
    text-indent: -55px;
    margin-top: 0;
    background: transparent !important;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    vertical-align: middle;
}

.navbar-toggler .icon-bar:before,
.navbar-toggler .icon-bar:after {
    content: "";
    width: 22px;
    height: 4px;
    background: #005983;
    position: absolute;
    left: 0;
    transition: all 0.2s ease-out;
}

.navbar-toggler.collapsed .icon-bar {
    background: #005983 !important;
}

.navbar-toggler.collapsed .icon-bar:before,
.navbar-toggler.collapsed .icon-bar:after {
    background: #005983;
}

.navbar-toggler.collapsed .icon-bar:before {
    top: -8px;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
}

.navbar-toggler .icon-bar:before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.navbar-toggler.collapsed .icon-bar:after {
    bottom: -8px;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
}

.navbar-toggler .icon-bar:after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.header__trust__pilot {
    position: absolute;
    z-index: 9;
    width: 220px;
    padding: 8px 10px 12px;
    text-align: end;
    background-color: #000032;
    padding-right: 50px;
    clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
}

.header__trust__pilot img {
    width: 140px;
}

.page__title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page__title h1,
.page__title {
    margin: 0;
    font-size: 30px;
    letter-spacing: 0.1px;
    color: #212529;
}

/* header right  */
.mega-menu-grid {
    justify-content: space-between;
    gap: 20px;
}

.mega-menu-grid-item {
    min-width: 270px;
}

.mega-menu-grid-item {
    min-width: 270px;
}

.mega-menu-links {
    column-count: 2;
    column-gap: 20px;
}

.mega-menu-right-img {
    position: relative;
    width: calc(100% - 30px);
    padding-bottom: 98%;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    z-index: 9;
    margin-left: 30px;
}

.mega-menu-right-img > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mega-menu-right-img span {
    background: var(--white);
    padding: 10px 20px;
    color: #000;
    top: 50%;
    left: 50%;
    font-weight: 600;
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 9;
}

.mega-menu-right-img span img {
    margin-left: 10px;
}

.mega-menu-right-img span:hover {
    background: var(--white);
}

.mega-menu-right-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000040;
    z-index: 9;
    transition: all 0.3s ease;
}

.mega-menu-right-img:hover::before {
    background-color: #0000006e;
}

.mega-menu-box h5 {
    font-size: 14px;
    margin-bottom: 18px;
    background-color: var(--primary);
    padding: 10px 16px;
    color: #fff;
}

.mega-menu-box h5 a:hover {
    color: #fff;
}

.mega-menu-item + .mega-menu-item {
    margin-top: 10px;
}

.mega-menu-item .mega-menu-link {
    font-size: 14px;
    line-height: 16px;
    display: block;
}

.mega-menu-links .mega-menu-item {
    display: block;
}

.header-right-actions li + li {
    margin-left: 16px;
}

.header-right-actions {
    align-items: center;
}

.header-right-action.header-wish-btn,
.header-right-action.header-cart-btn {
    width: 36px;
    height: 36px;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.header-right-action.header-wish-btn svg,
.header-right-action.header-wish-btn img,
.header-right-action.header-cart-btn svg,
.header-right-action.header-cart-btn img {
    width: 20px;
    height: 20px;
}

.header-right-action.header-wish-btn:hover,
.header-right-action.header-cart-btn:hover {
    background-color: #e9e9e9;
}

.header-cart-count {
    position: absolute;
    top: -11px;
    right: -11px;
    display: block;
    border-radius: 50%;
    border-bottom-left-radius: 0px;
    color: var(--white);
    font-weight: 400;
    font-size: 12px;
    background-color: var(--primary);
    height: 20px;
    min-width: 20px;
    text-align: center;
    line-height: 20px;
}

/* mega menu  */
.nav-item.dropdown.mega-menu {
    position: static;
}

.mega-menu .dropdown-menu {
    width: 100%;
    left: 0;
    padding: 0;
    flex-wrap: wrap;
    max-height: calc(100dvh - 70px);
    overflow-x: hidden;
    overflow-y: auto;
}

.mega-menu-wrapper {
    padding: 30px 0;
}

/* header search  */
.searh-box-popup {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #f4f4f4;
    min-height: 445px;
    position: fixed;
    width: 100%;
    z-index: 99999;
    top: -100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.6s ease-in;
    transition: 0.6s ease-in;
}

.searh-box-popup .sbp-content {
    position: relative;
}

.searh-box-popup .sbp-content .sbp-close {
    position: absolute;
    top: -80px;
    right: -160px;
    background: transparent;
    border: none;
    width: 30px;
    padding: 0;
    opacity: 0.8;
}

.searh-box-popup .sbp-content .sbp-close img {
    width: 100%;
}

.searh-box-popup .sbp-content .sbp-close:hover {
    opacity: 1;
}

.searh-box-popup .sbp-content .sbp-label {
    margin-bottom: 16px;
    color: var(--primary);
    -webkit-transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -ms-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -ms-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transform: translateY(-175px);
    -webkit-transform: translateY(-175px);
    transform: translateY(-175px);
    transition-delay: 0.4s;
    opacity: 0;
    font-weight: 500;
}

.searh-box-popup .sbp-content .sbp-form-group {
    -webkit-transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -ms-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -ms-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transform: translateY(-175px);
    -webkit-transform: translateY(-175px);
    transform: translateY(-175px);
    transition-delay: 0.3s;
    opacity: 0;
}

.searh-box-popup .sbp-content .sbp-form-group input {
    width: calc(100% - 148px);
    line-height: 30px;
    border-radius: 26px;
    border: none !important;
    padding: 10px 25px;
    font-size: 14px;
}

.searh-box-popup .sbp-content .sbp-form-group input:hover,
.searh-box-popup .sbp-content .sbp-form-group input:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.searh-box-popup .sbp-content .sbp-form-group .btn {
    min-width: 132px;
    height: 50px;
    margin-left: 16px;
    white-space: nowrap;
    font-weight: 500;
    border-radius: 25px;
}

body::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(35, 35, 35, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.searh_box_open {
    overflow: hidden;
}

.searh_box_open::before {
    opacity: 1;
    visibility: visible;
}

.searh_box_open .searh-box-popup {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.searh_box_open .searh-box-popup .sbp-label,
.searh_box_open .searh-box-popup .sbp-form-group {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* header css  */
.service-detail-modal-text_new {
    width: 100%;
    padding: 66px 24px 40px;
}

/* cart modal css start  */
.side__cart__modal .offcanvas-header h5 {
    margin: 0;
    position: relative;
    padding-right: 26px;
    font-size: 20px;
}

.side__cart__modal .offcanvas-header {
    padding: 25px;
    border-bottom: 1px solid #c1c1c17a;
}

.side__cart__modal .offcanvas-header h5 span {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    border-radius: 50%;
    border-bottom-left-radius: 0px;
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    background-color: var(--primary);
    height: 22px;
    min-width: 22px;
    text-align: center;
    line-height: 22px;
}

.side__cart__modal .offcanvas-header .btn-close {
    top: 27px;
    right: 27px;
    transform: none;
}

.side-cart-item-box {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    min-height: 130px;
}

.side-cart-item-img {
    width: 80px;
    max-height: 70px;
}

.side-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.side-cart-item-text .side-cart-item-remove {
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    display: block;
    cursor: pointer;
}

.side-cart-item-text .side-cart-item-remove img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: super;
}

.side-cart-list .side-cart-item + .side-cart-item {
    margin-top: 10px;
}

.side-cart-item-text {
    width: calc(100% - 80px);
    padding-left: 10px;
    display: flex;
    flex-flow: column;
    height: 100%;
    position: relative;
}

.side-cart-item-text .side-cart-item-title {
    padding-right: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height */
    color: var(--dark);
    margin-bottom: 6px;
}

.side-cart-item-text .side-cart-item-meta {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 16px;
    color: var(--primary);
    margin-bottom: 6px;
}

.side-cart-item-text .side-cart-item-price {
    margin-top: auto;
    font-size: 18px;
    line-height: 27px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0px;
    padding-right: 100px;
}

.side-cart-item-text .side-cart-item-incrmnt {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    font-size: 14px;
    display: flex;
}

.side-cart-item-text .cart-qty {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    font-size: 14px;
    display: flex;
}

.side-cart-item-text .cart-qty .qty-btn {
    position: absolute;
    top: 3px;
    bottom: 1px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    background: var(--bs-gray-200);
    border-radius: 50%;
    border: none;
}

.side-cart-item-text .table-responsive .cart-qty .cart-qty-input {
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    border: 1px solid var(--bs-gray-300);
    padding: 0.675rem 1rem;
}

.side-cart-item-text .cart-qty .cart-qty-inc {
    right: 3px;
}

.side-cart-item-text .cart-qty .cart-qty-dec {
    left: 3px;
}

.side-cart-item-text .cart-qty .cart-qty-input {
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    border: 1px solid var(--bs-gray-300);
    height: 30px;
}

.side-cart-item-text .side-cart-item-img img {
    height: 100%;
    object-fit: contain;
}

.side-cart-item-text .side-cart-item-incrmnt .side-cart-item-val {
    width: calc(100% - 54px);
    border: 1px solid #54595f54;
    color: var(--dark50);
    text-align: center;
    font-weight: 500;
    line-height: 18px;
}

.side-cart-item-text .side-cart-item-incrmnt .side-cart-item-inc {
    min-width: 25px;
    border: 1px solid #54595f54;
    border-right: 0;
    background: transparent !important;
    line-height: 12px;
    font-size: 25px;
    color: var(--dark50);
    padding: 7px 5px 5px 5px;
    font-weight: 300;
}

.side-cart-item-text .side-cart-item-incrmnt .side-cart-item-dcr {
    width: 24px;
    border: 1px solid #54595f54;
    border-left: 0;
    background: transparent !important;
    line-height: 12px;
    font-size: 20px;
    color: var(--dark50);
    padding: 5px;
}

.side-cart-item-text .side-cart-item-incrmnt .side-cart-item-inc:hover,
.side-cart-item-text .side-cart-item-incrmnt .side-cart-item-dcr:hover {
    color: #fff;
    background: #222 !important;
}

.side-cart-lower {
    margin-top: 24px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.side-cart-lower-list li {
    justify-content: space-between;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
    background-color: #f1f1f1;
    font-family: poppins;
    font-weight: 700;
    color: #3b3b3b;
    text-transform: uppercase;
    margin: 0;
    font-size: 16px;
}

.side-cart-lower-list li span {
    padding: 10px 20px;
}

.side-cart-lower-list li.scl-apply-code {
    width: 100%;
    background: #fff;
    padding: 14px;
}

.side-cart-lower-list .scl-apply-code-input {
    width: 100%;
    border: 1px solid #e1dddd;
    height: 40px;
    padding: 8px 16px;
    border-radius: 4px;
    color: #555;
    font-size: 14px;
    padding-right: 70px;
}

.side-cart-lower-list li.scl-apply-code > div {
    width: 100%;
}

.side-cart-lower-list .scl-apply-code-input::placeholder {
    color: #555;
}

.side-cart-lower-list .scl--apply-code-btn {
    background: transparent !important;
    border: none !important;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    top: 12px;
    position: absolute;
    right: 10px;
    line-height: 14px;
}

.side-cart-lower-list li + li {
    border-top: 1px solid #e6e6e6;
}

.side-cart-lower-list li.scl-total {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.side__cart__checkout__btn {
    background-color: #f2f2f2;
    padding: 0;
}

.side__cart__checkout__btn .btn {
    width: 100%;
    border-radius: 0;
}

.side__cart__modal.offcanvas {
    max-width: 400px;
    width: 100%;
}

.side__cart__modal .offcanvas-header h5 {
    font-size: 18px;
}

.side__cart__modal .offcanvas-header h5 span {
    height: 20px;
    min-width: 20px;
    font-size: 12px;
}

.side-cart-item-img {
    width: 70px;
    max-width: 70px;
}

.side-cart-item-box {
    padding: 10px;
}

.side-cart-item-text {
    width: calc(100% - 70px);
}

/* header css end  */
.home-banner-imgs {
    display: none;
}

.home-banner-imgs.loaded {
    display: block;
}

.home-banner_img {
    position: relative;
    padding-bottom: 20%;
}

.home-banner-imgs .slick-track {
    display: flex;
}

.home-banner_img img,
.home-banner_img video {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

/* hero css start  */
.hero-container {
    position: relative;
    height: calc(100dvh - 70px);
    max-height: 920px;
    padding: 40px 0;
}

.vdo__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.vdo__wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__search__wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 65%;
    width: 100%;
    max-width: 600px;
    padding: 0 16px;
}

.hero__search__bar {
    width: 100%;
    position: relative;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%) !important;
    border-radius: 24px;
}

.hero__search__bar .hero__search__input {
    height: 50px;
    width: 100%;
    border-radius: 25px;
    border: none;
    padding: 10px 64px 10px 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 16%) !important;
    background: rgb(255 255 255 / 70%);
    backdrop-filter: blur(10px);
    font-size: 15px;
}

.hero__search__bar .hero__search__btn {
    position: absolute;
    width: 50px;
    transition: all 0.3s ease;
    height: 50px;
    right: 0;
    border-radius: 25px;
    border: none !important;
    background-color: var(--primary);
    padding: 10px;
}

.hero__search__bar .hero__search__btn:hover {
    background-color: var(--primaryDark);
}

.hero__search__bar .hero__search__btn svg path {
    fill: #fff;
}

.marquee_slider {
    padding: 8px 0 !important;
    background-color: var(--primary);
    color: #fff;
    width: 100%;
    z-index: 99;
}

.marquee_slide {
    padding: 0 20px;
}

/* hero css end  */

/* brand css start  */
.brand__list {
    width: calc(100% + 30px);
    margin-left: -15px;
}

.brand__item {
    padding: 5px 15px;
    width: 20%;
}

.brand__item__link {
    display: block;
    position: relative;
    border: 1px solid #3a3a3a59;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.brand__item__thumb {
    position: relative;
    padding-bottom: 100%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 9;
}

.brand__item__thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.brand__item__thumb > p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    z-index: 9;
    text-align: center;
    padding: 20px;
    width: 100%;
    margin-top: 40px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    opacity: 0;
}

.brand__item__link::before {
    content: "";
    width: calc(100% + 8px);
    transition: all 0.3s ease-in;
    opacity: 0;
    height: calc(100% + 8px);
    top: 0;
    left: 0;
    border: 1px solid var(--primary);
    position: absolute;
    top: -4px;
    left: -4px;
    border-radius: 50%;
}

.brand__item__link:hover::before {
    opacity: 1;
}

.brand__item__thumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0 161 225 / 75%);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.brand__item__link:hover .brand__item__thumb::before {
    opacity: 1;
}

.brand__item__link:hover .brand__item__thumb > p {
    margin-top: 0;
    opacity: 1;
}

/* brand css end  */

/* product css start  */
.product__card__list {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-bottom: -30px;
}

.product__card__x4 .product__card__item {
    width: 25%;
}

.product__card__list.slick-slider {
    margin-bottom: 0;
}

.product__card__list.slick-slider .product__card__item {
    margin-bottom: 0;
}

.product__card__item {
    padding: 0 15px;
    width: 20%;
    margin-bottom: 30px;
    position: relative;
}

.product__card__thumb__img {
    display: block;
    position: relative;
    padding-bottom: 100%;
}

.product__card__thumb__img img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* .product__card__box:hover .product__card__thumb__img img { transform: scale(1.09);} */
.product__card__thumb {
    padding: 14px 10px 5px;
    overflow: hidden;
    position: relative;
}

.product__card__thumb .new__tag {
    position: absolute;
    background-color: #00a1e1;
    top: 0;
    left: 0;
    z-index: 91;
    color: #fff;
    padding: 3px 14px 4px;
    font-size: 14px;
    line-height: 22px;
}

.product__card__thumb > span {
    display: block;
    text-align: center;
    padding-top: 6px;
    margin-bottom: -5px;
}

.product__card__content {
    padding: 14px;
    text-align: center;
    color: #000;
}

.product__card__box {
    border: 1px solid #e3e3e3;
    background: #fff;
}

.product__card__content h5 {
    font-size: 16px;
    color: #00a9ec;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product__card__content h5 a:hover {
    color: var(--primaryDark);
}

.product__card__title {
    font-size: 14px;
    color: #000 !important;
    margin-bottom: 7px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.product__card__title:hover {
    color: #000000c7 !important;
}

.product__card__tags {
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
    flex-flow: column;
    align-items: self-start;
    gap: 5px;
}

.product__card__tags span {
    background-color: #f3f3f3;
    padding: 5px 12px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
}

.product__card__tags .new-tag {
    background-color: var(--green);
    color: #fff;
    display: none;
}

.product__card__tags .discount-tag {
    background-color: var(--red);
    color: #fff;
}

.product__card__box:hover .product__card__tags .new-tag {
    display: block;
}

input.out_of_stock ~ label span {
    display: none;
}

.product__card__item.out_of_stock .product__card__box {
    position: relative;
    overflow: hidden;
}

.product__card__item.out_of_stock .product__card__box::before {
    content: "";
    position: absolute;
    display: none !important;
    width: 100%;
    height: 100%;
    background-color: rgb(191 191 191);
    z-index: 1;
    opacity: 0.7;
    cursor: auto;
}

/* .product__card__item.out_of_stock .product__card__box:hover .product__card__thumb__img img{transform: scale(1);} */
/* product css end  */
/* service */
.our__service__list li {
    width: 33.33%;
    line-height: 23px;
    font-size: 16px;
    padding: 0px 20px 15px;
    font-weight: 500;
    text-align: center;
}

.our__service__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* ------------- */
.bg-gray-light {
    background: #f1f5f9;
}

.bg-gray-dark {
    background: #ececec;
}

.how__it__works .how__it__works__list li .img__part {
    width: 250px;
    height: 110px;
    border-radius: 50%;
    border: 0px solid var(--primary);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how__it__works .how__it__works__list {
    display: flex;
    flex-wrap: wrap;
}

.how__it__works .how__it__works__list li {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
}

.how__it__works .how__it__works__list li .heading {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 10px !important;
}

.how__it__works .how__it__works__list li .content p {
    text-align: center;
}

.how__it__works .how__it__works__list li .img__part img {
    width: 100%;
    max-width: 90px;
    object-fit: contain;
}

/* ------------- */

.premium__member__ship {
    background-color: var(--primary);
}

.premium__member__ship .pms__heading__part {
    max-width: 425px;
    color: #fff;
    margin: auto;
}

.premium__member__ship .pms__heading__part h1 {
    margin-bottom: 15px;
    font-size: 30px;
}

.premium__member__ship .pms__subpart {
    display: flex;
    flex-wrap: wrap;
    padding-top: 5px;
    position: relative;
}

.premium__member__ship .pms__subpart .left__part {
    flex: 0 0 25.6%;
}

.premium__member__ship .pms__subpart .left__part .heading h3 {
    border-bottom: 0px solid #fff;
    display: inline-block;
    font-weight: 400;
    font-size: 27px;
}

.premium__member__ship .pms__subpart .left__part {
    color: #fff;
    text-align: center;
    padding: 49px 34px 50px 12px;
}

.premium__member__ship .pms__subpart .left__part .pms__subpart__listing li {
    margin-bottom: 36px;
    font-size: 22px;
}

.premium__member__ship .pms__subpart .center__part {
    flex: 0 0 48.8%;
    padding: 0px 24px;
}

.premium__member__ship .pms__subpart .center__part .img__part {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
}

.premium__member__ship .pms__subpart .right__part {
    flex: 0 0 25.5%;
    padding: 46px 12px 50px 52px;
    color: #fff;
    text-align: center;
}

.premium__member__ship .pms__subpart .right__part .heading h3 {
    font-size: 30px;
    font-weight: 400;
}

.premium__member__ship .pms__subpart .right__part .heading p {
    margin-top: 5px;
    font-size: 18px;
}

.premium__member__ship .pms__subpart .right__part .para__content {
    padding-top: 0px;
    font-size: 16px;
    margin-bottom: 13px;
}

.premium__member__ship .pms__subpart .right__part .buy__now .buy__now__btn {
    font-weight: 600;
    border: 0;
    outline: 0;
    background: #fff;
    color: #00a1e1;
    padding: 13px 20px;
    min-width: 164px;
    margin-top: 12px;
    border-radius: 4px;
}

.premium__member__ship
    .pms__subpart
    .right__part
    .contact__us
    .contact__us__btn {
    font-weight: 600;
    border: 0;
    outline: 0;
    background: #78c371;
    color: #fff;
    padding: 13px 20px;
    min-width: 164px;
    border-radius: 4px;
}

section.premium__member__ship {
    padding: 20px 0px 80px;
}

.premium__member__ship .left__part .heading {
    margin-bottom: 38px;
}

.premium__member__ship .heading h2 {
    font-weight: 900;
    font-size: 57px;
    line-height: 72px;
}

.premium__member__ship .heading p {
    margin-top: 2px;
    font-size: 22px;
}

/* ------------- */

/* -------------- */
.image__content .wrapper__part {
    display: flex;
    align-items: center;
}

.image__content .wrapper__part .left__part {
    width: 40%;
    padding: 20px 30px;
}

.image__content .wrapper__part .right__part {
    font-weight: 500;
    width: 60%;
    padding: 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image__content .wrapper__part .left__part .img__part {
    width: 100%;
    max-width: 400px;
    max-height: 560px;
    min-height: 560px;
    border-radius: 200px 200px 0px 0px;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.image__content.bg-gray-dark .wrapper__part .left__part {
    display: flex;
    justify-content: end;
}

.image__content .wrapper__part .right__part button {
    background: var(--primary);
    border: 0;
    outline: 0;
    padding: 10px 20px;
    color: #fff;
    margin-top: 30px;
}

.image__content .wrapper__part .right__part .heading h3 {
    font-size: 30px;
}

.faq-page-section.services button.faq-btn {
    box-shadow: none !important;
    background-color: var(--primary);
    border-radius: 10px;
    color: #fff;
}

/* -------------- */

/* Footer css start  */
.footer {
    background-color: #111;
    padding: 60px 0px 20px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.footer-logo {
    text-align: left !important;
}

.footer .logo-img {
    width: 100%;
    max-width: 300px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    padding: 6px 4px;
    list-style: none;
}

.footer ul a {
    color: #f5f5f5;
    font-family: poppins;
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
}

.footer ul a:hover {
    color: var(--lime);
    text-decoration: underline;
}

.footer small {
    color: var(--white);
    font-size: 12px;
    border-top: 1px solid #999;
    padding-top: 12px;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-weight: 400;
}

.footer small a {
    color: var(--bs-link-color);
    text-decoration: none;
}

.footer small a:hover {
    color: #ccc !important;
}

/* Footer css end  */

/* start media query css  */
.about__page__design .ab-sec5-card {
    position: relative;
    transition: 0.2s ease-in-out;
    margin: 0 20px;
}

.about__page__design .ab-sec5-card > span {
    position: absolute;
    width: 100%;
    top: 0;
    border: 2px solid;
    transition: 0.2s ease-in-out;
}

.about__page__design .ab-sec5-card .card-img-top {
    height: 340px;
    object-fit: cover;
    object-position: top;
}

.about__page__design .ab-sec5-card:hover > span {
    border: 4px solid;
    transition: 0.2s ease-in-out;
}

.about__page__design .ab-sec5-card .cardbody {
    position: relative;
}

.about__page__design .ab-sec5-card.first-child:hover .cardbody span {
    background-color: var(--primary);
}

.about__page__design .ab-sec5-card .cardbody span {
    position: absolute;
    top: -40px;
    right: -18px;
    width: 40px;
    height: 40px;
    background-color: gainsboro;
    line-height: 40px;
    text-align: center;
    transition: 0.2s ease-in-out;
}

.about__page__design .ab-sec5-card:hover .cardbody span i {
    transform: rotate(135deg);
    transition: 0.2s ease-in-out;
    color: #fff;
}

.about__page__design .ab-sec5-card .card-title {
    margin-top: 20px;
    color: #2e2e2e;
}

.about__page__design .ab-sec5-card .card-subtitle {
    color: #33333396;
    margin-bottom: 10px;
}

.about__page__design .services-page-new .serviceModal .modal-content {
    border: none;
    border-radius: 0;
    border: 4px solid #00a9ec;
}

.about__page__design .services-page-new .serviceModal .close {
    position: absolute;
    right: 15px;
    top: 10px;
    opacity: 1;
    color: #000;
    font-size: 28px;
    text-shadow: none;
    border: none;
    outline: none;
    background: #fff;
}

.about__page__design .team-modal .card-subtitle {
    font-size: 16px;
    color: #33333396;
    margin-bottom: 0px;
}

.about__page__design
    .services-page-new
    .serviceModal
    .modal-content
    .service_row {
    display: flex;
    align-items: stretch;
    column-gap: 30px;
}

.about__page__design .service_row .service_imgLeft {
    max-width: 300px;
}

.about__page__design .services-page-new .serviceModal .service_imgLeft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about__page__design .service_row .service_modalsection {
    max-width: calc(100% - 330px);
    padding: 0 20px 20px 0;
    margin-top: 40px;
}

.about__page__design .service_row .service_description {
    padding-right: 10px;
    height: 450px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00a9ec #eee;
    margin-top: 20px;
}

.about__page__design .connect-col {
    text-align: center;
}

.about__page__design .connect-col a {
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease-in;
}

.about__page__design .countersecton {
    padding: 70px 0;
    background: var(--primary);
}

.about__page__design ul.counter-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-bottom: -34px;
}

.about__page__design ul.counter-inner li {
    width: 20%;
    padding: 0 15px;
    margin-bottom: 34px;
}

.about__page__design .countersecton .count-up {
    text-align: center;
}

.about__page__design .countersecton .count-up .text-count {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--white);
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
}

.about__page__design .countersecton .count-up .text-count .counter-count,
.countersecton .count-up .text-count span {
    font-weight: 700;
}

.about__page__design .countersecton .count-up p {
    color: var(--white);
    font-size: 18px;
    margin-top: 10px;
}

/* services page css start */
.services-card {
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 12px auto !important;
}

.services-card a {
    display: block;
    position: relative;
    height: 550px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.services-card a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.services-card a .service-title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    bottom: 15%;
    width: 90%;
    text-align: center;
}

.services-card a:hover img {
    transform: scale(1.05);
}

.service-detail-modal-text {
    width: 100%;
    padding: 24px 24px 40px;
}

.service-detail-modal-text::-webkit-scrollbar {
    width: 6px;
}

.service-detail-modal-text::-webkit-scrollbar-track {
    background: #f3f3f3;
}

.service-detail-modal-text::-webkit-scrollbar-thumb {
    background: var(--primary);
}

.btn-close {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 18px;
    padding: 5px !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
    background-color: #f4f4f4;
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.service-detail-modal-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-right: 40px;
}

#serviceModal .modal-content {
    border: 4px solid #00a9ec;
    border-radius: 0;
}

.vdo__wrapper_samll {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

/* services page css end */
.join-us {
    max-width: 1000px;
    margin: 0px auto;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.vendor-page .join-us .column {
    max-width: 100%;
}

.join-us .column {
    padding: 20px;
    width: 100%;
    max-width: 50%;
}

.common-form input {
    border: none;
    border-bottom: 1px solid #bbb;
    height: 46px;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 400 !important;
    color: #000 !important;
    padding-right: 30px;
}

.form-row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.common-form .form-group {
    position: relative;
}

.form-row > .col,
.form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-row .form-group {
    margin-bottom: 1rem;
}

.sign-up-form label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500 !important;
    color: black !important;
}

.common-form label span {
    color: var(--primary);
    font-weight: 700;
}

.common-form .form-group .view-password {
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 12px;
    color: #515151;
    padding: 0px !important;
    line-height: 12px;
    box-shadow: none !important;
    outline: none !important;
}

.common-form .password-status .hint {
    text-align: left;
    hyphens: auto;
    font-weight: 400;
    font-size: 12px;
    padding: 5px 10px;
    display: block;
}

.blue-button {
    border: none;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    color: #fff !important;
    background-color: var(--primary);
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 22px !important;
    font-size: 13px !important;
    font-family: poppins;
    box-shadow: none !important;
    outline: none !important;
}

.float-right {
    float: right !important;
}

/* selling page css start */

.trending__months__tabs .nav-tabs {
    justify-content: center;
    border-bottom: 0;
}

.trending__months__tabs .nav-tabs .nav-link {
    padding: 10px 30px;
    color: var(--dark);
    font-weight: 500;
}

.trending__months__tabs .nav-tabs .nav-link.active {
    color: var(--primary);
}

.trending__months__content {
    padding: 30px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.trending__months__content .product__card__item {
    width: 33.33%;
}

/* selling page css end */

/* filter css start */
.filter-area {
    color: #000;
    padding-right: 16px;
    overflow-x: hidden;
    overflow-y: auto;
}

.filter-area::-webkit-scrollbar {
    width: 6px;
}

.filter-area::-webkit-scrollbar-track {
    background: #f3f3f3;
}

.filter-area::-webkit-scrollbar-thumb {
    background: #e0e0e0;
}

.filter-area .form-check {
    padding: 0;
}

.filter-area .form-check input[type="checkbox"] {
    display: none;
}

.filter-area .form-check input[type="checkbox"] + label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 0;
    cursor: pointer;
    font-family: "Source Sans Pro", sans-serif;
}

.filter-area .form-check input[type="checkbox"] + label:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #161616;
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 2px;
}

.filter-area .form-check input[type="checkbox"] + label:after {
    content: "";
    display: inline-block;
    font-weight: 900;
    font-size: 24px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    background-image: url(../images/check-img.svg);
    text-align: center;
    position: absolute;
    left: 0px;
    top: 2px;
    border-radius: 2px;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.12s ease-in;
    transition: all 0.12s ease-in;
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.filter-area .form-check input[type="checkbox"] + label a {
    color: #fff;
}

.filter-area .form-check input[type="checkbox"]:checked + label:after {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.filter-area .form-check input[type="radio"] {
    display: none;
}

.filter-area .form-check input[type="radio"] + label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 0;
    cursor: pointer;
    font-family: "Source Sans Pro", sans-serif;
}

.filter-area .form-check input[type="radio"] + label:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #00b7a5;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
}

.filter-area .form-check input[type="radio"] + label:after {
    content: "";
    display: inline-block;
    font-weight: 900;
    font-size: 24px;
    width: 8px;
    height: 8px;
    line-height: 16px;
    background: #00b7a5;
    text-align: center;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 1px;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.12s ease-in;
    transition: all 0.12s ease-in;
}

.filter-area .form-check input[type="radio"] + label a {
    color: #fff;
}

.filter-area .form-check input[type="radio"]:checked + label:after {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.custom-scroll .form-group + .form-group {
    margin-top: 4px;
}

.filter-area h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000;
    margin-bottom: 16px;
}

.filter-head {
    position: relative;
    padding-bottom: 10px;
}

.filter-head h5 {
    padding-right: 60px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 0;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 6px;
}

.filter-head #filter-reset,
.filter-head span {
    position: absolute;
    right: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    top: 0;
}

.filter-body .accordion-button,
.filter-body .accordion-button:not(.collapsed) {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    text-transform: uppercase;
    padding: 14px 0;
    border: none;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.filter-body .accordion-item {
    border: none;
    border-bottom: 1px solid #d9d9d9;
    border-radius: 0 !important;
    position: relative;
}

.filter-body .accordion-item:last-child {
    border: none;
}

.filter-body .accordion-button::after {
    display: none;
}

.shopFilterbar-offcanvas .offcanvas-title {
    font-size: 24px;
    color: #111;
}

.shopFilterbar-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--primary);
    padding: 14px 24px;
}

.shopFilterbar-offcanvas .offcanvas-body {
    padding: 12px 24px;
}

.shopFilterbar-offcanvas .offcanvas-header .btn-close {
    top: 25px;
    right: 24px;
}

.filter-body .accordion-button::before {
    content: "";
    background-image: url(../images/down-black.svg);
    position: absolute;
    width: 16px;
    height: 16px;
    right: -2px;
    top: 15px;
    transition: all 0.15s ease-in;
    transform: rotate(180deg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.filter-body .accordion-button.collapsed::before {
    transform: rotate(0deg);
}

.filter-btn {
    display: none;
    background-color: #00b7a5;
    color: #fff;
    padding: 9px 22px;
    border-radius: 4px;
    transition: all 0.3s ease-in;
    cursor: pointer;
    line-height: 20px;
    transition: all 0.4s ease-in;
    position: fixed;
    bottom: 30px;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    letter-spacing: 0.5px;
}

.filter-btn img {
    width: 20px;
    margin-right: 8px;
    filter: brightness(0) invert(1);
}

.filter-btn:hover {
    background-color: #f08813;
}

.filter-area-close {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 18px;
    top: 15px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-area-close img {
    width: 18px;
    vertical-align: baseline;
    filter: brightness(0) invert(1);
}

.filter-body .accordion-body {
    padding-bottom: 14px;
}

.filter-body .accordion-item .clear_acc {
    position: absolute;
    top: 16px;
    font-size: 14px;
    font-weight: 400;
    z-index: 999;
    color: var(--primary);
    right: 30px;
    display: block;
    line-height: 16px;
}

.filter-search-option .custom-scroll {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f3f3f3;
    outline: 2px solid #f3f3f3;
    border-radius: 5px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

.filter-search-currents li + li {
    margin-top: 6px;
}

.filter-search-currents li p {
    line-height: 22px;
    letter-spacing: 0.5px;
    color: #000;
    margin: 0;
    font-size: 14px;
}

.filter-search-currents li {
    position: relative;
    padding-right: 30px;
}

.filter-search-currents li .clear-single {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 0;
    top: 3px;
    cursor: pointer;
}

.filter-search-currents li .clear-single img {
    vertical-align: baseline;
}

.filter_range_slider {
    padding: 0 14px;
}

.filter_range_slider .filter_range_value {
    margin-top: 16px;
}

.filter_range_slider .noUi-horizontal {
    height: 5px;
    border: none !important;
    margin: 9px 0;
}

.filter_range_slider .noUi-horizontal .noUi-connect {
    background: #e7e7e7;
}

.filter_range_slider .noUi-horizontal .noUi-handle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: none !important;
    border: none !important;
    top: -9px;
    right: -10px;
}

.filter_range_slider .filter_range_value span {
    margin: 0 4px;
    font-size: 14px;
    color: #343a40 !important;
    padding: 2px 10px;
    border: 1px solid #555;
    line-height: 20px;
    font-weight: 500;
}

.filter_range_slider .noUi-horizontal .noUi-handle::before,
.filter_range_slider .noUi-horizontal .noUi-handle::after {
    display: none;
}

.filter_range_slider .noUi-base {
    background-color: #e7e7e7;
}

.shop__all__top__filter__btn .btn {
    padding: 5px 20px;
    min-width: 120px;
}

.shop__all__top__filter__btn .btn img {
    width: 28px;
}

.shop__all__top__bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    border-radius: 4px;
    margin-bottom: 24px;
}

.shop__all__top__left .hero__search__bar .hero__search__input {
    height: 40px;
    border-radius: 4px;
    width: 240px;
    transition: all 0.3s ease-in;
    line-height: 16px;
    padding: 8px 56px 10px 18px;
    border: none;
    background-color: #f9f9f9 !important;
    border-radius: 30px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%) !important;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%) !important;
    -moz-box-shadow: 0 0 10px rgb(0 0 0 / 10%) !important;
}

.shop__all__top__left .hero__search__bar .hero__search__btn {
    width: 40px;
    height: 40px;
    border-radius: 25px;
    padding: 8px;
    background: #e7e7e7;
}

.shop__all__top__left .hero__search__bar .hero__search__btn svg {
    vertical-align: baseline;
    width: 20px;
}

.shop__all__top__result__count {
    font-size: 14px;
    text-align: end;
    width: 100%;
}

.shop__all__top__left .hero__search__bar .hero__search__input:focus {
    width: 400px;
}

.shop__all__top__left .hero__search__bar .hero__search__btn:hover {
    background-color: var(--primaryDark);
}

.shop__all__top__left .hero__search__bar .hero__search__btn:hover svg path {
    fill: #fff;
}

.shop__all__top__right {
    background-image: url(../images/shorting.svg);
    background-size: 16px;
    background-position-y: center;
    background-repeat: no-repeat;
    background-position-x: 14px;
    background-color: #fff;
}

.shop__all__top__right .form-control {
    min-width: 230px;
    padding-left: 36px;
    font-size: 14px;
    letter-spacing: -0.42px;
    line-height: 22px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: transparent !important;
    box-shadow: none !important;
    border: 1px solid #e3e3e3 !important;
}

.shop__all__top__left .hero__search__bar .hero__search__btn svg path {
    fill: var(--dark50);
}

.shop__all__top__filter__btn {
    width: 260px;
}

.shop__all__top__right_outer {
    width: 260px;
}

.intro-wrapper ol {
    padding-left: 16px;
}

.intro-wrapper p {
    margin-bottom: 20px;
}

.intro-wrapper strong {
    font-weight: 600;
}

.intro-wrapper h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-wrapper h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-wrapper h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-wrapper h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* filter css end */

/* product single css start  */
.product__single__thumb__slide {
    padding: 4px 0;
}

.product__single__thumb__slide__img {
    position: relative;
    padding-bottom: 92%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px dashed #f1f1f1;
    border-radius: 3px;
}

.slick-current .product__single__thumb__slide__img {
    border-color: var(--primary);
}

.product__single__thumb__slide__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    padding: 6px 0;
    background-color: #ffffff;
    border-radius: 3px;
}

.product__single__thumb__slider {
    width: 100%;
    margin-right: 15px;
}

.product__single__thumb__slider .slick-list {
    padding: 0px 0;
}

.product__single__slide {
    padding: 0;
}

.product__single__slide__img span {
    background-color: var(--green);
    position: absolute;
    z-index: 9;
    color: #fff;
    top: 10px;
    left: 10px;
    font-size: 14px;
    padding: 4px 14px;
    min-width: 40px;
    font-weight: 500;
    border-radius: 1px;
}

.product__single__slide__img {
    position: relative;
    padding-bottom: 70%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    border-radius: 3px;
    border: 1px solid #f1f1f1;
    background-color: #ffff;
    margin-right: 1px;
}

.product__single__slide__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    padding: 6px 0;
    background-color: #fff;
}

.product__single__slider {
    width: 100%;
    padding-right: 0;
}

.product__single__thumb__slider .slick-next,
.product__single__thumb__slider .slick-prev {
    opacity: 1 !important;
    /* left: 50%; */
    top: auto;
    transform: none;
    z-index: 99;
}

/* .product__single__thumb__slider .slick-prev {
    top: -6px;
    transform: translateX(-50%) rotate(90deg);
} */

/* .product__single__thumb__slider .slick-next {
    bottom: -6px;
    transform: translateX(-50%) rotate(90deg);
} */

.product__single__thumb__slider .slick-next,
.product__single__thumb__slider .slick-prev {
    /* left: 50% !important; */
    background-color: rgb(235 235 235);
    height: 96px;
    border-radius: 0;
    width: 30px;
    box-shadow: none !important;
    border-radius: 4px;
    border: 1px solid #f2f2f2 !important;
}

.product__single__thumb__slider .slick-prev {
    bottom: 29px !important;
    transform: translateX(0%) rotate(0deg) !important;
    right: -66px !important;
}

.product__single__thumb__slider .slick-next {
    bottom: 29px;
    transform: translateX(0%) rotate(0deg) !important;
    right: -27px !important;
}

.product__single__feature_items .slick-prev,
.product__single__feature_items .slick-next {
    width: 16px;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1;
}

.product__single__feature_items .slick-prev {
    left: -10px !important;
}

.product__single__feature_items .slick-next {
    right: -10px !important;
}

.product__single__feature_items .slick-list {
    padding: 0 !important;
}

.product__single___text {
    padding-left: 40px;
}

.product__single__feature_items {
    margin-bottom: -10px;
    max-width: 480px;
    padding: 0 10px;
    margin: 0 auto;
}

.product__single__feature_btn {
    height: 100%;
    position: relative;
    cursor: pointer;
    line-height: 18px;
    border-radius: 2px;
    color: #444;
    padding: 4px 11px;
    min-width: 77px;
    border: 1px solid #cacaca;
    background-color: transparent;
    text-align: center;
    font-weight: 600;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.product__single__feature_item
    input.out_of_stock
    + .product__single__feature_btn {
    position: relative;
    background-color: #ddd !important;
    opacity: 0.5;
    cursor: no-drop;
    color: #444 !important;
}

.product__single__feature_item
    input.out_of_stock
    + .product__single__feature_btn::before {
    content: "";
    max-width: 80px;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--dark);
    top: 50%;
    left: 50%;
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: left;
}

.product__single__feature_btn span {
    display: block;
    font-size: 8px;
    line-height: 10px;
    margin-top: 3px;
}

.product__single__feature_item {
    padding: 6px;
}

.product__single__feature_item input:checked + .product__single__feature_btn {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid black;
}

.product__single__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 235px;
}

.product__single__action__left {
    padding-right: 15px;
    display: flex;
    width: 140px;
}

.product__single__quantity__btn {
    width: 22px;
    border: none !important;
    background-color: #dcdcdc;
    border-radius: 12px;
    height: 22px;
    padding: 4px;
    transition: all 0.3s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__single__quantity__value {
    width: calc(100% - 38px);
    height: 38px;
    padding: 4px 10px;
    font-size: 18px;
    color: #878484;
    text-align: center;
    font-family: "HelveticaRegular";
    border-radius: 3px;
    box-shadow: none !important;
    outline: none !important;
    background: transparent;
    border: none !important;
}

.product__single__quantity {
    display: flex;
    align-items: center;
    border: 1px solid #cacaca;
    border-radius: 5px;
    width: 100%;
    padding: 0 7px;
}

.product__single__quantity__btn img {
    vertical-align: baseline;
    width: 12px;
}

.product__single__quantity__btn:hover {
    background-color: var(--primary);
}

.product__single__quantity__btn:hover img {
    filter: brightness(0) invert(1);
}

.btn.one_click_btn svg {
    width: 28px !important;
    margin: -2px 0;
}

.btn.one_click_btn:hover svg path {
    fill: #fff !important;
}

.product__single__wish__btn,
.product__single__prompt__btn {
    width: 40px;
    height: 40px;
    border: 1px solid #cacaca;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.product__single__prompt__btn {
    margin-left: 15px;
}

.product__single___lower {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.product__single__wish__btn i {
    font-size: 16px;
    color: #bbbbbb;
}

.product__single__wish__btn i.fa,
.product__single__wish__btn.active i.far {
    display: none;
}

.product__single__wish__btn.active i.fa {
    display: block;
}

/* .product__single__wish__btn.active { background-color: var(--primary); } */
.product__single__wish__btn.active i {
    color: rgb(255, 0, 0);
}

.product__single__prompt__btn svg {
    opacity: 0.5;
    width: 15px;
}

.product__single__wish__btn:hover,
.product__single__prompt__btn:hover {
    background-color: #f2f2f2;
}

.product__single___text h6 {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product__single___text h5 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
}

.product__single___text h3 {
    font-size: 27px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #333;
}

.product__single___text__inn {
    position: relative;
    padding-right: 60px;
    margin-bottom: 10px;
}

.psti__status {
    background-color: var(--green);
    color: #fff;
    padding: 3px 16px;
    font-size: 16px;
    text-transform: uppercase;
    position: absolute;
    top: 0px;
    right: 36px;
}

.product__single__price span {
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 400;
    margin-left: 5px;
    line-height: 17px;
    display: inline-block;
}

.product__single__price {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0px;
}

.product__single__size {
    margin: 15px 0;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
}

.product__single__cart .btn {
    max-width: 320px;
    width: 100%;
    cursor: pointer;
}

.product__single__cart .btn svg {
    width: 20px;
    margin-left: 6px;
}

.product__single__cart .btn[disabled] {
    background-color: #dcdcdc;
    border-color: #dcdcdc;
}

.product__single__cart .btn[disabled] svg path {
    fill: #444;
}

.product__single__cart {
    margin: 30px 0;
}

.product__single__share {
    align-items: center;
    margin-top: 40px;
}

.product__single__share span {
    color: var(--dark);
    font-weight: 500;
    margin-right: 17px;
    font-size: 16px;
}

.product__single__share__icon {
    color: var(--primary);
}

.product__single__share__icon + .product__single__share__icon {
    margin-left: 10px;
}

.product__single__share__icon:hover {
    color: var(--dark);
}

.fixed__product__buttons {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 99;
    display: flex;
}

.fixed__product__buttons .btn {
    width: 50%;
    background-color: var(--primary);
    margin: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px 20px;
}

.fixed__product__buttons .btn:hover {
    background-color: var(--primaryDark);
}

.fixed__product__buttons .btn.fixed__product__button.bg-secondary {
    background-color: #ccc !important;
    color: #000 !important;
}

.fixed__product__buttons .btn + .btn {
    border-left: 1px solid #fff;
}

.product__single__tabs {
    margin: 30px auto 16px;
    max-width: 420px;
}

.product__single__tabs .nav-pills li .nav-link {
    background-color: #f8f8f8;
    border-radius: 0;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--dark50);
    border: 1px solid #cacaca;
    width: 100%;
}

.product__single__tabs .nav-pills li + li .nav-link {
    border-left: 0;
}

.product__single__tabs .nav-pills li {
    flex: 1;
}

.product__single__tabs .nav-pills li .nav-link.active {
    background-color: var(--primary);
    color: #fff;
}

.pls__btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
}

.product__single__tabs__new__bar {
    border-top: 1px solid #cecece;
    padding-top: 24px;
    margin-top: 24px;
}

.product__single__tabs__new__scroll {
    max-height: 220px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: start;
    padding-right: 14px;
}

.pstb__list .pstb__item + .pstb__item {
    margin-top: 30px;
}

.pstb__list .pstb__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 14px;
}

.pstb__list .pstbi__price {
    font-size: 17px;
    font-weight: 500;
    width: 100px;
    padding-right: 10px;
}

.pstbi__price .pstbi__item__tittle {
    font-size: 10px;
    text-transform: uppercase;
    color: #00ab65;
    display: inline-block;
    position: relative;
    top: -2px;
}

.pstb__list .pstbi__btns .btn + .btn {
    margin-left: 10px;
}

.pstb__list .pstbi__btns {
    display: flex;
}

.pstb__list .pstbi__btns .btn {
    min-width: auto;
    font-size: 12px;
    padding: 4px 14px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    line-height: 14px;
}

.pstb__list .pstbi__right__action {
    padding-left: 10px;
}

.pstb__list .pstbi__right__action .product__single__prompt__btn {
    margin-left: 10px;
}

.pstbi__pre__thumb {
    width: 100px;
    height: 100px;
}

.pstb__list.pstbi__pre__list .pstb__item + .pstb__item {
    margin-top: 15px;
    padding-top: 16px;
    border-top: 1px solid #f1f1f2;
}

.pstbi__pre__thumb img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.pstbi__pre__content {
    width: calc(100% - 120px);
    padding-left: 14px;
    padding-top: 5px;
}

.pstbi__pre__price {
    text-align: start;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.pstbi__pre__action .btn {
    min-width: 90px;
    padding: 8px 12px;
}

.pstbi__pre__text__list {
    font-size: 14px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pstbi__pre__text__list li + li {
    margin-top: 4px;
}

.pstbi__pre__text__list li strong {
    font-weight: 600;
    color: #111;
    margin-right: 4px;
}

.pstbi__pre__content__inn .pstbi__pre__text {
    width: calc(100% - 101px);
}

.pstbi__pre__content__inn .pstbi__pre__action {
    padding-left: 12px;
    width: 101px;
}

.psvw__text__list {
    max-width: 320px;
    margin: 0 auto;
}

.psvw__text__list li {
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-right: 0px;
    padding-bottom: 4px;
}

.psvw__text__list li span {
    font-weight: normal;
    text-transform: capitalize;
}

.psvw__text__list li span {
    position: relative;
    width: auto;
    height: auto;
    right: 0;
    top: 1px;
}

/* .psvw__text__list li span:hover { opacity: .76;} */
.psvw__text__list li span img {
    width: 100%;
    vertical-align: baseline;
}

.psvw__text__list li + li {
    margin-top: 6px;
}

.product__single___view__wrapper .product__single__action__right {
    margin: 20px 0;
    justify-content: center;
}

.psvw__check {
    text-align: center;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    color: #111;
    font-weight: 500;
    margin: 30px 0;
}

.psvw__check .form-check .form-check-input {
    margin-top: 2px;
}

.psvw__btns {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.psvw__btns .btn {
    margin: 0;
    width: calc(50% - 8px);
    font-size: 13px;
    min-height: 46px;
}

.product-page ~ footer {
    margin-bottom: 44px;
}

.product__single__feature_items.pfsi__slider {
    margin-bottom: 16px;
}

.product-quantity .product__single__actions {
    width: auto;
    margin: 0 !important;
}

.product-quantity .product__single__quantity {
    width: 140px;
}

.product-quantity {
    justify-content: center !important;
}

.multi__select__wrapper .select2-container {
    width: 100%;
    display: block;
}

.multi__select__wrapper .selection .select2-selection {
    border: 1px solid #dfdfe6 !important;
    padding: 10px !important;
    border-radius: 0.375rem !important;
    min-height: 58px;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: #f3f3f3;
    font-size: 12px;
}

@media (min-width: 991.98px) {
    .seller-txt:hover .small-model-size {
        display: block !important;
    }
}

/* @media (min-width:1100.98px){
	.premium__member__ship .pms__subpart .center__part {
		flex: 0 0 58%;
		padding: 0px 10px;
	}
} */
@media (max-width: 991.98px) {
    .psti__status {
        top: 0;
        right: 0;
        padding: 3px 12px;
        font-size: 13px;
    }

    .seller-txt.active .small-model-size {
        display: block !important;
    }
}

/* wishlist css start  */
.thead-light tr {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

.align-middle {
    vertical-align: middle !important;
}

.w-30 {
    width: 120px;
}

.w-40 {
    width: 140px;
}

.w-20 {
    width: 100px;
}

.btn.product-remove-btn {
    min-width: auto;
    width: auto;
    padding: 9px 10px;
}

.btn.product-remove-btn:hover img {
    filter: brightness(0) invert(1);
}

.table-responsive .btn + .btn {
    margin-left: 4px;
}

.table-responsive .cart-qty {
    width: 120px;
    position: relative;
}

.table-responsive .cart-qty .cart-qty-input {
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    border: 1px solid var(--bs-gray-300);
    padding: 0.675rem 1rem;
    height: 35px;
}

.table-responsive .cart-qty .inc {
    right: 1px;
}

.table-responsive .cart-qty .dec {
    left: 1px;
}

.table-responsive .cart-qty .qty-btn {
    position: absolute;
    top: 1px;
    bottom: 1px;
    width: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    background: var(--bs-gray-200);
}

.table-responsive .product-remove {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

.img-fluid-product {
    height: 76px;
    object-fit: contain;
}

.side-bar-right .small,
small {
    font-size: 0.94em;
}

.text-mode {
    color: var(--bs-text-mode) !important;
}

.border-bottom {
    border-bottom: 1px solid #e3e9ef !important;
}

.wh__right {
    display: flex;
    align-items: center;
}

.wishLish__head {
    margin-bottom: 24px;
}

.wh__right .whr__input {
    width: 240px;
    height: 30px;
    padding: 4px 12px;
    background-color: #f3f3f3;
    border: none;
    font-size: 14px;
}

.whr__public label {
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
    background-color: #ccc;
    transition: all 0.2s ease-in;
    padding: 4px 10px;
    line-height: 20px;
    padding-left: 30px;
    border-radius: 30px;
    position: relative;
}

.whr__public label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease-in;
    background-color: #f4f4f4;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    box-shadow: inset 0 0 0px 2px rgb(237 237 237);
}

.whr__public input:checked + label {
    padding: 4px 10px;
    padding-right: 30px;
    background-color: var(--primary);
    color: #fff;
}

.whr__public input:checked + label::before {
    left: calc(100% - 24px);
}

/* wishlist css end  */

/* faq  start */
button.faq-btn {
    cursor: pointer;
}

button.faq-btn {
    cursor: pointer;
}

.faq-item + .faq-item {
    margin-top: 16px;
}

button.faq-btn {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.16);
    outline: none;
    display: flex;
    justify-content: space-between;
}

button.faq-btn[aria-expanded="false"] i.fa-plus,
button.faq-btn[aria-expanded="true"] i.fa-minus {
    display: inline-block;
    padding: 0 5px;
}

button.faq-btn[aria-expanded="false"] i.fa-minus,
button.faq-btn[aria-expanded="true"] i.fa-plus {
    display: none;
}

button.faq-btn[aria-expanded="true"] {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 6px 0 var(--primaryDark);
}

button.faq-btn[aria-expanded="true"] i {
    color: #fff;
}

.faq-page-section .main-sec-faq {
    padding-right: 0;
    padding-left: 0;
    background: white;
    border: 0px solid;
}

.faq-page-section .main-sec-faq .card {
    position: relative;
    border: 0px solid;
}

.faq-para p {
    font-size: 14px;
    margin-bottom: 12px;
}

.faq-page-section .main-sec-faq .card {
    position: relative;
}

.faq-page-section .main-sec-faq .card .card-sc {
    position: relative;
    height: 20%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.faq-page-section .main-sec-faq .card .card-sc img {
    margin: auto;
    display: block;
    border-radius: 100%;
    border: 5px solid #007bff;
    position: absolute;
    transform: scale(1.2) translateY(10px);
}

/* css start about us */
.about-container .video-slider .myVideo {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.no-more {
    cursor: default !important;
}

/* css end about us */

/* product info css  start */
.product__info__list {
    background: var(--primary);
    border-radius: 24px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product__info__item {
    width: 100%;
    max-width: calc(100% / 5);
    padding: 50px 16px;
    text-align: center;
}

.pil_x5 .product__info__item {
    max-width: calc(100% / 6);
}

.product__info__item span {
    word-break: break-all;
}

.product__info__icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    position: relative;
}

.product__info__icon .wish__count {
    position: absolute;
    top: -16px;
    right: -12px;
    display: block;
    border-radius: 50%;
    border-bottom-left-radius: 0px;
    font-weight: 400;
    font-size: 15px;
    background-color: #fff;
    height: 25px;
    min-width: 25px;
    text-align: center;
    line-height: 24px;
    color: var(--primary);
}

.product__info__item h5 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.product__info__item a {
    text-decoration: underline;
    line-height: 20px;
    word-break: break-all;
    font-size: 15px;
}

.product__info__item a:hover {
    text-decoration: none;
    color: var(--dark);
}

/* product info css  end */

.top-head-text {
    font-size: 20px;
    line-height: 28px;
    color: #000;
    text-align: left;
}

.top-head-text span {
    font-size: 20px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
}

.right-gridd .cart-table-content td,
th {
    padding: 12px 12px !important;
}

.graph-section {
    display: flex;
    justify-content: center;
    padding: 30px 0px;
}

.graph-section svg {
    width: 700px !important;
    height: 400px !important;
}

.triangle__chart__bar {
    --width: 320px;
    width: var(--width);
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.tcb__box .tcb__item {
    font-size: 18px;
    color: #111;
    font-weight: 600;
    padding: 16px 20px;
}

.tcb__box {
    width: 100%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    backdrop-filter: drop-shadow(2px 4px 6px black);
    background-color: #fff;
    position: relative;
}

.tcb__box .tcb__item.active {
    background-color: var(--primary);
    color: #fff;
}

.tcb__box .tcb__item:first-child {
    padding-top: 60px;
}

.tcb__box .tcb__item + .tcb__item {
    border-top: 2px solid #ccc;
}

.triangle__chart__bar::before {
    content: "";
    width: 0;
    height: 0;
    border: calc(var(--width) / 2 + 2px) solid transparent;
    border-top: 0;
    border-bottom: 270px solid #ccc;
    position: absolute;
    left: -2px;
    bottom: -1px;
}

.my__list__list .ml__item + .ml__item {
    margin-top: 44px;
}

.my__list__list .out_of_stock {
    opacity: 0.5;
    filter: brightness(0.76);
    border: 1px solid #e3e3e3;
    background: #fff;
}

.ml__box {
    padding: 24px;
    box-shadow: 0 0 10px rgb(0 0 0 / 6%);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.mlb__thumb {
    width: 170px;
    text-align: center;
}

.mlb__thumb__img {
    width: 120px;
    margin: 0 auto 12px;
}

.mlb__thumb h6 {
    font-size: 16px;
    margin-bottom: 0;
}

.mlb__content {
    width: calc(100% - 170px);
    padding-left: 16px;
}

.mlbc__head {
    text-align: center;
    margin-bottom: 24px;
}

.mlb__content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.mlb__content h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark50);
    margin-bottom: 0;
}

.mlbcb__item {
    width: 33.33%;
    text-align: center;
    padding: 0 15px;
}

.mlbc__footer {
    padding-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.mlbcf__action__btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: #fff !important;
    border-radius: 50%;
    margin: 0 10px;
}

.mlbcf__action__btn:hover {
    background-color: var(--primaryDark);
}

.mlbcf__action__btn.mlbcf__del {
    background-color: var(--red);
}

.offcanvas-header.haeder-primary {
    background-color: var(--primary);
}

.offcanvas-header.haeder-primary h5 {
    color: #fff;
}

.offcanvas-header .btn-close {
    top: 21px;
    right: 22px;
}

.goToTop {
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: #fff !important;
    position: fixed;
    right: 0;
    bottom: 0;
    border-style: solid;
    border-color: #dddddd5e;
    border-width: 1px 0 0 1px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.goToTop:hover {
    background: #111;
}

.product-page ~ .fixed__product__buttons {
    padding-right: 44px;
}

.mlb__content__new {
    width: calc(100%);
    padding-left: 16px;
}

.vmb__thumb {
    text-align: center;
}

.vmbh__img {
    width: 160px;
    margin: 0 auto 12px;
}

.vmbh__text h6 {
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.vmbh__text h5 {
    font-size: 22px;
    margin-bottom: 0;
}

.vmbh__text {
    margin-bottom: 30px;
}

.vm__footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f2f2f2;
}

.vmbc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: calc(100% + 32px);
    margin-left: -16px;
}

.vmbc__list li {
    font-size: 16px;
    display: flex;
}

.vmbc__list li span {
    max-width: 50%;
    padding-right: 8px;
    width: 50%;
    padding: 10px 16px;
}

.vmbc__list li span + span {
    text-align: end;
}

.vmbc__list li span strong {
    font-weight: 500;
}

.bottom_btn_fixed {
    z-index: 90000;
    position: fixed;
    bottom: 0px;
    left: 0px;
}

.bottom-btn {
    filter: drop-shadow(rgba(0, 0, 0, 0.15) 0px 0px 30px);
    min-width: 140px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    border-radius: 4px 4px 0px 0px;
    background-color: rgb(255, 255, 255);
    min-height: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal-open .bottom-btn {
    transform: translateY(100px);
}

.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    opacity: 1;
    color: #757575;
}

.form-floating > .form-control-plaintext ~ label span,
.form-floating > .form-control:focus ~ label span,
.form-floating > .form-control:not(:placeholder-shown) ~ label span,
.form-floating > .form-select ~ label span {
    transform: scale(1.15);
    display: inline-block;
}

label .leave_blank {
    font-size: 12px;
    font-style: normal;
}

@media (max-width: 767.98px) {
    .bottom-btn {
        min-width: 80px;
    }
}

/* Style Sell Product Page Start */
/* .sell-product .tab-nav {
    background-color: #e6e6e6;
    height: 100vh;
}

.sell-product .tab-nav li button {
    border: none;
    width: 100%;
    min-width: 150px;
    height: 100px;
	color: #00a9ec;
	background-color: #e6e6e6;
}

.sell-product .tab-nav li button.active {
    background-color: #f5f7f9;
	color: #000;
} */

/* Style Sell Product Page End */
.influencers__container .container {
    max-width: 1560px;
}

.influencers__slide__img img {
    object-fit: cover;
    height: 520px;
}

.influencers__slide {
    padding: 0 60px;
}

.influencers__slider {
    width: calc(100% + 120px);
    margin-left: -60px;
    padding-top: 20px;
}

.about-testimonails-container .container {
    max-width: 1780px;
}

.at__slide__img {
    position: relative;
    padding-bottom: 94%;
    border-radius: 10px;
    overflow: hidden;
}

.at__slider {
    width: calc(100% + 50px);
    margin-left: -25px;
    padding-top: 20px;
    margin-bottom: -50px;
    justify-content: center;
}

.at__slider .at__slide {
    padding: 0 25px;
    margin-bottom: 50px;
    width: calc(100% / 4);
}

.at__slide__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.orders__ux__img__wrapper {
    max-width: 300px;
    margin: 0 auto 24px;
    text-align: center;
}

.orders__ux__img__list {
    padding-bottom: 16px;
}

.orders__ux__img__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orders__ux__img__arrow .ouia_btn {
    width: 30px;
}

.orders__ux__img__num {
    padding: 0 11px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: -2px;
    min-width: 60px;
}

/* modal css start  */
.first__order__modal .modal-dialog {
    max-width: 600px;
}

.first__order__modal .modal-dialog .modal-content {
    overflow: visible;
}

.first__order__modal .fom__body {
    padding: 40px 30px;
    text-align: center;
    color: #000;
}

.fom__logo {
    width: 200px;
    margin: 0 auto 20px;
}

.fom__top__text h2 {
    font-size: 44px;
    color: #444;
    font-weight: 600;
    margin-bottom: 16px;
}

.fom__top__text h2 span {
    color: #111;
}

.fom__top__text {
    margin-bottom: 10px;
}

.fom__top__text p {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 18px;
}

.fom__form .form-group + .form-group {
    margin-top: 24px;
}

.fom__form .form-group .form-control {
    height: 50px;
    width: 100%;
    box-shadow: none !important;
    outline: none !important;
    border-color: #ccc !important;
    padding: 10px 16px;
}

.fom__form .form-group .iti.iti--allow-dropdown {
    width: 100%;
}

.fom__form .fom__text {
    font-size: 12px;
    line-height: 18px;
}

/* compare modal  */
@media (min-width: 767.98px) {
    .compare__products__modal .modal-dialog {
        width: calc(100% - 30px);
    }
}

#compareProducts {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s 0.3s;
}

#compareProducts.show {
    opacity: 1;
    visibility: visible;
}

.compare__products__modal .modal-dialog {
    max-width: max-content;
    min-width: 390px;
}

.compare__products__modal .modal-content {
    border: none !important;
    background-color: #ddd;
}

.compare__products__modal .btn-close {
    top: 12px;
    right: 14px;
}

.compare__products__modal .cpm__head {
    background-color: var(--primary);
    color: #fff;
    padding: 14px 20px;
}

.compare__products__modal .cpm__head h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}

.compare__products__modal .cpm__body {
    padding: 30px;
    display: flex;
    gap: 30px;
    max-width: 1200px;
    overflow-y: hidden;
    overflow-x: auto;
    margin: 0 auto;
}

.cpm__item {
    max-width: 340px;
    background-color: #fff;
}

/* .cpm__modal__xxl .cpm__item { width: calc(50% - 20px); } */
.cpmib__thumb__img {
    position: relative;
    padding-bottom: 90%;
}

.cpmib__thumb__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.cpmi__box {
    padding: 24px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    min-height: 520px;
}

.cpmib__thumb__imgs.cpmib__thumb__slider {
    margin-bottom: 0;
    padding-bottom: 0;
}

.cpmib__content {
    text-align: center;
    padding: 24px 0;
}

.cpmib__cta {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: -14px;
}

.cpmib__cta span {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 18px;
}

.cpmib__content h5 {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 14px;
}

.cpmib__content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

.cpmib__content h6 {
    font-size: 18px;
    color: #111;
    margin-bottom: 0;
}

.cpmib__cta .btn {
    min-width: 180px;
}

.cpmib__thumb__imgs .slick-next,
.cpmib__thumb__imgs .slick-prev {
    width: 40px;
    height: 40px;
    background: transparent;
    box-shadow: none !important;
}

.cpmib__cta .btn {
    min-width: auto;
}

.cpmib__cta .btn + .btn {
    margin: 0;
}

.arrow-visible .cpmib__thumb__imgs .slick-next {
    right: -10px !important;
}

.arrow-visible .cpmib__thumb__imgs .slick-prev {
    left: -10px !important;
}

.shop__all__product__bar {
    min-height: 450px;
}

.footer_siocal {
    padding: 6px 10px 4px;
    border-radius: 5px;
    color: #fff !important;
}

.footer_siocal i {
    font-size: 20px;
}

.phone_bg {
    background-color: #b45f00;
}

.whatsup_bg {
    background-color: #56bb56;
}

.mail_bg {
    background-color: #4e4e4e;
}

.aiz-notify .close:before {
    background-image: url(../images/close.svg);
    background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1 !important;
}

.aiz-notify .close {
    border-radius: 50%;
}

/* .aiz-notify .close .la-times{display: none;} */
.aiz-notify span {
    padding-right: 6px;
    font-size: 13px;
}

.product__single__prompt__btn.active {
    background-color: var(--primary);
    border: none;
}

.product__single__prompt__btn.active svg path {
    filter: blur(0) invert(1);
}

.product__single__prompt__btn.active svg {
    opacity: 1;
}

/* video::-webkit-media-controls {display: none;} */
.pagination .page-link {
    padding: 0px 16px;
    min-width: 36px;
    min-height: 36px;
    max-width: 36px;
    max-height: 36px;
}

.pagination .active > .page-link,
.page-link.active {
    z-index: 3;
    color: #fff;
    background-color: #acb3bb;
    border-color: #acb3bb;
}

.shipping-details label {
    padding-right: 30px;
}

.product-details label {
    padding-right: 30px;
}

.file-amount {
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.right-gridd .select2-container {
    vertical-align: top;
    width: 186px !important;
}

.right-gridd .select2-container .select2-selection--multiple {
    min-height: calc(3.5rem + 2px);
}

.right-gridd .select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.sliders_control {
    position: relative;
    min-height: 30px;
    margin-top: 12px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none !important;
    box-shadow: none !important;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none !important;
    box-shadow: none !important;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    width: 100%;
    position: absolute;
    background-color: #fafafa;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
    pointer-events: none;
}

#fromSlider {
    height: 0;
    top: 3px;
    z-index: 1;
}

input#fromInput {
    width: 56px;
}

input#toInput {
    width: 74px;
}

.rang-box {
    margin: 0 4px;
    text-align: left;
    font-size: 14px;
    color: #343a40 !important;
    padding: 2px 4px 2px 15px;
    border: 1px solid #555;
    line-height: 20px;
    font-weight: 500;
}

.cr_icon {
    position: absolute;
    left: 10px;
    top: 2px;
}

.btn.disabled {
    color: #ffffff;
    background-color: #dcdcdc;
}

.valution-img {
    cursor: pointer;
    position: relative;
}

.valution-img:hover .remove-item {
    opacity: 1;
    transition: all 500ms ease;
}

.valution-img .btn-close-new {
    padding: 5px !important;
    background-color: #f4f4f4;
    background-size: 14px;
    opacity: 1;
}

.valution-img .remove-item {
    top: 0px;
    position: absolute;
    right: 18px;
    opacity: 0;
    height: 8px;
    width: 8px;
    opacity: 0;
}

.password-strength-indicator {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 5px;
    margin-bottom: 4px;
}

.password-strength-indicator.very-weak {
    background: #cf0000;
}

.password-strength-indicator.weak {
    background-color: #f1adad;
}

.password-strength-indicator.mediocre {
    background: #eeee00;
}

.password-strength-indicator.strong {
    background-color: #c1e1b9;
}

.password-strength-indicator.very-strong {
    background: #1b9900;
}

.custom-popover {
    width: 155px;
    position: absolute;
    inset: 0px auto auto 6px;
    margin: 0px;
    transform: translate(132px, 20px);
}

.popover-arrow {
    position: absolute;
    top: 0px;
    transform: translate(0px, 18px);
}

.popover-body {
    padding: 10px;
}

.popover2 {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-popover {
    display: none;
}

.popover2:hover .custom-popover {
    display: block;
}

.product__single___text .w-300 {
    width: 360px;
    --bs-popover-max-width: 336px;
}

.product__single___text .popover-arrow {
    position: absolute;
    top: 0px;
    transform: translate(30px, 1px);
}

.product__single___text .popover-body {
    padding: 13px 10px 0px;
}

.product__single___text .popover-body ul li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 16px;
}

.product__single___text .popover-body a.btn.btn-link {
    padding: 6px 15px 0px;
    width: auto;
    text-align: left;
    font-weight: normal;
    text-decoration: underline;
}

.table-content .table {
    font-size: 14px;
    text-wrap: nowrap;
}

.table-content .table > :not(caption) > * > * {
    padding: 1rem 0.7rem !important;
}

.table-content .table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #dee2e6;
    background: #f1f1f1;
    font-weight: 600;
}

.sold-out {
    color: #000;
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    top: 45%;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    opacity: 1;
    text-transform: uppercase;
}

.slick_slide_about .slick-slide li {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.slick_slide_about .slick-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick_slide_about .slick-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.influencers__slide__img {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border: 1px solid #f5f4f4;
}

.slick_slide_about .influencers__slide__img video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick_slide_about .at__slide__img img {
    max-height: 450px;
}

.slick_slide_about .at__slide__img {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.slick_slide_about .at__slide__img video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpmib__thumb__imgs.cpmib__thumb__slider .slick-track {
    margin-left: auto;
    min-width: 270px;
    margin-right: auto;
}

.cpmib__thumb__imgs.cpmib__thumb__slider .slick-track .slick-slide {
    min-width: 270px;
}

.product__single__price.chosen_price_div .popover2 {
    padding-left: 16px;
}

.product__single__price.chosen_price_div .chosen_price small {
    display: inline-block;
}

.affiliate-filter-area button.btn.dropdown-toggle.btn-light {
    margin-bottom: 0 !important;
}

.affiliate-status-bottom {
    min-height: 100px;
}

.chosen_price strike {
    opacity: 0.6;
    font-size: 16px;
    font-weight:600;
}

.form-floating:has(.view-password) label {
    padding-right: 46px;
}

.editcontentleftWrapper .nav-pills .nav-link {
    position: relative;
    padding-left: 36px;
}

.editcontentleftWrapper .nav-pills .nav-link svg {
    position: absolute;
    left: 10px;
    top: 11px;
}

@media (max-width: 1599.98px) {
    .header__trust__pilot img {
        width: 110px;
    }
}

@media (max-width: 1399.98px) {
    .slick-prev {
        left: 0px;
    }

    .slick-next {
        right: 0px;
    }

    .news-page .bg-light .row {
        margin: 0 -20px;
    }

    .influencers__slider {
        width: calc(100% + 30px);
        margin-left: -15px;
    }

    .influencers__slide {
        padding: 0 15px;
    }

    .influencers__slide__img img {
        height: 420px;
    }

    .page__title {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
        margin-left: auto;
        padding: 0 15px;
    }

    .page__title h1,
    .page__title {
        font-size: 27px;
    }

    .at__slider {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-bottom: -30px;
    }

    .at__slider .at__slide {
        padding: 0 15px;
        margin-bottom: 30px;
    }
}

/* ==========================================
! Large devices (desktops, less than 1200px)
=========================================== */
@media (max-width: 1199.98px) {
    .content-container {
        padding: 60px 0;
    }

    .content-container.less-padd {
        padding: 40px 0;
    }

    body {
        padding-top: 70px;
    }

    #header .navbar {
        width: 100%;
        height: 70px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        border-radius: 0;
        cursor: pointer;
        text-decoration: none;
        padding: 0;
        border: 0;
        background: transparent;
        margin: 0;
        position: absolute;
        right: 9px;
        top: 50%;
        z-index: 999;
        transform: translateY(-50%);
    }

    .navbar-default .navbar-toggler:hover,
    .navbar-default .navbar-toggler:focus {
        background: transparent;
    }

    .navbar-toggler:not([class="collapsed"]),
    .navbar-toggler:not([class="collapsed"]):focus,
    .navbar-toggler:not([class="collapsed"]):hover {
        background: transparent;
        box-shadow: none;
    }

    .navbar-toggler.collapsed,
    .navbar-toggler.collapsed:focus,
    .navbar-toggler.collapsed:hover {
        background: transparent;
    }

    .home .navbar-toggler.collapsed,
    .home .navbar-toggler.collapsed:focus,
    .home .navbar-toggler.collapsed:hover {
        background: transparent;
    }

    .navbar-toggler .navbar-toggler-icon {
        position: relative;
        display: inline-block;
        width: 26px;
        height: 3px;
        color: #243238;
        text-indent: -55px;
        margin-top: 0;
        background: transparent !important;
        transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        vertical-align: middle;
    }

    .navbar-toggler .navbar-toggler-icon:before,
    .navbar-toggler .navbar-toggler-icon:after {
        content: "";
        width: 26px;
        height: 3px;
        background: var(--dark);
        position: absolute;
        left: 0;
        transition: all 0.2s ease-out;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon {
        background: var(--dark) !important;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon:before,
    .navbar-toggler.collapsed .navbar-toggler-icon:after {
        background: var(--dark);
    }

    .navbar-toggler.collapsed .navbar-toggler-icon:before {
        top: -9px;
        -webkit-transform: rotateZ(0deg);
        -moz-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }

    .navbar-toggler .navbar-toggler-icon:before {
        top: 0;
        -webkit-transform: rotateZ(45deg);
        -moz-transform: rotateZ(45deg);
        -ms-transform: rotateZ(45deg);
        -o-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
    }

    .navbar-toggler.collapsed .navbar-toggler-icon:after {
        bottom: -9px;
        -webkit-transform: rotateZ(0deg);
        -moz-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }

    .navbar-toggler .navbar-toggler-icon:after {
        bottom: 0;
        -webkit-transform: rotateZ(-45deg);
        -moz-transform: rotateZ(-45deg);
        -ms-transform: rotateZ(-45deg);
        -o-transform: rotateZ(-45deg);
        transform: rotateZ(-45deg);
    }

    .header-right {
        position: relative;
        z-index: 999;
        margin-right: 50px;
    }

    .navbar-collapse,
    .navbar-collapse.collapsing {
        position: fixed;
        top: 70px;
        right: 0;
        transform: translateX(400px);
        background: #424242;
        padding: 0;
        z-index: 99;
        margin: 0;
        border: 0;
        width: 320px;
        height: calc(100dvh - 70px) !important;
        overflow-y: auto;
        bottom: 0;
        height: 0;
        display: block !important;
        transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
    }

    .navbar .navbar-collapse.collapse.show {
        transform: translateX(0);
    }

    .navbar-inside {
        height: calc(100dvh - 70px);
        display: flex;
        flex-flow: column;
    }

    .navbar-expand-xl .navbar-nav .nav-item {
        padding: 0;
        margin: 0;
        border-bottom: solid 1px var(--dark);
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        font-size: 15px;
        line-height: 24px;
        padding: 10px 20px !important;
        position: relative;
        color: #ddd !important;
        font-weight: 500;
    }

    .navbar-expand-xl .navbar-nav .nav-item {
        border-bottom: 1px solid #ffffff40;
    }

    .navbar-nav.sm-collapsible .sub-arrow {
        border: 0;
        margin: 0;
        width: auto;
        font-size: 30px;
        line-height: 60px;
        top: 0;
        height: 60px;
        color: var(--dark);
        width: 40px;
    }

    .dropdown-menu {
        background: transparent;
        border: 0;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .mega-menu-box h5[aria-expanded="true"] {
        background: #2d2c2c;
        color: var(--primary) !important;
    }

    .navbar-expand-xl .navbar-nav .mega-menu-grid-item .nav-link {
        padding: 10px 24px !important;
    }

    .dropdown-menu {
        margin-bottom: 0;
    }

    .dropdown-item {
        color: #ddd;
        padding: 10px 30px;
        line-height: 24px;
    }

    .dropdown-menu li + li {
        border-top: 1px solid #ffffff40;
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        color: var(--dark);
        background: transparent;
    }

    .navbar-expand-xl .navbar-nav .nav-item.active .nav-link {
        background: #373737;
    }

    .navbar-expand-xl .navbar-nav .nav-link::before {
        display: none;
    }

    .Navigations-heading {
        padding: 20px;
        background: #111;
        color: var(--white);
    }

    .Navigations-heading h5 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0;
    }

    .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle::before {
        content: "";
        display: block;
        width: 20px !important;
        height: 14px !important;
        background: url(../images/chevron-down.svg);
        right: 16px !important;
        top: 15px;
        left: auto !important;
        background-size: 18px;
        background-position: center;
    }

    .navbar-inside .navbar-nav {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .navbar-inside .navbar-nav::-webkit-scrollbar {
        width: 6px;
    }

    .navbar-inside .navbar-nav::-webkit-scrollbar-track {
        background: var(--dark);
    }

    .navbar-inside .navbar-nav::-webkit-scrollbar-thumb {
        background: var(--dark50);
    }

    .navbar-expand-xl .navbar-nav .nav-item:hover .nav-link,
    .navbar-expand-xl .navbar-nav .nav-item.active .nav-link {
        color: #ddd !important;
    }

    .navbar-expand-xl .navbar-nav .nav-item.active .nav-link {
        color: var(--primary) !important;
    }

    .navbar-expand-xl .navbar-nav .nav-item .nav-link.show {
        background: #2d2c2c;
        color: var(--primary) !important;
    }

    /*megamenu css end */
    .mega-menu-grid {
        flex-flow: column;
        gap: 0;
    }

    .mega-menu-wrapper {
        padding: 0;
    }

    .mega-menu-wrapper .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .mega-menu .dropdown-menu {
        margin: 0 !important;
    }

    .mega-menu-box h5 {
        margin-bottom: 0;
        padding: 10px 24px !important;
        position: relative;
        line-height: 24px;
        background-color: #424242;
        font-size: 15px;
        font-weight: 500;
        color: #ddd;
    }

    .mega-menu-grid-item {
        border-top: 1px solid #ffffff40;
    }

    .mega-menu-links {
        column-count: 1;
    }

    .mega-menu-item {
        margin: 0 !important;
        border-top: 1px solid #ffffff40;
    }

    .mega-menu-item .mega-menu-link {
        color: #ddd;
        padding: 10px 30px;
        line-height: 24px;
    }

    .mega-menu-box h5::before {
        content: "";
        display: block;
        width: 20px !important;
        height: 14px !important;
        background: url(../images/chevron-down.svg);
        right: 20px !important;
        top: 15px;
        left: auto !important;
        background-size: 18px;
        background-position: center;
        position: absolute;
        opacity: 0.85;
    }

    .shop__all__top__sticky {
        top: 80px;
    }

    .product__card__item {
        width: 25%;
    }

    .product__single___text {
        padding-left: 20px;
    }

    .filter-area {
        top: 90px;
        padding-right: 10px;
    }

    .filter-body .accordion-item .clear_acc {
        font-size: 12px;
        right: 24px;
    }

    .filter-body .accordion-button,
    .filter-body .accordion-button:not(.collapsed) {
        font-size: 14px;
    }

    .filter-body .accordion-item .clear_acc {
        font-size: 12px;
        right: 24px;
    }

    .filter-body .accordion-button,
    .filter-body .accordion-button:not(.collapsed) {
        font-size: 14px;
    }

    .shop__all__top__left {
        min-width: 240px;
        width: 240px;
    }

    .shop__all__top__mid {
        width: 124px;
    }

    .shop__all__top__result__count {
        font-size: 12px;
        line-height: 15px;
    }

    .shop__all__top__bar {
        gap: 16px;
        flex-wrap: wrap;
    }

    .mlb__thumb {
        width: 150px;
    }

    .mlb__content {
        width: calc(100% - 150px);
    }

    .about__page__design .countersecton .count-up .text-count {
        font-size: 50px;
        line-height: 50px;
    }

    .news-page .bg-light .row {
        margin: 0 -15px;
    }

    .pstb__list .pstbi__price {
        width: 100px;
        font-size: 18px;
    }

    .pstb__list .pstbi__btns .btn {
        font-size: 12px;
        width: 102px;
    }

    .header__trust__pilot {
        width: 150px;
        padding: 8px 50px 10px 12px;
    }
}

/*==========================================
! Medium devices (tablets, less than 992px)
========================================== */
@media (max-width: 1100px) {
    .premium__member__ship .pms__subpart .center__part {
        flex: 0 0 100%;
        padding: 0px 20px;
        margin: 20px 0px;
        text-align: center;
    }

    .premium__member__ship .pms__subpart .left__part {
        flex: 0 0 100%;
    }

    .premium__member__ship .pms__subpart .right__part {
        flex: 0 0 100%;
        padding: 0px 20px;
        text-align: center;
    }
}

@media (max-width: 991.98px) {
    /* .filter-area { position: fixed; top: 0; bottom: 0; width: 320px; left: 0; z-index: 999999; background-color: #fff; padding: 20px; height: 100vh; transform: translateX(-100%); transition: all .3s ease-in; box-shadow: 5px 0px 20px rgb(0 0 0 / 5%); } */
    /* .filter-area.show { transform: translateX(0px); } */
    /* .filter-body { overflow-x: hidden; overflow-y: scroll; width: calc(100% + 40px); height: calc(100vh - 74px); padding: 0 20px 20px; margin-left: -20px; } */
    /* search css  */

    .affiliate-status-bottom {
        min-height: 144px;
    }

    .premium__member__ship .pms__subpart .left__part {
        flex: 0 0 100%;
    }

    .premium__member__ship .pms__subpart .center__part {
        flex: 0 0 100%;
        padding: 0px 20px;
        margin: 20px 0px;
    }

    .premium__member__ship .pms__subpart .right__part {
        flex: 0 0 100%;
        padding: 0px 20px;
        color: #fff;
        text-align: center;
    }

    .image__content .wrapper__part {
        display: flex;
        flex-direction: column;
    }

    .image__content .wrapper__part .left__part {
        width: 100%;
        padding: 20px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .image__content.bg-gray-dark .wrapper__part .left__part {
        justify-content: center;
        order: 1;
    }

    .image__content.bg-gray-dark .wrapper__part .right__part {
        order: 2;
    }

    .image__content .wrapper__part .right__part {
        width: 100%;
        padding: 20px 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .searh-box-popup .sbp-content .sbp-close {
        right: 10px;
    }

    .searh-box-popup .sbp-content .sbp-close img {
        max-width: none;
    }

    .searh-box-popup .sbp-content .sbp-form-group input {
        width: 100%;
    }

    .sbp-form-group {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .bsp-content-outer {
        width: calc(100% + 25px);
    }

    .searh-box-popup .sbp-content .sbp-form-group .btn {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .shop__all__top__left {
        margin-left: auto;
    }

    .shop__all__top__right {
        width: 100%;
    }

    .shop__all__top__left .hero__search__bar .hero__search__input {
        width: 100% !important;
    }

    .product__card__item {
        width: 33.33%;
    }

    .shop__all__top__filter__btn .btn {
        min-width: auto;
        font-weight: 500;
        padding: 7px 20px;
    }

    .shop__all__top__filter__btn .btn img {
        width: 24px;
        margin-right: 4px;
    }

    .product__info__list {
        justify-content: center;
        padding: 30px 0;
    }

    .product__info__list .product__info__item,
    .pil_x5 .product__info__item {
        width: calc(100% / 3);
        max-width: none;
    }

    .product__info__item {
        padding: 20px 30px;
    }

    .product__single__thumb__slider {
        width: 50px;
        margin-right: 10px;
    }

    .product__single__slider {
        width: calc(100% - 60px);
    }

    .product__single__thumb__slider .slick-next,
    .product__single__thumb__slider .slick-prev {
        height: 50px;
        width: 22px;
    }
    /* 
    .product__single__thumb__slider .slick-prev {
        top: -14px;
    } */

    .product__single__thumb__slider .slick-next {
        bottom: -14px;
    }

    .product__single___text h3 {
        font-size: 24px;
    }

    .product__single__size {
        font-size: 13px;
        margin: 10px 0;
    }

    .product__single__feature_btn {
        padding: 2px 12px;
    }

    .product__single__thumb__slider .slick-list {
        padding: 22px 0;
    }

    .mlb__thumb {
        width: 140px;
    }

    .mlb__content {
        width: calc(100% - 140px);
    }

    .mlb__content h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .mlb__content h6 {
        font-size: 14px;
    }

    .mlbcb__item {
        width: 100%;
    }

    .mlbcb__item + .mlbcb__item {
        margin-top: 23px;
    }

    .about__page__design ul.counter-inner li {
        width: 33.33%;
    }

    .services-card a {
        height: 440px;
    }

    .pstbi__pre__thumb {
        width: 80px;
    }

    .pstbi__pre__content {
        width: calc(100% - 80px);
    }

    .pstbi__pre__price {
        font-size: 20px;
    }

    .pstbi__pre__action .btn {
        min-width: 70px;
    }

    .pstbi__pre__content__inn .pstbi__pre__action {
        width: 82px;
    }

    .pstbi__pre__content__inn .pstbi__pre__text {
        width: calc(100% - 82px);
    }

    .pstbi__pre__text__list {
        font-size: 12px;
        line-height: 15px;
    }

    .pstb__list .pstbi__price {
        width: 100%;
        margin-bottom: 10px;
    }

    .pstbi__right__action .product__single__wish__btn,
    .pstbi__right__action .product__single__prompt__btn {
        width: 39px;
    }

    .pstb__list .pstbi__btns {
        width: calc(100% - 98px);
    }

    .pstb__list .pstbi__btns .btn {
        width: 100%;
    }

    .psvw__btns .btn {
        width: 100%;
    }

    .about__page__design
        .services-page-new
        .serviceModal
        .modal-content
        .service_row {
        flex-direction: column;
        column-gap: 30px;
    }

    .about__page__design .service_row .service_imgLeft {
        max-width: 100%;
    }

    .about__page__design .service_row .service_modalsection {
        max-width: 100%;
        padding: 0px 10px;
    }

    .about__page__design .services-page-new .serviceModal .service_imgLeft img {
        max-height: 300px;
        object-position: top;
    }

    .about__page__design .service_row .service_description {
        max-height: 350px;
        height: 100%;
    }

    .inner-banner h1 {
        font-size: 36px;
    }

    .at__slider .at__slide {
        width: calc(100% / 3);
    }

    .compare__products__modal .modal-dialog {
        min-width: 330px;
    }

    #second-section-product-view .psti__status {
        right: 30px;
        top: -8px;
    }
}

/* =================================================
 ! Small devices (landscape phones, less than 768px)
 ================================================= */
@media (max-width: 767.98px) {
    .right-gridd .select2-container {
        width: 100% !important;
    }

    body {
        padding-top: 70px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 14px;
    }

    .home-banner_img {
        padding-bottom: 50%;
    }

    .hero-container {
        height: 50dvh;
        min-height: 400px;
    }

    .btn.btn-lg {
        padding: 12px 24px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 22px;
    }

    .heading {
        margin-bottom: 22px;
    }

    .heading h2 {
        font-size: 24px;
    }

    .heading h3 {
        font-size: 22px;
    }

    .heading h4 {
        font-size: 18px;
    }

    .heading.heading-lg h2 {
        font-size: 30px;
    }

    #header .navbar-brand {
        width: 157px;
    }

    .navbar-toggler .navbar-toggler-icon {
        width: 22px;
    }

    .navbar-toggler .navbar-toggler-icon:before,
    .navbar-toggler .navbar-toggler-icon:after {
        width: 22px;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon:before {
        top: -8px;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon:after {
        bottom: -8px;
    }

    .navbar-collapse,
    .navbar-collapse.collapsing {
        height: calc(100dvh - 70px) !important;
        top: 70px;
    }

    .header-right-actions li + li {
        margin-left: 10px;
    }

    .header-right-action.header-wish-btn,
    .header-right-action.header-cart-btn {
        width: 28px;
        height: 28px;
    }

    .header-right-action.header-wish-btn svg,
    .header-right-action.header-wish-btn img,
    .header-right-action.header-cart-btn svg,
    .header-right-action.header-cart-btn img {
        width: 14px;
        height: 18px;
    }

    .header-right-action.header-search-btn svg {
        width: 20px;
        height: 20px;
    }

    .header-right-action.header-search-btn {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-cart-count {
        font-size: 10px;
        height: 18px;
        min-width: 18px;
        line-height: 19px;
    }

    .header-right {
        margin-right: 34px;
    }

    .side__cart__modal.offcanvas {
        max-width: 350px;
    }

    #header .navbar {
        width: 100%;
        height: 70px;
    }

    .product__card__item {
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .product__card__list.slick-slider .product__card__item {
        margin-bottom: 0;
    }

    .product__card__list.slick-slider {
        margin-bottom: -20px;
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 14px;
    }

    .brand__item__thumb > p {
        font-size: 16px;
    }

    .brand__list {
        width: calc(100% + 20px);
        margin-left: -10px;
        padding-bottom: 30px !important;
    }

    .brand__item {
        padding: 10px 10px;
    }

    .shop__all__top__bar {
        padding: 0;
        background: transparent;
    }

    .shop__all__top__left {
        width: 100%;
    }

    .shop__all__top__mid {
        order: 1;
        text-align: end;
        width: 100%;
    }

    .shop__all__top__right {
        width: 100%;
    }

    .product__card__item,
    .product__card__item {
        width: 50%;
    }

    .trending__months__content .product__card__item {
        width: 100%;
    }

    .shop__all__top__sticky {
        position: static;
        top: auto;
        padding-bottom: 30px;
    }

    .product__card__x4 .product__card__item {
        width: 50%;
    }

    .filter-btn {
        font-size: 16px;
        padding: 8px 20px;
    }

    .filter-btn img {
        width: 18px;
    }

    .filter-body .accordion-body {
        padding: 0 0 10px;
    }

    .subpost-cnt h1 {
        font-size: 27px;
    }

    .intro-wrapper h1 {
        font-size: 27px;
    }

    .intro-wrapper h2 {
        font-size: 22px;
    }

    .intro-wrapper h3 {
        font-size: 20px;
    }

    .intro-wrapper h4 {
        font-size: 18px;
    }

    .intro-wrapper h5 {
        font-size: 16px;
    }

    .intro-wrapper h6 {
        font-size: 14px;
    }

    .intro-wrapper p a {
        word-break: break-all;
    }

    .how__it__works .how__it__works__list li {
        width: 100%;
    }

    .our__service__list li {
        width: 100%;
    }

    .premium__member__ship .pms__subpart .right__part .heading h3 {
        font-size: 24px;
    }

    .premium__member__ship .pms__heading__part h1 {
        font-size: 26px;
    }

    .image__content .wrapper__part .right__part .heading h3 {
        font-size: 26px;
    }

    .cpmib__thumb__imgs.cpmib__thumb__slider .slick-track {
        min-width: 250px;
    }

    .cpmib__thumb__imgs.cpmib__thumb__slider .slick-track .slick-slide {
        min-width: 250px;
    }

    /* About US */
    .about__page__design
        .services-page-new
        .serviceModal
        .modal-content
        .service_row {
        flex-direction: column;
        column-gap: 30px;
    }

    .about__page__design .service_row .service_imgLeft {
        max-width: 100%;
    }

    .about__page__design .service_row .service_modalsection {
        max-width: 100%;
        padding: 0px 10px;
    }

    .about__page__design .services-page-new .serviceModal .service_imgLeft img {
        max-height: 250px;
        object-position: top;
    }

    .about__page__design .service_row .service_description {
        max-height: 260px;
        height: 100%;
    }

    /* product detail css  */
    .product__single__thumb__slider {
        width: 100%;
        margin: 0 auto;
        margin-top: 10px;
        max-width: 450px;
    }

    .product__single___img__wrapper {
        flex-flow: column-reverse;
    }

    .product__single__slider {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .product__single__thumb__slide {
        padding: 0 5px;
    }

    .product__single__thumb__slider .slick-list {
        padding: 0 25px;
    }

    .product__single__thumb__slider .slick-next,
    .product__single__thumb__slider .slick-prev {
        top: 46%;
        transform: translateY(-50%);
        width: 27px;
        height: 80px;
    }

    .product__single__thumb__slider .slick-next {
        right: 0px !important;
        left: auto !important;
    }

    /* .product__single__thumb__slider .slick-prev {
        left: -3px !important;
        right: auto;
    } */

    .product__single___text {
        padding: 0;
        margin-top: 30px;
    }

    .product__info__list {
        gap: 20px;
    }

    .product__info__list .product__info__item,
    .pil_x5 .product__info__item {
        width: calc(50% - 15px);
        padding: 0 10px;
    }

    .product__info__icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 10px;
    }

    .product__info__item h5 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .product__info__item a {
        font-size: 12px;
    }

    .product__info__item span {
        word-break: break-all;
    }

    .product__single__feature_btn {
        font-size: 12px;
        min-width: 60px;
        padding: 2px 10px;
        line-height: 13px;
    }

    .product__single__feature_btn span {
        font-size: 8px;
        line-height: 8px;
    }

    .product__single__quantity__value {
        height: 40px;
    }

    .product__single__wish__btn,
    .product__single__prompt__btn {
        width: 40px;
        height: 40px;
    }

    .product__single__cart .btn {
        width: 100%;
        max-width: 100%;
    }

    .fixed__product__buttons .btn {
        padding: 10px 16px;
    }

    .product-page ~ .fixed__product__buttons {
        padding-right: 40px;
    }

    .goToTop {
        width: 40px;
        height: 40px;
    }

    .product__card__list.slick-slider {
        padding-bottom: 24px !important;
    }

    .product__layout__second {
        padding-top: 40px;
    }

    #serviceModal .modal-content .modal-body {
        max-height: fit-content;
    }

    .service-detail-modal-text h3 {
        font-size: 22px;
    }

    .top-head-text {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .top-head-text span {
        font-size: 16px;
        line-height: 24px;
    }

    .top-head-text.text-end {
        text-align: center !important;
    }

    .triangle__chart__bar {
        --width: 280px;
    }

    .tcb__box .tcb__item {
        font-size: 16px;
        padding: 14px 20px;
    }

    .triangle__chart__bar::before {
        border-bottom: 246px solid #ccc;
    }

    .offcanvas {
        max-width: 320px;
    }

    .vm__footer .btn {
        min-width: 110px;
    }

    .vmbh__img {
        width: 150px;
    }

    .vmbc__list li {
        font-size: 15px;
    }

    .vmbc__list li span {
        padding: 8px 16px;
    }

    .ml__box {
        padding: 20px 10px;
    }

    .mlb__thumb {
        width: 100%;
        margin-bottom: 24px;
    }

    .mlb__content {
        width: 100%;
        padding: 0;
    }

    .mlbc__footer {
        padding-top: 24px;
    }

    .mlbcf__action__btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .about__page__design .ab-sec5-card {
        margin: 0;
    }

    .about__page__design ul.counter-inner li {
        width: 50%;
    }

    .about__page__design .countersecton .count-up .text-count {
        font-size: 40px;
        line-height: 40px;
    }

    .about__page__design .countersecton .count-up p {
        font-size: 16px;
    }

    .psvw__btns .btn svg {
        width: 18px;
        margin-left: 4px;
    }

    .psvw__btns .btn {
        width: auto;
    }

    .news-page .bg-light .row {
        margin: 0 -15px;
    }

    /* footer css  */
    .product-page ~ footer {
        margin-bottom: 38px;
    }

    .footer small {
        display: grid;
        gap: 0;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer ul li {
        padding: 0;
    }

    .footer ul li + li {
        margin-top: 6px;
    }

    .footer .logo-img {
        max-width: 200px;
    }

    .trending__months__tabs .nav-tabs .nav-link {
        padding: 8px 10px;
        font-size: 14px;
        margin-bottom: -2px;
    }

    .trending__months__content {
        padding: 20px;
    }

    .login-modal-content {
        padding: 0;
        border: none;
    }

    .login-modal-tabs .nav-tabs {
        border: none;
        margin-bottom: 20px;
        margin-top: -12px;
        border-bottom: 1px solid #c3c3c3;
    }

    .login-modal-tabs .nav-tabs .nav-link {
        border: none !important;
        padding: 10px 14px;
        min-width: 80px;
        text-align: start;
        margin: 0;
    }

    .login-modal-tabs .nav-tabs .nav-link.active {
        background-color: #f3f3f3;
    }

    .product__card__tags span {
        font-size: 10px;
        padding: 3px 8px;
    }

    .at__slider {
        padding-top: 0;
    }

    .influencers__slider {
        padding-top: 0;
    }

    .at__slider .at__slide {
        width: calc(100% / 2);
    }

    .wh__right {
        width: 100%;
        margin-top: 30px;
    }

    .wh__right .whr__input {
        flex-grow: 1;
    }

    .product__single__price.chosen_price_div .popover2 {
        padding-left: 24px;
    }

    #second-section-product-view .psti__status {
        right: 0;
        top: 0;
    }

    .fom__logo {
        width: 180px;
    }

    .fom__top__text h2 {
        font-size: 36px;
    }

    .fom__form .form-group .form-control {
        height: 44px;
    }

    .fom__form .form-group + .form-group {
        margin-top: 18px;
    }

    .compare__products__modal .cpm__head h3 {
        font-size: 20px;
    }

    .compare__products__modal .btn-close {
        width: 20px;
        height: 20px;
        top: 11px;
        right: 11px;
    }

    .compare__products__modal .cpm__head {
        text-align: start !important;
    }

    .compare__products__modal .cpm__body {
        justify-content: start;
        overflow-y: auto;
        gap: 20px;
        padding: 18px;
    }

    .cpm__item {
        width: 100%;
        max-width: 100%;
    }

    .side-cart-item-text .side-cart-item-price {
        font-size: 16px;
    }

    .side-cart-item-text .side-cart-item-title {
        font-size: 14px;
        line-height: 20px;
    }

    .side-cart-item-text .cart-qty {
        width: 86px;
    }

    .affiliate-status-bottom {
        min-height: auto;
    }

    #aizUploaderModal .modal-footer .flex-grow-1 {
        flex-flow: column;
        width: 100%;
    }

    #aizUploaderModal .modal-footer .flex-grow-1 .mb-0.ml-3 {
        width: 100%;
        margin-top: 10px !important;
        margin-left: 0 !important;
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px !important;
    }

    #aizUploaderModal .modal-footer .flex-grow-1 #uploader_next_btn {
        margin-left: auto;
    }

    #aizUploaderModal .modal-footer .flex-grow-1 > div[class=""] {
        display: flex;
        justify-content: space-between;
        margin-top: 0;
    }

    #aizUploaderModal .modal-footer .flex-grow-1 + .btn.btn-primary {
        margin-left: auto;
    }

    .pagination .page-link,
    .page-item.disabled .page-link {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        line-height: 30px;
    }
}

/* ======================================================
 ! Extra small devices (portrait phones, less than 576px)
 ====================================================== */
@media (max-width: 575.98px) {
    .psvw__btns .btn {
        width: 100%;
    }

    .at__slider .at__slide {
        width: calc(100%);
    }

    .premium__member__ship .pms__subpart .right__part .heading h3 {
        font-size: 22px;
    }

    .premium__member__ship .pms__heading__part h1 {
        font-size: 24px;
    }

    .image__content .wrapper__part .right__part .heading h3 {
        font-size: 24px;
    }

    .compare__products__modal .modal-dialog {
        margin-left: auto;
        padding-right: 10px;
        padding-left: 10px;
        margin-right: auto;
    }
}

@media (max-width: 767.99px) {
    .image__content .wrapper__part .left__part .img__part {
        max-height: 370px;
        min-height: 370px;
    }
}

@media (max-width: 767.99px) {
    .custom-popover {
        width: 130px;
        inset: 56px auto auto -132px;
        margin: 0px;
        transform: translate(132px, 20px);
    }

    .popover-body {
        padding: 9px 3px;
    }

    .popover-body .gap-3 {
        gap: 0.4rem !important;
    }

    .popover-arrow {
        margin-left: 70px;
        top: -12px;
        transform: rotate(90deg);
    }

    .product__single___text .w-300 {
        width: 300px;
        --bs-popover-max-width: 336px;
        transform: translate(122px, -30px) !important;
    }

    .product__single___text .popover-arrow {
        transform: translate(126px, 0px);
    }

    .slick_slide_about .slick-slide li {
        height: 350px;
    }
}

.product__card__item.out_of_stock {
    opacity: 0.5;
    filter: brightness(0.76);
}

.font-14 {
    font-size: 15px;
}

.text-info {
    color: #009bd8;
}

.tab-content .dropdown.bootstrap-select.form-control.aiz-.show {
    z-index: 9;
}

.bootstrap-select.form-control {
    z-index: 1;
}

.offcanvas-footer .vm__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.offcanvas-footer .vm__footer > a {
    margin: 0 !important;
    color: #fff !important;
}
