.sidebar-title{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding-bottom:19px;
}
.sidebar-title h3 {
    margin: 0;
    color: #212121 !important;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    font-family: "Raleway", Syne !important;
}
.sidebar-title a.clear-all{
	padding: 10px 20px;
    color: #ABABAB !important;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    font-family: "Raleway", Syne !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
	transition:0.2s ease-in;
}
.sidebar-title a.clear-all:hover{
	background-color:#212121;
	border:1px solid #212121;
	color:#fff !important;
}
.filter-form{
	border:1px solid #F3F3F3;
	border-radius:12px;
	padding:17px;
	box-shadow: 0px 3px 16px 0px rgba(210, 210, 210, 0.5);
	background:#fff;
}
.filter-item{
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 10px;
}
.filter-form form .filter-item:last-child,.filter-form .filter-item:last-child {
    border: none;
    margin: 0;
    padding: 0;
}
.filter-item-title{
	display: flex;
    align-items: center;
    justify-content: space-between;
	color:#212121;
	font-size: 20px;
    font-weight: 600;
	font-family: "Oswald", serif;
	line-height:1.3;
	letter-spacing:0.004em;
	margin-bottom: 12px;
}
.product-filter-item ul{
	padding:0px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-filter-item ul li{
	list-style:none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.product-filter-item ul li label{
	display:flex;
	align-items:center;
}
.product-filter-item .p-text{
	display:flex;
	align-items:center;
	justify-content:space-between;
	width:100%;
	font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    font-family: "Raleway", Syne;
	color:#212121;
}
.product-filter-item .p-text span{
	color:#ABABAB;
	font-size: 14px;
    font-weight: 400;
	font-family: "Oswald", serif;
	line-height:30px;
}

.filter-form input[type="checkbox"] {
    position: relative;
    cursor: pointer;
	margin-right: 9px;
}
.filter-form input[type="checkbox"]:before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    margin-top: -1px;
    margin-left: -1px;
    border: 2px solid #727272;
    border-radius: 2px;
    background-color: white;
}
.filter-form input[type="checkbox"]:checked:before {
    border: 1px solid #C4942F;
    background: #C4942F;
}
.filter-form input[type="checkbox"]:checked + label {
    color: blue;
}
.filter-form input[type="checkbox"]:checked:after {
    content: "";
    display: block;
    width: 4px;
    height: 7px;
    border: 1px solid white;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 3px;
    left: 6px;
    margin-top: -1px;
    margin-left: -1px;
}
a.show-more{
	color:#C4942F !important;
	font-size: 14px !important;
    font-weight: 500 !important;
	font-family: "Oswald", serif !important;
	line-height:1.4px !important;
	text-decoration:underline !important;
}

.price-title {
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
}

.price-field {
    position: relative;
    width: 100%;
}

.price-field input[type=range] {
    position: absolute;
}

/* Reset style for input range */

.price-field input[type=range] {
    width: 188px;
    height: 2px; 
    border: 0;
    outline: 0;
    box-sizing: border-box;
    border-radius: 5px;
    pointer-events: none;
    -webkit-appearance: none;
}

.price-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.price-field input[type=range]:active,
.price-field input[type=range]:focus {
    outline: 0;
}

.price-field input[type=range]::-ms-track {
    width: 188px;
    height: 2px; 
    border: 0;
    outline: 0;
    box-sizing: border-box;
    border-radius: 5px;
    pointer-events: none;
    background: transparent;
    border-color: transparent;
    color: transparent;
    border-radius: 5px;
}

/* Style toddler input range */

.price-field input[type=range]::-webkit-slider-thumb { 
  /* WebKit/Blink */
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -4px;
    background-color: #fff;
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}

.price-field input[type=range]::-moz-range-thumb { 
    /* Firefox */
    position: relative;
    appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -5px;
    background-color: #fff;
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}

.price-field input[type=range]::-ms-thumb  { 
    /* IE */
    position: relative;
    appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -5px;
    background-color: #fff;
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}

/* Style track input range */

.price-field input[type=range]::-webkit-slider-runnable-track { 
    /* WebKit/Blink */
    width: 188px;
    height: 2px;
    cursor: pointer;
    background: #fff;
    border-radius: 5px;
}

.price-field input[type=range]::-moz-range-track { 
    /* Firefox */
    width: 188px;
    height: 2px;
    cursor: pointer;
    background: #fff;
    border-radius: 5px;
}

.price-field input[type=range]::-ms-track { 
    /* IE */
    width: 188px;
    height: 2px;
    cursor: pointer;
    background: #fff;
    border-radius: 5px;
}

/* Style for input value block */

.price-wrap {
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 7px;
}

.price-wrap-1, 
.price-wrap-2 {
    display: flex;
}

.price-title {
    margin-right: 5px;
    backgrund: #d58e32;
}

.price-wrap_line {
    margin: 0 10px;
}

.price-wrap #one, 
.price-wrap #two {
    width: 30px;
    text-align: right;
    margin: 0;
    padding: 0;
    margin-right: 2px;
    background:  0;
    border: 0;
    outline: 0;
    color: #fff;
    font-family: 'Karla', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
}

.price-wrap label {
    text-align: right;
}

/* Style for active state input */
    
.price-field input[type=range]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #fff;
    transition-duration: 0.3s;
}

.price-field input[type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #fff;
    transition-duration: 0.3s;
}

.shop-sidebar-head{
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 19px;
}
.shop-sidebar-head h3{
	margin: 0;
    color: #212121 !important;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    font-family: "Raleway", Syne !important;
}
.shop-sidebar-head button#clear-filters, .shop-sidebar-head button#clear-searchfilters {
	padding: 10px 20px;
    color: #ABABAB !important;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    font-family: "Raleway", Syne !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    transition: 0.2s ease-in;
}
.shop-sidebar-head button#clear-filters:hover, .shop-sidebar-head button#clear-searchfilters:hover {
	background-color: #212121 !important;
    border: 1px solid #212121 !important;
    color: #fff !important;
}
.filter-section h3{
	display: flex;
    align-items: center;
    justify-content: space-between;
    color: #212121 !important;
    font-size: 20px;
    font-weight: 600;
    font-family: "Oswald", serif !important;
    line-height: 1.3;
    letter-spacing: 0.004em;
    margin-bottom: 12px;
}
.price-slider {
    display: flex;
    justify-content: space-between;
}
.price-slider input{
	border: 1px solid #E4E4E4 !important;
    border-radius: 10px !important;
    text-align: center;
    margin: 0 25px 0 0;
	padding: 0.44rem 1rem !important;
}
fieldset.filter-price {
    border: none;
    margin-bottom: 20px;
}
.price-slider input:last-child{
	margin:0px !important;
}
.double_range_slider {
    width: 100%;
    height: 5px;
    position: relative;
    background-color: #EDEEF3;
    border-radius: 3px;
}
.range_track {
    height: 100%;
    position: absolute;
    border-radius: 3px;
    background-color: #212121;
    width: 50%;
}

.double_range_slider input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    top: 50%;
    transform: translateY(-50%);
}
.double_range_slider input::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    margin-bottom: 1px;
    filter: drop-shadow(0px 1px 4px rgba(196, 148, 47, 0.42));
	background-image:url(https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/radius-checked.svg);
	background-repeat:no-repeat;
	background-size:auto;
}

.double_range_slider input::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 2px solid red;
    background-color: #fff;
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
    margin-top: 30%;
	position:relative;
}

.color-filter-block ul {
    display: flex;
	list-style-type: none;
	margin: 20px 0 20px 0;
    padding: 0;
	width: 100%;
    flex-wrap: wrap;
}
.color-filter-block ul label{
	color: transparent;
	width: 20px;
    height: 20px;
	opacity:0;
}
.filter-form .color-filter-block li{
	width: 20px;
    height: 20px;
    margin: 0 8px 10px 8px;
	border-radius:50px;
}

.filter-form .color-filter-block input[type="checkbox"]:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
	margin-top: -3px;
    margin-left: -3px;
    border: 2px solid red;
    border-radius: 100px;
    background-color: red;
}
.filter-form .color-filter-block input[type="checkbox"]:checked:after{
	border:unset !important;
}
.product-size-filter-block li{
	display:flex;
	justify-content:space-between;
}
.product-size-number{
	font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #ABABAB;
}
.page-id-4333 .products-list{
	width: 100%;
    display: flex;
	flex-wrap:wrap;
}
.elementor-element-440f020 .elementor-element-populated{
	align-items: center;
    justify-content: center;
}
.elementor-element-aa27496.elementor-element ul.elementor-icon-list-items{
	margin-left: 30px;
}
.elementor-element-aa27496 .elementor-inline-item{
	margin-right: 8px;
    margin-left: 8px;
}
.page-template-temp-shop div#ajax-pagination {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px;
}
.page-template-temp-shop .page-numbers {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 40px;
    height: 40px;
    background: #FBFBFB;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
	color: #212121;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 21px;
	margin:0px;
}
.page-template-temp-shop a.next.page-numbers, .page-template-temp-shop a.prev.page-numbers  {
    background: #212121;
    color: #fff;
	width: 94px;
    height: max-content;
    text-align: center;
    margin: 0 auto;
}
.page-template-temp-shop span.page-numbers.current{
    background: #C4942F;
    color: #fff;
     
}
.pagination-item span{
	margin: 0 8px;
}
.p-content-left h4 a{
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #212121;
}
.d-price{
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
	text-align: right;
	letter-spacing: 0.04em;
	color: #212121;
}
.c-price{
	font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    text-align: right;
    letter-spacing: 0.04em;
    text-decoration-line: line-through;
    color: #ABABAB;
	margin-right:12px;
}
.p-button-sec a.buy-btn {
    padding: 11px 18px;
}
.Shop-page-main form.search-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
	margin-top:40px;
}

.Shop-page-main input.search-field {
    border: none !important;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.04em;
    color: #ABABAB;
    width: 100%;
	padding: 15px 10px !important;
	border-radius: 100%;
	background-color: #ffffff !important;
}
.Shop-page-main .pl-search-form form label img {
    margin-left: 24px;
}
.Shop-page-main .pl-search-form form label {
    width: 23.5%;
	border: 1px solid #D2D2D2;
    border-radius: 12px;
    display: flex;
}

.list-count-text p{
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    letter-spacing: 0.04em;
    color: #C4942F;
}

a.btn_blog:hover {
    background-color: #C4942F;
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    fill: #112856;
    border-style: solid;
    border-radius: 10px;
    box-shadow: 0px 2px 6.16px 0.84px rgba(0, 0, 0, 0.4);
    padding: 20px;
}

a.btn_blog {
    text-transform: uppercase;
    text-decoration: none;
    fill: #112856;
    background-color: #FFFFFF;
    border-style: solid;
    border-radius: 10px;
    box-shadow: 0px 2px 6.16px 0.84px rgba(0, 0, 0, 0.4);
    padding: 20px;
}

.single-product #main {
    max-width: 1700px;
}
.woocommerce-page div.product div.summary{
	width:61%;
}
.single-product .woocommerce-breadcrumb ,.single-product .woo-variation-gallery-trigger {
	display:none !important;
}
.single-product .woo-variation-product-gallery {
    max-width: 80% !important;
    width: 35%;
}
.single-product h1.product_title.entry-title {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    color: #212121; 	
    padding: 0 0 15px;
}
.single-product .entry-summary p.price {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 34px !important;
    line-height: 50px;
    color: #212121 !important;
    padding: 0 0 15px;
}
.single-product.woocommerce div.product{
	margin-top:70px;
}
.single-product.woocommerce div.product form.cart .variations th,.single-product.woocommerce  .variations td{
	background-color:transparent !important;
	background:transparent !important;
	padding: 10px 0 15px;
}
.single-product.woocommerce div.product form.cart .variations th.label{
	padding:15px 0 15px !important;
}
/*.single-product .woocommerce-product-details__short-description {
    display: none;
}*/
.single-product form.cart .variations tr{
	border-bottom: 1px solid #E4E4E4;
}
.single-product .wvg-gallery-image{
	border-radius:17px;
	border: 1px solid #D2D2D2;
}
.single-product .woo-variation-gallery-wrapper .woo-variation-gallery-slider img{
	border-radius:17px;
}
.single-product .wvg-gallery-thumbnail-image {
	mix-blend-mode: normal;
    border: 2px solid #F0F0F0;
    border-radius: 14px;
    opacity: 1 !important;
    width: 115px !important;
    height: 115px;
    overflow: hidden;
}
.single-product .slick-slide.slick-current .wvg-gallery-thumbnail-image {
	border:2px solid #212121;
}
.single-product .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image img{
	 border-radius: 14px;
}
.elementor-button-icon svg {
    fill: transparent !important;
}
.elementor-element-aa27496.elementor-element ul.elementor-icon-list-items{
	margin-left: 0;
}
.elementor-menu-cart__toggle .elementor-button {
    padding: 0 10px 0px 0px !important;
    margin-left: 12px;
    margin-top: 0;
}
.single-product .woo-variation-gallery-thumbnail-slider .wvg-thumbnail-next-arrow, .woo-variation-gallery-thumbnail-slider .wvg-thumbnail-prev-arrow{
	opacity: 1 !important;
    visibility: visible !important;
}
.single-product .woo-variation-gallery-thumbnail-slider .wvg-thumbnail-next-arrow:before, .woo-variation-gallery-thumbnail-slider .wvg-thumbnail-prev-arrow:before{
	color:#000 !important;
	font-size:24px !important;
}
.single-product .woo-variation-gallery-thumbnail-position-bottom-bottom .woo-variation-gallery-container .wvg-thumbnail-next-arrow, .single-product .woo-variation-gallery-thumbnail-position-bottom-bottom .woo-variation-gallery-container .wvg-thumbnail-prev-arrow{
	background: transparent !important;
}
.single-product .woocommerce-Tabs-panel--description h2 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #212121;
}
.single-product .woocommerce-Tabs-panel--description p {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
}
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::before{
	border-bottom: 5px solid #EAECF0;
}
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
	border-bottom:5px solid #C4942F !important;
	border:none;
}
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before, .single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{
	content:unset !important;
}
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {  
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #C4942F;
}
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li{
	border:none;
	background:transparent;
	font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
	padding:10px 35px;
}
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs{
	padding:0px;
}
.single-product.woocommerce div.product form.cart .button {
    padding: 10px 98px;
    background: #212121;
    border-radius: 12px;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-transform: capitalize;
    margin-left: 19px;
}
.woocommerce #reviews #comments h2 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.04em;
    color: #212121;
}
.cr-histogramTable{
	width:100%;
}
#reviews .cr-summaryBox-wrap .cr-overall-rating-wrap{
	width: 100%;
    background: #F9FAFB;
    max-width: 300px;
}
.cr-average-rating span{
	font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 94px;
    color: #212121;
}
#reviews #comments .cr-summaryBox-wrap .crstar-rating{
	color: #E59819;
	height: 14px;
    line-height: 14px;
    font-size: 14px;
}
#reviews .cr-summaryBox-wrap{
	background:transparent;
	margin-bottom:80px;
}
#reviews .cr-summaryBox-wrap .ivole-summaryBox{
	width: calc(100% - 330px);
    flex: 0 0 81.5%;
	background: #F9FAFB;
	padding:15px 30px;
}
.cr-histogramTable{
	max-width: 100%;
}
.ivole-meter .ivole-meter-bar{
	background: #C4942F !important;
    background-color: #C4942F !important;
	box-shadow:unset;
}
.cr-histogramTable tr.ivole-histogramRow .ivole-histogramCell1{
	width:40px;
}
.cr-histogramTable tr.ivole-histogramRow .ivole-histogramCell3{
	width:40px;
}
.cr-histogramTable tr.ivole-histogramRow .ivole-histogramCell2{
	width: 100%;
}
.ivole-meter{
	box-shadow:unset;
	height: 5px;
    border-radius: 20px;
	background: #E6EAEEB2;
    background-color: #E6EAEEB2;
}
#reviews .cr-summaryBox-wrap .cr-total-rating-count{
	font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
	margin-top:10px;
}
td.ivole-histogramCell3 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #212121;
}
.woocommerce #reviews #comments ol.commentlist{
	padding:0px;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar{
	border-radius:100%;
	width:52px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text{
	margin:0 0 0 75px;
	border: none;
    padding: 0;
}
.woocommerce #review_form #respond .form-submit input{
	padding: 9px 73px;
    gap: 10px;
    width: 450px;
    height: 60px;
    background: #212121;
    border-radius: 12px;
	text-align:center;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 28px;
	color: #FFFFFF;
}
.single-product .form-submit{
	text-align: right;
}
.single-product span#reply-title {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #1D2939;
}
.single-product.woocommerce p.stars a{
	color:#D2D2D2;
}
.single-product .comment-form-comment label{
	font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.384px;
    color: #212121;
}
.single-product .woocommerce-product-rating a.woocommerce-review-link {
    padding: 7px 10px;
    gap: 7px;
    background: #FFF8E8;
    border-radius: 27px;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.04em;
    color: #C4942F;
}
.shop-sidebar-head button#clear-filters:focus, .shop-sidebar-head button#clear-searchfilters:focus {
	background-color: #212121 !important;
  border: 1px solid #212121 !important;
  color: #fff !important;
}
.single-product.woocommerce div.product .woocommerce-product-rating{
	display: flex;
    justify-content: flex-end;
}
.single-product .woocommerce-product-rating .user-reviews{
	display: flex;
    align-items: center;
    width: max-content;
}
.woocommerce-variation-price span.woocommerce-Price-amount.amount {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 24px !important;
    line-height: 38px;
    color: #212121 !important;
	margin-bottom:8px;
}
.woocommerce .add-to-cart-wrapper {
    background: #F3F3F3;
    width: fit-content;
	padding: 2px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius:12px;
}
.woocommerce div.product form.cart div.quantity {
    float: unset;
    margin: 0 15px;
}
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled{
	display: flex;
    align-items: center;
	margin-top: 12px;
}
.woocommerce button.minus, .woocommerce button.plus{
	color: #212121 !important;
}
.woocommerce button.minus:hover,.woocommerce button.plus:hover{
	color: #212121;
    background-color: transparent;
    text-decoration: none;
}
.woocommerce .quantity .qty{
	font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #212121;
	border: none;
    background: transparent;
}
li.variable-item.button-variable-item {
    background: #F3F3F3 !important;
    padding: 10px 30px !important;
    width: 64px !important;
    height: 35px !important;
    border-radius: 8px !important;
	border:none !important;
	box-shadow: unset !important;
	
}
.woo-variation-swatches .variable-items-wrapper .variable-item .variable-item-contents{
	width: 18px;
    height: 18px;
    margin-left: -22px;
	border-radius:100px;
	border:1px solid #212121;
	background:transparent;
}
span.variable-item-span.variable-item-span-button {
	margin-right: -50px !important;
	font-family: 'Oswald' !important;
    font-style: normal;
    font-weight: 500;
    font-size: 14px !important;
    line-height: 16px !important;
    color: #212121 !important;
    border-radius: 0px !important;
}
li.variable-item.button-variable-item.selected {
    background: #FFF8E8 !important;
}
.woo-variation-swatches .variable-items-wrapper li.variable-item.button-variable-item.selected .variable-item-contents{
	border:1px solid #C4942F !important;
}
.woo-variation-swatches .variable-items-wrapper li.variable-item.button-variable-item.selected .variable-item-contents:after {
    content: "";
    position: absolute;
    left: 3px;
    right: 0px;
    bottom: 0;
    top: 3px;
    width: 10px;
    height: 10px;
    background: #C4942F !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-fav-button ul {
    display: flex;
    justify-content: flex-end;
}
.product-fav-button ul li{
	list-style:none;
	padding: 11px;
    width: 34px;
    height: 34px;   
    border-radius: 10px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.product-fav-button ul li.product-whishlist-llsp{
	background: #F2F2F2;
}
.product-fav-button ul li.product-share-llsp{
    background: #EDF0F8;
	margin-left: 13px;
}
.product-titleandiconcombine {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.product-titleandiconcombine{
	border-bottom: 1px solid #E4E4E4;
	margin-bottom:20px;
	margin-bottom: 40px;
}
.woocommerce-variation-add-to-cart.variations_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.woocommerce div.product form.cart .variations label {
    text-align: left;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #212121;
}
.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation{
    padding: 32px;
    width: 395px;
    height: 603px;
    background: #FFFFFF;
    border-radius: 21.3333px;
}
.woocommerce-account .elementor-column.elementor-col-100.elementor-top-column.elementor-element.elementor-element-28c7500{
	background:#212121;
}
.woocommerce-account .elementor-column-gap-default > .elementor-column > .elementor-element-populated{
	padding:0px;
	margin-top:-1px;
}
.woocommerce-account h2.woocommerce-my-account-greeting {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 26px !important;
    line-height: 36px !important;
    color: #212121 !important;
    letter-spacing: 2px;	
    margin-bottom: 32px !important;
}
.woocommerce-account .elementor-element-95ad212 p {	
	font-style: normal;
	font-weight: 500;
	font-size: 18.6667px;
	line-height: 30px;
	color: #FFFFFF;
    margin-top: 10px;
    font-family: "Manrope", serif;
}
.woocommerce-account .elementor-widget-shortcode .woocommerce-my-account-greeting {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 42px !important;
    line-height: 53px !important;
    color: #fff !important;
    font-weight: 700;
    margin: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
	padding: 24px !important;
	border:none;
	width: 74.2% !important;
	background: #FFFFFF;
	border-radius: 16px;
}
.menu-icon {
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: 18px center;
}
.profile-icon {
    background-image: url('https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/icon-profile.svg');
}
.is-active.profile-icon {
    background-image: url('/wp-content/uploads/2025/02/profile-active.svg');
}
.favourites-icon {
    background-image: url('https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/icon-my-favorite.svg');
}
.is-active.favourites-icon {
    background-image: url('/wp-content/uploads/2025/02/favourite-active.svg');
}
.orders-icon {
    background-image: url('https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/icon-past-orders.svg');
}
.is-active.orders-icon {
    background-image: url('/wp-content/uploads/2025/02/order-active.svg');
}
.campaign-icon {
    background-image: url('https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/icon-campaign.svg');
}
.is-active.campaign-icon {
    background-image: url('/wp-content/uploads/2025/02/campaign-active.svg');
}
.subscriptions-icon {
    background-image: url('https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/icon-crown-star.svg');
}
.is-active.subscriptions-icon {
    background-image: url('/wp-content/uploads/2025/02/subscription-active.svg');
}
.logout-icon {
    background-image: url('https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/icon-log-out.svg');
}

.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li.profile-icon:hover {
    background-image: url('/wp-content/uploads/2025/02/profile-active.svg');
}

.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li.favourites-icon:hover {
    background-image: url('/wp-content/uploads/2025/02/favourite-active.svg');
}

.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li.orders-icon:hover {
    background-image: url('/wp-content/uploads/2025/02/order-active.svg');
}

.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout.menu-icon.logout-icon:hover {
    background-image: url(/wp-content/uploads/2025/01/icon-log-out-golden.svg);
}

.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li.campaign-icon:hover {
    background-image: url('/wp-content/uploads/2025/02/campaign-active.svg');
}

.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li.subscriptions-icon:hover {
    background-image: url('/wp-content/uploads/2025/02/subscription-active.svg');
}
.woocommerce-account .elementor-8 .elementor-element.elementor-element-f5394eb .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li a{
	background:transparent;
	border:none;
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 700 !important;
	font-size: 24px !important;
	line-height: 140% !important;
	padding: 19.5px 30px 19.5px 70px;
    transition: 0.5s all ease-in-out;
}
.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li:hover a{
    background: rgba(196, 148, 47, 0.15) !important;
    border-radius: 12px;
    color: #C4942F !important;
}
.woocommerce-account .elementor-widget-woocommerce-my-account .e-my-account-tab:not(.e-my-account-tab__dashboard--custom) .woocommerce-MyAccount-content-wrapper{
	border:none;
	padding:0px;
}
.woocommerce-account .e-my-account-tab {
	margin-top: -120px;
}
.woocommerce-account .woocommerce-form.woocommerce-edit-account ul{
	padding:0px;
	list-style: none !important;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
    margin-top: 100px;
}
.woocommerce-form.woocommerce-edit-account ul .wppb-form-field{
	width:49%;
}
.woocommerce-form.woocommerce-edit-account ul .wppb-form-field#wppb-form-element-24{
	width:142px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.wppb-form-field.wppb-upload #upload_profilepic_button{
	margin:0 10px;
}
.woocommerce-account  .woocommerce .wppb-form-field input, .woocommerce-account .woocommerce .wppb-form-field select, .woocommerce-account .woocommerce .wppb-form-field textarea{
	border-bottom: 1px solid #00000033 !important;
	border-radius:0px;
	border: none;
	background: transparent !important;	
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 19px;
	letter-spacing: 1px;
	color: #212121;
    padding: 11px 14px;
    margin: 0;
}

.woocommerce .wppb-form-field {
    margin-bottom: 24px;
}

.woocommerce-account .woocommerce-form.woocommerce-edit-account ul li label {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 19px;
	letter-spacing: 0.384px;
	color: rgba(33, 33, 33, 0.7);
    text-transform: capitalize;
}
.woocommerce-account #edit_profile {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 50px !important;
	background: #C4942F;
	border-radius: 10px;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	letter-spacing: 0.3px;
	color: #FFFFFF;
    text-transform: capitalize;
    border-radius: 10px !important;
}
.account-orders-table thead {
	background: #FAFAFA;
}
.e-my-account-tab__orders .woocommerce-MyAccount-content{
	padding:0px !important;
}
.woocommerce-orders-table__header.woocommerce-orders-table__header-order-date {
	padding: 24px 16px !important;
}
.woocommerce-orders-table__header{
	padding:0px !important;
}
#profilepic_info_container.upload-field-details{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: max-content;
	text-align: end;	
    width: 100%;
}
.woocommerce-orders-table__cell{
	padding: 25px 16px !important;
}
.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-image {
	display: flex;
	align-items: center;
}
#profilepic_info_container .file-thumb{
	width:142px;
	height:142px;
	border-radius:10px;
}
#profilepic_info_container .file-thumb img{
	border-radius:10px;
	width: 142px;
    height: 142px;
    object-fit: cover;
    object-position: center;
}
.woocommerce-orders-table__cell-order-image div:first-child{
	width: 96px;
    height: 50px;
	overflow:hidden;
    background: #F5F5F5;
    border-radius: 6px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-orders-table__cell-order-image div img {
	object-fit: contain;
	width: 51px;
	height: 40px;
}
.woocommerce-orders-table__cell-order-actions .woocommerce-button.button.buy-again {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 160%;
	text-decoration-line: underline;
	color: #C4942F !important;
    background: transparent !important;
    border: none !important;
}
.woocommerce-MyAccount-content-wrapper{
	border-radius:16px 16px 0 0 !important;
}
.llsp-order-history-title-block{
	padding: 24px 24px 0 24px;
	border-radius:16px 16px 0 0 !important;
}
.llsp-order-history-title-block h1,
.parent-fav-wrap h1,
.customise-profile-section h2{
	font-family: 'Oswald' !important;
	font-style: normal;
	font-weight: 700 !important;
	font-size: 34px !important;
	line-height: 47px;
	color: #111827 !important;
	text-align: left !important;
	margin:0 0 10px !important;
}
.llsp-order-history-title-block p,
.parent-fav-wrap p,
.customise-profile-section p{
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #111827;
	margin:0 0 24px !important;
}
.parent-fav-wrap p{
	margin-bottom:24px !important;
}
.my-favorites-box.parent-fav-wrap{
	margin:0 !important;
	padding:0 !important;
}
.woocommerce-MyAccount-content-wrapper{
	background:transparent;
}
.woocommerce-MyAccount-orders .woocommerce-orders-table__cell {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 160%;
	color: #111827;
}
.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-number a {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 160%;
	color: #111827;
}
/* .elementor-widget-woocommerce-my-account .e-my-account-tab:not(.e-my-account-tab__dashboard--custom) .woocommerce-MyAccount-content p:last-of-type{
	display:none;
} */
.woocommerce-account .woocommerce .wppb-form-field input:focus-visible{
	outline:none !important;
}
.parent-capgain-wrap{
	background: #FFFFFF;
	border: 1px solid #E6E7E7;
	border-radius: 12px;
	width:100%;
	max-width:375px;
	overflow:hidden;
	margin: 0;
}
.parent-capgain-img-block{
	width:100%;
	height:205px;
	border-radius:10px;
	overflow:hidden;
	position:relative;
    
}
.parent-capgain-img-block img{
	width:100%;
	height:100% !important;
	border-radius:10px;
	object-fit: cover;
    object-position: center;
}
.parent-capgain-content-block{
	padding:20px;
}
.parent-capgain-content-title{
	/* font-family: 'Lexend';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #212121; */

    font-style: normal;
	font-weight: 600;
    min-height: 53px !important;
    line-height: 26px !important;
    color: #363636 !important;
    font-size: 25px;
    font-family: 'Oswald';

}
.parent-capgain-imageandsocialcombine{
	display:flex;
	justify-content:flex-start;
	align-items:center;
	margin:12px 0;
	flex-wrap: wrap;
}
.parent-capgain-content-location{
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #C4942F;
    display: flex;
    align-items: flex-start;
    width: 80%;
}
.parent-capgain-content-location img{
	margin-right:12px;
    margin-top: 7px;
}
.parent-capgain-content-social { margin-top: 12px; }
.parent-capgain-content-social ul{
	display:flex;
	align-items:center;
/*     padding-left: 26px; */
}
.parent-capgain-content-social ul li{
	list-style:none;
	margin: 0 7px;
}
.parent-capgain-content-social ul li:last-child{
	margin: 0 0 0 7px;
}
.parent-capgain-contents{
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #B2B6B5;
	display: block;
    display: -webkit-box;
    margin: 0 auto;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.parent-capgain-btn-combine{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin: 30px 0 0px;
}
.parenet-capgain-view-more {	
	margin: 0 auto;
	background: #212121;
	border-radius: 12px;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #FFFFFF;
	text-align: center;
	cursor:pointer;
    transition: all 0.5s ease-in-out;
    border: 1px solid #212121;
}
.parenet-capgain-view-more a {
    padding: 8px 50px;
    display: block;
}
.parenet-capgain-view-more:hover {
    background: transparent;
    border: 1px solid #C4942F;
    color: #C4942F;
}
.parenet-capgain-view-more:hover a {
    color: #C4942F !important;
}
.parenet-capgain-view-more a{
	color: #FFFFFF !important;
	text-align: center;
	cursor:pointer;
}
.parenet-capgain-visit-website {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7px 20px;
	margin: 0 auto;
	background: #FFFFFF;
	border: 1px solid #C4942F;
	border-radius: 12px;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #C4942F;
	cursor:pointer;
    transition: 0.5s all ease-in-out;
}
.parenet-capgain-visit-website a {
    color: #C4942F !important;
}
.parenet-capgain-visit-website:hover {
    background-color: #C4942F;
    color: #ffffff !important;
}
.parenet-capgain-visit-website:hover a {
    color: #ffffff !important;
}
.parenet-capgain-visit-website img{
	margin-right: 4px;
}
.my-favorites-box {
	background: transparent !important;
	border: none !important;
	box-shadow: unset !important; 
}
div#filter {
    border: none !important;
    padding: 0 !important;
}
.location-more-view-link{
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	text-decoration-line: underline;
	color: #C4942F;
	cursor:pointer;
}
.custom-price-reviews-wrapper{
	display: flex;
    align-items: center;
    justify-content: space-between;
	border-bottom: 1px solid #E4E4E4;
}
.woocommerce #review_form #respond textarea{
	border-bottom: 1px solid #E4E4E4 !important;
    border: none;
}
.woocommerce #review_form .comment-form input{
	border-bottom: 1px solid #E4E4E4 !important;
    border: none;
}
.woocommerce .star-rating span::before,.woocommerce p.stars:hover a::before {
	color:#C4942F;
}
.woocommerce #review_form .comment-form input,.woocommerce #review_form .comment-form textarea{
	outline:none !important;
}
.search-campaign-wrap {
    display: flex;
    flex-wrap: wrap;
}
.parent-capgain-wrap.search-campaign-block{
	max-width: 424px !important;
}
.parent-capgain-wrap.search-campaign-block {
    margin: 0 8px 30px;
	position:relative;
}
.search-campaign-block .parenet-capgain-visit-website a{
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #C4942F;
	cursor:pointer;
}
.elementor-2047 .elementor-element.elementor-element-28505e6{
	width: 285px !important;
}
.sport-search-page-title{
	color: #C4942F;
	margin-right:5px;
}
.banner-search-module {
	padding: 12px 24px !important;
    background: #FFFFFF !important;
    border-radius: 12px;
	height:88px;
	display: flex;
    justify-content: flex-end !important;
    align-items: center !important;
}

.banner-search-module a {
	padding: 20px 40px;
    background: #212121;
    border-radius: 12px;
    font-family: 'Montserrat' !important;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF !important;
}

.banner-search-module .elementor-widget-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.banner-search-module .banner-search-wrapper{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid #c4942f;
    padding: 8px 24px;
    border-radius: 10px;
    max-width: 345px;
    width: 100%;
	margin-right: 20px;
}
.banner-search-module .banner-search-wrapper:last-child{
	margin-right:0px;
}
.banner-search-label{
	font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
	line-height: 18px;
    color: #212121;
    margin-bottom: 3px;
}
input.search-field {
	border: none !important;
	text-align: left;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #C4942F;
	padding: 0 !important;
	margin: 0;
}
.banner-search-inputandlablecombine {
    padding-left: 15px;
    width: 92%;
}
.banner-search-combine-block {
    display: flex;
    width: 100%;
    align-items: center;
    margin-right: 20px;
}
.banner-search-module.elementor-widget.elementor-widget-html {
    width: auto;
    margin: 32px auto 0;
    padding: 12px 24px !important;
}

.search-campaign-block .parent-capgain-img-block{
	width: 100% !important;
	height: 205px !important;
	border-radius: 12px !important;
	overflow: hidden;
	position:relative;
}
.parent-capgain-main-block{
	display: flex;
	justify-content: flex-start;
    flex-wrap:wrap;
    gap: 24px;
}
.parent-capgain-main-block .parent-capgain-wrap,
.parent-capgain-main-block .products-item{
    max-width: calc(33.33% - 24px);
    flex: 0 0 calc(33.33% - 24px);
}
.parenet-capgain-heart-fill-icon {
	position: absolute;
	left: 16px;
    top: 16px;
}
.search-campaign-block .parenet-capgain-heart-fill-icon {
	position: absolute;
	right: 15px !important;
	top: 15px;
	left: unset;
}
.search-campaign-block .parenet-capgain-heart-fill-icon img{
	width:25px;
	height:25px;
}
.parenet-capgain-text-badge {
    position: absolute;
    left: 0px;
    top: 15px;
    padding: 4px 33px;
    background: #C4942F;
    box-shadow: 1px 3px 5px rgba(196, 148, 47, 0.27), inset -2px -4px 4px #D9B76F;
    border-radius: 0px 4px 4px 0px;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
}
.color-variable-items-wrappe.variable-items-wrapper{
	align-items: center !important;
}
.color-variable-items-wrapper li.color-variable-item-black{
	background: #000 !important;
}
.color-variable-items-wrapper .color-variable-item{
	width: 50px !important;
    height: 50px !important;
	margin: 0 15px 0 0 !important;
}
.color-variable-items-wrapper li.color-variable-item-red.selected{
/* 	background:#FAF0E4 !important; */
	width: 64px !important;
    height: 64px !important;
    border: 3px solid #C4942F;
    border-radius: 32px !important;
    box-shadow: unset !important;
}
.color-variable-items-wrapper .variable-item-contents{
	margin-left: 0 !important;
	width: 50px !important;
    height: 50px !important;
    border: none !important;
}
.color-variable-items-wrapper li.color-variable-item-red.selected .variable-item-contents .variable-item-span{
	background:#FAF0E4 !important;
	box-shadow: unset !important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before{
	background-image:url(https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/right-tick-mark-icon.svg) !important;
}
ul.variable-items-wrapper.color-variable-items-wrapper.wvs-style-rounded {
    align-items: center;
}
.custom-price-table .elementor-widget-price-table{
	border: 1px solid #DEDEDE;
    border-radius: 16px;
}
.custom-price-table .elementor-widget-container{
	border-radius: 16px;
}
/* .custom-price-table .elementor-price-table__price {
    border-bottom: 1.23793px solid #AEAEAE;
    margin: 0px 60px 30px;
} */
.custom-price-table .elementor-price-table__feature-inner svg path{
	fill:transparent !important;
}
.custom-price-table .elementor-price-table .elementor-price-table__features-list li .elementor-price-table__feature-inner {
	display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 0;
}


.custom-price-table ul.elementor-price-table__features-list {
	padding: 0 15px 130px 50px !important;
}
.custom-price-table  .elementor-price-table .elementor-price-table__price{
	margin-left:auto !important;
}
/* .custom-price-table .elementor-price-table .elementor-price-table__footer{
	padding: 18.569px 20px;
	background: #212121;
	border: 1px solid #000000;
	border-radius: 73.0379px;
	margin: 0 50px 44px;
} */
.my-favorites-box.parent-fav-wrap .pagination{
	display: flex;
    justify-content: flex-end;
    width: 100%;
}
.my-favorites-box.parent-fav-wrap .pagination .page-number{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 40px;
    height: 40px;
    background: #FBFBFB;
    border: 1px solid #F1F1F1;
    border-radius: 6px;
    color: #212121 !important;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    margin: 0px 8px;
}
.my-favorites-box.parent-fav-wrap .pagination .page-number.active{
	background: #C4942F;
    color: #fff !important;
}
.my-favorites-box.parent-fav-wrap .pagination .next{
	background: #212121;
    color: #fff !important;
    height: max-content;
    text-align: center;
	font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
	padding: 10px;
  	border-radius: 6px;
  	width: 94px;
	margin-left:8px;
}
.my-favorites-box.parent-fav-wrap .pagination .prev{
	background: #C4942F;
    color: #fff !important;
    height: max-content;
    text-align: center;
	font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
	padding: 10px;
  	border-radius: 6px;
  	width: 94px;
	margin-right:8px;
}
.my-cap-header-part{
	display:flex;
	justify-content:space-between;
}
.add-camp-btn-and-filter-combine{
	display:flex;
	align-items:center;
}
.llsp-add-camp-btn{
    padding: 9px 26px 9px 26px !important;
    background-color: #212121 !important;
    border-radius: 6px !important;
    font-family: 'Oswald' !important;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    margin-right: 24px;
}
.llsp-add-camp-btn img{
	margin-right:10px;
}

.add-camp-btn-and-filter-combine select {
    font-family: 'Oswald' !important;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    letter-spacing: 0.04em !important;
    background: #E6E6E6;
    border-radius: 6px;
    border: none;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #838383;
}
.my-camp-request-status {
    padding: 0px 22px;
    border-radius: 7px;
    margin-bottom: 15px;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.01em;
    max-width:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
}
.my-camp-request-status.my-camp-request-pending {
    background: #EFE6D1 !important;
    color: #7E5B11 !important;
}
.my-camp-request-status.my-camp-request-approved{
	background: #B1FFD5 !important;
	color: #0A7239 !important;
}
.my-camp-request-status.my-camp-request-live-on{
	background: #121212 !important;
	color: #E5BE6B !important;
}
.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
	padding: 0 24px;
}

.llsp-my-camp-subscription-main {
	margin: 30px 0;
}
.llsp-my-camp-subscription-block {
	padding: 24px;
	background: rgba(13, 92, 99, 0.05);
	border: 1px solid #C4942F;
	border-radius: 16px;
	margin-bottom: 24px;
}
.llsp-my-camp-subscription-first-part {
	display: flex;
	justify-content: space-between;
	width: 100%;
	border-bottom: 1px solid #D7D7D7;
	padding-bottom:16px;
}
.llsp-my-camp-subscription-level-name-and-status-combine {
	display: flex;
	align-items: center;
	width: 100%;
}
.llsp-my-camp-subscription-button-combine{
	display: flex;
	align-items: center;
}
.llsp-my-camp-subscription-second-part {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-top:10px;
	
}
.llsp-my-camp-subscription-level-tag-and-price-combine {
	display: flex;
	align-items: center;
}
.llsp-my-camp-subscription-level-name {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	color: #212121;
	margin-right: 15px;
}
.llsp-my-camp-subscription-level-status {
	padding: 5px 10px;
	background: #FCF2DE;
	border-radius: 6px;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 160%;
	text-align: center;
	letter-spacing: 1px;
	color: #C4942F;
}
.llsp-my-camp-subscription-renew-plan-btn {
	padding: 13px 46px !important;
	background: #C4942F !important;
	border-radius: 12px !important;
	font-family: 'Oswald' !important;
	font-style: normal;
	font-weight: 700 !important;
	font-size: 20px !important;
	line-height: 30px !important;
	letter-spacing: 1px;
	color: #FFFFFF !important;
	margin-right:15px;
}
.llsp-my-camp-subscription-cancel-btn {
	padding: 12px 70px !important;
	background: #FFFFFF !important;
	border: 1px solid #D2D2D2 !important;
	border-radius: 12px !important;
	font-family: 'Oswald' !important;
	font-style: normal;
	font-weight: 500 !important;
	font-size: 20px !important;
	line-height: 30px !important;
	letter-spacing: 1px;
	color: #616161 !important;
}
.llsp-my-camp-subscription-price {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	color: #616161;
	margin-right: 8px;
}
.llsp-my-camp-subscription-level-price {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 160%;
	color: #C4942F;
}
.llsp-my-camp-subscription-plan-detail {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	color: #EF2727;
	margin-right:10px;
}
.llsp-my-camp-subscription-expire-and-date-combine {
	display: flex;
	align-items: center;
}
.llsp-my-camp-subscription-expire-date {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 160%;
	color: #111827;
}

.filter-price .range-track{
/* 	background: linear-gradient(to right, rgb(221, 221, 221) 20.3203%, rgb(0 0 0) 20.3203%, rgb(0 0 0) 61.0611%, rgb(221, 221, 221) 61.0611%)!important; */
	height: 4px;
}
.elementor-price-table .elementor-price-table__features-list svg{
	width:16px !important;
	height:16px !important;
}
.premium-level-plan-block .elementor-widget-container{
	position:relative !important;
}

.premium-level-plan-block .elementor-widget-container{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(https://darkblue-cod-377906.hostingersite.com/wp-content/uploads/2025/01/Bottom-Circles.png) !important;
    background-repeat: no-repeat !important;
	background-position:bottom;
}
.active-price-plan-wrapper .elementor-widget-container{
	background: #FFFFFF !important;
    border: 1px solid #C4942F !important;
    box-shadow: 0px 3px 150px rgba(210, 210, 210, 0.45) !important;
    backdrop-filter: blur(21.0448px) !important;
    border-radius: 16px !important;
}
.active-price-plan-wrapper .elementor-price-table__header {
   background: #C4942F !important;
    box-shadow: 3px 4px 5px rgba(196, 148, 47, 0.27), inset -2px -4px 4px #D9B76F;
    border-radius: 12px;
    width: 70%;
    margin-top: 40px;
    margin-left: -12px;
    padding: 10px 16px !important;

}
.active-price-plan-wrapper .elementor-price-table__header h3{
	font-family: 'Oswald' !important;
	font-style: normal !important;
	font-weight: 700 !important;
	font-size: 24px !important;
	line-height: 36px !important;
	color: #FFFFFF !important;
}


.active-plan-new-btn{
	background: #C4942F;
	box-shadow: 1px 1px 5px rgba(196, 148, 47, 0.27), inset -2px -4px 4px #D9B76F;
	border-radius: 6px;
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	line-height: 20px;
	color: #FFFFFF;
	padding: 4px 15px;
    margin-left: 5px;
}
 .custom-price-table .active-price-plan-wrapper {
	max-width: 450px !important;
    width: 100% !important;
}
.active-price-plan-wrapper .elementor-price-table__feature-inner span{
	width: calc(100% - 28px);
}

.customise-profile-section {
    position: relative;
}

.profilepicnew {
    position: absolute;
    top: 0;
    right: 0;
}

.pagination .next {
    color: #ffffff;
}

.capm-title-content-combine {
    width: 75%;
    padding-right: 20px;
}

.customise-profile-section p .wppb-remove-upload {
    display: inline-flex;
    margin: -20px 0 0 -15px !important;
    justify-content: flex-start;
    float: left;
}

.woocommerce .wppb-form-field {
    margin-bottom: 40px !important;
}

.upload-field-details .file-name, .upload-field-details .file-type {
    display: none;
}

.upload-field-details .wppb-remove-upload {
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
    background-color: #C4942F;
    font-family: "Oswald", Raleway;
    border-radius: 10px;
    padding: 5px 15px 8px 15px;
    justify-content: flex-start;
    display: inline-flex;
    cursor: pointer;
}

.upload-field-details .upload-field-details p .wppb-remove-upload {
    text-align: start;
    margin: -20px !important;
}

.wppb-description-delimiter strong {
    display: flex;
    margin-top: 5px;
}

.elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul {
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
}

.camp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.camp-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.camp-image img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.camp-content {
    padding: 15px;
    text-align: center;
}

.camp-title {
    font-size: 1.4em;
    margin: 10px 0;
}

.camp-title a {
    color: #333;
    text-decoration: none;
}

.camp-location,
.camp-description {
    color: #555;
    font-size: 0.95em;
    margin: 5px 0;
}

.camp-social-links {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.social-icon {
    margin: 0 10px;
    font-size: 1.5em;
    color: #555;
}

.social-icon.facebook {
    color: #3b5998;
}

.social-icon.twitter {
    color: #1da1f2;
}

.social-icon.instagram {
    color: #e1306c;
}

.social-icon.linkedin {
    color: #0077b5;
}

.camp-actions {
    margin-top: 15px;
}

.edit-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
}

.no-posts {
    text-align: center;
    color: #777;
    padding: 20px;
}

/* Partner */

.partner-campaign-main-block {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    background: #fff;
}

.partner-form {
    padding-left: 20px;
    width: 20%;
}

.partner-form .wpcf7-form p > label {
    color: #121212;
}
.partner-form .wpcf7-form p > label > .wpcf7-form-control-wrap > input,
.partner-form .wpcf7-form p > label > .wpcf7-form-control-wrap > select {
    margin-top: 10px;
}

.partner-form .wpcf7-form p:last-child {
    display: flex;
    justify-content: center;
}

.partner-form .wpcf7-form p > .wpcf7-spinner {
    margin: 0;
}

.partner-card {
    width: 80%;
}

.partner-sub-details {
    display: flex;
    gap: 10px;
}
.partner-bookmark {
    font-size: 20px;
    color: #999;
    cursor: pointer;
}
.partner-bookmark:hover {
    color: #d9534f;
}

/* Header */
.partner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.partner-header-left {
    display: flex;
    align-items: center;
}
.partner-header-left img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin-right: 10px;
}
.partner-header-left h2 > a {
    margin: 0;
    font-weight: bold;
    color: #C4942F !important;
}
.partner-header-left .label {
    display: inline-block;
    background: #C4942F;
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 8px;
}
.partner-rating {
    color: #C4942F;
    font-size: 14px;
}
.partner-header-right a {
    font-family: "Oswald", Raleway;
    font-size: 14px !important;
    line-height: 20px !important;
    text-transform: uppercase;
    margin-left: 5px !important;
    padding: 6px 12px !important;
    border: none;
    cursor: pointer !important;
    fill: #FFFFFF;
    transition-duration: 0.5s;
    border-radius: 6px 6px 6px 6px;
}
.btn-profile {
    background: #121212 !important;
    color: #FFFFFF !important;
}
.btn-visit {
    background: #C4942F !important;
    color: #FFFFFF !important;
}

/* Info Row */
.partner-info {
    margin: 15px 0;
    font-size: 14px;
    color: #555;
}
.partner-info span {
    margin-right: 15px;
}

/* Two-Column Layout */
.partner-main {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.partner-services {
    flex: 1 1 40%;
}
.partner-services strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
}
.partner-services p {
    margin: 5px 0;
    font-size: 14px;
}
.progress {
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    height: 8px;
    margin-bottom: 10px;
}
.progress-bar {
    height: 100%;
    background: #337ab7;
}
.partner-description {
    flex: 1 1 60%;
    font-size: 14px;
    color: #444;
}

/* Footer */
.partner-footer {
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 10px;
    font-size: 13px;
    color: #555;
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}
.partner-footer div {
    flex: 1 1 25%;
    padding: 5px 0;
}

.newsletter-form { width: 870px!important;}

.newsletter-form .elementor-19528 .elementor-element.elementor-element-6e67ba0 { --content-width: 100% !important; }
@media (min-width: 2400px) { 
.newsletter-form .elementor-19528 .elementor-element.elementor-element-6e67ba0 { --content-width: 100% !important; }
}

@media (max-width:1920px) { 

.testimonials .e-con-full { padding-top: 0 !important; }
.testimonials .e-con-inner { padding-bottom: 0 !important; }
.list-your-btn-link .elementor-widget-container { margin: 40px 0px 0px 0px !important;}
.newsletter-form { --content-width: 100% !important;}
.newsletter-form  .elementor-19528 .elementor-element.elementor-element-6e67ba0 { --content-width: 80% !important;}

}

@media (max-width:1600px) { 

.testimonials .e-con-full { padding-top: 0 !important; }
.testimonials .e-con-inner { padding-bottom: 0 !important; }
.list-your-btn-link .elementor-widget-container { margin: 40px 0px 0px 0px !important;}
.newsletter-form { --content-width: 100% !important;}

}


@media (max-width: 768px) {
    .partner-campaign-main-block {
        flex-direction: column;
        /* gap: 30px; */
        padding: 0;
    }

    .partner-header-right {
        display: flex;
    }
    
    .partner-header-right a {
        margin-top: 10px;
    }

    .partner-header-left h2 > a {
        font-size: 18px;
    }
    
    .partner-header-left {
        margin-top: 10px;
    }

    .partner-bookmark {
        top: 6px;
        right: 10px;
    }

    .partner-form {
        width: 100%;
        padding-left: 0;
    }

    .partner-form .wpcf7-form p > label {
        color: #121212;
    }
    .partner-form .wpcf7-form p > label > .wpcf7-form-control-wrap > input,
    .partner-form .wpcf7-form p > label > .wpcf7-form-control-wrap > select {
        margin-top: 10px;
    }

    .partner-card {
        position: relative;
        width: 100%;
        padding: 20px;
    }

    .scedule-form .form_new { flex-direction: column; }
    .scedule-form .form_new div:first-child { margin-right: 0 !important; }
    .scedule-form .form_new .text_field label {width: 100%;}


    /* talk Our Team Form */

   .talk-our-team-form form .new_form2 div { flex-direction: column;}
   .talk-our-team-form form .new_form2 div label { width: 100%; }
   .talk-our-team-form form .new_form2 .fields { margin-right: 0 !important; width: 100%;}
   .talk-our-team-form form .new_form2 h2 { font-size: 30px !important;}

   .newsletter-form { width: 100% !important;}

}
/* Global Search Result Open*/
.global-search-result-cmf .main-container{
    max-width: 1430px;
    margin: auto;
    padding: 80px 20px;
}
.global-search-result-cmf .search-result-cmf-title{
    text-align: center;
    padding: 20px 10px;
    background-color: #eeeeee;
    border-radius: 10px;
    margin-bottom: 40px;
}
.global-search-result-cmf .search-result-cmf-title h1{
    font-family: "Poppins", Raleway !important;
    font-size: 50px;
    font-weight: 700;
    color: #363636 !important;
    margin: 0px !important;
}
.global-search-result-cmf .search-result-cmf-title h1 .search-result-cmf-title-search-text{
    color: var(--e-global-color-primary) !important;
}
.global-search-result-cmf .search-result-listing-content-cmf, .global-search-result-cmf .search-result-blog-content-cmf, .global-search-result-cmf .search-result-product-content-cmf, .global-search-result-cmf .search-result-pages-content-cmf{
    margin: 20px 0px;
    padding: 15px;
}
.global-search-result-cmf .search-result-listing-content-cmf h2, .global-search-result-cmf .search-result-blog-content-cmf h2, .global-search-result-cmf .search-result-product-content-cmf h2, .global-search-result-cmf .search-result-pages-content-cmf h2{
    font-family: "Poppins", Raleway !important;
    font-size: 50px;
    font-weight: 700;
    color: var(--e-global-color-primary) !important;
    border-bottom: 01px solid #eeeeee;
    margin-bottom: 15px;
    margin: 0px;
    padding-bottom: 10px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
/* Load More Btn Open*/
.global-search-result-cmf .load-more-btn-grid {
    display: none;
}
.global-search-result-cmf .load-more-btn-grid.active-lmb-cmf {
	padding: 45px 15px 20px;
    display: flex !important;
    justify-content: center;
}
.global-search-result-cmf .load-more-btn-grid .load-more-btn-cmf{
	padding: 10px 25px;
    text-align: center;
    display: block;
    font-family: 'Poppins' !important;
    border-radius: 5px;
    color: #ffffff !important;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    width: fit-content;
    background-color: var(--e-global-color-primary) !important;
}
.global-search-result-cmf .load-more-btn-grid .load-more-btn-cmf:hover{
    color: #ffffff !important;
    background-color: rgb(121, 0, 0) !important;
}
/* Load More Btn Close*/

/* Listing Grid Open*/
.global-search-result-cmf .search-result-listing-content-cmf .listing-grid {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    gap: 30px;
    margin-top: 50px;
}
/* Listing Grid Close*/

/* Blog Grid Open*/
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    gap: 30px;
    margin-top: 50px;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf{
    background-color: #f5f5f5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-image-cmf img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: -6px;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-title-cmf {
    padding: 15px;
    margin: 0px;
    flex: 1;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-title-cmf a {
    font-family: "Poppins", Raleway !important;
    font-size: 20px;
    font-weight: 600;
    color: #363636 !important;
    transition: all 0.3s;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-date-cmf {
    display: none;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-short-info-cmf {
    display: none;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-category-cmf {
    display: none;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-btn-cmf {
    padding: 15px;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-btn-cmf a {
    padding: 10px 25px;
    text-align: center;
    width: 100%;
    display: block;
    font-family: 'Poppins' !important;
    border-radius: 10px;
    border: 1px solid #212121;
    background-color: #212121 !important;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s;
}
.global-search-result-cmf .search-result-blog-content-cmf .blog-grid .blog-item-cmf .blog-btn-cmf:hover a{
    color: #fff !important;
    background-color: var(--e-global-color-primary) !important;
    border: 1px solid var(--e-global-color-primary) !important;
}
/* Blog Grid Close*/

/* Product Grid Open*/
.global-search-result-cmf .search-result-product-content-cmf .product-grid {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    gap: 30px;
    margin-top: 50px;
}
.global-search-result-cmf .search-result-product-content-cmf .product-grid .products-item .products-img a{
	text-align: center;
    width: 100%;
    display: block;
}
/* Product Grid Close*/

/* Page Grid Open*/
.global-search-result-cmf .search-result-pages-content-cmf .pages-grid {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    gap: 30px;
    margin-top: 50px;
}
.global-search-result-cmf .search-result-pages-content-cmf .pages-grid .page-item{
    background-color: #f5f5f5;
    border-radius: 10px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.global-search-result-cmf .search-result-pages-content-cmf .pages-grid .page-item .page-btn-cmf{
    padding: 15px;
}
.global-search-result-cmf .search-result-pages-content-cmf .pages-grid .page-item .page-btn-cmf a:hover{
    color: #ffffff !important;
    background-color: var(--e-global-color-primary) !important;
}
.global-search-result-cmf .search-result-pages-content-cmf .pages-grid .page-item .page-btn-cmf a{
    padding: 10px 25px;
    text-align: center;
    width: 100%;
    display: block;
    font-family: 'Poppins' !important;
    border-radius: 10px;
    background-color: #212121 !important;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s;
}
.global-search-result-cmf .search-result-pages-content-cmf .pages-grid .page-item h3{
    font-weight: 700;
    font-family: "Poppins", Raleway !important;
    font-size: 20px;
    color: #363636 !important;
    transition: all 0.3s;
    line-height: 40px;
    margin: 20px;
}

/* Page Grid Close*/

@media only screen and (max-width: 1240px) {
    /* Listing Grid Open*/
        .global-search-result-cmf .search-result-listing-content-cmf .listing-grid {
            grid-template-columns: 4fr 4fr;
            gap: 30px;
            margin-top: 50px;
        }
    /* Listing Grid Close*/

    /* Blog Grid Open*/
        .global-search-result-cmf .search-result-blog-content-cmf .blog-grid {
            grid-template-columns: 4fr 4fr;
            gap: 30px;
            margin-top: 50px;
        }
    /* Blog Grid Close*/

    /* Product Grid Open*/
        .global-search-result-cmf .search-result-product-content-cmf .product-grid {
            grid-template-columns: 4fr 4fr;
            gap: 30px;
            margin-top: 50px;
        }
    /* Product Grid Close*/

    /* Page Grid Open*/
        .global-search-result-cmf .search-result-pages-content-cmf .pages-grid {
            grid-template-columns: 4fr 4fr;
            gap: 30px;
            margin-top: 50px;
        }
    /* Page Grid Close*/
}

@media only screen and (max-width: 600px) {
    .global-search-result-cmf .main-container{
        padding: 20px;
    }
    .global-search-result-cmf .search-result-cmf-title h1{
        font-size: 25px;
    }
    /* Listing Grid Open*/
        .global-search-result-cmf .search-result-listing-content-cmf .listing-grid {
            grid-template-columns: 12fr;
            gap: 20px;
            margin-top: 30px;
        }
    /* Listing Grid Close*/

    /* Blog Grid Open*/
        .global-search-result-cmf .search-result-blog-content-cmf .blog-grid {
            grid-template-columns: 12fr;
            gap: 20px;
            margin-top: 30px;
        }
    /* Blog Grid Close*/

    /* Product Grid Open*/
        .global-search-result-cmf .search-result-product-content-cmf .product-grid {
            grid-template-columns: 12fr;
            gap: 20px;
            margin-top: 30px;
        }
    /* Product Grid Close*/

    /* Page Grid Open*/
        .global-search-result-cmf .search-result-pages-content-cmf .pages-grid {
            grid-template-columns: 12fr;
            gap: 20px;
            margin-top: 30px;
        }
    /* Page Grid Close*/
}
@media only screen and (max-width: 700px) {
    .global-search-result-cmf .main-container{
        padding: 20px 10px;
    }
}
/* Global Search Result Close*/

/* Footer New Open */
.icon-footer-menu ul li a::before{
	/* content:url('https://llsp.htbusinessgroup.in/wp-content/uploads/2026/01/arrow-menu-svg.svg') ; */
    opacity: 1 !important;
    margin-left: -25px;
    margin-top: 4px;
}
@media only screen and (max-width: 767px) {
    .icon-footer-menu ul li a::before{
    margin-left: -35px;
}
}
/* Footer New Close*/



/* Product CSS Open*/
.p-button-sec a.buy-btn {
    width: calc(100% - 46px) !important;
    background-color: #212121;
    border-radius: 12px;
    padding: 10px 18px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-family: "Oswald", serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: 0.5s all ease-in-out;
}
@media (max-width: 767px) {
  .home-feature .slick-slide { width: 100% !important; margin: 0 8px; }
  .home-feature .slick-list  { margin: 0 -8px; }
}

.testimonial_sliders span.elementor-testimonial__name {
     padding-bottom: 0px !important;
}
#elementor-popup-modal-15396 .dialog-widget-content{
    max-width: 94% !important;
}
.woocommerce-shop .products.columns-3{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	gap: 30px;
}
.woocommerce-shop .products.columns-3::before, .woocommerce-shop .products.columns-3::after{
	content: unset !important; 
}
.woocommerce-shop .products.columns-3 .products-item{
	width: 30%;
}
@media only screen and (max-width: 1199px) and (min-width: 640px) {
.woocommerce-shop .products.columns-3{
	gap: 25px;
}
.woocommerce-shop .products.columns-3 .products-item{
	width: 47%;
}

}
@media only screen and (max-width: 649px)  {
	.woocommerce-shop .products.columns-3 .products-item, .products-item{
	width: 100%;
}
	.woocommerce-shop .products.columns-3 .products-item .products-item-inner, .products-item .products-item-inner{
	display: flex;
    flex-direction: column;
}
.woocommerce-shop .products.columns-3 .products-item .products-item-inner .products-img a. .products-item .products-item-inner .products-img a{
	width: 100%;
    text-align: center;
    display: block;
}
.woocommerce-shop .products.columns-3 .products-item .products-item-inner .p-list-bottom, .products-item .products-item-inner .p-list-bottom{
	    width: 100%;
}

.woocommerce-shop .products.columns-3 .products-item .products-item-inner .p-list-bottom .p-content .p-content-right, .products-item .products-item-inner .p-list-bottom .p-content .p-content-right{
	top: 10px;
}
}
/* Product CSS Close*/


/* subscription page css */

textarea.wpcf7-form-control.wpcf7-textarea.text-area {
    max-height: 111px;
    border: 0;
	padding: 6px 10px !important;
	border-radius:0;
}
.form_new input{
	padding: 6px 10px !important;
}
.form_new input:focus-visible, .form_new textarea:focus-visible {
    outline-offset: 0px !important;
    border: none;
    outline: 0 !important;
}
.submit_btn {
    text-align:center;
	margin-top:1rem;
}
.submit_btn input {
    background-image: linear-gradient(to right, #F4D77F, #C49430) !important;
    max-width: 400px;
    border-radius: 50px !important;
	font-size:18px;
	font-family: "Oswald", Raleway !important;
}
.submit_btn span.wpcf7-spinner {
    position: absolute;
}

/* new css */
.subscribe_box .elementor-element.elementor-element-8871eaf.e-con-full.e-flex.e-con.e-child {
    padding: 0;
}
.subscribe_box .legend-plan {
    padding: 0px;
    overflow: hidden;
}
/* .subscribe_box .legend-plan  .e-child {
    padding: 31px 40px;
    
} */

.subscribe_box .legend-plan .elementor-shape-top { display: none;}

.subscribe_box .legend-plan h2 { background: linear-gradient(180deg, #ffd14c 40%, #8f640b 100%);
    font-size: 40px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-family: 'Oswald' !important;
    -webkit-text-stroke: 0.5px #ffffff;
    line-height: 55px !important;
    margin-bottom: 0 !important;
    padding: 15px 0 !important;
}


/* price toggle */
.subscribe_box .subs_box1 #planText { font-size: 16px; margin-top: 0px; }
.subscribe_box .subs_box1 #planText  .switch { display: block;  margin: auto; position: relative;} 
.subscribe_box .subs_box1 #planText .elementor-widget-container { display: none;} 
.subscribe_box .subs_box1 .toggler .elementor-widget-container { display: none;}
.subscribe_box .subs_box1 .toggler .switch { display: none; }
.subscribe_box .subs_box1 #planText .switch::before { position: absolute; content: 'Monthly'; left: -75px; top: 9px; color: #fff; font-family: 'Poppins';
    font-weight: 500;}
.subscribe_box .subs_box1 #planText .switch::after { position: absolute; content: 'Annually'; right: -82px; top: 9px; color: #fff; font-family: 'Poppins';
    font-weight: 500;}
.subscribe_box .subs_box1 #planText h1 { font-family: "Oswald";  font-size: 55px; color: #FFFFFF; font-weight: bold;}
.subscribe_box .subs_box1 #planText b { font-size: 30px;}
.subscribe_box .subs_box1 #planText span { font-family: "Oswald";  font-size: 20px; color: #FFFFFF; font-weight: bold;}

.free-forver h1 { display: flex; align-items: baseline; justify-content: center; font-family: "Oswald";  font-size: 55px; font-weight: bold;}
.free-forver h1 b  { font-size: 30px;}
.free-forver h1 span { font-family: "Oswald";  font-size: 20px; font-weight: bold;}


/* Faqs */

.faqs .e-n-accordion-item summary { display: flex;  justify-content: space-between; align-items: center;}

/* Scedule form */

.scedule-form .submit_btn input { border: 1px solid #A67D1F !important;}



/* end new css */


.form_new .wpcf7-not-valid-tip{
	position: absolute;
    top: 23px;
	font-size:14px;
}
.collapse_accord .e-n-accordion-item {
    border-color: #c49430 !important;
	margin-bottom:1.5rem !important;
}
.collapse_accord summary.e-n-accordion-item-title {
    border-color: #c49430 !important;
	border-radius: 20px;
	background: rgba(211, 158, 49, 0.1);
	padding: 0.8rem 1.5rem;
}
.collapse_accord .e-con-full.e-flex.e-con.e-child {
    border-color: #fff;
}
.collapse_accord .e-con-full.e-flex.e-con.e-child p{
	margin-bottom:0px;
	    font-family: "Poppins", Raleway;
}
.collapse_accord span.e-n-accordion-item-title-icon {
    background-color: #fff;
    padding: 5px;
}
.collapse_accord span.e-n-accordion-item-title-icon i {
	color:#c49430 !important;
}
.team_work_sc{
	position:relative;
	background:#eee;
}
.team_work_img{
	position:absolute;
	top:85px;
	right: 0;
	z-index:9;
}
.team_work_img img { 
    box-shadow: 20px 22px 1px #c4943030 !important;
    border-radius: 20px !important;
}

.new_form2 select.wpcf7-form-control.wpcf7-select {
    min-width: 100%;
    max-width: 100%;
    border: 0;
    border-bottom: 1px solid #A8A8A8;
    border-radius: 0;
	height:40px;
	color: #A8A8A8;
	font-size:12px;
	padding:0;
	background:#fff !important;
}
.new_form2 input {
    border-bottom: 1px solid #A8A8A8 !important;
	color:#A8A8A8;
}
.new_form2 textarea {
    min-width: 480px;
    height: 100px;
	border: 0;
    border-radius: 0;
    border-bottom: 1px solid #A8A8A8;
	color:#A8A8A8;
}
.new_form2 {
    background: #fff;
    padding: 40px;
	border-radius:30px;
}
.new_form2 .d-flex .fields  { width: 50%;}
.new_form2 .d-flex .fields label { width: 100%;}

.new_form2 input:focus-visible, .new_form2 textarea:focus-visible {
    outline-offset: 0px !important;
    border: none;
    outline: 0 !important;
}
.new_form2 input.wpcf7-form-control.wpcf7-submit.has-spinner{
	background-image: linear-gradient(to right, #F4D77F, #C49430) !important;
    border-radius: 15px !important;
	font-size:18px;
	font-family: "Oswald", Raleway !important;
}
.new_form2 h2{
	font-family: "Oswald", Raleway !important;
}
.new_form2 .pd-22{
	padding-top:30px;
}
.new_form2:focus-visible {
    outline: 0px !important;
}
.new_form2 span.wpcf7-spinner {
    position: absolute;
}
.page-id-20327 {
	background:#eee;
}
.subs_box1 .pro-plan {
    background: rgba(196, 148, 48, 0.4);
    border-radius: 30px 30px 0 0;
	padding:31px 0;
}

.subs_box1 .pro-plan h2 { margin-bottom: 0 !important;}
.subs_box1 .pro-plan h2::before {
    content: '';
    background-image: url('../images/most-popular.png');
    width: 100px;
    height: 100px;
    position: absolute;
    background-size: cover;
    top: -25px;
    right: 100px;
}

.legent-text h3 {
   -webkit-text-stroke: 0.3px #ffffff;
   color: #141414 !important;
}
.legent-text h4 {
      -webkit-text-stroke: 0.3px #ffffff;
}

.legent-text h5 span {
      -webkit-text-stroke: 0.3px #ffffff;
}

@media screen and (min-width:701px) and (max-width:1024px){
	.new_form2 textarea {
		min-width: 300px;
	}
	.new_form2 select.wpcf7-form-control.wpcf7-select {
    min-width: 150px;
}
	.what_do_img{
    position: relative;
    top:0rem;
}
	.subs_box1 h2::before {
	right:14px;
	}

    .scedule-form .form_new { flex-direction: column; }
    .scedule-form .form_new div:first-child { margin-right: 0 !important; }
    .scedule-form .form_new .text_field label {width: 100%;}


    /* talk Our Team Form */

   .talk-our-team-form form .new_form2 div { flex-direction: column;}
   .talk-our-team-form form .new_form2 div label { width: 100%; }
   .talk-our-team-form form .new_form2 .fields { margin-right: 0 !important; width: 100%;}
   .talk-our-team-form form .new_form2 h2 { font-size: 30px !important;}

   .newsletter-form { width: 100% !important;}

}
@media screen and (min-width:300px) and (max-width:700px){
	.new_form2 select.wpcf7-form-control.wpcf7-select {
    width: 100%;
}
	.new_form2 textarea {
		    min-width: 292px;
	}
	.what_do_img{
    position: relative;
    top:0rem;
}
	.subs_box1 h2::before {
	right: 20px !important;
	}
	.team_work_img{
		position:relative;
		top:0;
	}
	.elementor-20327 .elementor-element.elementor-element-5aa4764::before{
		background-image:none;
	}
}


/*Mosin Css*/

button.button.media-button.button-primary.button-large.media-button-select {
    display: none;
}