@charset "UTF-8";

:root {
    --primary-color: #023718;
    --secondary-color: #025a26;
    --bg-color: #ebf3f2;
    --white-color: #ffffff;
    --black-color: #000000;
    --text-gray-color: #606060;
    --transition: all 0.3s ease 0s;
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body,
html {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    overflow-x: hidden;
    color: var(--black-color);
    font-family: "Jost", sans-serif;
}

h1,
h2,
h3 {
    margin: 0
}

h4,
h5,
h6 {
    margin: 0
}

p {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-gray-color);
}

p:last-child {
    margin-bottom: 0
}

a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}

a,
button,
img,
input,
textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

a:focus {
    text-decoration: none;
    outline: 0
}

a:hover {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none;
    transition: var(--transition);
}

.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
}

.section-padding {
    padding: 60px 0;
}

.pad-top {
    padding-top: 30px;
}

.pad-bottom {
    padding-bottom: 30px;
}

.section-heading-center {
    display: flex;
    justify-content: center;
    align-content: center;
    position: relative;
    text-align: center;
}

.main-head {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 700;
}

.main-btn {
    font-size: 16px;
    line-height: 16px;
    height: 50px;
    padding: 0 30px;
    letter-spacing: .2px;
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--white-color);
    border: 0;
    display: inline-flex;
    align-items: center;
}

.main-btn i {
    padding-left: 5px;
}

.main-btn:hover {
    color: var(--white-color);
    background: var(--secondary-color);
}

.main-btn.disabled {
    background: #e7e7e7;
}

.main-btn:disabled {
    background: #e7e7e7;
}

/*--------------------------------------------
           header section start
--------------------------------------------*/
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-top-section {
    padding: 10px 0;
    background: var(--bg-color);
}

.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-social-list-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white-color);
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 14px;
    display: inline-block;
}

.header-social-list-icon:hover {
    color: var(--white-color);
}

.header-social-inline {
    display: flex;
    column-gap: 5px;
}

.logo {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 99;
    width: 135px;
    height: 135px;
    background: var(--primary-color);
    border-radius: 50%;
}

.logo img {
    width: 135px;
    height: 135px;
    object-fit: contain;
    border-radius: 50%;
}

.items-count {
    position: absolute;
    right: -7px;
    top: 10px;
    width: 24px;
    height: 24px;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    background: var(--white-color);
    text-align: center;
    border-radius: 50%;
    color: var(--primary-color);
}

.header__account i {
    font-size: 18px;
}

/*--------------------------------------------
           header section end
--------------------------------------------*/


/*--------------------------------------------
        category box section start
--------------------------------------------*/
.category-box-box {
    background: var(--bg-color);
}

.box-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    background: var(--bg-color);
}

.category-box:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0000009c;
    width: 80%;
    height: 80%;
}

.category-box {
    display: block;
    overflow: hidden;
    width: 100%;
}

.category-box img {
    width: 100%;
    height: auto;
}

.category-box-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
}

.category-box-content h2 {
    color: #ffffff;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.category-box-content span {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
}

.offer-img img {
    width: 100%;
}

/*--------------------------------------------
        category box section end
--------------------------------------------*/


/*--------------------------------------------
      premium categories section start
--------------------------------------------*/
.premium-categories {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}

.premium-items a {
    overflow: hidden;
    display: block;
    position: relative;
}

.premium-items-head {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

.premium-items a:hover::before {
    opacity: .8;
}

.premium-items a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    top: 0;
    left: 0;
    opacity: 0;
    transition: var(--transition);
    z-index: 9;
    border-radius: 0 50px 0 50px;
}

.premium-items img {
    -webkit-transition: .3s;
    transition: .3s;
    display: block;
    border-radius: 0 50px 0 50px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow-clip-margin: unset;
}

.view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translatey(-50%) translatex(-50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9;
    width: 50px;
    height: 50px;
    font-size: 20px;
    background: var(--white-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.premium-items a:hover .view-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translatey(-50%) translatex(-50%) scale(1);
    transform: translatey(-50%) translatex(-50%) scale(1);
}

.view-icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}


/*--------------------------------------------
      premium categories section end
--------------------------------------------*/



/*--------------------------------------------
      big-box section start
--------------------------------------------*/
.big-box-box {
    background: var(--bg-color);
}

.big-box-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}

.big-box-items a {
    overflow: hidden;
    display: block;
    position: relative;
}

.big-box-items-content h2 {
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    font-size: 26px;
    line-height: 40px;
    text-transform: uppercase;
    position: relative;
    z-index: 111111;
}

.big-box-items-content span {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
}

.big-box-items a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30px;
    background: -o-linear-gradient(bottom, #000000bf, transparent);
    background: -webkit-gradient(linear, left bottom, left top, from(#000000bf), to(transparent));
    background: linear-gradient(360deg, #000000bf, transparent);
    z-index: 1;
}

.big-box-items img {
    width: 100%;
    border-radius: 30px;
}

.big-box-items-content {
    position: absolute;
    top: auto;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
    cursor: pointer;
    text-align: center;
    width: 100%;
    z-index: 9;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    width: 14px;
    height: 14px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 1px solid var(--secondary-color);
    background: var(--white-color);
    opacity: 1;
    vertical-align: middle;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

/*--------------------------------------------
      big-box section end
--------------------------------------------*/


/*--------------------------------------------
      circle-style section start
--------------------------------------------*/
.grid-circle {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}

.circle-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-items img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    overflow-clip-margin: unset;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

.circle-items a {
    display: flex;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #e5e5e5;
    overflow: hidden;
    position: relative;
}

.circle-head {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, 0px);
    border: 2px solid #eeeeee;
    background: #eeeeeed4;
    color: #023718;
    width: 300px;
    height: 50px;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

/*--------------------------------------------
      circle-style section end
--------------------------------------------*/


/*--------------------------------------------
      exclusive-area section start
--------------------------------------------*/

.exclusive-area .box-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    background: var(--bg-color);
}

.exclusive-area .category-box:before {
    content: "";
    display: none;
}

.exclusive-area .category-box:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0000009c;
    width: 80%;
    height: 80%;
}

.exclusive-area .category-box-content {
    z-index: 11;
}

.text-box h2 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #043619;
    text-transform: capitalize;
}

/*--------------------------------------------
      exclusive-area section end
--------------------------------------------*/


/*--------------------------------------------
       testimonial section start
--------------------------------------------*/

.testimonial-rating i {
    font-size: 14px;
    color: #ffc107;
    padding: 0 1px
}

.testimonial-items {
    padding: 40px 40px;
    background: var(--white-color);
    border-radius: 1rem;
    -webkit-box-shadow: 2px 0 20px rgba(0, 0, 0, .06);
    box-shadow: 2px 0 20px rgba(0, 0, 0, .06);
}

.testimonial-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    padding: .3rem;
    display: block;
    margin: 0 auto;
    border: 2px solid #e7e7e7;
    transition: var(--transition);
    border-radius: 50%;
}

.testimonial-items:hover .testimonial-img {
    border: 2px solid var(--primary-color);
}

.testimonial-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 10px;
}

.testimonial__pagination {
    bottom: 30px !important;
}

.testimonial__section--inner {
    padding: 1rem 1rem 4.5rem;
}

/*--------------------------------------------
        testimonial section end
--------------------------------------------*/


/*--------------------------------------------
       home contact section start
--------------------------------------------*/
.home-contact-info {
    background: #023718;
    padding: 50px;
    border-radius: 30px 0 0 30px;
}

.home-contact-info-icon i {
    color: #fff;
    font-size: 30px;
    margin-right: 20px;
}

.contact-info-content h4 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info-content p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.contact-info-content p a {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.contact-info-content p a:hover {
    color: #fff;
}

.home-contact-info-items {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.home-contact-info-items:last-child {
    border-bottom: 0 solid #dddddd;
    padding-bottom: 0;
    margin-bottom: 0;
}

.home-contact-map {
    height: 100%;
}

.home-contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 0 30px 30px 0;
}

/*--------------------------------------------
        home contact section end
--------------------------------------------*/



/*--------------------------------------------
        footer section start
--------------------------------------------*/
.footer-section {
    background: #000000;
    overflow: hidden;
    position: relative;
}

.footer-section:before {
    content: '';
    background: url(../img/banner/21.jpg) no-repeat center;
    width: 100%;
    height: 100%;
    background-size: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
}

.footer-social-inline {
    display: flex;
    column-gap: 5px;
}

.footer-social-list-icon i {
    width: 34px;
    height: 34px;
    background: #ffffff;
    color: #000000;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 15px;
    display: inline-block;
}

.main-footer {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    padding: 60px 0;
}

.footer-title {
    font-size: 24px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}

.footer-title:before {
    content: "";
    background: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
}

.footer-widget a {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.footer-widget ul li {
    margin-bottom: 5px;
}

.footer-widget p {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.newsletter-subscribe-input {
    width: 100%;
    border: 0;
    height: 50px;
    border-radius: 6px;
    background: #ffffff;
    padding: 0 15px;
    font-weight: 600;
}

.newsletter-subscribe label {
    width: 100%;
}

.footer-bottom {
    padding: 15px 0;
    position: relative;
    z-index: 100;
    border-top: 1px solid #ffffff;
}

.copyright-content-link {
    color: #ffffff;
}

.copyright-content-link:hover {
    color: #ffffff;
}

.footer-bottom p {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}

#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--secondary-color);
    color: var(--white-color);
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    line-height: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 0
}

#scroll__top:hover {
    background: var(--primary-color)
}

#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

#scroll__top svg {
    width: 25px;
    line-height: 1
}

.develop-text img {
    height: 26px;
}

/*--------------------------------------------
        footer section end
--------------------------------------------*/


/*--------------------------------------------
        other section start
--------------------------------------------*/
.swiper__nav--btn {
    width: 3rem;
    height: 3rem;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.swiper__nav--btn:hover {
    background: var(--primary-color);
}

.hero__slider--activation .swiper-button-prev {
    left: 1rem;
}

.swiper__nav--btn.swiper-button-prev {
    left: 0;
}

.swiper:hover .swiper__nav--btn {
    opacity: 1;
    visibility: visible;
}

.hero__slider--activation .swiper-button-next {
    right: 1rem;
}

.swiper__nav--btn.swiper-button-next {
    right: 0;
}

.parallax:before {
    content: "";
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.text-box p {
    color: #000000;
    margin-bottom: 5px;
    line-height: 24px;
}

.text-box h2 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #043619;
    text-transform: capitalize;
}

.inline-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.left-box {
    width: 40%;
}

.right-box {
    width: 60%;
}

.left-box img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 30px;
}

.parallax {
    background-image: url("../img/saree-img/22.jpeg");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.section__heading--maintitle {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.parallax p {
    margin-bottom: 10px;
}

.contact__section--inner .col-lg-5.col-md-5 {
    padding: 0;
}

.contact__section--inner .col-lg-7.col-md-7 {
    padding: 0;
}

.home2__slider--bg {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 600px;
}

.home2__slider--bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #8a572a 30%, transparent);
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.hero__slider--items__inner {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 600px;
    position: relative;
    left: 30px;
}

.slider__content {
    width: 38%;
    text-align: center;
    position: relative;
}

.slider__content .tag_text {
    margin-bottom: 10px;
    display: block;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 20px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.stylish_font {
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    font-size: 50px;
    position: absolute;
    bottom: -15px;
    right: 25px;
    color: #582900;
    text-transform: capitalize;
    text-shadow: 1px 1px #9d693b;
}

.slider__content--maintitle {
    margin-bottom: 15px;
    font-size: 45px;
    line-height: 50px;
    font-weight: 500;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
}

.slider__content--desc {
    font-size: 20px;
    line-height: 24px;
    color: #023718;
    margin-bottom: 30px;
}

.swiper__nav--btn::after {
    background: url(../img/icon/left-arrow-angle.png);
    width: 9px;
    height: 17px;
    font-size: 0;
}

.swiper__nav--btn.swiper-button-next::after {
    background: url(../img/icon/right-arrow-angle.png);
}

/*--------------------------------------------
        other section end
--------------------------------------------*/


/*--------------------------------------------
        breadcrumb start
--------------------------------------------*/
.breadcrumb-bg {
    background-repeat: no-repeat;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-position: top;
    background-size: cover;
}

.breadcrumb-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000000;
    left: 0;
    top: 0;
    opacity: 0.6;
}

.breadcrumb-content-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb-content-menu-items::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 14px;
    background: #ffffff;
    right: 0;
    top: 8px;
    border-radius: 5px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

.breadcrumb-content-menu-items {
    position: relative;
    margin-right: 7px;
    padding-right: 9px;
    line-height: 28px;
    font-size: 14px;
}

.breadcrumb-content-menu-items:last-child::before {
    display: none;
}

.breadcrumb-content-menu-items:last-child {
    margin-right: 0;
    padding-right: 0;
}

/*--------------------------------------------
        breadcrumb end
--------------------------------------------*/



/*--------------------------------------------
        shop page start
--------------------------------------------*/
.product-showing-count {
    font-weight: 500;
    letter-spacing: .5px;
    font-size: 16px;
    line-height: 20px;
    margin-left: 15px;
}

.product-search-input {
    width: 100%;
    height: 45px;
    background: #f9f9f9;
    border-radius: .5rem;
    padding: 0 15px;
}

.product-view-search-form label {
    width: 100%;
    margin-bottom: auto;
}

.product-view-search-form {
    width: 450px;
    position: relative;
}

.product-view-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    background: var(--secondary-color);
    color: var(--white-color);
    height: 100%;
    width: 60px;
    border-radius: 0 .5rem .5rem 0;
    line-height: 45px;
}

.product-view-search-btn:hover {
    background: var(--secondary-color);
}

.product-view-select {
    border: 1px solid #eeeeee;
    padding: .6rem 3rem .6rem 1.2rem;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: .5rem;
    background: var(--white-color);
}

.product-view-label {
    margin-right: 20px;
    font-weight: 600;
}

.select.shop-header-select::before {
    right: 14px;
}

.shop-header-select {
    position: relative;
}

.select::before {
    border-bottom: 2px solid var(--black-color);
    border-right: 2px solid var(--black-color);
    content: "";
    display: block;
    height: 7px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 50%;
    width: 7px;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: .7;
}

.product-items {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

.product-items-img {
    display: block;
    width: 100%;
    /*height: 200px;*/
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 10px 10px 0 0;
}

.product-items:hover .product-items-img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.badge-container {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
}

.badge-container-details {
    display: flex;
    gap: 5px;
}

/* .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
} */

.product-badge span,
.product-badge-one span {
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    font-weight: 500;
    border-radius: 6px 0 6px;
    background: #dc3545;
    color: var(--white-color);
    font-size: 14px;
}

.product-items-link {
    position: relative;
    overflow: hidden;
    display: block;
}

.product-name {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.current__price {
    font-size: 15px;
    color: var(--text-gray-color);
}

.price__divided {
    width: 1.2rem;
    height: .1rem;
    background: var(--text-gray-color);
    vertical-align: middle;
    margin: 0 .3rem;
}

.old__price {
    font-size: 15px;
    color: var(--text-gray-color);
    text-decoration: line-through;
}

.product-items-content {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 0 0 10px 10px;
}

.product-items-action {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.product-items-action-list a {
    border: 1px solid #e7e7e7;
    height: 40px;
    padding: 0 15px;
    color: var(--text-gray-color);
    border-radius: .3rem;
    display: flex;
    align-items: center;
}

.product-items-action-list a .text-1 {
    font-size: 14px;
    padding-left: 5px;
}

.product-items-action-list a.disabled {
    color: #e7e7e7;
}

.product-items-price {
    margin: 5px 0;
}

.pagination-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination-area nav {
    position: relative;
    border-bottom: 0;
    background: #fff;
}

.single-widget {
    padding: 2rem;
    border-radius: .5rem;
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .1);
    margin-bottom: 30px;
}

.widget-title {
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 15px;
    font-size: 22px;
}

.filter-1 label {
    font-size: 16px;
}

.filter-1 input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.filter-1 label {
    position: relative;
    cursor: pointer;
}

.filter-1 label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #000000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.filter-1 input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-1 {
    margin-bottom: 5px;
}

/*price range start*/
.range-slider {
    width: 100%;
    text-align: center;
    position: relative;
    height: 45px;
}

.range-slider svg,
.range-slider input[type=range] {
    position: absolute;
    left: 0;
    bottom: 0;
}

.range-slider input[type=number] {
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1.6em;
    -moz-appearance: textfield;
}

.range-slider input[type=number]::-webkit-outer-spin-button,
.range-slider input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.range-slider input[type=number]:invalid,
.range-slider input[type=number]:out-of-range {
    border: 2px solid #ff6347;
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    width: 100%;
}

.range-slider input[type=range]:focus {
    outline: none;
}

.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
    background: var(--primary-color);
}

.range-slider input[type=range]:focus::-ms-fill-lower {
    background: var(--primary-color);
}

.range-slider input[type=range]:focus::-ms-fill-upper {
    background: var(--primary-color);
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: var(--primary-color);
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

.range-slider input[type=range]::-webkit-slider-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid var(--primary-color);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #306245;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
}

.range-slider input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: var(--primary-color);
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

.range-slider input[type=range]::-moz-range-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid var(--primary-color);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #306245;
    cursor: pointer;
}

.range-slider input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.range-slider input[type=range]::-ms-fill-lower,
.range-slider input[type=range]::-ms-fill-upper {
    background: var(--primary-color);
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

.range-slider input[type=range]::-ms-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid var(--primary-color);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: var(--primary-color);
    cursor: pointer;
}

/*price range end*/

.page-link {
    color: #000;
}

.page-link:hover {
    color: #ffffff;
    background-color: #025a26;
}

.page-link:focus {
    z-index: 3;
    color: #ffffff;
    background-color: #025a26;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
}

/*--------------------------------------------
        shop page end
--------------------------------------------*/



/*--------------------------------------------
        product details start
--------------------------------------------*/
.product-preview-items img {
    width: 100%;
    /*height: 600px;*/
    display: block;
    object-fit: cover;
    overflow-clip-margin: unset;
    object-position: center;
}

.product__media--nav__items--img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    overflow-clip-margin: unset;
    display: block;
    cursor: pointer;
}

.product__media--nav__items {
    border: 1px solid #e4e4e4;
    padding: .5rem;
    margin-top: 10px;
}

.product-details-info-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-details-info-price .current__price,
.product-details-info-price .old__price {
    font-size: 20px;
}

.product-details-info-rating i {
    font-size: 14px;
    color: #ffc107;
    padding: 0 1px;
}

.rating-count-number {
    padding-left: 5px;
}

.product-details-info-rating {
    margin: 5px 0;
}

.minus,
.plus {
    background: var(--primary-color);
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 37px;
    color: #ffffff;
    transition: all ease 0.3s;
    user-select: none;
    cursor: pointer;
}

.quantity span:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

.quantity input {
    width: 100px;
    height: 45px;
    border-radius: 6px;
    text-align: center;
    font-size: 20px;
    border: 1px solid var(--secondary-color);
    display: inline-block;
    vertical-align: middle;
    background: #ffffff;
    outline: 0;
    color: var(--secondary-color);
}

.product-variant-list {
    display: flex;
    align-items: center;
}

.quantity {
    margin-right: 20px;
}

.full-btn-center {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.text-2 {
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}

div.tabBox {
    width: 99.9%;
    float: left;
    overflow: visible;
}

div.tabBox h3 {
    padding: 20px 0px;
}

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 99.9%;
}

ul.tabs li {
    float: left;
    margin-left: 0;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

ul.tabs li a {
    display: block;
    padding: 5px 10px;
    outline: none;
    background: none;
}

.tabContainer {
    border-top: none;
    overflow: hidden;
    clear: both;
    float: left;
    width: 99.9%;
    margin-bottom: 10px;
}

.tabContent {
    padding: 20px;
}

.tabContent h3 {
    padding: 0px;
}

/**** TABS STYLES ****/

div.tabBox h3 {}


ul.tabs {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-top-left-radius: 5px;
    -moz-border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
}

ul.tabs li a {
    background: #eee;
    text-decoration: none;
    font-size: 18px;
    outline: none;
    padding: 15px 30px;
}

ul.tabs li a:hover {
    background: #023718;
    color: #fff;
}

ul.tabs li.active {
    background: #023718;
    color: #fff;
}

ul.tabs li.active a,
ul.tabs li.active a:hover {
    background: #023718;
    color: #fff;
}

div.tabContainer {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background: #fff;
}

/* THE RESPONSIVE PART */
@media only screen and (max-width: 767px) {

    div.tabBox {
        border: 1px solid #ccc;
    }

    ul.tabs {
        height: auto;
        display: block;
        width: 100%;
        border-left: 0px;
    }

    ul.tabs li {
        width: 100%;
    }

    ul.tabs li a {
        border-top-left-radius: 0px;
        -moz-border-top-left-radius: 0px;
        -webkit-border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        -moz-border-top-right-radius: 0px;
        -webkit-border-top-right-radius: 0px;
        border: 0px;
    }

    div.tabContainer {
        border: 0px;
    }
}

.review-img img {
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.review-item {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.review-content h4 {
    font-size: 18px;
}

.product-details-info-rating i {
    font-size: 14px;
    color: #ffc107;
    padding: 0 1px;
}

.review-content {
    width: 80%;
}

.review-section textarea {
    height: 150px;
    padding: 15px;
}

.review-section input {
    height: 50px;
    padding: 0 15px;
}

.review-section label {
    display: inline-block;
    width: 100%;
}

/*--------------------------------------------
        product details end
--------------------------------------------*/


/*--------------------------------------------
        about us start
--------------------------------------------*/
.about-thumb-items {
    width: 50%;
}

.about-thumb-items:first-child {
    margin-top: 5rem;
    margin-right: 2rem;
}

.about-thumb-items img {
    width: 100%;
    border-radius: .5rem;
}

.about-section {
    display: flex;
}

.about-video-play {
    top: 40%;
    padding: 0;
    border: 0;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -40%);
}

.about-video-play a {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: animate 2s linear infinite;
    animation: animate 2s linear infinite;
}

.about-video-play a i {
    font-size: 45px;
}

.about-area h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary-color);
}

.about-area h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0;
}

.about-area p {
    font-size: 16px;
    margin-bottom: 15px;
}

.counterup-items h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
    color: #ffffff;
    padding: 0 10px;
}

.counterup-items span {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 25px;
    display: block;
}

.counterup-banner-bg2 {
    background: url(../img/banner/banner-bg4.jpg);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.counterup-banner-bg2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--black-color);
    left: 0;
    top: 0;
    opacity: .7;
}

.counterup-items {
    position: relative;
}

/*--------------------------------------------
        about us end
--------------------------------------------*/


/*--------------------------------------------
        cart us start
--------------------------------------------*/
.pro-img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 6px;
}

.rwd-table {
    margin: auto;
    width: 100%;
    border-collapse: collapse;
}

.rwd-table thead tr:first-child {
    border-top: none;
    background: var(--primary-color);
    color: #fff;
}

.rwd-table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f9f9f9;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
    background-color: #f3f3f3;
}

.rwd-table th {
    display: none;
}

.rwd-table td {
    display: block;
}

.rwd-table td:first-child {
    margin-top: .5em;
}

.rwd-table td:last-child {
    margin-bottom: .5em;
}

.rwd-table .quantity {
    margin-right: 0;
}

.rwd-table td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: auto;
    display: inline-block;
    color: #000;
}

.rwd-table th,
.rwd-table td {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
}

.rwd-table {
    color: #333;
    border-radius: .4em;
    overflow: hidden;
}

.rwd-table tr {
    border-color: #ededed;
}

.rwd-table th,
.rwd-table td {
    padding: .5em 1em;
}

@media screen and (min-width: 600px) {
    .rwd-table tr:hover:not(:first-child) {
        background-color: var(--bg-color);
    }

    .rwd-table td:before {
        display: none;
    }

    .rwd-table th,
    .rwd-table td {
        display: table-cell;
        padding: .25em .5em;
    }

    .rwd-table th:first-child,
    .rwd-table td:first-child {
        padding-left: 0;
    }

    .rwd-table th:last-child,
    .rwd-table td:last-child {
        padding-right: 0;
    }

    .rwd-table th,
    .rwd-table td {
        padding: 1em !important;
    }
}

.cart-page .minus,
.cart-page .plus {
    font-size: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
}

.cart-page .quantity input {
    width: 45px;
    height: 24px;
    border-radius: 4px;
    font-size: 14px;
}

.cart-total table {
    float: right;
    margin-top: 20px;
}

.cart-total td {
    padding: 2px 2px 2px 30px;
    text-align: right;
    font-size: 16px;
}

.cart-inline-btn .main-btn:first-child i {
    padding-right: 10px;
}

.cart-inline-btn .main-btn:last-child i {
    padding-left: 10px;
}

.rwd-table .main-btn {
    font-size: 14px;
    line-height: 14px;
    height: 40px;
    padding: 0 20px;
}

@media screen and (max-width: 991px) {
    .rwd-table tr:nth-child(2) {
        border-top: none;
    }

    .rwd-table td {
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

    .cart-inline-btn {
        flex-direction: column;
        row-gap: 10px;
    }

    .cart-inline-btn a {
        width: 100%;
        text-align: center;
        display: block;
        line-height: 50px;
    }

    .rwd-table .main-btn {
        font-size: 14px;
        line-height: 14px;
        height: 35px;
        padding: 0 16px;
        font-weight: 500;
    }
}

/*--------------------------------------------
        cart us end
--------------------------------------------*/


/*--------------------------------------------
        login and signup start
--------------------------------------------*/
.crs_log_wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #eff2f5;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #ffffff;
}

.crs_log__thumb {
    height: 200px;
    width: 100%;
    position: relative;
}

.crs_log__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow-clip-margin: unset;
}

.crs_log__caption {
    position: relative;
    padding: 0 2rem;
    width: 100%;
}

.rcs_log_123 {
    margin-top: -50px;
}

.rcs_log_123 .rcs_ico {
    background: #ffffff;
    display: flex;
    text-align: center;
    width: 90px;
    height: 90px;
    font-size: 40px;
    margin: 0 auto;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary-color);
    box-shadow: 0 0 10px 0 rgb(62 28 131 / 7%);
    -webkit-box-shadow: 0 0 10px 0 rgb(62 28 131 / 7%);
}

.Lpo09 {
    padding: 1rem 0;
    text-align: center;
}

.rcs_log_125 {
    text-align: center;
    position: relative;
    display: block;
    padding: 5px 10px 20px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #535c75;
}

.rcs_log_126 .sl_btn {
    height: 50px;
    width: 90%;
    margin: 5px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f2f3f5;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #535c75;
    background: #f7f8f9;
}

.rcs_log_126.full .sl_btn {
    width: 100%;
}

.rcs_log_126 .sl_btn i {
    margin-right: 10px;
    font-size: 18px;
}

.crs_log__footer {
    padding: 1rem;
    border-top: 1px solid #eaecf3;
    margin-top: 2rem;
}

.crs_log__footer p {
    font-weight: 600;
    font-size: 14px;
    color: #535c75;
    margin: 0;
}

.form-control {
    height: 45px;
    padding: 5px 15px;
    margin: 0 !important;
    box-shadow: none !important;
    background: #ffffff;
    border: 1px solid #e6ebf5;
    color: #707e9c;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
}

.text-info {
    color: #2196f3 !important;
}

.text-danger {
    color: #f33066 !important;
}

textarea.form-control {
    min-height: 100px;
}

/*--------------------------------------------
        login and signup end
--------------------------------------------*/


/*--------------------------------------------
        contact us start
--------------------------------------------*/

.contact-form .crs_log__caption {
    position: relative;
    padding: 2rem;
    /* background: var(--bg-color); */
    width: 100%;
}

.form-control:focus {
    border-color: #198754;
}

.contact-form .home-contact-info {
    background: #023718;
    padding: 50px;
    border-radius: 10px;
    width: 100%;
    z-index: 9;
}

.contact-form .crs_log_wrap {
    border-radius: 30px 0 0 30px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .16);
}

.contact-form .home-contact-map iframe {
    height: 510px;
    border: 1px solid #eff2f5;
    border-left: 0;
}

.contact-form {
    display: grid;
    width: 100%;
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}

.container-info .home-contact-info {
    background: #023718;
    border-radius: 100px;
    padding: 30px 150px;
    margin-top: 60px;
    text-align: center;
    display: grid;
    width: 100%;
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}

.container-info .home-contact-info-icon i {
    color: #023718;
    font-size: 20px;
    margin-right: 0;
    background: #ebf3f2;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.container-info .home-contact-info-items {
    border-bottom: 0 solid #dddddd;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
}

/*--------------------------------------------
        contact us end
--------------------------------------------*/


/*--------------------------------------------
        checkout start
--------------------------------------------*/
.form_item {
    display: flex;
}

.checkout-login-area {
    display: none;
}

.checkout-login-area .cancel-btn {
    margin-left: 15px;
    background: #f1283b;
}

.form_item button {
    border-radius: 4px;
    height: 45px;
    justify-content: center;
    margin-left: 15px;
    width: 100%;
}

.shipping-method .shipping-method-text {
    border: 1px solid #bdbdbd;
    padding: 30px 15px;
    text-align: center;
}

.shipping-method-charges {
    display: flex;
    justify-content: space-between;
    background: var(--bg-color);
    padding: 15px;
}

.shipping-method-charges p {
    color: var(--secondary-color);
    margin: 0;
    font-weight: 500;
}

.shipping-area .inline-shipping {
    padding: 30px 0 30px 0;
}

.payment-area .inline-shipping {
    padding: 30px 0 30px 0;
}

.billing-area .inline-shipping {
    padding: 30px 0 30px 0;
}

.inline-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.check-box-conditions label {
    margin-left: 10px;
    font-weight: 400;
}

.inline-card img {
    height: 20px;
}

.panel-body.review_order .form-group {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e3e3e3;
}

.form-select {
    height: 45px;
    padding: 5px 15px;
    margin: 0 !important;
    box-shadow: none !important;
    border: 1px solid #e6ebf5;
    color: #707e9c;
    border-radius: 4px;
}

.form-select:focus {
    border-color: #023718;
}

.checkout_style .panel-info .panel-heading {
    background-color: var(--bg-color);
    font-size: 22px;
    font-weight: 600;
    color: #023718;
    padding: 15px 15px;
}

.panel-info {
    position: relative;
}

.review_order h4 {
    font-size: 16px;
    line-height: 20px;
}

.review_order img {
    height: 70px;
    width: 100%;
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 6px;
}

.price-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex_box {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}

.price-area i {
    color: red;
    font-size: 16px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: #fff2f2;
    border-radius: 50%;
    text-align: center;
}

.checkout_style .cards {
    padding: 0;
    margin: 0;
}

.panel-body {
    padding: 15px;
    border: 1px solid #ebf3f2;
}

.edit-after-submit {
    color: #007aff;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.after-box h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.after-box p {
    margin-bottom: 5px;
}

.checkout_style .cards li {
    list-style: none;
    font-size: 24px;
    display: inline-block;
    margin-right: 5px;
    color: #5f5f5f;
}

.margin_button {
    margin-top: 15px;
    margin-bottom: 10px;
}

.customer-email .inline-shipping {
    padding: 30px 0 30px 0;
}

.pay_option {
    margin: 15px 0;
}

.total_order h4 {
    margin: 5px 0;
}

.checkout_style .small,
small {
    font-size: 15px;
    color: #878787;
}

.total_order {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .review_order .form-group h4 {
        font-size: 15px !important;
        margin: 0 0 3px 0;
    }

    .checkout_style .small,
    small {
        font-size: 12px;
    }

    .review_order .col-md-6,
    .review_order .col-sm-6,
    .review_order .col-xs-6 {
        padding: 0;
        margin: 0;
    }

    .mobile_10 {
        margin-bottom: 10px
    }

}

/*--------------------------------------------
        checkout end
--------------------------------------------*/


/*--------------------------------------------
        faq start
--------------------------------------------*/
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-button::after {
    transition: all 0.5s;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 #000;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--bg-color);
}

.accordion-button {
    font-weight: 600;
}

.title_2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.pages h1,
.pages h2,
.pages h3,
.pages h4,
.pages h5,
.pages h6 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 5px;
    font-weight: 600;
}

/*--------------------------------------------
        faq end
--------------------------------------------*/


/*--------------------------------------------
        account section start
--------------------------------------------*/
.account-header {
    background: var(--bg-color);
    padding: 20px 30px;
    border-radius: 6px 6px 0 0;
}

.account-header ul li a {
    font-size: 18px;
}

.account-header ul li a:hover {
    color: var(--secondary-color);
}

.account-header ul li a.active {
    color: var(--secondary-color);
    font-weight: 500;
}

.account-header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-body {
    background: #f9f9f9;
    padding: 30px 30px;
    border-radius: 0 0 6px 6px;
}

.card_box {
    background: #ffffff;
    box-shadow: 0 0 4px 0 #eeeeee;
    border-radius: 6px;
    text-align: center;
    padding: 40px;
    display: block;
}

.card_box h4 {
    font-weight: 700;
    font-size: 24px;
    margin: 10px 0 5px 0;
    color: var(--secondary-color);
}

.card_box span {
    font-weight: 600;
    font-size: 18px;
    color: #525252;
}

.card_box img {
    height: 64px;
    width: 64px;
    border-radius: 50%;
}

.account-body .rwd-table tr {
    background-color: #ffffff;
}

.account-body .rwd-table th,
.account-body .rwd-table td {
    font-weight: 600;
    color: #000;
}

.account-body .rwd-table tr:nth-child(odd):not(:first-child) {
    background-color: #f3f3f3;
}

.success {
    color: limegreen;
}

.cancel {
    color: #f1283b;
}

.process {
    color: #007aff;
}

.details_text .details-pro-img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    margin-right: 15px;
}

.pro-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.details_text {
    display: flex;
}

.pro-text span {
    display: block;
    font-size: 15px;
}

.action-area img {
    height: 24px;
    margin-right: 5px;
}

.profile-img img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 50%;
    margin-right: 15px;
}

.profile-img h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.profile-img {
    display: flex;
    width: 50%;
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 6px;
}

.text-3 h6 {
    margin-bottom: 5px;
    font-weight: 400;
    color: #4a4a4a;
    font-size: 15px;
}

.edit-btn {
    font-size: 14px;
    color: #0d6efd;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    user-select: none;
}

.delete-btn {
    font-size: 14px;
    color: #f1283b;
    position: absolute;
    right: 75px;
    top: 15px;
    cursor: pointer;
    user-select: none;
}

.text-3 span {
    font-size: 11px;
    line-height: 11px;
    text-transform: uppercase;
    font-weight: 500;
    background: #eee;
    padding: 6px 10px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: inline-block;
}

.profile-info {
    display: flex;
    column-gap: 15px;
}

.address-info {
    width: 50%;
}

.input-radio:checked {
    box-shadow: 0px 0px 0px 4px #00eb27;
    background-color: #000000;
}

.gender-area label {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-top: 10px;
    cursor: pointer;
}

.gender-area .input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 3px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.file-input-container {
    display: flex;
    margin: 0;
    position: relative;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #e6ebf5;
}

.sm-input-file {
    border: 1px solid #000;
    background: #000;
    color: #fff;
    opacity: 0;
    width: 65%;
    height: 50px;
}

.for-sm-input-file {
    width: 35%;
    height: 50px;
    border-bottom: 0 solid #000;
    position: absolute;
    padding: 10px 0;
    cursor: pointer;
    z-index: 30;
    font-size: 1rem;
    text-align: left;
    left: 15px;
    top: 2px;
    color: #000;
    border-radius: 5px;
    margin-bottom: 0;
}

.for-sm-input-file:hover {
    color: #000;
}

.span-text {
    display: flex;
    width: 100%;
    padding: 10px;
    border: 0 solid white;
    height: 50px;
    background: #f9f9f9;
    color: #000;
    border-radius: 0;
}

.inline-edit-btn .main-btn {
    height: 45px;
}

.inline-edit-btn .main-btn.cancel-btn {
    background: #f1283b;
    margin-left: 15px;
}

.manage-address .profile-img {
    width: 100%;
    margin-bottom: 15px;
}

.profile-edit-section {
    width: 50%;
    background: #fff;
    padding: 30px;
}

/*--------------------------------------------
        account section end
--------------------------------------------*/
.parsley-required,
.parsley-type {
    color: rgb(221, 39, 39);
}

.wishlistbtn.active i {
    color: #f33066 !important;
}

.wishlistbtn.active i {
    animation: beat cubic-bezier(0.04, 0.4, 0.5, 0.95) 450ms forwards 1;
}

@keyframes beat {
    30% {
        opacity: 1;
        transform: scale(1.4);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

.page-link.active {
    background-color: #025a26;
    border-color: #025a26;
}


.chosen-wrapper {
    margin: 25px auto 25px;
    max-width: 100%;
    position: relative;

    &:after {
        pointer-events: none;
        content: "";
        position: absolute;
        top: 32px;
        right: 20px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid rgba(0, 0, 0, .5);
        transition: all .2s cubic-bezier(.25, .46, .45, .94);
        z-index: 9;
    }

    &.is-active {
        &:after {
            border-top: 8px solid rgba(0, 0, 0, 1);
            -ms-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }
    }

    .chosen-container {
        .chosen-single {
            border-radius: 0;
            height: 100px;
            border: solid 2px #d9d9d9;
            background: #fff;
            font-size: 22px;
            color: rgba(0, 0, 0, 0.5);
            padding: 0 30px;
            line-height: 66px;
            transition: all 0.3s ease;
            box-shadow: none;
            background: #fff;

            b {
                display: none !important;
            }

            span {
                letter-spacing: 0;
                padding: 0;
                line-height: inherit;
                white-space: normal;
                text-overflow: inherit !important;
                line-height: 45px;
                font-size: 1rem;
                color: var(--black-color);
            }

        }

        &.chosen-with-drop {
            .chosen-single {
                border-width: 2px 2px 1px;
                border-color: #000 #000 #d9d9d9;
                color: #000;
                background-image: none;
            }

            .chosen-drop {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        &.chosen-container-single-nosearch {
            .chosen-search {
                display: none;
            }
        }

        .chosen-drop {
            letter-spacing: 0;
            border-radius: 0;
            box-shadow: none;
            border-width: 0 2px 2px;
            border-color: #000;
            margin-top: 0;
            -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
            -o-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
            transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
            opacity: 0;
        }

        .chosen-results {
            font-size: 22px;
            color: #000;
            max-height: 245px;
            margin: 0;
            padding: 0;

            li {
                padding: 16px 30px 18px;
                margin: 0;
                border-bottom: 1px solid #e5e5e5;
                -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
                -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
                transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
                line-height: 32px;
                font-size: 1rem;

                &.highlighted {
                    background-color: #eeeeee !important;
                    color: #000;
                    background-image: none;
                }
            }
        }
    }

    &--style2 {
        &:after {
            right: 0;
        }

        &:before {
            content: '';
            width: 0;
            border-top: 2px solid #000;
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: 1;
            transition: all 0.2s cubic-bezier(.06, 1, .89, .85);
        }

        &.is-active {
            &:before {
                width: 100%;
            }
        }

        .chosen-container {
            .chosen-single {
                border-width: 0 0 2px;
                padding: 0;
            }

            &.chosen-with-drop {
                .chosen-single {
                    border-width: 0 0 2px;
                }

                .chosen-drop {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(5px);
                }
            }

            .chosen-drop {
                border-color: #d9d9d9;
                border-top: 2px solid #d9d9d9;
            }

            .chosen-results {
                li {
                    padding: 16px 15px 18px;
                }
            }
        }
    }
}


/*ScrollBox style*/
.nicescroll-rails {
    border-left: 1px solid #d9d9d9;
    transform: translate(-2px);
    top: 0 !important;

    .nicescroll-cursors {
        width: 6px !important;
        margin-right: 2px;
    }
}

.coupon-board {
    border: 2px solid #d3d3d3;
    border-radius: .25rem;
    padding: .2rem .5rem;
    border-style: dashed;
    background: #f8f9fa;
}

.drawer {
    display: none;
}

.drawer__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    opacity: 0;

    transition: opacity 0.3s;
    will-change: opacity;
    background-color: #000;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.drawer__header {
    /* Optional */
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.drawer__close {
    /* Optional */
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='15px' height='16px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.drawer__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    max-width: 500px;
    z-index: 9999;
    overflow: auto;

    transition: transform 0.3s;
    will-change: transform;
    background-color: #fff;

    display: flex;
    flex-direction: column;

    -webkit-transform: translate3d(103%, 0, 0);
    transform: translate3d(103%, 0, 0);
    /* extra 3% because of box-shadow */

    -webkit-overflow-scrolling: touch;
    /* enables momentum scrolling in iOS overflow elements */

    /* Optional */
    box-shadow: 0 2px 6px #777;
}

.drawer__content {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    flex-grow: 1;
    /* Optional */
    padding: 1.5rem;
}

.drawer--left .drawer__wrapper {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.drawer.is-active {
    display: block;
}

.drawer.is-visible .drawer__wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.drawer.is-visible .drawer__overlay {
    opacity: 0.5;
}

.cart-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-item {
    display: flex;
    column-gap: 15px;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-item:last-child {
    border-bottom: 0 solid #ebebeb;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cart-item .minus,
.cart-item .plus {
    font-size: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.cart-item .quantity input {
    width: 60px;
    height: 26px;
    font-size: 14px;
}

.sidebar-cart-section .quantity {
    margin-right: 0;
    margin-bottom: 8px;
}

.cart-item img {
    width: 111px !important;
    height: 125px;
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 8px;
    max-width: none;
}

.cart-inline .main-btn {
    font-size: 12px;
    line-height: 28px;
    font-weight: 400;
    height: 30px;
    padding: 0 12px;
    display: inline-block;
}

.cart-inline .remove-btn.main-btn {
    background: #dc3545;
    color: #ffffff;
}

.fixed-box {
    position: fixed;
    bottom: 0;
    background: #f1f1f1;
    padding: 30px;
    width: 100%;
    z-index: 9;
}

.drawer__content {
    padding-bottom: 165px;
}

.buy-owl-section {
    padding: 15px 0;
}

.buy__swiper--activation .swiper-slide .cart-item img {
    width: 125px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    overflow-clip-margin: unset;
}

.buy-owl-section .swiper-slide .cart-item {
    padding: 15px 0;
}

.sub_head_2 {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    color: #000;
}

.buy__swiper--activation {
    padding-bottom: 1.8rem;
}

.buy__swiper--activation .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.buy-owl-section .testimonial__pagination {
    bottom: 10px !important;
}

.info-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    padding: 15px 30px;
    background: #ebf3f2;
    border-radius: 100px;
}

.info-item span {
    font-size: 24px;
    background: #023718;
    color: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
}

.info-item {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #dbdbdb;
}

.info-item:last-child {
    border-right: 0 solid #dbdbdb;
}

.info-item h4 {
    font-weight: 600;
    color: #023718;
    font-size: 28px;
}

.sidebar-cart-section .cart-inline {
    display: flex;
    column-gap: 5px;
}

.sidebar-cart-section .quantity {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.inline-cart {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}










/*new menu start*/
.wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    cursor: pointer;
    outline: none;
}

.topmenu {
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px 0;
    z-index: 2;
    border-bottom: 0 solid #ddd;
}

.wrapper:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    z-index: 3;
    right: 16px;
    top: 24px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: grey transparent;
    transition: all 0.5s ease;
}

.dropdown {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    box-shadow: 0 0 #000 !important;
    padding: 0;
    list-style: none;
    border-top: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s, left 0s 0.5s, top 0.5s;
}

.wrapper .dropdown li {
    position: relative;
}

.wrapper .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px;
    padding-left: 15px !important;
}

/* Hover state */
.wrapper .dropdown li:hover a {
    color: grey;
    background: #f9f9f9;
}

.active .topmenu:after {
    opacity: 1;
}

.wrapper.active:after {
    transform: rotate(180deg);
}

.wrapper.active .dropdown {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    top: 100%;
    display: block !important;
    left: 0;
    border-top: 1px solid #fff;
    transition: opacity 0.5s linear, top 0.5s;
}

/* hover styles only below */
@media (any-hover: hover) {
    .wrapper:hover .topmenu:after {
        opacity: 1;
    }

    .wrapper:hover:after {
        transform: rotate(180deg);
    }

    .wrapper:hover .dropdown {
        opacity: 1;
        z-index: 1;
        pointer-events: auto;
        display: block;
        width: 100%;
        top: 100%;
        left: 0;
        transition: opacity 0.5s linear, top 0.5s;
        position: relative;
        visibility: visible;
        margin-top: 0;
    }
}

/*new menu end*/




.btn-outline-success {
    --bs-btn-color: #025a26;
    --bs-btn-border-color: #025a26;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #025a26;
    --bs-btn-hover-border-color: #025a26;
    --bs-btn-focus-shadow-rgb: 25, 135, 84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #025a26;
    --bs-btn-active-border-color: #025a26;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #025a26;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #025a26;
    --bs-gradient: none
}

.bg_modal {
    background: rgb(255, 237, 217);
    background: linear-gradient(180deg, rgba(255, 237, 217, 1) 0%, rgba(222, 187, 154, 1) 100%);
    color: #013717;
    ;
}

.bg_modal h5 {
    text-align: center;
}

.coupon {
    border: 2px dashed #603913;
    margin-top: 8px;
    line-height: 18px;
    background: #fff;
    padding: 0 25px;
    text-align: center;
    width: 200px;
    margin: 5px auto 12px;
}

.bg_modal h5 span {
    font-weight: 800;
    display: inline-block;
}

.bg_modal h5 {
    font-size: 17px;
}

.coupon h3 {
    font-weight: 800;
    font-size: 25px;
}

@media only screen and (min-width:996px) {
    .modal-lg {
        width: 700px;
    }

}

.bg-blk {
    background: #000000;
}

.sale-banner {
    width: fit-content;
    background: linear-gradient(45deg, #023718, #198754);
    color: white;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
    /* animation: pulse 1.5s infinite; */
}

.sale-banner-sm {
    width: fit-content;
    background: linear-gradient(45deg, #023718, #198754);
    color: white;
    padding: 0px 5px;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 8px;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
    /* animation: pulse 1.5s infinite; */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Blog details CSS */
.mt--40 {
    margin-top: 40px;
}

.mb--50 {
    margin-bottom: 50px
}

.axil-post-wrapper .post-heading {
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.axil-post-wrapper .content-blog {
    border-top: 1px solid #f3f3f3;
    padding-top: 60px;
}

.axil-post-wrapper .content-blog:first-child {
    margin-top: 0 !important;
    border-top: none;
    padding-top: 0;
}

.content-blog .thumbnail {
    margin-bottom: 30px;
}

.content-blog .thumbnail a {
    display: block;
    border-radius: var(--radius);
}

.content-blog .thumbnail a img {
    width: 100%;
    border-radius: var(--radius);
}

.content-blog .content .title {
    font-weight: 500;
    line-height: 1.3;
}

.content-blog .content p {
    margin-bottom: 30px;
}

.content-blog .content .read-more-btn .axil-btn {
    display: inline-flex;
}

.content-blog.sticky .inner {
    background: #f9f3f0;
    border-left: 6px solid var(--secondary-color);
    border-radius: var(--radius);
    padding: 50px;
}

@media only screen and (max-width: 479px) {
    .content-blog.sticky .inner {
        padding: 30px 15px;
    }
}

.content-blog.format-quote .inner {
    background: #f9f3f0;
    border-left: 6px solid var(--secondary-color);
    border-radius: var(--radius);
    padding: 50px 40px 30px;
}

@media only screen and (max-width: 575px) {
    .content-blog.format-quote .inner {
        padding: 30px 20px 10px;
    }
}

.content-blog.format-quote .inner .content blockquote .title {
    font-weight: 700;
    line-height: 1.31;
    font-size: 35px;
    font-style: italic;
}

@media only screen and (max-width: 767px) {
    .content-blog.format-quote .inner .content blockquote .title {
        font-size: 28px;
    }
}

@media only screen and (max-width: 575px) {
    .content-blog.format-quote .inner .content blockquote .title {
        font-size: 24px;
    }
}

.content-blog.format-video .thumbnail {
    position: relative;
    text-align: center;
}

.content-blog.format-video .thumbnail:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--black-color);
    opacity: .2;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.content-blog.format-video .thumbnail .popup-video {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.content-blog.format-video .thumbnail .popup-video .play-btn {
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .8);
    border-radius: 50%;
    margin: 0 auto;
    font-size: 32px;
    color: #fff;
    transition: var(--transition);
}

.content-blog.format-video .thumbnail .popup-video .play-btn:hover {
    background-color: #000
}

@media only screen and (max-width: 767px) {
    .content-blog.format-video .thumbnail .popup-video .play-btn {
        height: 80px;
        width: 80px;
        font-size: 24px;
    }
}

.content-blog.post-list-view {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 20px;
}

@media only screen and (max-width: 479px) {
    .content-blog.post-list-view {
        align-items: flex-start;
    }
}

.content-blog.post-list-view:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.content-blog.post-list-view .thumbnail {
    width: 120px;
    margin-right: 20px;
    min-width: 120px;
    overflow: hidden;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .content-blog.post-list-view .thumbnail {
        width: 70px;
        margin-right: 10px;
        min-width: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .content-blog.post-list-view .thumbnail {
        width: 80px;
        min-width: 80px;
    }
}

.content-blog.post-list-view .thumbnail a {
    border-radius: 6px;
    overflow: hidden;
}

.content-blog.post-list-view .thumbnail a img {
    width: 100%;
    border-radius: 6px;
    transition: .5s;
    object-fit: contain;
}

.content-blog.post-list-view .content {
    flex: 1;
}

.content-blog.post-list-view .content .title {
    font-size: 17px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .content-blog.post-list-view .content .title {
        font-size: 16px;
    }
}

.content-blog.post-list-view .content .title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-blog.post-list-view .content .axil-post-meta {
    margin-bottom: 0;
}

.content-blog.post-list-view:hover .thumbnail img {
    transform: scale(1.1);
}

.axil-post-meta {
    display: flex;
    margin-bottom: 20px;
    margin-top: 20px;
}

.axil-post-meta .post-author-avatar {
    min-width: 50px;
    max-height: 50px;
    margin-right: 20px;
    width: 50px;
}

.axil-post-meta .post-author-avatar img {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.axil-post-meta .post-meta-content .author-title {
    margin-bottom: 5px;
    font-size: 16px;
}

.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    margin: 0 -15px;
}

.post-meta-list li {
    color: #777777;
    font-size: 14px;
    padding: 0 15px;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}

.post-meta-list li::after {
    position: absolute;
    content: "";
    background: #cbd3d9;
    width: 1px;
    height: 14px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.post-meta-list li:last-child::after {
    display: none;
}

.blog-grid {
    border: 1px solid #f1f1f1;
    border-radius: 6px;
    padding: 20px;
}

.blog-grid p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-grid .thumbnail {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}

.blog-grid .thumbnail img {
    transition: .5s;
}

.blog-grid .thumbnail .blog-category {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.blog-grid .thumbnail .blog-category a {
    background-color: rgba(2, 90, 38, .8);
    border: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    padding: 2px 10px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}

.blog-grid .content .title {
    margin-bottom: 20px;
}

.blog-grid .content .axil-btn {
    padding: 0;
    align-items: center;
    color: var(--color-heading);
}

.blog-grid .content .axil-btn i {
    padding-left: 6px;
    top: 1px;
    color: var(--color-heading);
    transition: var(--transition);
}

.blog-grid .content .axil-btn:hover {
    color: var(--primary-color);
}

.blog-grid .content .axil-btn:hover i {
    color: var(--primary-color);
}



.blog-grid:hover .thumbnail img {
    transform: scale(1.1);
}

.axil-single-post .post-content {
    padding: 0 75px;
}

@media only screen and (max-width: 1199px) {
    .axil-single-post .post-content {
        padding: 0;
    }
}

.axil-single-post.post-formate .content-block .post-thumbnail img {
    border-radius: 6px;
}

.axil-single-post.post-video .format-video .thumbnail {
    padding-top: 0;
    margin-bottom: 0;
}

.post-single-wrapper {
    padding-top: 80px;
}

@media only screen and (max-width: 991px) {
    .post-single-wrapper {
        padding-top: 30px;
    }
}

.post-single-wrapper .content-blog {
    border-top: none;
    padding-top: 0;
}



.post-pagination {
    margin-top: 80px;
    width: 100%;
}

.post-pagination nav {
    background: none !important;
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .post-pagination {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .post-pagination {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .post-pagination {
        margin-top: 30px;
    }
}

.post-pagination nav.pagination {
    display: block;
}

.post-pagination nav.pagination .screen-reader-text {
    display: none;
}

.post-pagination nav.pagination ul {
    position: relative;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px;
    padding: 0;
}

.post-pagination nav.pagination ul li {
    margin: 3px;
}

.post-pagination nav.pagination ul li span {
    line-height: 42px;
    min-width: 42px;
    text-align: center;
    color: var(--color-heading);
    transition: all .5s;
    display: block;
    padding: 0 15px;
    transition: all .5s;
    border: 1px solid var(--text-gray-color);
    border-radius: var(--radius);
}

.post-pagination nav.pagination ul li span.current,

.post-pagination nav.pagination ul li a.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.post-pagination nav.pagination ul li a {
    line-height: 42px;
    min-width: 42px;
    text-align: center;
    color: var(--color-heading);
    transition: all .5s;
    display: block;
    padding: 0 15px;
    transition: all .5s;
    border: 1px solid var(--text-gray-color);
    border-radius: var(--radius);
}

.post-pagination nav.pagination ul li a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}



.axil-single-widget {
    border: 1px solid #f3f3f3;
    border-radius: 6px;
    padding: 30px;
}

.axil-single-widget .widget-title {
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--color-dark);
}

@media only screen and (max-width: 479px) {
    .axil-single-widget {
        padding: 20px;
    }
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.tagcloud a {
    border: 1px solid var(--text-gray-color);
    font-size: var(--font-size-b2) !important;
    color: var(--color-body);
    height: 40px;
    padding: 0 20px;
    margin: 5px;
    display: inline-block;
    line-height: 35px;
    border-radius: 500px;
    font-family: var(--font-secondary);
}

.tagcloud a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.blog-search,
.wp-block-search {
    position: relative;
}

.blog-search input,
.wp-block-search input {
    height: 50px;
    border: 1px solid #f0f2f5;
    background-color: #f0f2f5;
    padding: 0 20px;
    color: var(--color-heading);
    padding-left: 50px;
    font-size: 16px;
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    width: 100%;
}

.blog-search .search-button,
.wp-block-search .search-button {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: 0 none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    width: auto;
}

.blog-search .search-button i,
.wp-block-search .search-button i {
    color: var(--color-body);
    font-weight: 400;
}

.widget_rss ul li a {
    color: var(--color-heading);
    text-decoration: none;
    display: block;
}

.widget_rss ul li a:hover {
    color: var(--primary-color);
}

.widget_rss ul li span.rss-date {
    font-size: 14px;
}

.widget_rss ul li .rssSummary {
    margin-top: 9px;
}

.widget_rss ul li cite {
    margin-top: 4px;
    display: inline-block;
    font-weight: 500;
    font-size: 14px
}

.widget_archive ul {
    margin-bottom: 0;
    list-style: disc;
}

.widget_archive ul li {

    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 0;
    line-height: 28px;
    list-style: disc;
    list-style-position: inside;
}

.widget_archive ul li::marker {
    font-size: 18px;
    color: #ced0d4;
    transition: var(--transition);
}

.widget_archive ul li a {
    color: #65676b;
    transition: var(--transition);
}

.widget_archive ul li:hover::marker {
    color: var(--primary-color);
}

.widget_archive ul li:hover a {
    color: var(--black-color);
}

.widget_archive_dropdown select {
    border-radius: 4px;
    height: 50px;
    padding: 0 20px;
}



/* Blog details CSS end */

.sub-content ul {
    color: var(--text-gray-color);
    line-height: 30px;
    margin-bottom: 15px;
}

.sub-content {
    overflow: hidden;
    max-height: 150px;
    transition: max-height 0.5s ease;
}

.sub-content.expanded {
    max-height: 1000px;
}

.read-more {
    color: var(--bs-success);
    cursor: pointer;
    font-weight: bold;
}

.container-fluid ul {
    color: var(--text-gray-color);
    line-height: 30px;
    margin-bottom: 15px;
}

.short_content p{
    margin-top: 10px;
}

.long_content p{
    margin-top: 10px;
}


/* LIVE VIEWERS */
.product-view-alert {
    width: fit-content;
    color: #333;
    background: #f6f8f3;
    border: 0px solid #dce5d8;
    border-radius: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0;
}
.product-view-alert .alert-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    background: #023718;
    border-radius: 50%;
    font-size: 13px;
    animation: eyePulse 1.8s infinite;
}
.product-view-alert .view-text strong {
    color: #023718;
}
/* LIVE BADGE */
.product-view-alert .live-badge {
    margin-left: auto;
    padding: 4px 7px;
    color: #023718;
    background: #e6efe8;
    border-radius: 30px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .6px;
    animation: liveBadge 1.4s ease-in-out infinite;
}
.product-view-alert .live-badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 4px;
    background: #22a447;
    border-radius: 50%;
    animation: liveDot 1s ease-in-out infinite;
}
/* Dot animation */
@keyframes liveDot {
    0% {
        box-shadow: 0 0 0 0 rgba(34,164,71,.5);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(34,164,71,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34,164,71,0);
    }
}


/* MOBILE */
@media (max-width: 575px) {
    .product-alert {
        padding: 10px 12px;
        gap: 8px;
        font-size: 13px;
    }

    .product-view-alert .alert-icon {
        width: 28px;
        height: 28px;
    }
}
/* =========================================
            New CSS End
========================================= */


/*--- stock alert section start ---*/
.stock-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: .3rem;
    background: #fff1f1;
    color: #d92323;
    border: 1px solid #ffbaba;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    animation: stockBlink 1.2s infinite;
    height: 40px;
}
.stock-alert i {
    font-size: 15px;
    animation: iconPulse 1.2s infinite;
}
@keyframes stockBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}
@keyframes iconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}
/*--- stock alert section end ---*/



.product-items-link {
    position: relative !important;
    display: block !important;
    overflow: hidden;
}

.product-items-link .low-stock-badge {
    position: absolute !important;
    left: 10px;
    bottom: 10px;
    top: auto !important;
    right: auto !important;
    z-index: 99 !important;

    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    gap: 6px;

    width: auto !important;
    max-width: calc(100% - 20px);
    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #e60023 0%,
        #ff3d3d 55%,
        #ff7a18 100%
    );

    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none !important;

    box-shadow: 0 5px 15px rgba(230, 0, 35, 0.4);
    animation: stockPulse 2s infinite;
}

.low-stock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.low-stock-text {
    color: #ffffff !important;
}

.low-stock-text strong {
    color: #ffffff !important;
    font-weight: 800;
}

@keyframes stockPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@media only screen and (max-width: 767px) {
    .product-items-link {
        position: relative !important;
        overflow: hidden !important;
        min-height: 150px;
    }

    .product-items-link .product-items-img {
        position: relative;
        z-index: 1;
        display: block !important;
        width: 100% !important;
        height: 150px;
        object-fit: cover;
    }

    .product-items-link .low-stock-badge {
        left: 5px !important;
        bottom: 6px !important;
        z-index: 999 !important;

        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;

        max-width: calc(100% - 10px);
        padding: 6px 8px;

        font-size: 9px;
        letter-spacing: 0;
    }

    .low-stock-icon {
        font-size: 11px;
    }
}


/* =========================================
   LOW-STOCK PRODUCT ALERT
========================================= */

.product-stock-alert {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    max-width: 100%;
    margin: 8px 0 14px;
    padding: 10px 16px 10px 10px;

    color: #9f1717;
    background: linear-gradient(
        135deg,
        #fff7ed 0%,
        #fff1f1 55%,
        #ffe4e4 100%
    );

    border: 1px solid #ffb2a8;
    border-left: 4px solid #e32636;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;

    box-shadow:
        0 5px 14px rgba(227, 38, 54, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08);

    animation: stockAttention 2.5s ease-in-out infinite;
}

/* Lightning icon */
.product-stock-alert .alert-icon {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    color: #ffffff;
    background: linear-gradient(135deg, #ff7a00, #e32636);
    border-radius: 50%;

    font-size: 14px;

    box-shadow:
        0 4px 10px rgba(227, 38, 54, 0.3),
        0 0 0 4px rgba(227, 38, 54, 0.08);
}

/* Highlight the available quantity */
.product-stock-alert strong {
    color: #d80020;
    font-size: 16px;
    font-weight: 800;
}

/* Subtle shine effect */
.product-stock-alert::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -40%;

    width: 30px;
    height: 220%;

    background: rgba(255, 255, 255, 0.55);
    transform: rotate(25deg);

    animation: stockShine 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes stockAttention {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 14px rgba(227, 38, 54, 0.12);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 7px 18px rgba(227, 38, 54, 0.22);
    }
}

@keyframes stockShine {
    0%,
    60% {
        left: -40%;
    }

    100% {
        left: 120%;
    }
}


@media screen and (max-width: 575px) {
    .product-stock-alert {
        width: 100%;
        padding: 9px 11px;
        gap: 9px;

        font-size: 13px;
        border-radius: 7px;
    }

    .product-stock-alert .alert-icon {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .product-stock-alert strong {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-stock-alert,
    .product-stock-alert::after {
        animation: none;
    }
}