@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* ------Scrollbar CSS Start----- */
/* Firefox */
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: var(--white);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 5px;
    border: 0px;
}

/* ------Scrollbar CSS End----- */

/*--- Common Style Start---*/
:root {
    --black: #000;
    --white: #fff;
    --orange: #E65100;
    --yellow: #FFD700;
    --dark-grey: #333333;
    --grey: #777777;
    --green: #2E7D32;
    --body-font: "Roboto", sans-serif;
    --heading-font: "Roboto Slab", serif;
    --subhead-font: "Exo", sans-serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--grey);
    font-family: var(--body-font);
}

p {
    padding: 0;
    color: var(--dark-grey);
}

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

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--black);
}

figure {
    margin: 0;
    padding: 0;
    display: block;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1,
h2,
.heading {
    line-height: normal;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-grey);
    font-size: 2rem;
    line-height: 1.4;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

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

/*--- Common Style End---*/

/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid #cdcdcd;
    padding: 10px 15px;
    background: transparent;
    font-size: 14px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 8px;
    box-shadow: none !important;
}

.form-control:focus,
textarea:focus {
    outline: none !important;
    border: 1px solid var(--orange) !important;
    background: var(--white);
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

.form-control::placeholder,
textarea::placeholder {
    color: #adadad;
    font-size: 12px;
}

textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #cdcdcd;
    padding: 10px 15px;
    background: transparent;
    font-size: 14px;
    color: var(--black);
    border-radius: 8px;
    box-shadow: none !important;
}

.contact-form label {
    color: var(--orange);
    font-family: var(--subhead-font);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.sec-space,
.ptb {
    padding: 60px 0;
}

/*- Bootstrap Form End -*/


/*-- Button Start --*/
.btn,
.ajax_add_to_cart {
    border-radius: 4px;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

button:focus,
.btn:focus,
button:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 0px;
}

.btn-solid,
.ajax_add_to_cart,
.single_add_to_cart_button {
    background: var(--dark-grey);
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 0px solid transparent;
    border-radius: 8px;
}

.btn-solid:hover,
.btn-solid:active,
.btn-solid:focus,
.ajax_add_to_cart:hover,
.ajax_add_to_cart:focus,
.ajax_add_to_cart:active,
.single_add_to_cart_button:hover,
.single_add_to_cart_button:focus,
.single_add_to_cart_button:active {
    background: var(--orange);
    color: var(--white);
}

/*-- Button End --*/


/*--- TITLE Start---*/
.section-heading h2 {
    text-transform: capitalize;
    font-family: var(--heading-font);
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h3 {
    font-family: var(--subhead-font);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0;
}

/*--- TITLE End---*/


/*----   HEADER  START  ----*/
.main-header {
    width: 100%;
    background: var(--green);
/*     overflow: hidden; */
    position: relative;
    z-index: 99;
}

/* .main-header::before{
    content: "";
    width: 27%;
    height: 100%;
    background: #f7f7f7;
    outline: 12px solid #f7f7f74f;
    outline-offset: 6px;
    position: absolute;
    top: 0;
    left: 0;
} */
.main-header::before {
    content: "";
    width: 16%;
    height: 100%;
    background: #f7f7f7;
/*     outline: 12px solid #f7f7f74f; */
    outline-offset: 6px;
    position: absolute;
    top: 0;
    left: 0;
}

.header-appear {
    position: fixed !important;
    top: 0;
    z-index: 999;
    background-color: var(--dark-grey);
    width: 100%;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-appear-index {
    position: fixed;
    top: 0;
    padding: 0px 0px;
    z-index: 999;
    background-color: #fff;
    width: 100%;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-appear .navbar-brand img {
    height: 57px;
}

/* animation */

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

.navbar {
    padding: 0;
    background-color: #2e7d32;
}

.navbar-brand {
    /* padding: 7px 0px; */
    padding: 0;
}

.navbar-brand img {
    height: 64px;
    width: auto;
}

.navbar-collapse ul li {
    margin-right: 50px;
    position: relative;
}

.navbar-collapse ul li>a,
.nav-text a {
    color: var(--white);
    padding: 0 !important;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.nav-text li:not(:first-child) {
    margin-left: 50px;
}

.navbar-toggler-icon {
    height: auto;
}

.header-bottom {
    background: #131D26;
    padding: 8px 0;
	z-index: 2;
}

.header-bottom p {
    color: var(--white);
    font-family: var(--subhead-font);
    font-size: 16px;
    margin-bottom: 0;
}

.search-box {
    position: relative;
}

.search-box .container {
    position: relative;
}

.search-box .form-control:focus {
    border: 1px solid var(--white);
}

.search-box-wrap {
    width: 50%;
    margin: 0 auto;
}

.btn-category {
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn-category:hover .bi,
.btn-category:focus .bi,
.btn-category:active .bi {
    color: var(--orange) !important;
}

#product-cat-list {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 100%;
    padding: 20px;
    background: #131d26;
    box-sizing: border-box;
    z-index: 99;
    display: none;
}

.mystyle {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Category List  */
.has-children {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}

.has-children .bi {
    color: #8A8888;
}

ul.children,
.children .has-children .children {
    position: absolute;
    top: 0;
    left: 108%;
    background: var(--white);
    /* width: 240px; */
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

#product-cat-list ul.children {
    background: #131d26;
}

.has-children:hover>ul.children {
    opacity: 1;
    visibility: visible;
}

.has-children:hover>a,
.product-cat-list li:hover>a {
    color: var(--orange);
}

.product-cat-list a {
    color: #8A8888;
    font-size: 14px;
    font-weight: 500;
}

.product-cat-list li {
    min-width: 250px;
    width: 100%;
}

.product-cat-list li:not(:last-child) {
    border-bottom: 1px solid #21212120;
    padding-bottom: 4px;
    margin-bottom: 4px;
}

/* #ajaxsearchlite1 .probox, div.asl_w .probox {
    height: 30px !important;
    background-color: var(--white) !important;
    border: 0px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
} */
.promagnifier .innericon {
    position: absolute;
    right: 0;
    background: var(--orange) !important;
    color: var(--white);
    width: 50px !important;
    top: 0;
}

.search-box #ajaxsearchlite1 .probox .proinput input,
.search-box div.asl_w .probox .proinput input {
    color: var(--white) !important;
}

#ajaxsearchlite1 .probox .proinput input::placeholder {
    color: var(--orange) !important;
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
    background: #213241 !important;
    border: none;
}

div.asl_r.vertical {
    padding: 0 !important;
    background: transparent !important;
}

div.asl_m .probox .proclose svg {
    left: 0% !important;
}

.cart a {
    font-size: 13px;
    color: var(--black);
    position: relative;
}

/* .cart a::before{
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 48%;
    left: 0;
    background: url(../images/cart.svg);
    background-size: contain;
} */
a.user-icon.logged-user,
.cart-contents,
.user-icon,
.wishlist-link {
    background: transparent;
    border: 1px solid var(--grey);
    height: 32px;
    line-height: 32px;
    width: 32px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
}

a.user-icon.logged-user img {
    filter: brightness(0) invert(1);
}

a.user-icon.logged-user:hover,
.cart-contents:hover,
.user-icon:hover,
.wishlist-link:hover,
a.user-icon.logged-user:focus,
.cart-contents:focus,
.user-icon:focus,
.wishlist-link:focus {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

span.cart-count {
    position: absolute;
    background: var(--green);
    height: 16px;
    width: 16px;
    font-size: 10px;
    line-height: 16px;
    border-radius: 50%;
}

span.cart-count:hover {
    color: var(--white);
}

a.cart-contents {
    margin-right: 12px;
}

/*---   HEADER END   ---*/

/* Loader CSS Start  */

.loaderWrap {
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #212121e1;
    transition: 300ms ease-in-out;
    backdrop-filter: blur(20px);
}

.loader-off.loaderWrap {
    opacity: 0;
    visibility: hidden;
}

.loader img {
    height: 40px;
    width: 40px;
    filter: brightness(0) invert(1);
}

/* Loader CSS End  */



/*---   BANNER START   ---*/
.homebanner {
    margin-top: 12px;
}

.banner-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    width: 45%;
    z-index: 1;
}

.banner-img {
    padding-top: 56%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 9;
}

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

.banner-img::before {
    content: "";
    width: 60%;
    height: 100%;
    background: linear-gradient(88deg, #221f1f, transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-text h1 {
    font-size: 42px;
    line-height: 1.2;
    font-family: var(--heading-font);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 12px;
}

.banner-text p,
.banner-text {
    color: var(--white);
}

.banner-text .btn-solid {
    width: fit-content;
    background: var(--yellow);
    color: var(--dark-grey);
}

.banner-text .btn-solid:hover,
.banner-text .btn-solid:focus,
.banner-text .btn-solid:active {
    background: var(--orange);
    color: var(--white);
}

/*---   BANNER END   ---*/



/*--- Product Home Start ---*/
.product-listing-home .product-wrap,
.pro_carousel .product-wrap {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid #70707040;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.product-image {
    height: 320px;
    overflow: hidden;
    padding: 40px 20px;
    border-bottom: 1px solid #70707040;
}

.product-image a {
    height: 100%;
}

.product-image img {
    object-fit: contain;
    transition: 0.3s ease-in-out;
}

.product-image:hover img {
    transform: scale(1.1);
}

.product-listing-home .product-content {
    padding: 15px 10px;
}

.product-content .desc {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating ul {
    list-style: none;
}

.rating ul li {
    color: #bebebe;
    margin-right: 2px;
    font-size: 13px;
}

.rating ul li:last-child {
    margin-right: 0px;
}

.rating ul li.rated {
    color: #FFBF00;
}

.price-wrap {
    margin-bottom: 8px;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--dark-grey);
}

.price-wrap ins {
    text-decoration: none;
    margin-right: 10px;
    color: #545350;
    font-weight: 600;
}

.price-wrap del {
    color: #BEBEBE;
}

.wish-icon {
    position: absolute;
    right: 15px;
    top: 15px;
}

.wish-icon .tinvwl_add_to_wishlist-text {
    display: none;
}

.wish-icon .tinvwl-icon-heart::before {
    color: var(--orange);
}

/*--- Product Home End ---*/

/* Popular Products start */
.popular-products {
    background: var(--black);
}

.popular-products .section-heading h3 {
    color: var(--white);
    font-weight: 500;
}

.popular-products .product-image,
.bestseller .product-image {
    background: url(../images/vector1.png) no-repeat center;
    background-size: cover;
    padding: 52px 40px 78px;
    /* height: 292px; */
    width: 100%;
    height: auto !important;
}

.bestseller .product-image {
    background: url(../images/vector2.png) no-repeat center;
    background-size: cover;
    height: 256px;
}

.product-content a {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--grey);
    font-family: var(--heading-font);
    font-weight: 600;
}

.popular-products .product-content a {
    color: var(--white);
    font-weight: 400;
}

.bestseller .product-content a {
    color: var(--black);
}

.popular-products .price-wrap,
.bestseller .price-wrap {
    color: var(--orange);
}

.popular-products .addto-cart,
.bestseller .addto-cart {
    position: absolute;
    right: 0;
    bottom: 0;
}

.popular-products .addto-cart a,
.bestseller .addto-cart a {
    height: 48px;
    min-width: 48px !important;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFBB4C, #F59608);
    font-size: 0;
    margin-top: 0;
    border: none;
    padding: 0 !important;
}

.popular-products .addto-cart::before,
.bestseller .addto-cart::before {
    content: "";
    background: url(../images/cart.png) no-repeat center;
    height: 20px;
    width: 20px;
    filter: brightness(0);
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.bestseller .addto-cart::before {
    filter: none;
}

.deals .product-listing-home .product-image {
    height: 168px;
    padding: 24px 14px;
}

.deals .add_to_cart_button {
    margin-top: 0;
}

.product-slider .product-image,
.best-slider .product-image {
    border-bottom: none;
}

.add-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.add-grid .about-img:nth-child(1),
.add-grid .about-img:nth-child(3) {
    grid-row: span 2;
}

/* Best Sellers start */
.bestseller {
    background: #F9F9F6;
}

/* About start  */
.about-img {
    position: relative;
    padding-top: 46%;
    border-radius: 20px;
    overflow: hidden;
}

.about-img img {
    position: absolute;
    top: 0;
    left: 0;
}

/* About end  */

.deal-slider .addto-cart a,
.deal-slider .addto-cart .product_type_variable {
    font-size: 12px !important;
    font-weight: 400 !important;
    height: 37px;
    min-width: 108px;
    background: var(--black);
}

.deal-slider .addto-cart a:focus,
.deal-slider .addto-cart .product_type_variable:hover {
    background: var(--yellow);
    color: var(--black) !important;
}

/* News start  */
.mask1 {
    -webkit-mask-image: url(../images/vector3.png);
    mask-image: url(../images/vector3.png);
    mask-repeat: no-repeat;
    mask-size: contain;
}

.news-date {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.news-box h3 {
    font-size: 16px;
}

.news-box h3 a {
    color: var(--black);
    font-weight: 600;
    font-family: var(--heading-font);
    margin-top: 4px;
}

.news-box .bcontent {
    margin-top: 12px;
}

.btn-line {
    font-size: 13px;
    font-weight: 400;
    color: var(--grey);
    position: relative;
    overflow: visible;
}

.btn-line .bi {
    color: #FFBB4C;
}

.btn-round {
    height: 57px;
    width: 57px;
    line-height: 57px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFBB4C, #F59608);
    padding: 0;
    text-align: center;
    color: var(--white);
    font-size: 24px;
    position: absolute;
    top: 48%;
    right: 0;
}

.why-icon {
    height: 96px;
    width: 96px;
    border-radius: 50%;
    border: 1px solid var(--white);
    padding: 22px;
    flex-shrink: 0;
    margin-right: 12px;
}

.why-box p {
    color: var(--white);
}

/* News end  */

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

/*--  Footer Start  --*/
.footer-top {
    background: var(--green);
    padding: 40px 0;
}

.footer-main {
    background: #080808 url(../images/footer-bg.png) no-repeat center;
    background-size: cover;
    background-blend-mode: difference;
    overflow: hidden;
}

.footer-link-wrapper {
    padding: 80px 0 40px;
}

.copy-right {
    border-color: var(--dark-grey) !important;
}

.copy-right p {
    line-height: 13px;
    font-size: 13px;
    color: var(--grey);
}

.copy-right p a {
    color: var(--grey);
}

.copy-right p a:hover {
    color: var(--orange);
}

.ftr_logo img {
    width: auto;
    height: 84px;
}

.quick-link-box ul,
.quick-link-box ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.quick-link-box h3 {
    font-family: var(--subhead-font);
    color: var(--white);
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 18px;
}

.quick-link-box li:not(:last-child) {
    margin-bottom: 8px;
}

.quick-link-box li a {
    color: var(--grey);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.quick-link-box li a:hover {
    color: var(--orange);
}

.timing li {
    color: var(--grey);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.timing li strong {
    color: var(--green);
    font-size: 14px;
    line-height: 12px;
}

.timing li:not(:last-child) {
    margin-bottom: 0px;
}

.con-box {
    padding-right: 64px;
}

.call-icon {
    height: 46px;
    width: 46px;
    top: 0;
    right: 0;
}

.con-box a.num {
    font-size: 16px;
    color: var(--orange);
    font-weight: 600;
    display: block;
}

.con-box a.mail {
    color: var(--white);
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-wrapper {
    padding-left: 120px;
}

.footer-badge {
    width: 68px;
    height: auto;
    position: absolute;
    bottom: -26px;
    left: 0;
}

/*--  Footer End  --*/

/* Common Inner Page */
.inner_banner {
    position: relative;
    height: 320px;
    background: var(--black);
}

.inner_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.inner_banner .baner_img_page {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 25%;
}

.inner_banner_text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.banner_area_text_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*background: #f26a2e;
    padding: 20px;*/
}

.banner_area_text_box .page-title {
    font-weight: 600;
    font-size: 42px;
    font-family: var(--subhead-font);
    /*     text-align: center; */
    text-transform: capitalize;
    display: inline-block;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    /*margin-bottom: 10px;*/
    flex: 0 0 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

/*.banner_area_text_box .page-title:after{
	position: absolute; content: "";
	width:80px; height:2px; background:#000;
	bottom:0; left:0;
}*/
.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

.breadcrumb ul {
    list-style-type: none;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    display: inline-block;
    margin: 0 5px;
    color: var(--white);
}

.breadcrumb ul li:nth-child(1) {
    margin-left: 0;
}

.breadcrumb ul li a,
.breadcrumb ul li strong {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
}

.breadcrumb ul li a:hover {
    color: #fff !important;
}

/* Common Inner Page */


/* About Page  */
.about-cms .row {
    row-gap: 20px;
}

.about-cms .about-img {
    padding-top: 98%;
}

.about-cms .ab-row {
    border-radius: 20px;
    padding: 4px;
}

.about-cms [class*="col-"]:nth-child(even) .ab-row {
    flex-direction: row-reverse;
}

.about-cms .about-text {
    padding: 0 20px;
}

.about-cms .about-text h3 {
    color: var(--black);
    font-family: var(--heading-font);
    font-weight: 600;
}

.feat-icon {
    height: 86px;
    width: 86px;
    margin: 0 auto 20px;
    background: #e152052b;
    padding: 20px;
    border-radius: 50%;
}

.feat-icon img {
    filter: brightness(0) saturate(100%) invert(46%) sepia(93%) saturate(4585%) hue-rotate(7deg) brightness(96%) contrast(101%);
}

.feature-box h3 {
    font-family: var(--heading-font);
    color: var(--black);
    font-weight: 600;
}


/* Contact Page  */
.contact-info {
    background: #131D26;
    padding: 40px;
    border-radius: 20px;
}

.contact-info .con-box {
    position: relative;
    padding-left: 60px;
    padding-right: 0;
}

.contact-info .con-box h5 {
    font-size: 13px;
    font-weight: 400;
    color: var(--orange);
    margin-bottom: 0;
}

.contact-info .con-box a,
.contact-info .con-box {
    color: var(--white);
    font-size: 15px;
}

.contact-info .con-box .fa {
    height: 40px;
    width: 40px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--orange);
    padding: 8px;
    margin-bottom: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-info .con-box:not(:last-child) {
    margin-bottom: 24px;
}

.contact-form {
    padding: 40px;
    background: #F9F9F6;
    border-radius: 20px;
}

.contact-info .con-box ul {
    list-style-type: none;
}

.contact-info .con-box ul li {
    margin-bottom: 2px;
}

.contact-info hr {
    background: var(--grey);
}

.contact-info li strong {
    font-weight: 400;
    color: var(--grey);
}

/*--- Owl Nav ---*/
.home-slider .owl-dots {
    text-align: right;
}

button.owl-dot {
    height: 8px;
    width: 8px;
    background-color: #d5d4d4 !important;
    border-radius: 8px;
    margin-left: 6px;
    transition: 0.3s ease-in-out;
}

button.owl-dot.active {
    background-color: var(--orange) !important;
    width: 24px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next,
.feature-slider .owl-nav .owl-prev,
.feature-slider .owl-nav .owl-next {
    position: absolute;
    background: var(--white) !important;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    line-height: 36px !important;
    text-align: center;
    font-size: 12px !important;
    color: var(--dark-grey) !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.owl-nav,
.feature-slider .owl-nav {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav .owl-next,
.feature-slider .owl-nav .owl-next {
    right: -15px;
}

.owl-nav .owl-prev,
.feature-slider .owl-nav .owl-prev {
    left: -15px;
}



/* My account  */
.edit-account legend {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-grey);
    margin: 16px 0 12px;
}

.woocommerce-form-row em {
    color: var(--orange);
}

/* Cart Page  */
.wc-block-components-product-name {
    color: var(--dark-grey);
    font-size: 13px !important;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.wc-block-components-product-metadata {
    font-size: 12px !important;
}

.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--minus,
.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--plus {
    background: #ededed !important;
    opacity: 1 !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
    max-width: 64px;
    width: 64px;
}

.wc-block-components-quantity-selector {
    display: inline-flex !important;
}

button.wc-block-cart-item__remove-link {
    color: red !important;
    margin-left: 20px !important;
}

.wc-block-components-product-badge.wc-block-components-sale-badge {
    display: none;
}

.wc-block-cart__submit-container {
    background: var(--orange);
}

.wc-block-cart__submit-container a {
    color: var(--white);
}

.wc-block-cart__submit-container:hover {
    background: var(--dark-grey);
}

.is-large.wc-block-cart .wc-block-cart-items th,
.is-large.wc-block-cart .wc-block-cart__totals-title {
    font-size: 1.2rem !important;
    text-transform: capitalize !important;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__wrap>*,
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__wrap>* {
    margin-bottom: 6px !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector {
    margin-bottom: 0 !important;
}

.wc-block-cart-items {
    margin-bottom: 0 !important;
}

.is-large.wc-block-cart .wc-block-components-sidebar {
    margin-top: 0;
    background: #e0c5684d;
    padding: 20px;
}

/* Empty Cart Page  */
.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
    height: 3em !important;
    mask-size: 3em !important;
    width: 3em !important;
    margin: 0 auto 1em !important;
}

h4.wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title {
    background: var(--orange);
    padding: 40px;
    color: var(--white) !important;
    margin-bottom: 80px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-product-new ul li:after,
.wc-block-grid__product-onsale,
.wp-block-separator.is-style-dots:before {
    display: none !important;
}

.inner_con.wp-block-woocommerce-empty-cart-block .wc-block-product-new ul li {
    position: relative;
    margin: 10px 0;
    padding: 25px !important;
    color: #000;
    font-size: 15px;
    line-height: 20px;
}

.theme-twentytwenty .wc-block-grid.has-3-columns .wc-block-grid__product,
.wc-block-grid.has-3-columns .wc-block-grid__product {
    flex: 1 0 30.3333333333% !important;
    max-width: 30.333333% !important;
    padding-left: 0;
}

.wc-block-grid.has-3-columns .wc-block-grid__products {
    row-gap: 20px;
    justify-content: center;
}

.wc-block-grid__product.wc-block-grid__product {
    border: 1px solid #70707040;
    border-radius: 20px;
    margin: 0 16px;
}

h2.wp-block-heading.has-text-align-center {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-grey) !important;
    font-size: 2rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image) {
    padding: 20px;
}

.wc-block-grid__product-title {
    font-size: 15px !important;
    color: var(--dark-grey) !important;
    border-top: 1px solid #cfcfcf;
    padding-top: 14px !important;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
    background: var(--orange);
    border-radius: 4px;
    font-size: 14px !important;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:focus,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:active {
    background: var(--dark-grey);
    color: var(--white);
}

.wc-block-grid__products {
    margin: 0;
}

/* Checkout Page  */
.wc-block-checkout__terms {
    margin: 8px 0 !important;
}

.wc-block-components-checkout-step__heading {
    margin: 20px 0 8px !important;
}

.wc-block-components-checkout-return-to-cart-button,
.wc-block-components-address-form__address_2-toggle {
    color: var(--orange) !important;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained,
.wc-block-components-totals-coupon__button.contained {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label,
.wc-block-components-form .wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:-webkit-autofill+label,
.wc-block-components-text-input.is-active label,
.wc-block-components-form .wc-block-components-combobox.is-active .wc-block-components-combobox-control label.components-base-control__label {
    transform: translateY(-0.4rem) scale(.875) !important;
    background: #fff;
    padding: 0 8px;
    color: var(--orange);
}

.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill,
.wc-block-components-form .wc-block-components-text-input.is-active input[type=email],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=number],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=tel],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=text],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=url],
.wc-block-components-text-input input:-webkit-autofill,
.wc-block-components-text-input.is-active input[type=email],
.wc-block-components-text-input.is-active input[type=number],
.wc-block-components-text-input.is-active input[type=tel],
.wc-block-components-text-input.is-active input[type=text],
.wc-block-components-text-input.is-active input[type=url],
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input[aria-expanded=true],
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
    padding: 1rem 0.5rem 0.8rem !important;
    border: 1px solid #c3c3c3 !important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
    padding: 1rem 0.5rem 0.8rem !important;
    border: 1px solid #c3c3c3 !important;
}

.wc-block-components-validation-error>p {
    color: red;
    font-size: 13px;
}

.wc-block-components-form .wc-block-components-text-input.has-error label,
.wc-block-components-text-input.has-error label {
    color: #c3c3c3;
}

.wc-block-components-radio-control-accordion-content {
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.4;
    padding: 0 16px 8px 16px !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    box-shadow: inset 0 0 0 1px var(--orange) !important;
    background: #e0c56824;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
    background: var(--orange) !important;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
    border: 1px solid var(--orange) !important;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:focus {
    outline: 1px solid var(--orange) !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary__button-text {
    font-size: 1.2em;
    color: var(--dark-grey);
    font-weight: 600 !important;
}

.wp-block-woocommerce-checkout,
.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
    padding-top: 0 !important;
}

.wc-block-components-order-summary .wc-block-components-product-name {
    margin-bottom: 0 !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    min-height: 20px !important;
    line-height: 13px !important;
    min-width: 20px !important;
    background: var(--orange) !important;
    color: #fff !important;
    border: none !important;
    padding: 3px 6px !important;
}

.wc-block-components-totals-coupon {
    position: relative;
}

.wc-block-components-totals-coupon::before {
    content: "";
    width: 40px;
    height: 40px;
    background-size: contain !important;
    background: url(../images/voucher.png) no-repeat center;
    position: absolute;
    left: 35%;
    top: -10px;
    z-index: 99;
}

.wc-block-components-payment-method-label {
    font-size: 14px;
    font-weight: 600;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option {
    padding-left: 4.5em;
}

/* Product Details Page  */
span.onsale {
    font-size: 13px;
    letter-spacing: 0.02em;
    background: var(--orange);
    z-index: 9 !important;
}

.yith_magnifier_zoom_magnifier {
    border: none !important;
    background: #f1f1f1;
}

.entry-summary .product_meta {
    display: none;
}

.comment-form-rating {
    display: flex;
    align-items: center;
}

.comment-form-rating label {
    margin-bottom: 8px;
    margin-right: 20px;
}

.details_page .woocommerce-Reviews #review_form_wrapper .comment-respond .comment-form p {
    margin: 4px;
}

#commentform .form-submit .submit {
    margin-top: 0px;
}

.pro_carousel .product-wrap .product-content {
    padding: 10px;
}

.pro_carousel .product-wrap .product-image {
    height: 240px;
    border-bottom: 1px solid #70707040;
    padding: 20px;
}

/* .product-type-simple .entry-summary,  */
.product-type-simple .woocommerce-tabs.wc-tabs-wrapper,
.product-type-simple .entry-content {
    margin-bottom: 0 !important;
}

/* Order Received Page  */
.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
    font-size: 1.2rem;
}

.woocommerce-table__product-name a {
    color: #dcb328;
    font-size: 13px;
}

.woocommerce-table__product-name a:hover {
    color: var(--dark-grey);
}

p.woocommerce-customer-details--phone {
    margin-top: 1rem;
}

p.woocommerce-notice {
    color: #529036;
    text-align: center;
    margin-bottom: 40px;
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received:before {
    content: "\F270";
    display: block;
    font-family: 'Bootstrap-icons';
    color: var(--orange);
    font-size: 66px;
    margin-bottom: 30px;
}

.cross-sells {
    display: none;
}

.comments-area {
    display: none;
}

/* Wishlist Page  */
table.wishlist_table {
    font-size: 100%;
}

.wishlist_table .product-add-to-cart a {
    display: inline-block !important;
}

.yith_wcwl_wishlist_footer {
    display: none;
}

form#yith-wcwl-form {
    flex: 0 0 100%;
    max-width: 100%;
}

.wishlist_table .product-add-to-cart a.button {
    padding: 12px 25px !important;
    color: var(--white) !important;
	background: var(--grey);
	border-radius: 4px;
}

.wishlist-title-container {
    display: none;
}

/* Wishlist Responsive  */
.wishlist_table.mobile {
    width: 100%;
    height: auto;
}

.wishlist_table.modern_grid li .item-details table.item-details-table td,
.wishlist_table.images_grid li .item-details table.item-details-table td,
.wishlist_table.mobile li .item-details table.item-details-table td,
.wishlist_table.mobile li table.additional-info td {
    font-size: 13px;
}

.wishlist_table.wishlist_view.responsive.mobile li {
    display: flex;
}

.additional-info-wrapper {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    align-items: center;
}

.product-remove .fa {
    color: red;
    font-size: 16px;
}

.wishlist_table.wishlist_view.responsive.mobile li:not(:last-child) {
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.term-wholesale-purchase.term-358 .contact-us {
    display: block !important;
}

.term-wholesale-purchase.term-358 .contact-us br {
    display: none;
}

.innprobanner .breadcrumb ul li a:hover {
    color: var(--green) !important;
}
.wc_payment_method>label:first-of-type img {
    max-width: 40px !important;
}
.woocommerce-checkout #payment div.form-row {
    padding: 0em;
}
.wc_payment_method .payment_box fieldset{
	padding:0 !important;
}
.form-row.place-order {
    padding: 14px !important;
}

li.woocommerce-PaymentMethod.woocommerce-PaymentMethod--eh_stripe_pay.payment_method_eh_stripe_pay img {
    height: 40px;
    width: auto;
    background: #fff !important;
}
.page-template-my-account #eh-stripe-pay-data {
    max-width: 60%;
    background: #fff;
    border-radius: 8px;
    margin-top: 12px;
}
#eh-stripe-card-element, #eh-stripe-exp-element, #eh-stripe-cvc-element, #eh-stripe-iban-element {
    height: 40px;
    padding: 10px 50px;
    margin-top: 8px;
}
.woocommerce-Button{
	padding: 0 12px;
}
.page-template-my-account #eh-stripe-pay-data .form-row {
    margin: 0 !important;
}
.woocommerce-PaymentMethod--eh_stripe_pay::after{
	display: none !important; 
}