:root{
    --lime:#8cc53e;
    --yellow:#fac129;
    --body-text:#646473;
    --white-grey:#cacad8;
    --grey:#e5e5e5;
    --black:#000;
    --white:#fff;
    --white-50:#fafafa;
    --white-100:#f2f2f2;
    --black-50:#221e1f;
    --grey-text:#858594;
    --black-light:#393536;
    --font-BrownhillScript:'BrownhillScript';
    --font-dmsans:'DM Sans';
    --fontawesome:'Font Awesome 6 Free';
}
body{
    font-size: 16px;
    line-height: 20px;
    font-family: var(--font-dmsans);
    color: var(--body-text);
}
ul , li , ol {
    list-style:none;
	margin:0;
	padding:0;
}

.ndr_accordion_content ul li{
    list-style: disc;
    list-style-position: inherit;
}
.ndr_accordion_content ol li{
    list-style: decimal;
    list-style-position: inherit;
}
.ndr_accordion_content ul , .ndr_accordion_content ol{
    padding-left: 20px;
    margin-bottom: 1rem;
}
.ndr_accordion_content p a{
    color: var(--lime);
}
a, a img {
	text-decoration:none;
	border:0;
	outline:none;
    color: inherit;
}
img {
	max-width:100%;
    height: auto;
}
:-moz-placeholder {
	color:inherit;
	opacity:1;
}
.container{
    max-width: 1300px;
    margin: 0 auto;
}
.icon{
    font-family: var(--fontawesome);
    font-weight: 900;
}

h1 , .h1 {
    font-size: 84px;
    line-height: 100px;
    font-weight: 600;
    color: var(--white);
}

h1 span , .h1 span {
    font-family: var(--font-BrownhillScript);
    color: var(--lime);
    font-weight: 400;
}
h2 , .h2 {
    font-size: 50px;
    line-height: 60px;
    color: var(--black);
    font-weight: 600;
}

h2 span , .h2 span {
    font-family: var(--font-BrownhillScript);
    color: var(--lime);
    font-weight: 400;
}

h3 , .h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
}
h4 , .h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
}
.title-top {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
}
.lime-btn {
    background: var(--lime);
    padding: 20px 45px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.5s;
    color: var(--black);
    display: block;
}
.lime-btn:hover {
    background: var(--black);
    color: var(--lime);
}
.black-btn {
    background: var(--black);
    color: var(--lime);
    padding: 20px 45px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.5s;
    display: block;
}
.black-btn:hover {
    background: var(--lime);
    color: var(--black);
}
.slider-arrow {
    gap: 20px;
}
.slider-arrow button {
    position: static;
    border: 1px solid var(--black);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    transform: unset;
    transition: all 0.5s;
}
.slider-arrow button.slick-disabled{
    opacity: 0.2;
    cursor: text;
}
.slider-arrow .slick-prev.slick-disabled:before, .slider-arrow .slick-next.slick-disabled:before{
    opacity: 1;
}
.slider-arrow button:hover {
    background: var(--black);
}
.slider-arrow button.slick-prev:hover::before , .slider-arrow button.slick-next:hover::before{
        color: var(--lime);
}
.slider-arrow button.slick-prev::before {
    content: '\f104';
    font-family: var(--fontawesome);
    position: static;
    font-weight: 900;
    color: var(--black);
}
.slider-arrow button.slick-next::before {
    content: "\f105";
    font-family: var(--fontawesome);
    font-weight: 900;
    position: static;
    color: var(--black);
}
input , textarea {
    border: 1px solid var(--grey);
    padding: 15px;
    border-radius: 30px;
    width: 100%;
}
input:focus , textarea:focus{
    outline: none;
}
input::placeholder , textarea::placeholder{
    color: var(--body-text);
}
input[type="checkbox"] , input[type="submit"] {
    width: auto;
}
/* announcementbar */
.announcementbar{
    background-color: var(--lime);
    color: var(--white);
    padding: 10px 0;
}
.announcmentbar-slider.loading {
    display: inline-flex;
    gap: 20px;
}
.announcmentbar-slider.slick-initialized.slick-slider {
    display: block;
}
.announcementbar-slide p{
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    text-align: center;
}
/* announcementbar */

/* header */
.header .header-menu-main{
    gap: 40px;
}
.header .menu-wrapper {
    gap: 30px;
}
.header .menu-item{
    font-weight: 600;
}
.header .menu-item a{
    transition: all 0.5s;
    text-transform: uppercase;
    color: var(--black);
}
.header .menu-item a:hover{
    color: var(--lime);
}
.header .menu-item button {
    padding: 0;
    border: 0;
    font-weight: 600;
}
.header .search-block{
    width: 250px;
}
.header .search-block input {
    border: 0;
    background: var(--white-100);
    border-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 10px 20px;
}
.header .search-block input:focus{
    outline: 0;
    box-shadow: unset;
}
.header .search-block input::placeholder{
    font-style: italic;
}
.header .search-block .search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lime);
    border-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    color: var(--white);
    position: absolute;
    right: 2px;
    top: 2px;
    border: 0;
}
.header .search-block .search-btn:hover{
    background-color: var(--black);
}
.header .header-icon{
    gap:30px;
    font-size: 20px;
}
.header-icon svg{
    color: var(--black);
}
.header a.cart-icon {
    position: relative;
}

.header span.cart-item-count {
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 20px;
    position: absolute;
    top: -10px;
    left: calc(100% - 10px);
    padding: 4px;
}
.header .toggle-menu-icon{
    display: none;
}
.header .nav-menu {
    gap: 30px;
}


.header .mega-menu .menu-title{
    color: var(--lime);
    display: block;
    font-size: 20px;
}
.header .mega-menu .sub-menu{
    margin: 20px;
}
.header .mega-menu {
    padding: 30px;
}
.header .has-mega-menu a svg{
    transition: all 0.5s;
}

.header .has-mega-menu a.show svg{
    transform: rotate(180deg);
}
li.menu-item{
    list-style: none;
}
ul.menu , ul.sub-menu{
    padding: 0;
}
/* header */

/* banner */
.banner .banner-slider {
    margin: 0;
}

.banner .banner-slide {
    height: 100vh;
    max-height: 740px;
    min-height: 740px;
}
.banner .banner-details {
    min-height: 500px;
    background-image: url('../images/banner-img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
}
.banner .header-top {
    color: var(--white);
    font-size: 21px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 10px;
}
.banner .banner-bottom-text {
    font-size: 32px;
    color: var(--white);
    line-height: 38px;
    font-weight: 400;
    margin: 30px 0 50px 0;
    position: relative;
}
.banner .banner-text {
    font-size: 32px;
    color: var(--white);
    line-height: 38px;
    font-weight: 400;
    margin: 30px 0 50px 0;
    position: relative;
}
.banner-text::before{
    content: '';
    width: 30px;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    left:-40px;
    top: 50%;
    transform: translateY(-50%);
}
.banner-text::after{
    content: '';
    width: 30px;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    right:-40px;
    top: 50%;
    transform: translateY(-50%);
}
.banner .slick-dots li button {
    padding: 0;
    border: 1px solid var(--white);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.banner .slick-dots li button::before {
    content: unset;
}

.banner ul.slick-dots {
    bottom: 45px;
}

.banner .slick-dots li {
    width: auto;
    height: auto;
}

.banner .slick-dots li.slick-active button {
    background: var(--white);
}
/* banner */

/* categories slider */
.categories {
    margin: 100px 0;
    overflow-x: hidden;
}
.categories .categories-slide {
    margin: 0 8px;
    position: relative;
}
.categories .categories-slide-img {
    width: 100%;
    border-radius: 10px;
}
.categories .categories-name {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    position: absolute;
    bottom: 50px;
    left: 50px;
    transition: all 0.5s;
}
.categories .categories-slide:hover .categories-name {
    font-size: 50px;
}
.categories .categories-heading {
    margin-bottom: 50px;
}
.categories .slick-list{
    overflow: unset;
}
.categories  .categories-slider {
    margin-left: -5px;
}
/* categories slider */

/* product slider */
.product-tabs-slider{
    margin-bottom: 100px;
}
.product-tabs-slider .tabs-wrapper {
    margin: 35px 0;
}
.product-tabs-slider .filter{
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 0;
}
.product-tabs-slider .pro-slider {
    padding-left: calc((min(100vw, 1900px) - 1300px) / 2);
}
.product-tabs-slider .latest-product-slider .slick-track,
.product-tabs-slider .other-product-slider .slick-track {
    margin: 0;
}
.product-tabs-slider .pro-slider .pro-slide {
    padding: 0 10px;
}
.product-tabs-slider .pro-slider .slick-list {
    padding-left: 10px;
}
.Product-block .product-img-block {
    position: relative;
    background: var(--white-50);
    border-radius: 10px;
    margin-bottom: 30px;
}

.Product-block img.product-hover-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    opacity: 0;
    transition: all 0.5s;
}
.Product-block .product-img-block img {
    margin: 0 auto;
    transition: all 0.5s;
    display: block;
    object-fit: cover;
}
.Product-block:hover img.product-img {
    opacity: 0;
}
.Product-block .product-img-block a.lime-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
    opacity: 0;
    display: none;
}
.Product-block:hover .product-img-block a.lime-btn{
    opacity: 1;
    display: block;
}
.Product-block .product-img-block .like-product {
    width: 40px;
    height: 40px;
    border: 1px solid var(--grey);
    background: var(
    --white);
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    color: var(--black);
}
.Product-block .product-img-block .like-product .product-wishlist-icon:before {
    color: var(--black);
    font-size: 20px;
}
ul.products .Product-block .product-img-block .like-product .product-wishlist-icon:before {
    color: var(--black);
    font-size: 20px;
    top: 0;
}
.Product-block .product-img-block .like-product:hover svg {
    color: var(--lime);
}
.Product-block:hover img.product-hover-img {
    opacity: 1;
}
.Product-block .product-categories {
    font-size: 14px;
    color: var(--grey-text);
    margin: 5px 0;
    display: block;
}
.Product-block h3 {
    color: var(--black);
}

.Product-block span.product-price {
    font-size: 14px;
    color: var(--lime);
    margin-top: 20px;
    display: block;
}

.Product-block span.product-price span {
    font-size: 18px;
    font-weight: 600;
}
.product-tabs-slider .tabs-btn {
    background-color: var(--grey);
    font-size: 16px;
    font-weight: 600;
    width: 140px;
    border-radius: 40px;
    padding: 10px;
    transition: all 0.5s;
    margin: 0 10px;
    cursor: pointer;
    list-style: none;
}

.product-tabs-slider .tabs-btn.active , .product-tabs-slider .tabs-btn:hover {
    background-color: var(--black);
    color: var(--white);
}
.product-tabs-slider .pro-grid .pro-slide {
    padding: 0 15px;
    width: 25%;

}
.product-tabs-slider .pro-grid{
    padding-left: calc((min(100vw, 1900px) - 1300px) / 2);
}
.product-tabs-slider .tab-content-wrapper{
    display: none;
}
.product-tabs-slider .all.tab-content-wrapper,
.product-tabs-slider .All.tab-content-wrapper,
.product-tabs-slider .ALL.tab-content-wrapper{
    display: block;
}
.other-product-section .tab-content-wrapper:first-child {
    display: block;
}
.loader-img{
    width: 50px;
}
.loader-block{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* product slider */

/* pro-cards */
.product-cards {
    padding: 0 30px;
    margin-bottom: 100px;
}
.product-cards .pro-card {
    height: 700px;
    padding: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    width: calc(50% - 2px);
    background-position: right center;
}
/* pro-cards */

/* best-coolection-card */
.best-collection-card {
    margin-bottom: 30px;
    height: 650px;
    background-image: url('../images/best-collection-card.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.best-collection-card  h2{
    color: var(--white);
}
.best-collection-card .best-collection-card-text{
    padding-left: 120px;
}
.best-collection-card .best-collection-card-text a.black-btn {
    margin-top: 50px;
    display: block;
    width: max-content;
}
/* best-coolection-card */

/* key-features */
.key-features{
    margin-bottom: 100px;
}
.key-features .features-title{
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}
.key-features p{
    font-size: 18px;
    line-height: 28px;
    color: var(--grey-text);
}
/* key-features */

/* newsletter */
.newsletter {
    padding: 120px;
    background: var(--lime);
}
.newsletter .newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.newsletter .newsletter-block input {
    border: 0;
    padding: 20px;
    border-radius: 50px;
    width: 600px;
}
.newsletter .newsletter-block input:focus{
    outline: 0;
}
.newsletter .newsletter-block .mc4wp-form-fields{
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}
.newsletter .newsletter-wrapper p {
    font-size: 18px;
    margin-bottom: 40px;
}
.newsletter .newsletter-wrapper .submit-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--black);
    position: absolute;
    right: 6px;
    top: 4px;
    border: 0;
    background-image: url('https://ndrsport.in/wp-content/uploads/2024/07/newsletter-icon.svg');
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 0;
}
.newsletter .newsletter-wrapper .mc4wp-success p{
    color: green;
    margin: 10px 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.newsletter .newsletter-wrapper .mc4wp-error p{
    color: red;
    margin: 10px 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}
/* newsletter */

/* footer */
.footer {
    background: var(--black-50);
}
.footer .footer-wrapper {
    padding: 90px 0;
}
.footer .footer-links {
    max-width: 250px;
}
.footer span.footer-title {
    font-size: 24px;
    line-height: 26px;
    color: var(--lime);
    margin-bottom: 30px;
    display: block;
    font-weight: 600;
}
.footer .footer-wrapper .address span.footer-company-name {
    display: block;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.footer .footer-wrapper a {
    color: var(--white-grey);
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.footer .footer-wrapper a:hover{
    color: var(--white);
}
.footer .footer-wrapper a.address{
    line-height: 25px;
}
.footer .footer-wrapper .number {
    color: var(--white);
    font-weight: 900;
    display: inline-flex;
    gap: 5px;
}
.footer .footer-wrapper .number a {
    margin: 0;
    color: var(--white);
    transition: all 0.5s;
}
.footer .footer-wrapper .number a:hover{
    text-decoration: underline;
}
.footer .footer-wrapper .e-mail {
    display: inline-flex;
    gap: 5px;
    color: var(--white);
    font-weight: 900;
    text-decoration: unset;
}

.footer .footer-wrapper .e-mail .mail-link {
    color: var(--lime);
    text-decoration: underline;
    font-weight: 400;
}
.footer .footer-wrapper .e-mail .mail-link:hover{
    color: var(--white);
}
.footer .social-wrapper{
    margin-top: 45px;
}
.footer .social-wrapper a {
    width: 40px;
    height: 40px;
    background-color: var(--black-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--white);
    transition: all 0.5s;
}
.footer .social-wrapper a:hover{
background-color: var(--lime);
color: var(--black);
}
.footer .footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--black-light);
}
.footer .footer-bottom .copy-right {
    color: var(--white);
}

.footer .footer-bottom .copy-right span {
    color: var(--lime);
}
.footer .footer-bottom .copy-right span.highlighted-text {
    text-transform: uppercase;
}
/* footer */

/* about page */
/* inner banner */
.inner-banner {
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(0deg, rgba(248,189,61,1) 0%, rgba(255,211,77,1) 100%);
}
/* inner banner */

/* about-details */
.about-details {
    margin: 100px 0;
}
.top-heading {
    max-width: 800px;
    margin: 0 auto 20px auto;
}
.about-details p{
    color: var(--body-text);
    line-height: 28px;
}
.about-details .about-details-text li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--body-text);
}
.about-details .about-details-text li::before {
    content: '\f005';
    position: absolute;
    left: 0;
    font-family: 'fontawesome';
    color: var(--lime);
    transform: rotate(90deg);
}
.about-details .about-details-text{
    padding-left: 50px;
}
.about-details-img img{
    width: 100%;
}
/* about-details */

/* about page */

/* conatct page */

.contact-sec {
    margin: 100px 0;
}
.contact-sec .top-heading{
    margin-bottom: 50px;
}
.contact-sec .conatct-wrapper h2 {
    margin-bottom: 30px;
}
.contact-sec .conatct-details-wrapper {
    margin-bottom: 20px;
}
.contact-sec .conatct-form {
    width: 65%;
}
.contact-sec .conatct-form form{
gap: 20px;
}
.contact-sec .conatct-details {
    padding-left: 60px;
    width: 35%;
}
.contact-sec .conatct-form input , .contact-sec .conatct-form textarea {
    border: 1px solid var(--grey);
    padding: 15px;
    border-radius: 30px;
}
.contact-sec .conatct-form input:focus , .contact-sec .conatct-form textarea:focus{
    outline: none;
}
.contact-sec .conatct-form input::placeholder , .contact-sec .conatct-form textarea::placeholder{
    color: var(--body-text);
}

.contact-sec .conatct-form textarea {
    border-radius: 10px;
    height: 150px;
}

.contact-sec .conatct-form .w-full {
    width: 100%;
}
.contact-sec .conatct-form .w-half {
    width: calc(50% - 10px);
}
.contact-sec .conatct-form .lime-btn{
    padding: 20px 45px;
    border-radius: 40px;
}
.contact-sec .conatct-details-wrapper span {
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
    color: #1f1f2e;
    font-size: 20px;
    line-height: 36px;
}
.contact-sec .conatct-details-wrapper.mail-wrapper a{
    text-decoration: underline;
}
.contact-sec .conatct-details-wrapper a {
    font-size: 16px;
    line-height: 28px;
    color: #525261;
}

.contact-sec .conatct-details-wrapper a:hover {
    color: var(--black);
}

/* map-sec */
.map-sec .map-iframe {
    width: 100%;
    height: 560px;
}
/* map-sec */
/* conatct page */

/* blog list */
.bloglist-sec {
    margin: 100px 0;
}
.bloglist-sec .bloglist-card{
    margin-bottom: 30px;
}
.bloglist-sec .bloglist-card .blog-image {
    border-radius: 5px;
    margin-bottom: 20px;
    width: 100%;
}
.bloglist-sec .bloglist-card .blog-date {
    color: #666666;
    margin-bottom: 10px;
    display: block;
}
.bloglist-sec .bloglist-card .blog-date svg {
    margin-right: 10px;
}
.bloglist-sec .bloglist-card h3 {
    margin-bottom: 15px;
}
.bloglist-sec .bloglist-card p {
    color: #535362;
    font-size: 18px;
    line-height: 28px;
}
.bloglist-sec .bloglist-card .blog-readmore {
    text-decoration: underline;
    color: var(--lime);
    font-size: 18px;
    font-weight: 900;
    transition: all 0.5s;
}
.bloglist-sec .bloglist-card .blog-readmore:hover{
    color: var(--black);
}
.pagination {
    justify-content: center;
    margin-top: 50px;
}

.pagination a.page-link {
    border: 0;
    border-bottom: 1px solid var(--grey);
    border-radius: 0;
    padding: 10px 20px;
    color: var(--body-text);
}
.pagination a.page-link:focus , .pagination a.page-link:hover{
    background: transparent;
    box-shadow: unset;
}
.pagination .page-item:first-child .page-link , .pagination .page-item:last-child .page-link {
    border-radius: 0;
}
.pagination .page-item.active a.page-link , .pagination .page-item:hover a.page-link {
    background: transparent;
    color: var(--black);
    border-bottom: 2px solid var(--black);
    font-weight: 600;
}

.pagination .pagination-link.page-link {
    border: 0;
    border-bottom: 1px solid var(--grey);
    border-radius: 0;
    padding: 0;
    color: var(--body-text);
}
.pagination .pagination-link.page-link:focus, .pagination .pagination-link.page-link:hover{
    background: transparent;
    box-shadow: unset;
}
.pagination .page-item.active .pagination-link.page-link, .pagination .page-item:hover .pagination-link.page-link {
    background: transparent;
    color: var(--black);
    border-color: transparent;
    border-bottom: 2px solid var(--black);
    font-weight: 600;
}
.pagination .pagination-link.page-link .page-numbers {
    padding: 10px 20px;
    display: block;
}
.pagination .pagination-link.page-link .page-numbers.dots {
    cursor: none;
}

.woocommerce .pagination-section.woo-pagination {
    width: 100%;
}
.woocommerce .pagination-section.woo-pagination li {border-bottom: 1px solid var(--grey);border-radius: 0;padding: 0;color: var(--body-text);border: none;float: none;display: block!important;}
.woocommerce .pagination-section.woo-pagination ul {
    margin: 0;
    border: none;
    white-space: unset;
    display: flex;
    justify-content: left;
}
.woocommerce .pagination-section.woo-pagination li .current {
    background-color: transparent;
    color: #000000;
    font-weight: bold;
    border-color: #000000;
}
.woocommerce .pagination-section.woo-pagination li span,.woocommerce .pagination-section.woo-pagination li a {
    padding: 10px 20px;
    display: block;
    color: #646473;
    transition: 400ms;
    border-bottom: 2px solid #e5e5e5;
}
.woocommerce .pagination-section.woo-pagination li span:hover, .woocommerce .pagination-section.woo-pagination li a:hover {
    color: #000000;
    font-weight: bold;
    border-color: #000000;
    background-color: transparent;
}



/* blog list */

/* blog details */

.blog-details-sec {
    margin: 100px 0;
}
.blog-sidebar {
    width: 30%;
    padding-left: 30px;
}
.blog-details-wrapper {
    width: 70%;
}
.blog-details-wrapper ul li{
    list-style: disc;
}
.blog-details-wrapper ol li{
    list-style: decimal;
}
.blog-details-wrapper .date_tag svg {
    color: var(--lime);
    margin-right: 5px;
}
.blog-details-wrapper .date_tag {
    margin: 25px 0;
}
.blog-details-wrapper .banner-details-img {
    margin-bottom: 30px;
    border-radius: 20px;
}

.blog-details-wrapper .blog-details-heading > *{
    padding: 0 30px;
}

.blog-details-wrapper .blog-details-main {
    padding: 0 30px;
    color: #525261;
    font-size: 18px;
    line-height: 28px;
}
.blog-details-wrapper .blog-details-main h2 , .blog-details-wrapper .blog-details-main h3 {
    color: #313140;
}
.blog-details-wrapper ul , .blog-details-wrapper ol {
    padding-left: 35px;
    margin-bottom: 20px;
}

.blog-details-wrapper li {
    margin-bottom: 10px;
}
.blog-details-wrapper .blog-two-image-block img{
    width: 100%;
    border-radius: 10px;
}
.like-share-tags{
    margin: 50px 0;
    color: #666666;
}
.tags .blog-tags{
    background-color: #f8f7f7;
    color: #666666;
    padding: 10px 10px;
    border-radius: 5px;
}
.lime-circle{
    background-color: var(--lime);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s;
    color: var(--white);
    border: 0;
}
.lime-circle:hover{
    background-color: var(--black);
}
.post-cooments-main {
    padding: 30px;
    border: 1px solid var(--grey);
    border-radius: 10px;
}

.post-cooments-main h3 {
    color: #313140;
}
.post-cooments-main .comment-header a {
    color: var(--lime);
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
}
.post-cooments-main .comment-header a:hover{
    color: var(--black);
}
.comment-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grey);
}

.post-cooments-main .cooment-authot {
    margin: 20px 0;
    gap: 20px;
}

.post-cooments-main .cooment-authot .author-img {
    border-radius: 50%;
    border: 1px solid var(--grey);
}

.post-cooments-main .comment-block p {
    color: #525261;
    font-size: 18px;
    line-height: 28px;
}
.post-cooments-main .comment-block .author-name {
    color: #271c26;
}
.post-cooments-main .cooment-authot .cooment-date{
    color: #666666;
}

.post-cooments-main .cooment-like-share img {
    margin-right: 10px;
}

.post-cooments-main .cooment-like-share a {
    color: #666;
}
.post-cooments-main .cooment-like-share a:hover{
    color: var(--black);
}


/* sidebar */
.blog-sidebar form.blog-search {
    position: relative;
    margin-bottom: 30px;
}

.blog-sidebar form.blog-search input {
    width: 100%;
    border: 0;
    background: var(--white-100);
    border-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 17px 20px;
}
.blog-sidebar form.blog-search input:focus{
    outline: 0;
    border: 0;
}
.blog-sidebar form.blog-search input::placeholder{
    font-style: italic;
}
.blog-sidebar .blog-search button {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 50px;
    height: 50px;
}
.blog-sidebar .sidebar-block {
    padding: 30px;
    border: 1px solid  var(--grey);
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-sidebar .sidebar-block .sidebar-heading {
    border-bottom: 1px solid var(--grey);
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: var(--black);
}

.blog-sidebar .categories-block li {
    color: #525261;
    position: relative;
    margin-bottom: 10px;
}
.blog-sidebar .categories-block li:last-of-type{
    margin: 0;
}
.blog-sidebar .categories-block li::before {
    content: '\f105';
    position: absolute;
    right: 0;
    top: 0;
    font-family: var(--fontawesome);
    font-weight: 900;
    font-size: 14px;
    color: #525261;
}

.blog-sidebar .categories-block li a {
    display: block;
}
.blog-sidebar .artical-list li {color: #3f3f40;padding-bottom: 15px;border-bottom: 1px solid var(--grey);margin-bottom: 15px; font-size: 18px; font-weight: 600; line-height: 23px;}
.blog-sidebar .artical-list li a{
    gap: 15px;
}
.blog-sidebar .artical-list li img{
    border-radius: 2px;
}
.blog-sidebar .artical-list li:last-of-type {
    border: 0;
    margin: 0;
    padding: 0;
}
/* blog details */

/* faq */
.faq-sec {
    margin: 100px 0;
}
.faq-sec h2{
    margin-bottom: 40px;
}
.faq-sec .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--grey);
    border-radius: 0;
}

.faq-sec .accordion-item button.accordion-button {
    padding: 35px 0;
    background: transparent;
    color: #000;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    box-shadow: unset;
}

.faq-sec .accordion-item  .accordion-body {
    padding: 0;
    padding-bottom: 35px;
    color: var(--body-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.faq-sec .accordion-item .accordion-button::after{
    content: '\f067';
    background-image: unset;
    font-family: var(--fontawesome);
    font-weight: 900;
}
.faq-sec .accordion-item .accordion-button:not(.collapsed)::after{
    transform: unset;
    content: '\f068';
}

/* faq */


/* terms-condition */
.terms-condition-sec p {
    font-size: 18px;
    line-height: 28px;
    color: #404051;
}

.terms-condition-sec {
    margin: 100px 0;
}

.terms-condition-sec h2 {
    color: var(--black);
    margin-bottom: 20px;
}

.terms-condition-sec hr {
    margin: 70px 0;
}

.terms-condition-sec ul > li {
    list-style: disc;
     font-size: 18px;
    line-height: 28px;
    color: #404051;
}

.terms-condition-sec ul {
    padding-left: 40px;
}
.terms-condition-sec ol > li {
    list-style: decimal;
     font-size: 18px;
    line-height: 28px;
    color: #404051;
}

.terms-condition-sec ol {
    padding-left: 40px;
}
.terms-condition-sec h3{
    margin-top: 50px;
    color: var(--black);
}
/* terms-condition */

/* cencellation-Policy-sec */
.cencellation-Policy-sec{
    margin: 100px 0;
}
.cencellation-Policy-sec p{
    font-size: 18px;
    line-height: 28px;
    color: #404051;
}
.cencellation-Policy-sec h2{
    font-size: 32px;
    line-height: 38px;
}
/* cencellation-Policy-sec */

/* cencellation-Policy-sec */
.return-exchange-sec{
    margin: 100px 0;
}
.return-exchange-sec p{
    font-size: 18px;
    line-height: 28px;
    color: #404051;
}
.return-exchange-sec ul{
    padding-left: 40px;
    margin-bottom: 20px;
}
.return-exchange-sec ul > li{
    font-size: 18px;
    line-height: 28px;
    color: #404051;
    list-style: disc;
}
.return-exchange-sec ol{
    padding-left: 40px;
    margin-bottom: 20px;
}
.return-exchange-sec ol > li{
    font-size: 18px;
    line-height: 28px;
    color: #404051;
    list-style: decimal;
}
.return-exchange-sec h2{
    font-size: 32px;
    line-height: 38px;
}
/* cencellation-Policy-sec */



/* my account */
/* login-registration */
.woocommerce form .form-row input.input-text {
    border: 1px solid #a1a1a1;
    padding: 15px;
    border-radius: 30px;

}
.woocommerce form .form-row{
    margin-bottom: 20px;
}
.woocommerce form .show-password-input{
    top: 20px;
}
.woocommerce #customer_login .tabs-main {
    display: flex;
    justify-content: center;
    background: var(--white-100);
    width: fit-content;
    margin: 0 auto;
    border-radius: 40px;
    margin-top: 30px;
}

.woocommerce #customer_login .tabs-main .tab-button {
    padding: 20px 45px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.5s;
    color: var(--black);
    margin: 3px;
    cursor: pointer;
}

.woocommerce #customer_login .tabs-main .tab-button.active {
    background: var(--lime);
}

.woocommerce #customer_login .form-wrapper {
    display: block;
    margin: 50px auto;
    float: unset;
    background: var(--white-50);
    padding: 65px 90px;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
}
.woocommerce #customer_login .registration-form{
    display: none;
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li {
    border: 2px solid #000000!important;
    padding: 5px 45px!important;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 10px 0!important;
    cursor: pointer;
    width: 100%!important;
    transition: all 0.5s;
    position: relative;
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li:hover {
    background-color: #237aee;
    border: 2px solid #237aee !important;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li .theChampLogin {
    border: 0!important;
    background: transparent;
    background-color: transparent!important;
    filter: brightness(0);
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li:hover .theChampLogin {
    transition: all 0.5s;
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li:hover .theChampLogin.theChampGoogleLogin {
    filter: brightness(10);
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li:hover .theChampLogin.theChampFacebookLogin {
    filter: invert(1);
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li .theChampLogin.theChampFacebookLogin .theChampFacebookLogoContainer {
    width: 80%;
    height: 100%;
    border-radius: unset;
    background-color: transparent;
    margin: 0 0 0 auto;
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li .theChampLogin .theChampLoginSvg {
    padding-top: 0;
}

.social-register .the_champ_login_container .the_champ_login_ul .the_champ_login_li .theChampLogin .theChampLoginSvg.theChampFacebookLoginSvg {
    background: url(../images/facebook-black-icon.png) left no-repeat;
}

.woocommerce form button[type="submit"]{
    background: var(--lime);
    padding: 17px 45px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.5s;
    color: var(--black);
    margin: 3px;
    cursor: pointer;
    width: 100%;
    transition: all 0.5s;
}
.woocommerce form button[type="submit"]:hover{
    background:var(--black);
    color: var(--lime);
}
.woocommerce #customer_login form label{
    display: none;
}
.woocommerce #customer_login form .lost_password a{
    font-size: 18px;
    color: #31313f;
    text-decoration: underline;
    font-weight: 600;
    text-align: center;
    display: block;
}
.woocommerce #customer_login form {
    border: 0;
    padding: 0;
}
.woocommerce #customer_login .form-wrapper h2{
    display: block;
    text-align: center;
    font-size: 40px;
}
.woocommerce #customer_login .woocommerce-privacy-policy-text {
    text-align: center;
}

.woocommerce #customer_login p a{
    color: var(--black);
    text-decoration: underline;
}
.woocommerce #customer_login {
    margin: 100px 0;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last{
    width: 49%;
}
/* login-registration */
/* dashboard */

.woocommerce-MyAccount-content .navigation-block .navigation-block-icon{
    width: 100px;
    height: 100px;
    background: var(--lime);
    display: flex;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.woocommerce-MyAccount-content .navigation-block:hover .navigation-block-icon{
    background: var(--black);
}
.woocommerce-account .woocommerce-MyAccount-content{
    width: 100%;
    margin: 100px 0;
}
.woocommerce-MyAccount-content .ec-profile-section {
    display: flex;
    box-shadow: 0px 1px 30px -3px #e1e1e1;
    padding: 40px 30px;
    border-radius: 10px;
    gap: 20px;
}

.woocommerce-MyAccount-content .ec-profile-section .user-image {
    min-width: 120px;
}

.woocommerce-MyAccount-content .ec-profile-section .user-image img {
    width: 100%;
    border-radius: 10px;
}

.woocommerce-MyAccount-content .ec-profile-section .welcome-text h3 {
    color: var(--black);
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content .ec-profile-section .welcome-text p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    color: #404051;
}

.woocommerce-MyAccount-content .ec-profile-section .welcome-text p strong , .woocommerce-MyAccount-content .ec-profile-section .welcome-text p a {
    color: var(--lime);
    text-decoration: underline;
    font-weight: 600;
}
.woocommerce-MyAccount-content .navigation-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.woocommerce-MyAccount-content .navigation-block {
    width: calc(33.33% - 20px);
    text-align: center;
    padding: 40px;
    border: 1px solid var(--grey);
    border-radius: 10px;
    transition: all 0.5s;
}
.woocommerce-MyAccount-content .navigation-block:hover{
    border-color: var(--black);
}
.woocommerce-MyAccount-content .navigation-block .navigation-block-title p {
    color: var(--black);
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.woocommerce-MyAccount-content .navigation-block .navigation-block-text p{
    font-size: 18px;
    color: #858593;
    line-height: 21px;
    margin-bottom: 0;
}
/* dashboard */
/* my account */


.MyAccount-wrapper .woocommerce-MyAccount-navigation {
    width: 280px;
    border: 1px solid var(--grey);
    border-radius: 10px;
}

.MyAccount-wrapper .woocommerce-MyAccount-navigation li a{
    color: #20202f;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    position: relative;
    width: 100%;
    display: block;
}
.MyAccount-wrapper .woocommerce-MyAccount-navigation li a::before{
    content: '';
    width:calc(100% - 40px);
    height: 1px;
    background-color: var(--grey);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.MyAccount-wrapper .woocommerce-MyAccount-navigation li:last-of-type a::before , .MyAccount-wrapper .woocommerce-MyAccount-navigation li.is-active a::before{
    content: unset;
}
.MyAccount-wrapper .woocommerce-MyAccount-navigation li:last-of-type a{
    border: 0;
}
.MyAccount-wrapper .woocommerce-MyAccount-navigation li.is-active a{
    color: var(--white);
    background: var(--lime);
}
.MyAccount-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.MyAccount-wrapper:has(.woocommerce-MyAccount-navigation) .woocommerce-MyAccount-content{
    margin: 0;
    width: calc(100% - 310px);
}
.MyAccount-wrapper:has(.woocommerce-MyAccount-navigation){
    margin: 100px 0;
}
.MyAccount-wrapper .woocommerce-MyAccount-navigation li img{
    margin-right: 20px;
}
.MyAccount-wrapper .woocommerce-MyAccount-navigation li.is-active img{
    filter: invert(1);
}
.woocommerce form.woocommerce-EditAccountForm button[type="submit"]{
    width: auto;
}
.woocommerce form .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 100%;
    right: 11px;
}
.woocommerce form .select2-container--default .select2-selection--single .select2-selection__arrow b{
    position: static;
    width: auto;
    height: auto;
    display: block;
    border: 0;
}
.woocommerce form .select2-container .select2-selection--single {
    border: 1px solid #a1a1a1;
    padding: 11px;
    border-radius: 30px;
    height: unset;
}
.woocommerce .MyAccount-wrapper form.woocommerce-EditAccountForm label{
    display: none;
}
.woocommerce form .woocommerce-address-fields button[type="submit"]{
    width: auto;
}
.woocommerce .MyAccount-wrapper form h3 ,
.woocommerce .woocommerce-Addresses .woocommerce-Address-title h3 ,
.woocommerce  .woocommerce-order-details__title ,
.woocommerce-customer-details h2{
    font-size: 32px;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 20px;
}
.woocommerce .woocommerce-Addresses .woocommerce-Address-title .edit{
    color: var(--lime);
    font-size: 20px;
    text-decoration: underline;
    font-weight: 600;
}
.woocommerce  .woocommerce-Address address{
    color: var(--black);
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{
    line-height: 1.25;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before{
    line-height: 1;
}
.woocommerce .woocommerce-customer-details p{
    margin-bottom: 10px;
    margin-top: 5px;
}
.woocommerce .woocommerce-customer-details{
    color: var(--black);
}
.woocommerce .woocommerce-table--order-details tfoot th , .woocommerce .woocommerce-table--order-details tfoot td{
    background-color: #0000000d;
    color: var(--black);
    border: 0;
}

.woocommerce table.woocommerce-table--order-details {
    border-collapse: collapse;
}
.woocommerce table.woocommerce-table--order-details th {
    color: var(--black);
    background: #0000000d;
}
.woocommerce table.woocommerce-table--order-details td{
    border: 0;
}
.order-menu .menu-item-header .menu-item-header-left {
    display: flex;
    gap: 40px;
    align-items: center;
}

.order-menu .menu-item-header {
    padding: 15px 20px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.order-menu .menu-item-header .woocommerce-order-detail {
    display: flex;
    flex-direction: column;
}

.order-menu .order-menu-item {
    border: 1px solid var(--grey);
    border-radius: 10px;
}

.order-menu .menu-item-header .menu-item-header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.order-menu .menu-item-header .woocommerce-order-detail .header-title{
    font-size: 14px;
    font-weight: 600;
    color: #525261;
}

.order-menu .menu-item-header .woocommerce-order-detail span {
    color: #31313f;
    font-size: 16px;
}

.order-menu .menu-item-header .woocommerce-order-detail .woocommerce-Price-amount.amount {
    color: var(--black);
    font-weight: 700;
}

.order-menu .menu-item-header .woocommerce-order-detail .order-status {
    padding: 5px 10px 5px 25px;
    border-radius: 20px;
    position: relative;
}

.order-menu .menu-item-header .woocommerce-order-detail .order-status::before {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    position: absolute;
    left: 10px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.order-menu .menu-item-header .woocommerce-order-detail .order-status.processing{
    background-color: #ffe2d9;
    color: #ff3f00;
}
.order-menu .menu-item-header .woocommerce-order-detail .order-status.processing::before{
    background-color: #ff3f00;
}
.order-menu .menu-item-header .woocommerce-order-detail .order-status.cancelled{
    background-color: #ffd9d9;
    color: #ff0000;
}
.order-menu .menu-item-header .woocommerce-order-detail .order-status.cancelled::before{
    background-color: #ff0000;
}
.order-menu .menu-item-header .woocommerce-order-detail .order-status.completed{
    background-color: #fff;
    color: #8cc53e;
}
.order-menu .menu-item-header .woocommerce-order-detail .order-status.completed::before{
    background-color: #8cc53e;
}
.order-menu .menu-item-header .woocommerce-order-detail-button {
    background-color: unset;
    color: var(--black);
    text-decoration: underline;
    font-size: 16px;
    padding: 0;
}
.order-menu .menu-item-header .woocommerce-order-detail-button:hover{
    background-color:unset;
    color: var(--black);
    text-decoration: underline;

}
.order-menu .menu-item-header .woocommerce-order-invoice-button {
    color: var(--lime);
    padding: 0;
    background: 0;
    text-decoration: underline;
    font-size: 16px;
    text-transform: uppercase;
}
.order-menu .menu-item-header .woocommerce-order-invoice-button:hover {
    color: var(--lime);
    background: 0;
    text-decoration: underline;
}
.order-menu .menu-item {
    padding: 15px 20px;
    /*display: flex;
    justify-content: space-between;
    gap: 30px;*/
}

.order-menu .menu-item .order-delivery-details {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.order-menu .menu-item .order-delivery-details .order-icon-status-processing {
    color: #ff3f00;
    border: 1px solid #ff3f00;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}
.order-menu .menu-item .order-delivery-details .order-icon-status-cancelled {
    color: #ff0000;
    border: 1px solid #ff0000;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}
.order-menu .menu-item .order-delivery-details .order-icon-status-completed {
    color: #8cc53e;
    border: 1px solid #8cc53e;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}
.order-menu .menu-item .order-delivery-details .delivery-status{
    color: #31313f;
    font-size: 16px;
    font-weight: 600;
}
.order-menu .menu-item .order-buttons {
    max-width: 210px;
    display: flex;
    flex-direction: column;
}

.order-menu .menu-item .order-buttons .menu-item-button {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    color: var(--black);
    border: 1px solid var(--black);
    margin-bottom: 5px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition:all 0.5s;
}
.order-menu .menu-item .order-buttons .menu-item-button:hover{
    background-color:#e5e5e5;
    border-color:#e5e5e5;
}
.order-menu .menu-item .product-details {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
}

.order-menu .menu-item .product-details .product-name {
    font-size: 18px;
    color: #31313f;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.order-menu .menu-item .product-details  .product-type {
    font-size: 14px;
    color: #525260;
}
.order-menu .menu-item .product-details .pro-buttons a{
    padding: 15px 30px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.5s;
    color: var(--black);
    display: inline-block;
    margin-right: 15px;
}
.order-menu .menu-item .product-details .pro-buttons a.buy-it-again, .order-menu .menu-item .product-details .pro-buttons a.write-review{
background: var(--lime);
}
.order-menu .menu-item .product-details .pro-buttons a.view-item{
background: var(--grey);
}
.order-menu .menu-item .product-details .pro-buttons a.buy-it-again:hover, .order-menu .menu-item .product-details .pro-buttons a.write-review:hover{
background: var(--grey);
}
.order-menu .menu-item .product-details .pro-buttons a.view-item:hover{
background: var(--lime);
}
.order-menu .menu-item .product-details .product-image {
    border-radius: 5px;
    width: 100px;
}

.order-menu .menu-item .menu-item-details  .product-attributes {
    display: none;
}
/* cart */
.cart-content table.woocommerce-cart-form__contents {
    margin: 0 auto;
    border: 1px solid var(--grey);
    border-radius: 10px;
}

.cart-content table.woocommerce-cart-form__contents thead {
    background-color: #f5f5f5;
    border-radius: 10px 10px 0 0;
    color: #31313f;
    font-size: 16px;
    font-weight: 600;
}

.cart-content table.woocommerce-cart-form__contents td {
    border: 0;
}


.cart-content table.woocommerce-cart-form__contents .product-remove a {
    margin: 0 auto;
    color: var(--black) !important;
    border: 1px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    transition: all 0.5s
}
.cart-content table.woocommerce-cart-form__contents .product-remove a:hover{
    background-color: var(--black);
    color: var(--white) !important;
    border-color: var(--white);
}

.cart-content table.woocommerce-cart-form__contents .product-thumbnail img {
    width: 120px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.cart-content table.woocommerce-cart-form__contents .product-name a {
    font-size: 22px;
    line-height: 26px;
    color: var(--black);
    font-weight: 600;
}

.cart-content table.woocommerce-cart-form__contents .product-name dl.variation {
    display: none;
}

.cart-content table.woocommerce-cart-form__contents .product-price .woocommerce-Price-amount {
    color: var(--lime);
    font-size: 18px;
    font-weight: 600;
}
.cart-content table.woocommerce-cart-form__contents .product-subtotal .woocommerce-Price-amount {
    color: var(--lime);
    font-size: 18px;
    font-weight: 600;
}
.cart-content table.woocommerce-cart-form__contents td.actions {
    border-top: 1px solid var(--grey);
    padding: 20px;
}

.cart-content table.woocommerce-cart-form__contents td.actions .coupon {
    display: flex;
    border: 1px solid var(--grey);
    border-radius: 100px;
    width: auto;
    align-items: center;
}

.cart-content table.woocommerce-cart-form__contents td.actions .coupon input#coupon_code {
    border: 0;
    height: auto;
    width: 300px;
    margin-left: 10px;
}

.cart-content table.woocommerce-cart-form__contents td.actions .coupon button.button {
    width: auto;
    margin: 0;
    padding: 20px 25px;
    text-transform: uppercase;
}

.cart-content table.woocommerce-cart-form__contents td.actions > .button {
    float: right;
    width: auto;
    background: var(--grey);
    color: var(--black);
    opacity: 1;
    text-transform: uppercase;
    padding: 20px 30px;
}
.cart-content table.woocommerce-cart-form__contents td.actions > .button:hover{
    background-color:var(--black);
    color:var(--grey);
}
.cart-content .cart-collaterals {
    margin: 40px auto;
}

.cart-content .cart-collaterals .cart_totals  {
    background: var(--white-50);
    padding: 40px;
    border-radius: 10px;
}

.cart-content .cart-collaterals .cart_totals  h2 {
    font-size: 32px;
    line-height: 38px;
    color: var(--black);
    margin-bottom: 20px;
}

.cart-content .cart-collaterals .cart_totals  table.shop_table {
    border: 0;
    border-top: 1px solid var(--grey);
    border-radius: 0;
}

.cart-content .cart-collaterals .cart_totals  table.shop_table tr.order-total th , .cart-content .cart-collaterals .cart_totals  table.shop_table tr.order-total td {
    border: 0;
}

.cart-content .cart-collaterals .cart_totals  table.shop_table th {
    color: var(--black);
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
}

.cart-content .cart-collaterals .cart_totals  table.shop_table td {
    color: var(--lime);
    font-size: 24px;
    line-height: 28px;
    text-align: right;
    font-weight: 700;
}

.cart-content .cart-collaterals .cart_totals  a.checkout-button {
    background: var(--lime);
    padding: 20px 45px;
    border-radius: 40px;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: var(--black);
    margin: 3px;
    cursor: pointer;
    width: 100%;
    transition: all 0.5s;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-content .cart-collaterals .cart_totals  a.checkout-button img{
    margin-right: 20px;
    transition: all 0.5s;
}
.cart-content .cart-collaterals .cart_totals  a.checkout-button:hover img{
    filter: invert(1);
}
.cart-content .cart-collaterals .cart_totals  a.checkout-button:hover {
    background-color: var(--black);
    color: var(--white);
}
.cart-content .cart-header .cart-continue-shipping {
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 45px;
    border: 1px solid var(--black);
    border-radius: 50px;
    transition:all 0.5s;
}
.cart-content .cart-header .cart-continue-shipping:hover{
    background-color:var(--black);
    color:var(--white);
}
.cart-content .cart-header .cart-continue-shipping:hover img{
    filter:invert(1)
}
.cart-content .cart-header {
    margin-bottom: 50px;
}

.cart-content {
    margin: 100px 0;
}
.cart-content table.woocommerce-cart-form__contents .product-quantity .quantity {
    border: 1px solid  var(--grey);
    width: fit-content;
    display: flex;
    padding: 15px 20px;
    border-radius: 50px;
}

.cart-content table.woocommerce-cart-form__contents .product-quantity .quantity button {
    border: 0;
    background: transparent;
}

.cart-content table.woocommerce-cart-form__contents .product-quantity .quantity input {
    border: 0;
    height: 0;
}
.cart-content .cart-collaterals .cart_totals table.shop_table .woocommerce-shipping-totals{
    background-color: var(--white);
}
.cart-content .cart-collaterals .cart_totals table.shop_table .woocommerce-shipping-totals th{
    border-left:1px solid var(--grey);
    border-bottom:1px solid var(--grey);
    padding:20px;
}
.cart-content .cart-collaterals .cart_totals table.shop_table .woocommerce-shipping-totals td{
    border-right:1px solid var(--grey);
    border-bottom:1px solid var(--grey);
    padding:20px;
    font-size: 18px;
    line-height: 21px;
}
.cart-content .cart-collaterals .cart_totals table.shop_table th , .cart-content .cart-collaterals .cart_totals table.shop_table td {
    padding:20px 10px;
}


.cart-content .cart-collaterals .cart_totals table.shop_table .woocommerce-shipping-totals .woocommerce-shipping-destination {
    font-size: 16px;
}

.cart-content .cart-collaterals .cart_totals table.shop_table .woocommerce-shipping-totals .shipping-calculator-button {
    font-weight: 400;
    text-decoration: underline;
    font-size: 16px;
}
.woocommerce-cart .cart-content table.cart .product-thumbnail{
    min-width: 132px;
}
.shipping-calculator-form .select2-selection__rendered {
    text-align: left;
    padding: 0 !important;
}

.woocommerce .woocommerce-shipping-totals .select2-selection__arrow b::before{
    left: 0;
}
/* cart */


/* checkout */
.checkout-content{
    margin-top: 100px;
}
.checkout-content .woocommerce-checkout .form-field_list{
    display: flex;
    border-top: 1px solid var(--grey);
}
.checkout-content #customer_details{
    display: flex;
    flex-direction: column;
    width: 60%;
    border-right: 1px solid var(--grey);
    padding-top: 40px;
    padding-bottom: 100px;
    padding-right: 40px;
    padding-left: calc((min(100vw) - 1300px) / 2);
    margin-left: 12px;
}
.checkout-content #customer_details > div {
    width: 100%;
}
.checkout-content #order_review {
    width: 40%;
    padding-top: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: calc((min(100vw) - 1300px) / 2);
    background-color: var(--white-50);
}
.checkout-content #customer_details input , .checkout-content #customer_details .select2-selection--single {
    border-radius: 5px;
}
.checkout-content h3{
    color: var(--black);
    font-size: 22px;
    line-height: 1;
}
.checkout-content #customer_details .woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.checkout-content #customer_details .form-row-wide  {
    width: 100%;
}

.checkout-content #customer_details .form-row-small-three {
    width: 33%;
}
.checkout-content #customer_details .addition-info .woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.checkout-content #customer_details  label{
    display: none;
}
.checkout-content #customer_details  label.woocommerce-form__label-for-checkbox{
    display: block;
 }
.checkout-content #customer_details #billing_country_field label{
    display: block;
    font-size: 14px;
    line-height: 1;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 2;
}
.checkout-content #customer_details #billing_country_field {
    position: relative;
}
.woocommerce form .select2-selection--single .select2-selection__arrow b::before{
    content: '\f107';
    font-family: var(--fontawesome);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.checkout-content #customer_details .addition-info textarea{
    border: 1px solid #a1a1a1;
    border-radius: 10px;
    padding: 5px;
    height: 100px;
}
.woocommerce-info {
    border-top-color: var(--lime);
    background-color: var(--white-50);
}
.woocommerce-info::before{
    color: var(--lime);
}
.checkout-content #order_review h3 {
    display: none;
}
.checkout-content #order_review table.woocommerce-checkout-review-order-table {
    border: 0;
    padding-right: 12px;
}
.checkout-content #order_review thead {
    display: none;
}
.checkout-content #order_review td , .checkout-content #order_review th {
    border: 0;
    padding: 5px;
}
.checkout-content #order_review tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkout-content #order_review tbody {
    padding: 20px 0;
    display: block;
    border-bottom: 1px solid var(--grey);
}
.checkout-content #order_review th {
    color: var(--black);
}
.checkout-content #order_review tr.cart-subtotal th ,
.checkout-content #order_review tr.order-total th {
    font-size: 22px;
}
.checkout-content #order_review tr.order-total td .woocommerce-Price-amount{
    color: var(--lime);
    font-size: 24px;
}
.checkout-content #order_review span.woocommerce-Price-amount.amount , .checkout-content #order_review .woocommerce-shipping-methods label {
    color: #31313f;
}
.checkout-content #order_review .product-name {
    display: flex;
    gap: 10px;
    align-items: center;
}

.checkout-content #order_review .product-name img {
    width: 70px;
    min-width: 70px;
    border-radius: 10px;
}
.checkout-content #order_review .product-name .ndr_product_thumbnail {
    position: relative;
}

.checkout-content #order_review .product-name .ndr_product_thumbnail .product_quantity {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #1e2934;
    color: var(--lime);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.checkout-content .woocommerce-checkout-payment label {
    display: inline-block !important;
}
.checkout-content .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 12px;
}
.checkout-content #add_payment_method #payment, .checkout-content .woocommerce-cart #payment, .checkout-content .woocommerce-checkout #payment{
    background: transparent;
    border-radius: 5px;
    border: 1px solid var(--lime);
}
.checkout-content .woocommerce-checkout #payment ul.payment_methods{
    border-color: var(--lime);
}
.checkout-content .woocommerce-checkout-payment #place_order{
    background-color: var(--lime);
    color: var(--black);
    border-radius: 5px;
}
.checkout-content .woocommerce-checkout-payment #place_order:hover{
    background-color: var(--black);
    color: var(--lime);
}
.checkout-content .woocommerce-checkout #payment div.payment_box{
    background-color: transparent;
    border: 1px solid var(--lime);
    border-radius: 5px;
}
.checkout-content .woocommerce-checkout #payment div.payment_box::before{
    content: unset;
}
.checkout-content h1 {
    margin-bottom: 50px;
}
input#payment_method_cod , input#payment_method_payumbolt {
    width: auto;
}
/* checkout */

/* shop */
.product-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 105px;
}

.product-list-wrapper .ndr_woocommer_shop_sidebar {
    width: 300px;
}

.product-list-wrapper .nd_woocommerce_product_list {
    width: calc(100% - 300px);
    padding-left: 35px;
}
.product-list-wrapper .products {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 30px;
    border-top: solid 1px var(--grey);
    padding-top: 30px !important;
}

.product-list-wrapper ul.products li.product {
    width: calc(33.33% - 10px);
    margin: 0;
}
.product-list-wrapper ul.products::before {
    content: unset;
}
.product-list-wrapper ul.products .Product-block .product-img-block img{
    width: 100%;
    border-radius: 10px;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .category_list a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
    color: #535362;
    transition: all 0.5s;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .categories-filter ,
.product-list-wrapper .ndr_woocommer_shop_sidebar .tag-filter ,
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter ,
.product-list-wrapper .ndr_woocommer_shop_sidebar .product-variation-filter {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--grey);
}

.product-list-wrapper .ndr_woocommer_shop_sidebar .tag-filter ,
.product-list-wrapper .ndr_woocommer_shop_sidebar  .price-filter ,
.product-list-wrapper .ndr_woocommer_shop_sidebar .product-variation-filter {
    padding-top: 40px;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter #price-slider {
    height: 2px;
    box-shadow: unset;
    border: 0;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter .noUi-connect {
    background: var(--black);
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter .noUi-handle {
    width: 20px;
    height: 20px;
    top: -50%;
    transform: translateY(-50%);
    background: var(--white);
    box-shadow: unset;
    border-radius: 50%;
    border-color: var(--black);
}

.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter .noUi-handle::before ,
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter .noUi-handle::after {
    content: unset;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter .noUi-handle.noUi-handle-upper {
    right: 0;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter .price-range {
    margin-top: 40px;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter .price-range-box{
    border: 1px solid var(--grey);
    width: 130px;
    border-radius: 50px;
    padding: 10px 15px;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .price-filter .price-range input {
    flex: 1;
    text-align: right;
    border: none;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar h3{
    margin-bottom: 30px;
    color: var(--black);
}
.product-list-wrapper ul.products li.product .Product-block h3{
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    padding: 0;
    margin: 10px 0;
}
.select-wrapper {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}

.select-wrapper select#custom-orderby {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--black);
    margin-left: 10px;
}
.product-list-wrapper .filter-toggle {
    display: none;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .filter-close{
    display: none;
}
body.filter-open::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000ab;
    z-index: 1;
}
body.filter-open{
    overflow: hidden;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .size-filter-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.product-list-wrapper .ndr_woocommer_shop_sidebar .size-filter-list-item .checkbox-wrapper{
    display: flex;
    align-items: center;
    gap: 5px;
}
.prod-list-info {
    flex-wrap: wrap;
    gap: 15px;
}
.prod-list-info .woocommerce-result-count{
    margin: 0;
}
/* shop */

/* single-product */
.single-product .product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider .rtwpvg-thumbnail-image {
    opacity: 1;
}

.single-product .product-categories{
    color: #858594;
    margin-bottom: 10px;
}
.single-product .product-title{
    font-size: 40px;
    line-height: 48px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 20px;
}
.single-product p.price bdi{
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: var(--lime);
}
.single-product .entry-summary .woocommerce-product-availability {
    position: relative;
    margin-bottom: 40px;
}
.single-product .entry-summary .woocommerce-product-availability span.product-in-stock {
    border-radius: 22px;
    background-color: #fafafa;
    padding: 10px 20px 10px 60px;
    font-size: 14px;
    letter-spacing: .5px;
    line-height: 17px;
    color: #4c7b0e;
    font-weight: bold;
    font-family: var(--font-dmsans);
}
.single-product .entry-summary .woocommerce-product-availability span.product-in-stock:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 30px;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color: #4d7c0f;
}
.single-product .entry-summary .woocommerce-product-availability span.product-in-stock:after {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 2px solid #4d7c0f30;
}
.single-product .entry-summary .woocommerce-product-availability span.product-out-of-stock {
    border-radius: 22px;
    background-color: #ff000010;
    padding: 10px 20px 10px 60px;
    font-size: 14px;
    letter-spacing: .5px;
    line-height: 17px;
    color: red;
    font-weight: bold;
    font-family: var(--font-dmsans);
}
.single-product .entry-summary .woocommerce-product-availability span.product-out-of-stock:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 30px;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color: red;
}
.single-product .entry-summary .woocommerce-product-availability span.product-out-of-stock:after {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 2px solid #ff000030;
}
.single-product .entry-summary .woocommerce-variation-add-to-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
body.woocommerce.single-product .entry-summary .like-product {
    width: 50px;
    height: 50px;
    border: 1px solid var(--grey);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    color: var(--black);
    font-size: 20px;
}
body.woocommerce.single-product .entry-summary .like-product .product-wishlist-icon:before {
    color: var(--black);
    font-size: 30px;
    top: 2px;
    left: 5px;
}
body.woocommerce.single-product .entry-summary .single_add_to_cart_button{
    width: calc(100% - 230px);
    background: var(--lime) !important;
    color: var(--black) !important;
}
body.woocommerce.single-product .entry-summary .single_add_to_cart_button:hover{
    background-color: var(--black) !important;
    color: var(--lime) !important;
}
body.woocommerce.single-product .entry-summary .quantity button{
    border: 0;
    padding: 15px 0;
    width: 40px;
    background-color: transparent;
}
body.woocommerce.single-product .entry-summary .quantity input {
    border: 0;
    width: 50px;
}

body.woocommerce.single-product .entry-summary .quantity {
    border: 1px solid var(--grey);
    border-radius: 50px;
}

body.woocommerce.single-product .entry-summary .quantity .plus-qtn button {
    border-left: 1px solid var(--grey);
}
body.woocommerce.single-product .entry-summary .quantity .minus-qtn button {
    border-right: 1px solid var(--grey);
}
.single-product .product{
    display: flex;
    flex-wrap: wrap;
}
.single-product div.product  div.woocommerce-product-gallery {
    width: 50%;
}
body.woocommerce.single-product div.entry-summary{
    width: 50%;
    padding-left: 80px;
}
body.woocommerce.single-product div.entry-summary .cfvsw-product-container .cfvsw-swatches-option {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--grey);
    color: #313140;
    font-size: 16px;
}
body.woocommerce.single-product div.entry-summary .size-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #525261;
    line-height: 1;
    margin-bottom: 10px;
}
body.woocommerce.single-product div.entry-summary .size-heading p{
    margin: 0;
}
body.woocommerce.single-product div.entry-summary .size-heading a span{
    text-decoration: underline;
}
body.woocommerce.single-product div.entry-summary .cfvsw-swatches-container[swatches-attr="attribute_pa_colors"] .cfvsw-swatches-option{
    width: 25px;
    height: 25px;
    border-radius: 50% !important;
    border: 0;
    padding: 2px;
}
body.woocommerce.single-product div.entry-summary .cfvsw-swatches-container[swatches-attr="attribute_pa_colors"] .cfvsw-swatches-option.cfvsw-selected-swatch{
    border: 1px solid var(--black);
}
body.woocommerce.single-product div.entry-summary .value{
    margin-bottom: 40px;
    display: block;
}
body.woocommerce.single-product div.product div.images .flex-control-thumbs{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
body.woocommerce.single-product div.product div.images .flex-control-thumbs li{
    width: calc(50% - 15px);
}
body.woocommerce.single-product div.product div.images .flex-control-thumbs li img{
    opacity: 1;
}
body.woocommerce.single-product .ndr_accordion_content .accordion_content{
    display: none;
    margin-bottom: 30px;
}
body.woocommerce.single-product .ndr_accordion_content .accordion_title::before{
    content: '\f067';
    font-family: var(--fontawesome);
    position: absolute;
    right: 0;
    font-weight: 700;
    color: var(--black);
}
body.woocommerce.single-product .ndr_accordion_content .accordion_title {
    position: relative;
    color: var(--black);
    padding: 30px 0;
    cursor: pointer;
}
body.woocommerce.single-product .ndr_accordion_content .accordion_title h3{
    margin: 0;
}
body.woocommerce.single-product .ndr_accordion_content {
    width: 100%;
}
body.woocommerce.single-product .ndr_accordion_content .show .accordion_title::before{
    content: '\f068';
}
body.woocommerce.single-product .ndr_accordion_content .ndr-accordion-item {
    border-top: 1px solid var(--grey);
}
.single-product div.product div.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    z-index: 2;
}
.single-product div.product .product-attributes-inner {
    display: flex;
    border: 1px solid var(--grey);
    border-radius: 10px;
}

.single-product div.product .product-attributes-item {
    width: 50%;
    border-right: 2px solid var(--grey);
}
.single-product div.product .product-attributes-item:last-of-type{
    border:0;
}
.single-product div.product .product-attributes-item__label {
    background: #f5f5f5;
    border-radius: 10px 0 0 0;
    padding: 20px 25px;
    color: var(--black);
    font-weight: 600;
}

.single-product div.product .product-attributes-item__value p {
    margin: 0;
}

.single-product div.product .product-attributes-item__value {
    padding: 20px 25px;
}
.single-product div.product .product-attributes-item:last-of-type .product-attributes-item__label {
    border-radius: 0 10px 0 0;
}
body.woocommerce.single-product div.product .woocommerce-product-rating{
margin-bottom: 10px;
}
body.woocommerce.single-product .star-rating span::before{
    color: var(--lime);
}
.size-chart-popup.show {
    display: block;
    position: fixed;
    /*width: 95%;*/
    max-height: 90vh;
    max-width: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    z-index: 2;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    color: #000;
    overflow-y: auto;
}

.size-chart-popup {
    display: none;
}
.size-chart-popup .size-chart-img{
    margin: 0 auto;
    display: block;
}
.size-chart-popup .close-popup {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
body.popup-open {
    overflow: hidden;
}

body.popup-open::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #00000060;
    position: fixed;
    z-index: 1;

}
/* single-product-review */
.single-product-review {
    padding: 100px 0;
    background-color: #f7f7f7;
    width: 100%;
}
.single-product-review .review-wrapper {
    gap: 80px;
    margin: 50px 0;
}
.single-product-review .review-wrapper p {
    margin: 0;
    color: #525260;
}
.single-product-review .review-wrapper .stars {
    margin-bottom: 10px;
    color: #525260;
}
.single-product-review .comment-form .comment-notes {
    display: none;
}
body.woocommerce.single-product-review #review_form #respond textarea{
    height: 150px;
    border-radius: 10px;
}
.single-product-review .comment-form label{
    display: none;
}
.single-product-review .comment-form .comment-form-cookies-consent label{
    display: inline-block;
}
body.woocommerce.single-product-review  #review_form #respond .form-submit input.submit{
    background-color: var(--lime);
    padding: 17px 45px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.5s;
    color: var(--black);
    margin: 3px;
    cursor: pointer;
    transition: all 0.5s;
}
body.woocommerce.single-product-review  #review_form #respond .form-submit input.submit:hover{
    background-color: var(--black);
    color: var(--lime);
}
body.woocommerce.single-product-review .star-rating span::before , body.woocommerce.single-product-review .star-rating::before{
    color: var(--lime);
}
.single-product-review  #review_form_wrapper {
    max-width: 900px;
    margin: 0 auto ;
}
.single-product-review  #comments{
    max-width: 900px;
    margin: 30px auto;
    padding: 50px 30px;
    border: 1px solid var(--grey);
    border-radius: 10px;
}
body.woocommerce.single-product-review  #reviews #comments ol.commentlist li img.avatar{
    padding: 0;
    background: unset;
    border: 0;
    width: 40px;
}
body.woocommerce.single-product-review  #reviews #comments ol.commentlist li .comment-text{
    padding: 0;
    border: 0;
}
body.woocommerce.single-product-review #reviews #comments ol.commentlist .comment-text .meta{
    width: calc(100% - 90px);
}
body.woocommerce.single-product-review #reviews #comments ol.commentlist .comment-text .woocommerce-review__author{
    display: block;
    font-size: 16px;
    color: #000;
}
body.woocommerce.single-product-review #reviews #comments ol.commentlist .comment-text  .woocommerce-review__dash{
    display: none;
}
body.woocommerce.single-product-review #reviews #comments ol.commentlist .comment-text .description {
    color: #000;
}
.woocommerce-message:focus-visible{
    outline: unset;
}
.woocommerce-message{
    border-top-color: var(--lime);
}
.woocommerce-message::before{
    color: var(--lime);
}

.woocommerce-message .wc-forward {
    background-color: var(--lime) !important;
    color: var(--black) !important;
    transition: all 0.5s;
}
.woocommerce-message .wc-forward:hover{
    background-color: var(--black) !important;
    color: var(--lime) !important;
}
/* single-product-review */
/* single-product */

/* comment-form */
.comment-form textarea , .comment-form .input-text {
    border: 1px solid var(--grey);
    padding: 15px;
    border-radius: 30px;
    width: 100%;
}
.comment-form input[type="submit"] {
    border: 0;
}
.comment-form textarea.input-text {
    border-radius: 10px;
}
.comments-area .avatar {
    width: 50px;
   height: 50px;
   border-radius: 50%;
}
.comments-area .comment-reply-link {
    padding: 10px 20px;
    background-color: var(--lime);
    color: var(--black);
    display: inline-block;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.5s;
}
.comments-area .comment-reply-link:hover{
    background-color: var(--black);
    color: var(--lime);
}
.comments-area .comment.depth-2 {
    margin: 20px 0;
    margin-left: 50px;
}
.comments-area .comment-author.vcard {
    color: var(--black);
}
.comments-area .comment-header{
    border: 0;
}
.comments-area .blog__bottom-box {
    margin-top: 40px;
}
.comments-area .comment-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    gap: 10px;
    margin-bottom: 10px;
}
.comments-area .comment-meta .comment-metadata{
    font-size: 14px;
}
.comments-area .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1;
}
/* comment-form */

/* wish-list */
.tinv-wishlist form  .product-remove button[type="submit"]{
    height: auto;
    padding: 10px 45px;
}
.tinv-wishlist form .product-thumbnail img{
    width: 100px;
    height: 100px;
    border-radius: 5px;
}
.tinv-wishlist form .product-thumbnail{
    min-width: 150px;
    max-width: max-content;
    width: auto;
}
.tinv-wishlist form .product-action {
    width: 175px;
}
.tinv-wishlist form th{
    color: #20202f;
    font-size: 18px;
    font-weight: 600;
}
.tinv-wishlist form button[type="submit"]{
    border: 0;
}
.tinv-wishlist form input#tinvwl_lists_per_page {
    width: 100%;
}

.tinv-wishlist form .tinvwl-to-left select {border: 0;width: calc(100% - 150px);}

.tinv-wishlist form .tinvwl-to-left .tinvwl-input-group {
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    margin: 0;
}

.tinv-wishlist form .tinvwl-to-left .tinvwl-input-group-btn {
    width: auto;
}

.tinv-wishlist form .tinvwl-to-left .tinvwl-input-group-btn button {
    padding: 17px 30px;
    margin: 0;
}
.tinv-wishlist form td.product-action button {
    background: var(--lime);
    padding: 15px 15px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 3px;
    cursor: pointer;
    transition: all 0.5s;
    border: 0;
}

.tinv-wishlist form td.product-action button:hover{
    background: var(--black);
    color: var(--lime);
}
.tinv-wishlist tfoot .tinvwl-to-right{
    width: 45%;
}
.tinv-wishlist tfoot .tinvwl-to-left:not(:empty){
    width: 50%;
}
.return-to-shop {
    background: var(--lime);
    padding: 17px 45px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 3px;
    cursor: pointer;
    transition: all 0.5s;
    display: inline-block;
}
.return-to-shop:hover{
    background: var(--black);
    color: var(--lime);
}

.tinv-wishlist .product-cb:before {
    content: '';
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--wp--preset--color--black-100);
    border: 2px solid #b0b0b0;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .tinv-wishlist input[type=checkbox]{
    z-index: 2;
    opacity: 0;
    width: 24px;
    height: 24px;
    position: relative;
}
  .tinv-wishlist .product-cb{
      position:relative;
      padding: 0;
      width: 24px !important;
  }
 .wishlist_item:has( input[type=checkbox]:checked) .product-cb::after  , .tinv-wishlist thead tr:has( input[type=checkbox]:checked) .product-cb::after{
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 48%;
    width: 6px;
    height: 12px;
    border: solid var(--wp--preset--color--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translateY(-50%);
  }
.wishlist_item:has( input[type=checkbox]:checked) .product-cb:before , .tinv-wishlist thead tr:has( input[type=checkbox]:checked) .product-cb:before{
    background-color: var(--lime);
    border-color: var(--lime);
}
.tinv-wishlist tfoot .tinvwl-to-left+.tinvwl-to-right{
    margin-top: 10px;
}
/* wish-list */

.guide_description__wrap h1,
.guide_description__wrap h2,
.guide_description__wrap h3,
.guide_description__wrap h4,
.guide_description__wrap h5,
.guide_description__wrap h6{color: var(--lime); font-family: var(--font-dmsans); font-weight: 600; margin: 0;}
.guide_description__wrap ul,
.guide_description__wrap ol{padding-left: 16px;}
.guide_description__wrap ul li,
.guide_description__wrap ol li{display: list-item; margin-bottom: 4px;}
.guide_description__wrap ul li::marker,
.guide_description__wrap ol li::marker{color: var(--lime);}
.guide_description__wrap ul li{list-style: disc;}
.guide_description__wrap ol li{list-style: decimal;}

.guide_table_wrap thead tr th{background-color: var(--lime);}
