/*----Grid View-----*/
.cwp-post {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.102218));
	margin: 10px 0px;
	overflow: hidden;
	transition: 300ms;
}

.cwp-post:hover {
	filter: none;
}

.cwp-post-thumbnail {
	height: 220px;
	width: 100%;
	position: relative;
}

.cwp-post .cwp-post-thumbnail img {
	height: 100%;
	object-fit: cover;
	transition: 300ms;
	width: 100%;
}

/*-------List View------*/
.list-view .cwp-col-12 {
	width: 100% !important;
}

.list-view .cwp-post {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	position: relative;
}

.list-view .cwp-post-thumbnail {
	width: 30%;
	min-height: 160px;
	height: 185px;
}

.list-view .cwp-post-content-container {
	width: 70%;
}

.list-view .cwp-post-content {
	padding: 30px 20px;
}

.list-view .cwp-post-content h4 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.list-view ul.cwp-post-terms {
	padding: 20px 20px 0 20px;
}

.cwp-promoted-post {
	border: 1px solid #ddbb2a;
	border-radius: 4px;
	color: #ddbb2a;
	cursor: default;
	display: inline-block;
	font-size: 10px;
	line-height: 1;
	padding: 2px 5px;
	position: relative;
	top: -2px;
}

.cwp-post-content {
	padding: 15px;
}

.cwp-post-content h4 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
	margin: 0 0 5px 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.cwp-post-content p {
	font-size: 14px;
	line-height: 1.3;
	margin: 0 0 0 0;
}

.cwp-post-terms {
	align-items: center;
	border-top: 1px solid #e0e0e0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	line-height: 1.5;
	list-style: none;
	margin: 0;
	padding: 15px 15px 10px;
}

.cwp-post-terms li {
	margin: 0 5px 5px 0;
}

.cwp-post-terms li a {
	display: block;
	font-size: 12px;
	background: #f6f6f6;
	max-width: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 8px 8px;
	font-weight: 500;
	text-transform: capitalize;
	border-radius: 210px;
	line-height: 10px;
	color: #343A40;
}

/*---Save button-------*/
.cwp-archive-save {
	position: absolute;
	background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgba(0, 0, 0, .9) 8%, rgba(0, 0, 0, 0) 94%) repeat scroll 0 0;
	bottom: 0;
	padding: 15px 14px 5px 14px;
	width: 100%;
}

.cwp-archive-save .cwp-single-save-btns.cwp-single-widget {
	float: right;
	color: #fff;
}

span.cwp-main.cwp-save-post svg:nth-child(2) {
	display: none;
}

span.cwp-main.cwp-saved-post svg:first-child {
	display: none;
}

.cwp-single-save-btns.cwp-single-widget span.cwp-main,
.cwp-single-share-btn.cwp-single-widget span.cwp-main {
	cursor: pointer;
}
.cwp-post-boosted {
	padding: 1px 10px;
	position: absolute;
	top: 15px;
	left: 15px;
	background: #FFBB00;
	border-radius: 12px;
	color: #000000;
	font-weight: 500;
	font-size: 13px;
}
.organic-blog-date-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}
.organic-blog-date-title h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #224A32;

}
.organic-blog-news-main-title h4 {
    margin: 10px 0px 10px 0px;

    font-weight: 600;
    font-size: 26px;
    line-height: 26px;
    color: #264635;
    white-space: break-spaces;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 420px;
}
.organic-news-description-graph p {
    margin: 0;
  
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #264635;
}
.organic-news-button h6 {
    position: relative;
    margin: 5px 0 0 0;
    color: #333333;

    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    width: fit-content;
   
    transition: border-color 0.3s ease;
}

.organic-news-button h6{
  position: relative;
}


.organic-news-button h6::after,
.organic-news-button h6::before {
  background-color: currentColor;
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  width: 100%;
  will-change: transform;
}

.organic-news-button h6::before {
  -webkit-transform-origin: right;
  transform-origin: right;
}

.organic-news-button h6:hover::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.organic-news-button h6::after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.organic-news-button h6:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.organic-blog-news-photo img {
    border-radius: 12px !important;
}
.organic-blog-news-main-title h4:hover {
    text-decoration: underline;
    transition: 0.5s;
}
.organic-blog-main {
    display: flex;
    gap: 20px;
}
.organic-blog-news-main-title-2 h4 {
    margin: 10px 0px 10px 0px;

    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #264635;
    white-space: break-spaces;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 420px;
}
@media only screen and (max-width: 768px) {
  .organic-blog-main {
    display: flex;
    flex-direction: column;
  }
  .organic-blog-news-photo img {
    width: 100%;
}
}
/*----Grid View-----*/
.cwp-post {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.102218));
	margin: 10px 0px;
	overflow: hidden;
	transition: 300ms;
}

.cwp-post:hover {
	filter: none;
}

.cwp-post-thumbnail {
	height: 220px;
	width: 100%;
	position: relative;
}

.cwp-post .cwp-post-thumbnail img {
	height: 100%;
	object-fit: cover;
	transition: 300ms;
	width: 100%;
}

/*-------List View------*/
.list-view .cwp-col-12 {
	width: 100% !important;
}

.list-view .cwp-post {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	position: relative;
}

.list-view .cwp-post-thumbnail {
	width: 30%;
	min-height: 160px;
	height: 185px;
}

.list-view .cwp-post-content-container {
	width: 70%;
}

.list-view .cwp-post-content {
	padding: 30px 20px;
}

.list-view .cwp-post-content h4 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.list-view ul.cwp-post-terms {
	padding: 20px 20px 0 20px;
}

.cwp-promoted-post {
	border: 1px solid #ddbb2a;
	border-radius: 4px;
	color: #ddbb2a;
	cursor: default;
	display: inline-block;
	font-size: 10px;
	line-height: 1;
	padding: 2px 5px;
	position: relative;
	top: -2px;
}

.cwp-post-content {
	padding: 15px;
}

.cwp-post-content h4 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
	margin: 0 0 5px 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.cwp-post-content p {
	font-size: 14px;
	line-height: 1.3;
	margin: 0 0 0 0;
}

.cwp-post-terms {
	align-items: center;
	border-top: 1px solid #e0e0e0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	line-height: 1.5;
	list-style: none;
	margin: 0;
	padding: 15px 15px 10px;
}

.cwp-post-terms li {
	margin: 0 5px 5px 0;
}

.cwp-post-terms li a {
	display: block;
	font-size: 12px;
	background: #f6f6f6;
	max-width: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 8px 8px;
	font-weight: 500;
	text-transform: capitalize;
	border-radius: 210px;
	line-height: 10px;
	color: #343A40;
}

/*---Save button-------*/
.cwp-archive-save {
	position: absolute;
	background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgba(0, 0, 0, .9) 8%, rgba(0, 0, 0, 0) 94%) repeat scroll 0 0;
	bottom: 0;
	padding: 15px 14px 5px 14px;
	width: 100%;
}

.cwp-archive-save .cwp-single-save-btns.cwp-single-widget {
	float: right;
	color: #fff;
}

span.cwp-main.cwp-save-post svg:nth-child(2) {
	display: none;
}

span.cwp-main.cwp-saved-post svg:first-child {
	display: none;
}

.cwp-single-save-btns.cwp-single-widget span.cwp-main,
.cwp-single-share-btn.cwp-single-widget span.cwp-main {
	cursor: pointer;
}
.cwp-post-boosted {
	padding: 1px 10px;
	position: absolute;
	top: 15px;
	left: 15px;
	background: #FFBB00;
	border-radius: 12px;
	color: #000000;
	font-weight: 500;
	font-size: 13px;
}
.organic-card-style-1 {
    width: auto;
}
.organic-card-main {
    border: 1px solid #E6E6E6;
    padding: 10px 20px 20px 20px;
    width: auto;
    border-radius: 8px;
    position: relative;
}

.organic-card-cart-title h5 {
   
    font-weight: 500;
    font-size: 13px;
    color:#408646 !important;
}


.organic-card-picture img {
    margin: auto;
}
.organic-card-size-1 h6 {
  
    font-weight: 500;
    font-size: 13px;
    line-height: 13px;
    color: #767676;
    text-align: center;
}

.organic-card-title-1 h5:hover {
    text-decoration: underline;
}

.organic-card-title-1 h5 {

    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #224A32;
    align-items: center;
    justify-content: center;
    margin: 20px 0px 14px 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-transform: capitalize;
    max-width: 100%;
    display: block;
    text-align: center;
}

.organic-card-cart-button-1 {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #408646;
    border-radius: 4px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.organic-card-cart-button-1 .organic-card-cart-image img {
    filter: invert(28%) sepia(54%) saturate(437%) hue-rotate(81deg) brightness(92%) contrast(90%);
    transition: filter 0.3s ease;
}

.organic-card-cart-button-1:hover {
    background-color: #408646;
}

.organic-card-cart-button-1:hover .organic-card-cart-title h5 {
    color: #fff !important;
}
.organic-card-cart-button-1:hover .organic-card-cart-image img {
    filter: brightness(0) invert(1);
}

.organic-card-cart-button-1 h5:hover {
    color: #fff;
}

.organic-card-cart-button-1.women-wc-quick-checkout {
    position: relative;
    margin-top: 20px;
}

.organic-card-rating-1 ul {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 6px;
}

.organic-card-favourite span.cwp-main.cwp-save-post {
    border: unset !important;
}
.organic-card-favourite .star-icon.save-tooltip {
    position: absolute;
    right: 10px;
    z-index: 9999;
    top: 14px;
}
.organic-card-favourite span.cwp-main.cwp-saved-post {
    border: unset !important;
}
.organic-card-favourite .cwp-single-save-btns.cwp-single-widget span.cwp-main {
    color: #224A32;
}
[data-tooltip][data-flow^=left]::before {
    border-left-color: #1D1D1D;
}

.organic-card-rating-1.woocommerce {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}
.organic-card-rating-1.woocommerce .star-rating {
    float: left !important;
}
.organic-card-rating-1.woocommerce .star-rating::before {
    color: #224A32 !important;
    letter-spacing: 6px;
}
.organic-card-rating-1.woocommerce .star-rating span {
    color: transparent;
    
}
.organic-card-rating-1.woocommerce .star-rating {
    overflow: visible !important;
    font-size: 10px !important;
}
.organic-card-rating-1.woocommerce p.review-text {
    padding-left: 30px;
    color: #224A32 !important;
}
.organic-card-rating-1.woocommerce .star-rating span::before {
    color: #224A32 !important;
    letter-spacing: 6px;
    font-size : 10px;
}

.organic-card-price-1 del {
    color: #767676 !important;
    font-size: 11px;
}
.organic-card-price-1 ins {
    color: #408646 !important;
    font-size: 14px !important;
}
.organic-card-price-1 h6 {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 10px;
    margin: 2px 0px 0px 0px;
    font-weight: 500;
    font-size: 11px;
    line-height: 11px;
    color: #408646;
    text-align: center;
    margin: 10px 0px 12px 0px;
}



@media screen and (max-width: 767px) {
    .organic-card-picture img {
        min-height: auto !important;
        width: 100%;
    }
    .organic-card-main {
        padding: 20px 15px !important;
    }
    .cwp-row .cwp-col-12.organic-posts {
        width: 100% !important;
    }
}
@media screen and (max-width: 1375px) {
    .organic-card-picture img {
        min-height: 238px;
        object-fit: cover;
    }
}

.cwp-archive-container .organic-card-picture img {
    height: 264px;
}
.organic-card-style-1:hover .organic-card-main {
    border-color: #408646;
}

.organic-card-style-1:hover .organic-card-cart-button-1 {
    background-color: #408646;
}

.organic-card-style-1:hover .organic-card-cart-button-1 .organic-card-cart-title h5 {
    color: #FFFFFF !important;
}

.organic-card-style-1:hover .organic-card-cart-button-1 .organic-card-cart-image svg path {
     fill: #FFF;
}

.organic-card-style-1 {
    width: auto;
}

.organic-card-main-large {
    border: 1px solid #E6E6E6;
    padding: 30px 30px 24px 30px;
    width: auto;
    border-radius: 8px;
    position: relative;
    margin: 0px 1px 0px 0px;
}

.organic-card-picture-v2 img {
    max-width: 426px !important;
    margin: auto;
}

.organic-card-cart-title h5 {
  
    font-weight: 500;
    font-size: 13px;
    color:#408646 !important;
}

.organic-card-price-v2 h6 {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 10px;
    font-weight: 500;
    font-size: 11px;
    line-height: 11px;
    color: #408646;
    text-align: center;
    margin: 10px 0px 12px 0px;
}

.organic-card-size-v2 h6 {
   
    font-weight: 500;
    font-size: 13px;
    line-height: 13px;
    color: #767676;
    text-align: center;
}

.organic-card-title-v2 h5:hover {
    text-decoration: underline;
}

.organic-card-title-v2 h5 {
   
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #224A32;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0px 0px 10px 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-transform: capitalize;
    max-width: 100%;
    display: block;
    text-align: center;
}

.organic-card-cart-button-1 {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #408646;
    border-radius: 4px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.organic-card-cart-button-1 .organic-card-cart-image img {
    filter: invert(28%) sepia(54%) saturate(437%) hue-rotate(81deg) brightness(92%) contrast(90%);
    transition: filter 0.3s ease;
}



.organic-v2-margin {
    margin: 36px 0px 0px 0px;
}

.organic-card-cart-button-1 h5:hover {
    color: #fff;
}

.organic-card-cart-button-1.women-wc-quick-checkout {
    position: relative;
}

.organic-card-rating-v2 ul {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 6px;
}

.organic-card-favourite span.cwp-main.cwp-save-post {
    border: unset !important;
}

.organic-card-favourite .star-icon.save-tooltip {
    position: absolute;
    right: 10px;
    z-index: 9999;
    top: 14px;
}

.organic-card-favourite span.cwp-main.cwp-saved-post {
    border: unset !important;
}

.organic-card-favourite .cwp-single-save-btns.cwp-single-widget span.cwp-main {
    color: #224A32;
}

[data-tooltip][data-flow^=left]::before {
    border-left-color: #1D1D1D;
}

.organic-card-price-v2 del {
    color: #767676 !important;
    font-size: 11px;
}
.organic-card-price-v2 ins {
    color: #408646 !important;
    font-size: 14px !important;
}
@media screen and (max-width: 767px) {
    .organic-card-picture-v2 img {
        max-width: none !important;
        width: 100%;
    }
    .cwp-row .cwp-col-12.organic-posts-v2 {
        width : 100% !important;
    }

    .product-type-simple.organic-posts-v2.cwp-col-12 {
        width: 100% !important;
    }
}
@media screen and (max-width: 1024px) {
    .organic-card-picture-v2 img {
        max-width: 100% !important;
       
    }

   
}

.discounted-price-relative {
    position: relative;
}
.yoga-style-33-main {
    border: 1px solid #E6E6E6;
    padding: 10px;
    border-radius: 8px;
}
.yoga-style-33-wrap {
    display: flex;
    gap : 10px;
    align-items : center;
   
}
.yoga-style-discounted-price p.tag-percent.wc-women-remove-empty {
    position: absolute;
    z-index: 9999;
    top: 10px;
    left: 10px;
    background: #7DAC3C;
    padding: 4px 10px 4px 10px;
    color: #FFFFFF;
    border-radius: 4px;
    font-size : 11px !important;
}
.style-33-title h5 {
 
    font-weight: 600;
    font-size: 16px;
    color: #224A32;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.yoga-style-33-image img {
    max-width : 130px !important;
}
.style-33-lb-text h6 {
    color: #767676;
 
    font-weight: 500;
    font-size: 13px;
}
.style-33-priceloop-icon {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.style-33-title h5:hover {
    text-decoration : underline;
}
.style33-price-icon-flex {
    display: flex;
   
    align-items: center;
    justify-content: start !important;
}
.style33-quick-cart-icon.women-wc-quick-checkout {
    position: relative;
}
.style33-quick-cart-icon {
    border: 1px solid #408646 !important;
    padding: 11px !important;
    border-radius: 100px !important;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    cursor : pointer;
}
.yoga-style-33-description {
    width: calc(100% - 174px - 20px);
}
.yoga-style-33-rating .product-content .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.yoga-style-33-rating .product-content .woocommerce .star-rating::before {
    color: #11272D;
}
.yoga-style-33-rating .product-content .product-rating .review-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0px;
    color: #11272D;
}
.yoga-style-33-rating.woocommerce {
    margin-top: 5px;
}
.yoga-style-33-rating.woocommerce .star-rating {
    float: left !important;
}
.yoga-style-33-rating.woocommerce .star-rating::before {
    color: #224A32 !important;
    letter-spacing: 6px;
}
.yoga-style-33-rating.woocommerce .star-rating {
    overflow: visible !important;
    font-size : 10px !important;
    margin-top: 3px;
}
.yoga-style-33-rating.woocommerce p.review-text {
    padding-left: 85px;
    color: #224A32 !important;
}
.yoga-style-33-rating.woocommerce .star-rating span::before {
    font-family: WooCommerce;
    letter-spacing: 6px;
    color: #224A32 !important;
    font-size : 10px;
}
.yoga-style-33-rating.woocommerce .star-rating span {
    color : transparent !important;
}
.style33-quick-cart-icon.women-wc-quick-checkout:hover {
    background: #408646;
    transition: 0.5s;
}
.style33-quick-cart-icon.women-wc-quick-checkout:hover svg path {
  fill: #fff;
  transition: 0.5s;
}
.yoga-style-33-main:hover {
    border: 1px solid #408646;
}
.style-33-priceloop-icon del {
    color: #767676 !important;
    font-size: 11px;
}
.style-33-priceloop-icon ins {
    color: #408646 !important;
    font-size: 14px !important;
}
.style-33-priceloop-icon h6 {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    margin: 2px 0px 0px 0px;
}
@media (max-width: 767px) {
  .yoga-style-33-wrap {
   
    flex-direction: column;
    
  }
  .yoga-style-33-description {
    width: 100%;
}
}



/*----Grid View-----*/
.cwp-post {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.102218));
	margin: 10px 0px;
	overflow: hidden;
	transition: 300ms;
}

.cwp-post:hover {
	filter: none;
}

.cwp-post-thumbnail {
	height: 220px;
	width: 100%;
	position: relative;
}

.cwp-post .cwp-post-thumbnail img {
	height: 100%;
	object-fit: cover;
	transition: 300ms;
	width: 100%;
}

/*-------List View------*/
.list-view .cwp-col-12 {
	width: 100% !important;
}

.list-view .cwp-post {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	position: relative;
}

.list-view .cwp-post-thumbnail {
	width: 30%;
	min-height: 160px;
	height: 185px;
}

.list-view .cwp-post-content-container {
	width: 70%;
}

.list-view .cwp-post-content {
	padding: 30px 20px;
}

.list-view .cwp-post-content h4 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.list-view ul.cwp-post-terms {
	padding: 20px 20px 0 20px;
}

.cwp-promoted-post {
	border: 1px solid #ddbb2a;
	border-radius: 4px;
	color: #ddbb2a;
	cursor: default;
	display: inline-block;
	font-size: 10px;
	line-height: 1;
	padding: 2px 5px;
	position: relative;
	top: -2px;
}

.cwp-post-content {
	padding: 15px;
}

.cwp-post-content h4 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
	margin: 0 0 5px 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.cwp-post-content p {
	font-size: 14px;
	line-height: 1.3;
	margin: 0 0 0 0;
}

.cwp-post-terms {
	align-items: center;
	border-top: 1px solid #e0e0e0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	line-height: 1.5;
	list-style: none;
	margin: 0;
	padding: 15px 15px 10px;
}

.cwp-post-terms li {
	margin: 0 5px 5px 0;
}

.cwp-post-terms li a {
	display: block;
	font-size: 12px;
	background: #f6f6f6;
	max-width: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 8px 8px;
	font-weight: 500;
	text-transform: capitalize;
	border-radius: 210px;
	line-height: 10px;
	color: #343A40;
}

/*---Save button-------*/
.cwp-archive-save {
	position: absolute;
	background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgba(0, 0, 0, .9) 8%, rgba(0, 0, 0, 0) 94%) repeat scroll 0 0;
	bottom: 0;
	padding: 15px 14px 5px 14px;
	width: 100%;
}

.cwp-archive-save .cwp-single-save-btns.cwp-single-widget {
	float: right;
	color: #fff;
}

span.cwp-main.cwp-save-post svg:nth-child(2) {
	display: none;
}

span.cwp-main.cwp-saved-post svg:first-child {
	display: none;
}

.cwp-single-save-btns.cwp-single-widget span.cwp-main,
.cwp-single-share-btn.cwp-single-widget span.cwp-main {
	cursor: pointer;
}
.cwp-post-boosted {
	padding: 1px 10px;
	position: absolute;
	top: 15px;
	left: 15px;
	background: #FFBB00;
	border-radius: 12px;
	color: #000000;
	font-weight: 500;
	font-size: 13px;
}
/* Custom Card Styles */
.woocomerce-location-details {
    width: 100%;
    background-color: white;
    padding: 19px 30px 29px 29px !important;
    margin-bottom: 30px;
}

.woocomerce-location-details .woocomerce-heading-icon {
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocomerce-location-details .woocomerce-heading-icon svg {
    margin-top: 1px;
}

.woocomerce-address p,
.woocomerce-contact p,
.woocomerce-timming p {
    color: #1d1d1d;
    font-family: "Plus Jakarta Sans";
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    width: calc(100% - 26px);
}

.woocomerce-address svg {
    width: 16px;
    height: 16px;
    margin-top: 7px;
}

.woocomerce-contact svg {
    width: 17px;
    height: 16px;
    margin-top: 4px;
}

.woocomerce-timming svg {
    width: 16px;
    height: 20px;
    margin-top: 4px;
}

.woocomerce-location-content {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin-bottom: 20px;
}

.woocomerce-address {
    display: flex;
    gap: 10px;
}

.woocomerce-contact {
    display: flex;
    gap: 10px;
    padding-bottom: 19px;
}

.woocomerce-timming {
    display: flex;
    gap: 10px;
}

.woocomerce-see-details button {
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.26px;
    background: transparent;
    border: none;
    padding: 7px 0px 3px 0px;
    color: #1d1d1d;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #1D1D1D;
}

.woocomerce-see-details button svg path {
    fill: #1d1d1d;
}

.woomen-find-store{
    position: relative;
}

.woocomerce-location-details-sidebar {
    position: absolute;
    background: #fff;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    padding: 0 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: .3s;
    transform: translateX(100%);
}
.woocomerce-location-details-sidebar.active {
      transform: translateX(0);
}

.woocomerce-location-details-sidebar .heading {
    padding: 22px 0 23px 0;
    border-bottom: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 0 20px 0;
    gap: 10px;
}

.woocomerce-location-details-sidebar .heading h2 {
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    color: #1D1D1D;
    width: calc(100% - 22px);
}

.woocomerce-location-back-btn {
    cursor: pointer;
}

.woocomerce-location-back-btn svg path {
    fill: #1D1D1D;
}

.store-locator-cards-animate {
    position: unset !important;
}

.woocomerce-location-details-sidebar .content-heading {
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 28px;
    color: #1D1D1D;
    margin: 0 0 -4px 0;
    text-transform: uppercase;
}

.woocomerce-location-get-direction {
    background: #1d1d1d;
    border: 1px solid #1d1d1d;
    color: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.26px;
    transition: .3s;
    margin: 4px 0 0 0;
}

.woocomerce-location-get-direction svg path{
    transition: .3s;
    fill: #fff;
}

.woocomerce-location-get-direction:hover{
    background: #fff;
    color: #1d1d1d;
}

.woocomerce-location-get-direction:hover svg path{
    fill: #1d1d1d;
}

.woocomerce-location-opening-hours ul {
    padding: 0px;
    margin: 19px 0px 19px 0px;
}

.woocomerce-location-opening-hours ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.woocomerce-location-opening-hours p {
    font-family: "Plus Jakarta Sans";
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    color: #1D1D1D;
}

.woocomerce-location-details-sidebar .social-share > div {
    padding: 0px !important;
    justify-content: flex-start !important;
    gap: 20px;
}

.woocomerce-location-details-sidebar .social-share > div a {
    margin: 0px !important;
    font-size: 16px;
}
.woocomerce-location-details-sidebar{
	opacity:0;
}
.woocomerce-location-details-sidebar.active { 
      padding: 34px;
	 opacity:1;
      width: 100%;
}
@media (max-width:1024px){

    .woocomerce-location-details-sidebar {
        padding: 0px;
    }

}
