/*************** Import Css **************/

@import "common.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
/*font-family: 'Poppins', sans-serif;*/
/*font-family: 'Montserrat', sans-serif;*/
/********************* Header Css ******************/
.header-area {
	padding: 25px 0px;
	position: sticky;
    top: 0px;
    z-index: 99;
    background: #000;
	border-bottom:1px solid #464646;
}

.rights-icons-wrapper {
	margin-left: 25px;
	border-left: none;
	padding-left: 15px;
}

.rights-icons-wrapper>div {
	margin-left: 30px;
}

.tooltip-inner {
	background-color: #fff !important;
	color: #000;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
	border-top-color: #fff !important;
}
.mobile-menu-button-wrapper{
	position:fixed;
	top:0px;
	min-height:100vh;
	right:-100%;
	width:100%;
	/*background-color:rgba(0,0,0,0.7);*/
	display:none;
	z-index:999;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.mobile-menu-area{
	background:#ecba65;
	width:50%;
	margin-left:auto;
	height:100%;
	position:absolute;
	right:0px;
	padding:30px;
	z-index: 99;
}
.mobile-menu-button-wrapper.active{
	right:0px;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
	background: rgb(0 0 0 / 70%);
}
.mobile-menu-area ul{
	padding:0px;
	margin:0px;
	list-style:none;
}
.mobile-menu-area ul li{
	padding-bottom:15px;
	margin-bottom:15px;
	border-bottom:1px solid #000
}
.mobile-menu-area ul li:last-child{
	border-bottom:0px;
}
.mobile-menu-area ul li a{
	font-size:16px;
	color:#000;
}
.close-button{
	position:absolute;
	top:20px;
	right:30px;
}
body{
	position:relative;
}
/*body:after{
	position:absolute;
	top:0px;
	min-height:100vh;
	left:0px;
	width:100%;
	background-color:rgba(0,0,0,0.7);
	z-index:99;
	content:'';
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
	opacity:0;
	pointer-events:none;
}*/
body.stop-scroll{
	overflow:hidden;
}
body.stop-scroll:after{
	opacity:1;
	pointer-events:all;
}
/*=================== For White Theme ================*/
body.white-theme .for-white-theme {
	display: block !important
}

body.white-theme .for-black-theme {
	display: none;
}

body.white-theme .tooltip-inner {
	background-color: #000 !important;
	color: #fff;
}

body.white-theme .bs-tooltip-top .arrow::before,
body.white-theme .bs-tooltip-auto[x-placement^="top"] .arrow::before {
	border-top-color: #000 !important;
}

body.white-theme .rights-icons-wrapper>div img {
	filter: invert(1)
}

/* body.white-theme .rights-icons-wrapper {
	border-left: 1px solid #000;
} */

/*===================================*/
/**************** Banner Slider Area *****************/
.each-banner-slider {
	min-height: calc(100vh - 144px);
	padding: 150px 0px;
}

.banner-content {
	max-width: 556px;
	margin-right: 115px;
}

.banner-content p {
	margin-bottom: 45px;
}
.each-collection-image img{
	width:100%;
}
.banner-content a.common-button.transparent-button {
	font-size: 24px;
	color: #fff;
	line-height: 48px;
	min-width: 278px;
}

.banner-content a.common-button.transparent-button:hover {
	color: #000;
}

.banner-slider .swiper-button-prev {
	left: 70px;
}

.banner-slider .swiper-button-next {
	right: 70px;
}

/**************** End:Banner Slider Area *****************/

/**************** Collection Area ****************/
.collection-area {
	padding: 45px 0px 90px;
}

.company-name-image {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 23%;
}

.each-collection-list:after {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 30%;
	content: '';
	background: linear-gradient(to bottom, rgba(163, 136, 81, 0) 0%, rgba(163, 136, 81, 0.02) 12%, rgba(163, 136, 81, 0.1) 24%, rgba(163, 136, 81, 0.26) 37%, rgba(163, 136, 81, 0.5) 54%, rgba(163, 136, 81, 0.62) 65%, rgba(163, 136, 81, 0.62) 100%);
	opacity: 0;
}

.collect-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    bottom: 10%;
    display: grid;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    width: 100%;
    overflow: hidden;
    grid-template-columns: auto auto;
}

.collect-content h3 {
	font-family: 'Athene';
	color: #fff;
	font-size: 30px;
	margin-bottom: -95px;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
}

.collect-content .common-button {
	opacity: 0;
	transition: all 0.1s;
	-webkit-transition: all 0.1s;
	pointer-events: none;
}

.each-collection-list:hover:after {
	opacity: 1;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.each-collection-list:hover .collect-content h3 {
	margin-bottom: 30px;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
}

.each-collection-list:hover .common-button {
	opacity: 1;
	transition: all 1s;
	-webkit-transition: all 1s;
	pointer-events: all;
}

/*=================== For White Theme ================*/
body.white-theme h2 {
	color: #000;
}

/*===================================*/
/**************** End:Collection Area ****************/
/**************** Footer Area ************/
.footer-content-wrapper {
	border-top: 1px solid #ecba65;
	padding: 42px 0px;
}

.footer-content-left p {
	margin: 0px;
}

.footer-menu ul {
	display: flex;
	margin: 0px;
	padding: 0px;
	list-style: none;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.footer-menu ul li {
	padding: 0px 23px;
	position: relative;
}

.footer-menu ul li:last-child {
	padding-right: 0px;
}

.footer-menu ul li:first-child {
	padding-left: 0px;
}

.footer-menu ul li a {
	font-size: 16px;
	color: #fff;
}

.footer-menu ul li:before {
	width: 1px;
	height: 15px;
	background: #ecba65;
	content: '';
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}

.footer-menu ul li:first-child:before {
	display: none;
}

.footer-menu ul li a:hover {
	color: #ecba65;
}

/*=================== For White Theme ================*/
body.white-theme .footer-content-left p {
	color: #000;
}

body.white-theme .footer-menu ul li a {
	color: #000;
}

body.white-theme .footer-menu ul li a:hover {
	color: #ecba65;
}

/*===================================*/
/**************** Chairman's Collection ****************/
.download-stike-button a.common-button.transparent-button {
	color: #fff;
	padding: 12px 25px;
	font-size: 24px;
}

.download-stike-button a.common-button.transparent-button:hover {
	color: #000;
}

.download-stike-button a.common-button.transparent-button span img {
	filter: invert(1);
	margin-right: 15px;
}

.download-stike-button a.common-button.transparent-button:hover span img {
	filter: invert(0);
}

.download-stike-button {
	margin-left: 35px;
}

/*=================== For White Theme ================*/
body.white-theme .download-stike-button a.common-button.transparent-button {
	color: #000;
}

body.white-theme .download-stike-button a.common-button.transparent-button span img {
	filter: invert(0);
}

body.white-theme .download-stike-button a.common-button.transparent-button {
	border: 2px solid #d2ba8b;
}

/*===================================*/
.chairmans-category .each-collection-list:before {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 70%;
	content: '';
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.03) 13%, rgba(0, 0, 0, 0.11) 24%, rgba(0, 0, 0, 0.24) 35%, rgba(0, 0, 0, 0.5) 54%, rgba(0, 0, 0, 0.63) 65%, rgba(0, 0, 0, 0.63) 100%);
	opacity: 1;
}

/*************** Product List Area ****************/
.product-list-banner {
	min-height: 340px;
	padding: 100px 0px;
}

.collection-list-area {
	padding: 75px 0px 0px;
}

.filter-area h3 {
	font-family: 'Athene';
	font-size: 24px;
	display: inline-block;
	margin-bottom: 30px;
	position: relative;
}

.filter-area h3:after {
	width: 15px;
	height: 13px;
	background: #ecba65;
	position: absolute;
	bottom: 6px;
	left: -2px;
	content: '';
	z-index: -1;
}

.related-dropdown ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.check-label {
	display: block;
	position: relative;
	padding-left: 36px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #ffffff;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	margin-bottom: 0;
	line-height: 25px;
}

.check-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 18px;
	width: 18px;
	border: 1px solid #ecba65;
	border-radius: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.check-label input:checked~.checkmark {
	background-color: #ecba65;
}

.check-label .checkmark:after {
	width: 5px;
	height: 9px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	content: "";
	position: absolute;
	display: none;
	top: 3px;
}

.check-label input:checked~.checkmark:after {
	display: block;
}

.each-dropdown-category-wrapper h5 {
	padding-bottom: 18px;
	border-bottom: 1px solid #464646;
	position: relative;
	cursor:pointer;
}

.each-dropdown-category-wrapper h5:after {
	content: url("../images/down-arrow.png");
	position: absolute;
	right: 0px;
	top: -5px;
}
.each-dropdown-category-wrapper h5.active:after{
	transform:rotate(180deg);
	top:3px;
}
.related-dropdown {
	padding: 35px 0px 15px;;
	display:none;
}
.related-dropdown.active{
	display:block;
}
.related-dropdown ul li:not(:last-child) {
	margin-bottom: 10px;
}

.toggle-button-cover {
	display: inline-flex;
	border: 1px solid #ecba65;
}

.toggle-button-cover>div {
	width: 124px;
	height: 40px;
}

.toggle-button-cover>div button {
	width: 100%;
	height: 100%;
	background: transparent;
	border: 0px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.toggle-button-cover>div>button.active {
	background: #ecba65;
	color: #000;
}

:focus {
	outline: 0px !important;
}

.price-input {
	width: 100%;
	display: flex;
	margin: 30px 0 35px;
}

.field {
	position: relative;
}

.field input {
	width: 130px;
	outline: none;
	font-size: 16px;
	border-radius: 0px;
	padding-left: 15px;
	padding-right: 15px;
	border: 1px solid #ecba65;
	-moz-appearance: textfield;
	line-height: 37px;
	background: transparent;
	color: #494949;
}
.field .price-range-number-wrapper input{
	padding-left:35px;
}
.price-range-number-wrapper:before {
	content: '\20B9';
	font-family: 'Athene';
	position: absolute;
	left: 18px;
	top: 3px;
    color: #494949;
    font-size: 22px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.slider {
	height: 1px;
	position: relative;
	background: #ddd;
	border-radius: 5px;
}

.slider .progress {
	height: 4px;
	left: 20px;
	right: 0px;
	position: absolute;
	border-radius: 5px;
	background: #ecba65;
	top: -1px;
}

.range-input {
	position: relative;
}

.range-input input {
	position: absolute;
	width: 100%;
	height: 5px;
	top: -2px;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
	height: 17px;
	width: 17px;
	border-radius: 50%;
	background: #ecba65;
	pointer-events: auto;
	-webkit-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
	height: 17px;
	width: 17px;
	border: none;
	border-radius: 50%;
	background: #17a2b8;
	pointer-events: auto;
	-moz-appearance: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.field span {
	color: #ffffff;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	margin-bottom: 10px;
	display: block;
}

.field input:focus {
	color: #ffffff;
}
.product-list-left-filter{
	max-width: 650px;
    border-right: 1px solid #464646;
    padding-right: 45px;
	padding-bottom:40px;
	max-height:100vh;
	overflow-y: auto;
	position: sticky;
}
.product-list-left-filter::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #000;
}

.product-list-left-filter::-webkit-scrollbar
{
	width: 3px;
	background-color: #000;
}

.product-list-left-filter::-webkit-scrollbar-thumb
{
	background-color: #fff;
}


body.white-theme .product-list-left-filter::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #fff;
}

body.white-theme .product-list-left-filter::-webkit-scrollbar
{
	width: 3px;
	background-color: #fff;
}
body.white-theme .product-list-left-filter::-webkit-scrollbar-thumb
{
	background-color: #000;
}
.each-dropdown-category-wrapper{
	margin-bottom:20px;
}
.highlighted-category h5{
	font-size:16px;
	color:#000;
	background:#ecba65;
	padding:12px 25px;
	display:inline-block;
}
.link-to-other-category{
	border-bottom:1px solid #ecba65;
	margin-bottom:40px;
}
.link-to-other-category a{
	font-size:16px;
	color:#fff;
	display:inline-block;
	padding-bottom:18px;
}
.link-to-other-category a:hover{
	color:#ecba65;
}
.collections-filter{
	margin-bottom:15px;
}
.search-number-area p{
	margin:0px;
	padding-left:10px;
}
.select-dropdown{
	font-size:16px;
	color:#fff;
	border:2px solid #ecba65;
	background:transparent;
	min-width:232px;
	padding:10px 15px;
	appearance: none;
	-webkit-appearance: none;
	background:url('../images/down-arrow.png') no-repeat 95% center / 10px
}
.sort-by-area  p{
	margin-right:25px;
	margin-bottom:0px;
}
.filter-reasult-top{
	border-bottom:2px solid #ecba65;
	padding-bottom:30px;
}
.filter-result-listing-wrapper{
	padding:45px 0px 45px 10px;
}
.wishlist-icon{
	position:absolute;
	top:10px;
	right:15px;
	font-size:19px;
	color:#ffffff;
	cursor:pointer;
	z-index:1;
}
.wishlist-icon.active{
	color:#d0a54e;
}
/* .best-seller{
	background: #ffe900;
    display: inline-block;
    position: absolute;
    top: -5px;
    left: -25px;
    padding: 14px 25px 5px;
    text-align: center;
    transform: rotate(-45deg);
	z-index:1;
}
.best-seller p{
	margin: 0px;
    font-size: 10px;
    line-height: 11px;
    color: #000;
    text-transform: uppercase;
} */

.best-seller {
    background: #FFE900;
    display: inline-block;
    position: absolute;
    top: -4px;
    left: -30px;
    padding: 15px 25px 6px 25px;
    text-align: center;
    transform: rotate(-45deg);
    z-index: 1;
}

.best-seller p {
    margin: 0px;
    font-size: 10px;
    line-height: 11px;
    color: #000;
    text-transform: uppercase;
    word-wrap: break-word;
    width: 46px;
}
.each-result-image {
	overflow:hidden;
}
.limited-stock{
	background:#ecba65;
	clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
    position: absolute;
    bottom:0px;
    left: 0px;
	z-index:1;
}
.limited-stock p{
    color: #000;
    font-size: 11px;
    line-height: 21px;
    margin: 0px;
    padding: 1px 8px 1px 8px;
    line-height: 20px;
    min-width: 80px;
}
.stock-wrapper{
	position:absolute;
	right:10px;
	bottom:1px;
	line-height: 14px;
	z-index:1;
}
.stock-amount{
	border-radius:5px;
	min-width:70px;
	text-align:center
}
.stock-wrapper p{
	display:inline-block;
	color:#fff;
	font-size:14px;
	line-height: 20px;
	margin:0px;
	padding: 0px 8px;
}
.stock-size{
	width:20px;
	height:20px;
	border-radius:100%;
	background:#ecba65;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-left: 10px;
}
.stock-size p{
	color: #000;
}
.stock-amount.green-bg{
	background:#009460;
}
.stock-amount.yellow-bg{
	background:#fad215;
}
.stock-amount.yellow-bg p{
	color:#000;
}
.stock-amount.red-bg{
	background:#ce2029;
}
.each-result-item-details{
	padding-top:30px;
}
.item-name h5{
	font-size:16px;
	font-weight:600;
	color:#fff;
	margin-bottom:7px;
}
.item-name p{
	color:#cccccc;
	margin:0px;
}
.item-price p{
	font-size:16px;
	color:#ecba65;
	margin: 0px;
    line-height: 18px;
}
.quantity-button{
	/*width:149px;*/
	border:1px solid #ecba65;
	padding: 14px 10px;
}
.quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.quantity__minus,
.quantity__plus {
  display: block;
  width: 22px;
  height: 23px;
  margin: 0;
  background: transparent;
  text-decoration: none;
  text-align: center;
  line-height: 23px;
  font-size:20px;
  font-family: 'Poppins', sans-serif;
}
.quantity__input {
  width: 65px;
  height: 19px;
  margin: 0;
  padding: 0;
  text-align: center;
  border-top: 0px solid #dee0ee;
  border-bottom: 0px solid #dee0ee;
  border-left: 2px solid #afafaf;
  border-right: 2px solid #afafaf;
  background:transparent;
  color: #fff;
  font-size:16px;
  font-family: 'Poppins', sans-serif;
  font-weight:600;
}
.quantity__minus:link,
.quantity__plus:link {
  color: #fff;
} 
.quantity__minus:visited,
.quantity__plus:visited {
  color: #fff;
}
.item-button-area{
	margin:20px 0px 25px;
}
.item-right-button{
	width:100%;
	border:1px solid #ecba65;
	padding: 16px 10px;
}
.item-right-button p{
	margin:0px;
	text-align:center;
	line-height:18px;
}
.item-right-button .unit-text{
	font-size:16px;
	line-height:18px;
	position: absolute;
    right: 12px;
    top: 15px;
}
.item-button-area  > div{
	width:calc(50% - 8px)
}
.add-to-cart-button a.common-button{
	width:100%;
	border:0px;
	padding: 9px 15px 9px 15px;
	border:1px solid #ecba65
}
.each-result-item{
	margin-bottom:30px;
}
.each-result-image > img{
	height:auto;
	object-fit:cover;
}
.product-filter-for-mob{
	display:none;
}
.chairmans-collection a{
	font-size: 16px;
    color: #fff;
    border: 2px solid #ecba65;
    background: transparent;
    min-width: 232px;
    padding: 10px 35px;
	display: inline-block;
}
.filter-area a{
	font-size: 16px;
    color: #fff;
    border: 2px solid #ecba65;
    background: transparent;
    padding: 10px 25px;
	display: inline-block;
}
.filter-area a span{
	margin-right:12px;
}
.filter{
	position:fixed;
	z-index:9999;
	width:100%;
	height:100%;
	left:-100%;
	top:0px;
	background:#000;
	transition:all .5s;
}
.filter.active{
	left:0px;
}
.tabs-left {
	border-bottom: none;
	border-right: 1px solid #ddd;
}
.tabs-left>li {
	float: none;
	margin:0px;
}
.tabs-left>li>a.active,
.tabs-left>li>a.active,
.tabs-left>li>a.active:focus {
	border-bottom-color: #ddd;
	border-right-color: transparent;
	background:#ecba65;
	border:none;
	border-radius:0px;
	margin:0px;
	padding: 12px 15px;
	border-radius: 0px 0px 0px 0px;
	font-weight:bold;
	font-size: 13px;
	color:#000;
}
.nav-tabs>li>a{
	/* margin-right: 2px; */
	
	border: 0px solid transparent;
	/* border-radius: 4px 4px 0 0; */
	font-size: 13px;
}
/*.tabs-left>li>a.active::after{content: "";
	position: absolute;
	top: 10px;
	right: -10px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #f90;
	display: block;
	width: 0;
}*/
.filter-left{
	width:130px;
	float:left;
}
.filter-right{
	width:calc(100vw - 131px);
	float:right;
	height: calc(100vh - 153px);
	float: right;
	padding: 20px;
	box-sizing: border-box;
}
.filter-left > ul{
	display: block;
	height: calc(100vh - 153px);
	border-right: 1px solid #464646;
	padding: 0px 0px 0px 0px;
}
.filter-left > ul > li{	
	display:block;
	padding: 0px 0px !important;
}
.filter-left > ul > li > a{	
	display:block;
}
.filter-header {
	display: table;
	padding: 15px;
	border-bottom: 1px solid rgb(112 112 112 / 22%);
	-webkit-box-shadow: 0px 0px 17px 0px rgb(0 0 0 / 27%);
	-moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.27);
	box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 16%);
}
.filter-header > div{
	display:table-cell;
	vertical-align:middle;
	width:100%;
}
.filter-header > div:first-child{
	text-align:left;
	font-size: 12px;
}
.filter-header > div:first-child strong{
	font-family: 'Athene';
    font-size: 24px;
    display: inline-block;
    position: relative;
	font-weight:normal;
}
.filter-header > div:first-child strong:after{
	width: 15px;
    height: 13px;
    background: #ecba65;
    position: absolute;
    bottom: 9px;
    left: -2px;
    content: '';
    z-index: -1;
}
.filter-header > div:last-child{
	text-align:right;
	white-space: nowrap;
}
.filter-header > div:last-child a{
	font-family: 'Poppins', sans-serif;
	font-weight:400;
	color:#ecba65;
	font-size:16px;
}
.filter-header > div:first-child img{
	height: 18px;
	margin-top: -5px;
	margin-right: 15px;
}
.f-footer{
	width:100%;	
	border-top: 1px solid rgb(112 112 112 / 22%);
	padding: 15px 15px;
	display:flex;
	justify-content: flex-end;
	position: fixed;
	bottom: 0;
}
.filter-left > ul > li > a{	
	padding: 12px 15px;
	border-radius: 0px 0px 0px 0px;
	color:#fff;
	border-bottom:1px solid #464646;
}
.buy-button a{
	background: #ecba65 !important;
	color: #000;
	padding: 12px 45px;
	display:inline-block;
}
/*=================== For White Theme ================*/
body.white-theme .check-label{
	color:#000;
}
body.white-theme .link-to-other-category a {
    color: #000;
}
body.white-theme .each-dropdown-category-wrapper h5{
	border-bottom: 1px solid #d3d3d3;
}
body.white-theme .product-list-left-filter {
    border-right: 1px solid #d3d3d3;
}
body.white-theme .search-number-area p, body.white-theme .sort-by-area p {
    color:#000;
}
body.white-theme .select-dropdown, body.white-theme .chairmans-collection a, body.white-theme .filter-area a {
    border: 2px solid #ecba65;
	color:#000;
}
body.white-theme .item-name h5 {
    color: #000;
}
body.white-theme .item-name p {
    color: #000;
}
body.white-theme .item-price p {
    color: #000;
}
body.white-theme .quantity__minus:visited, body.white-theme .quantity__plus:visited {
    color: #000;
}
body.white-theme .quantity__input{
	color:#000
}
body.white-theme .item-right-button p {
    color:#000
}
body.white-theme .toggle-button-cover {
    border: 1px solid #d3d3d3;
}
body.white-theme .toggle-button-cover>div button{
	color:#000
}
body.white-theme .field span{
	color:#000
}
body.white-theme .field input:focus {
    color: #000;
}
body.white-theme .slider {
    background: #000;
}
body.white-theme .checkmark {
    border: 1px solid #cacaca;
}
body.white-theme .filter-area a span img {
    filter:invert(1)
}
body.white-theme .filter{
	background: #fff;
}
body.white-theme .filter-left > ul > li > a {
    color: #000;
	border-bottom: 1px solid #d3d3d3;
}
body.white-theme .filter-header > div:first-child img{
	filter:invert(1)
}
body.white-theme .filter-left > ul {
    border-right: 1px solid #d3d3d3;
}

/************ Product Details Area ************/
.product-details-area{
	padding-top:20px;
	padding-bottom:10px;
}
.product__carousel .gallery-top .swiper-slide {
	position: relative;
	overflow: hidden;
}
.product__carousel .gallery-top .swiper-slide a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.product__carousel .gallery-top .swiper-slide a img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	   max-width: unset;
}
.product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
	min-width: 100%;
	min-height: 100%;
	max-width: unset;
}
.product__carousel .swiper-button-next.swiper-button-white,
.product__carousel .swiper-button-prev.swiper-button-white {
	color: #fff;
}
.product__carousel .gallery-thumbs .swiper-slide {
	position: relative;
	height: calc(100% - 2px);
}
.product__carousel .gallery-thumbs .swiper-slide img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	max-width: 100%;
}
.gallery-top{
	margin-bottom:30px;
}
.product-description h1{
	font-size:36px;
	margin-bottom:20px;
}
.product-description h1:before{
	display:none;
}
.product-description p{
	margin-bottom:22px;
}
.product-price h2{
	font-size:36px;
	color:#ecba65;
	font-weight:600;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 15px;
}
.product-price h2:before{
	display:none;
}
.product-details .toggle-button-cover{
	margin-bottom:20px;
}
.product-quantity-area{
	max-width:420px;
}
.product-details .quantity-button, .product-details .item-right-button {
    padding: 27px 10px;
}
.product-details .item-right-button .unit-text {
    top: 25px;
}
.product-details .item-button-area > div {
    width: calc(50% - 14px);
}
.product-button-area a.common-button{
	background:transparent;
	border:1px solid #ecba65;
	color:#fff;
	font-family: 'Montserrat', sans-serif;
	min-width:314px;
	padding: 21px 15px 21px 15px;
}
.product-button-area a.common-button:hover{
	background:#ecba65;
	color:#000;
}
.product-button-area a.common-button span{
	margin-right:15px;
}
.product-button-area a.common-button span img{
	vertical-align: baseline;
}
.product-button-area a.common-button:hover span img{
	filter:invert(1);
}
.product-button-area{
	gap:28px;
}
.product-quantity-area .item-button-area {
    margin: 20px 0px 45px;
}
.divider{
	margin-top: 65px;
    margin-bottom: 50px;
    border: 0;
    border-top: 1px solid #464646;
}
.product-detailed-description h5{
	font-size:24px;
	font-weight:600;
	color:#fff;
	margin-bottom:20px;
}
.product-detailed-description h6{
	font-weight:600;
	margin-bottom:5px;
}
.product-detailed-description p{
	margin-bottom:40px;
}
.product-details{
	padding-left:20px;
}
.product-details-image-area .stock-wrapper {
    bottom: 20px;
}
.similar-product-area .container h2{
	text-align:center;
}
.similar-product-area .swiper-button-prev, .most-searched-product-area .swiper-button-prev{
	left: -11px;
}
.similar-product-area .swiper-button-next, .most-searched-product-area .swiper-button-next{
	right: -11px;
}
.similar-product-area, .most-searched-product-area{
	padding-bottom:30px;
}
/*=================== For White Theme ================*/
body.white-theme .product-description h1 {
    color:#000
}
body.white-theme .product-description p{
	color:#000
}
body.white-theme .quantity__minus:link, body.white-theme .quantity__plus:link {
    color: #000;
}
body.white-theme .product-button-area a.common-button {
    color: #000;
}
body.white-theme .product-button-area a.common-button span img{
	filter:invert(1)
}
body.white-theme .product-detailed-description h5{
	color:#000
}
body.white-theme .product-detailed-description p {
    color:#000
}
body.white-theme .header-area{
	background:#fff;
	border: 1px solid #d3d3d3;
}
/************** Cart Wrapper **************/
.cart-wrapper{
	padding:45px 0px;
}
.cart-content-wrapper{
	padding:0px 130px;
}
.cart-items-header{
	border:1px solid #ecba65;
	border-radius:2px;
	padding:20px 25px;
	margin-bottom:40px;
}
.remove-btn ul{
	display:flex;
	list-style:none;
	margin-bottom:0;
	text-transform:uppercase;
}
.remove-btn ul li:first-child{
	padding-right:40px;
	position:relative;
}
.remove-btn ul li:first-child::after{
	content:'';
	position:absolute;
	top:50%;
	right:18px;
	width:1px;
	height:60%;
	transform:translatey(-50%);
	background-color:#fff;
}
.remove-btn ul li a{
	font-weight:600;
}
.remove-btn ul li a:hover{
	color:#fff;
}
.cart-items-header input[type=checkbox], .cart-items-listing input[type=checkbox]{
	appearance:none;
	-webkit-appearance:none;
	height:20px;
	width:20px;
	background-color:#fff;
	cursor:pointer;
	display:flex;
	justify-content:center;
	align-items:center;
}
.cart-items-header input[type=checkbox]:after, .cart-items-listing input[type=checkbox]:after{
	font-family:"Font Awesome 6 Free";
	font-weight:900;
	content:"\f00c";
	font-size:15px;
	color:#000;
	display:none;
}
.cart-items-header input[type=checkbox]:checked, .cart-items-listing input[type=checkbox]:checked{
	background-color:#ecba65;
}
.cart-items-header input[type=checkbox]:checked:after, .cart-items-listing input[type=checkbox]:checked:after{
	display:block;
}
.cart-items-header .checkbox, .cart-items-listing .checkbox{
    margin-right: 25px;
}
.cart-items-header h4{
	font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
}
.cart-heading h1{
	margin-bottom:35px;
}
.cart-items-listing .each-cart-items:last-child{
	margin-bottom:0px;
}
.each-cart-items{
	padding: 30px 25px;
    border: 1px solid #ecba65;
    margin-bottom: 35px;
	align-items:center;
}
.cart-item-pic{
	width:236px;
	height:236px;
}
.cart-item-pic img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.cart-items-details{
	position: relative;
    margin-left: 35px;
	max-width:222px;
}
.cart-items-details h4{
	font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
	margin-bottom: 5px;
}
.cart-items-details p{
	color:#bfbfbf;
	margin-bottom:17px
}
.cart-items-qty-and-size label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
	margin-right: 8px;
}
.cart-items-qty-and-size input {
    background-color: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    outline: none;
	width:10px;
}
.items-size input {
    border: 1px solid #ecba65;
    width: 37px;
    text-align: center;
	margin-right: 8px;
}
.each-cart-items a{
	font-size:16px;
	font-weight:600;
}
.items-price {
    padding-top: 20px;
	padding-bottom: 10px;
}
.items-price h5{
	font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ecba65;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
}
.add-to-wishlist {
    /*position: absolute;
    bottom: 0;
    left: 0;*/
}
.add-to-wishlist a:hover{
	color:#fff;
}
.cart-checkbox{
	align-items: center;
    display: flex;
}
.cross-icon{
	position:absolute;
	right:35px;
	top:30px;
}
.order-summary-wrapper{
	position:relative;
	padding-left:30px;
	height:100%;
}
.order-summary-wrapper::before{
	content:'';
	position:absolute;
	width:1px;
	height:100%;
	background-color:#464646;
	top:0px;
	left:0px;
}
.order-summary{
	padding:20px 35px 22px;
	background-color:rgba(255,255,255,0.05);
}
.order-summary h5{
	font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ecba65;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
	padding-bottom:30px;
}
.order-table table tr td{
	font-weight:400;
	font-size:16px;
	color:#fff;
	padding-bottom:18px
}
.order-table table tr td:nth-child(even){
	text-align:right;
}
.order-table table tr td span{
	color:#1ba649;
}
.order-table hr{
	border-top: 1px solid #464646;
	margin-top:5px;
	margin-bottom:25px;
}
table.total-amount tr td{
	padding:0px;
}
.place-order-btn-wrapper{
	margin-top:35px;
}
.place-order-btn-wrapper button{
	width:100%;
	border:1px solid #ecba65;
}
.order-summary-wrapper{
	max-width:542px;
}

/*=================== For White Theme ================*/
body.white-theme h1{
	color:#000;
}
body.white-theme .cart-items-header h4 {
    color: #000;
}
body.white-theme .cart-items-details h4 {
    color: #000;
}
body.white-theme .cart-items-qty-and-size label {
    color: #000;
}
body.white-theme .cart-items-qty-and-size input {
    color: #000;
}
body.white-theme .cart-items-header input[type=checkbox], 
body.white-theme .cart-items-listing input[type=checkbox] {
    border: 1px solid #cacaca;
}
body.white-theme .order-summary {
    background-color: rgba(0,0,0,0.05);
}
body.white-theme .order-table table tr td {
    color: #000;
}
body.white-theme .remove-btn ul li a:hover {
    color: #000;
}
body.white-theme .add-to-wishlist a:hover {
   color: #000;
}

#popupmodal .modal-content{
	border-radius:0px;
	border:0px;
	background:#ecba65;
}
.close{
	position: absolute;
    top: 6px;
    right: 12px;
    z-index: 1;
	opacity:1;
}
#popupmodal .modal-body{
	padding:0px;
}
#popupmodal .search-modal-content{
	padding:40px 45px;
}
.search-modal-content form{
	border:1px solid #000;
	padding: 0px 15px 0px 25px;
}
.search-modal-content input{
	width:100%;
	height:50px;
	line-height:61px;
	border:0px;
	background:transparent;
	font-size:16px;
	color:#000;
}
.search-modal-content button{
	background:none;
	border:0px;
}
.search-modal-content button img{
	width:26px;
	filter:invert(1);
}
.search-modal-content input::placeholder {
  color: #000;
  opacity: 1; /* Firefox */
}

.search-modal-content input::-ms-input-placeholder { /* Edge 12-18 */
  color: #000;
}
#productmodal .modal-dialog-centered{
	max-width:950px;
}
#productmodal .modal-content{
	border-radius:0px;
	border:0px;
	background:#ecba65;
}
.product-popup-content h2{
	color:#000;
	font-size:48px;
	margin-bottom: 30px;
}
#productmodal .modal-body{
	padding:0px;
}
.product-popup-content{
	padding:35px 55px;
}
.pdoduct-popup-content a{
	color: #fff;
    background: #000;
    padding: 14px 25px;
    display: inline-block;
    margin-top: 30px;
    min-width: 125px;
}
.wishlist-wrapper{
	max-width:1442px;
	padding:0px 50px;
}
.wishlist-wrapper h2{
	text-align:center;
	margin-bottom:0px;
}
/****************** My Order Page ***************/
.left-side-menu-area ul{
	padding:0px;
	margin:0px;
	list-style:none;
}
.left-side-menu-area ul li a{
	font-weight:400;
	font-size:16px;
	color:#fff;
	display:inline-block;
	padding-top:10px;
	padding-bottom:10px;
	padding-right:15px;
	min-width:245px;
}
.left-side-menu-area ul li.active a{
	background:#ecba65;
	padding-left:25px;
	color:#000;
	margin:10px 0px;
}
.my-order-listing-wrapper{
	padding-left:50px;
	padding-bottom:50px;
	border-left:1px solid #464646;
}
.my-order-listing-wrapper h3{
	font-weight:600;
	color:#ecba65;
	font-size:24px;
}
.my-order-listing-wrapper hr{
	border-top: 1px solid #464646;
	margin:30px 0px;
}
.each-listing{
	padding: 20px 35px 22px;
    background-color: rgba(255,255,255,0.05);
}
.each-info a{
	background:#ecba65;
	padding:10px 25px;
	color:#000;
	min-width:159px;
	display:inline-block;
}
.each-info a:hover{
	color:#fff;
	background:#000;
}
.each-info p{
	margin-bottom:10px;
}
.each-info h6{
	font-size:16px;
	font-weight:600;
	color:#ecba65;
}
.my-order-listing .each-listing:not(:last-child){
	margin-bottom:35px;
}

/*=================== For White Theme ================*/
body.white-theme .left-side-menu-area ul li a{
	color:#000;
}
body.white-theme .each-info p {
    color:#000;
}
body.white-theme .each-listing {
    padding: 20px 35px 22px;
    background-color: rgba(0,0,0,0.05);
}
/****************** End:My Order Page ***************/
/****************** My Order Details *************/
.my-order-details{
	border:1px solid #ecba65;
	padding:25px;
}
.my-order-details .each-listing{
	background:none !important;
}
.my-order-details .each-info p{
	margin-bottom:0px;
}
.tracking-area a{
	display:inline-flex;
	align-items:center;
}
.tracking-area a:hover{
	color:#fff;
}
.my-order-details-top-left{
	width:80%;
}
.my-order-details-top{
	margin-bottom:30px;
}
.each-item-order-details-thumb{
	width:220px;
	height:220px;
	overflow:hidden;
}
.each-item-order-details-thumb img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.each-item-order-details{
	padding: 25px 40px 25px;
    background-color: rgba(255,255,255,0.05);
}
.each-item-order-details:not(:last-child){
	margin-bottom:35px;
}
.details-box-1 h6{
	font-size:16px;
	color:#fff;
	font-weight:600;
}
.details-box-1 p{
	margin-bottom:3px;
	font-weight:400;
	color:#bfbfbf;
}
.unit-area p{
	color:#fff;
	margin:0px;
}
.unit-area p strong{
	font-weight:600;
	color:#ecba65;;
}
.unit-area{
	gap:35px;
	margin-bottom:15px;
}
.amount-area p{
	margin-bottom:5px;
	color:#fff;
}
.amount-area h4, .common-feild h5{
	font-size:16px;
	font-weight:600;
	color:#ecba65;;
}
.common-feild p{
	margin-bottom:0px;
}
.common-feild:not(:last-child){
	margin-bottom:25px;
}
.each-order-items-details{
	padding-left:40px;
	flex: 1;
}
.left-side-menu-area{
	position:sticky;
    max-height: 100vh;
}
body.white-theme .each-item-order-details {
    padding: 25px 40px 25px;
    background-color: rgba(0,0,0,0.05);
}
body.white-theme .details-box-1 h6 {
    color: #000;
}
body.white-theme .unit-area p , body.white-theme .amount-area p{
    color: #000;
}
body.white-theme .common-feild p {
    color: #000;
}
body.white-theme .tracking-area a:hover{
	color: #000;
}
body.white-theme a.back-arrow img{
	filter:invert(1);
}

#trackmodal .modal-dialog {
    max-width: 723px;
}
#trackmodal .modal-content{
	background:#000;
	padding:30px 45px;
	border-radius:0px;
	-webkit-box-shadow: 0px 0px 13px 0px rgba(255,214,132,1);
	-moz-box-shadow: 0px 0px 13px 0px rgba(255,214,132,1);
	box-shadow: 0px 0px 13px 0px rgba(255,214,132,1);
}
#trackmodal .modal-header h5{
	color:#ecba65;
	font-weight:600;
	text-transform:uppercase;
	font-size:16px;
}
#trackmodal .modal-header{
	border-bottom:1px solid #464646;
	padding-bottom:25px;
}
.history-tl-container{
	margin:auto;
	display:block;
	position:relative;
}
.history-tl-container ul.tl{
    padding:20px 0;
    display:inline-block;
}
.history-tl-container ul.tl li{
    list-style: none;
    margin:auto;
    margin-left:130px;
    min-height:50px;
    /*background: rgba(255,255,0,0.1);*/
    border-left:3px solid #fff;
    padding:0 0 0px 50px;
    position:relative;
}
.history-tl-container ul.tl li:last-child{ border-left:0;}
.history-tl-container ul.tl li::before{
    position: absolute;
    left: -15px;
    top: 5px;
    content: " ";
    border-radius: 500%;
    background: #ecba65;
    height: 30px;
    width: 30px;
    transition: all 500ms ease-in-out;
}
.history-tl-container ul.tl li:hover::before{
    border-color:  #ecba65;
    transition: all 1000ms ease-in-out;
}
ul.tl li .item-title{
	font-size:16px;
	font-weight:400;
	padding-bottom: 5px;
	color:#fff;
}
.item-detail{
	font-size:13px;
	color:#fff;
}
ul.tl li .timestamp{
    color: #8D8D8D;
    position: absolute;
    left: -150px;
    text-align: right;
    font-size: 12px;
}
.right-content{
	padding-bottom:50px;
}
.tl-item:last-child .right-content{
	padding-bottom:0px;
}
.table-bordered thead th {
	background: #000;
    text-align: center;
    border: 0px;
    font-size: 16px;
    font-weight: 600;
    padding: 24px 0px;
	color: white;
}
.table-bordered {
    border: 1px solid #000;
}
.table-bordered td{
	border:0px;
	font-size:16px;
	color:#000;
	padding:7px 0px;
	border-right:1px solid #000;
	width:33.33%;
}
.table-bordered th {
    border: 1px solid #000;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}
.order-success-wrapper{
	max-width:596px;
}
.order-success-wrapper > p{
	text-align:center
}
.order-success-section{
	padding:40px 0px;
}
.order-details{
	background-color:rgba(255,255,255,0.05);
	padding:20px 50px;
	margin-bottom: 30px;
}
.order-details table tr td{
	padding:15px 0px;
}
.order-details table tr td strong{
	color:#ecba65
}
.order-details table tr td:nth-child(even){
	text-align:right;
}
.each-success-order-image{
	width:72px;
}
.success-order-product-name-and-description h4{
	font-weight:600;
	margin-bottom:5px;
}
.success-order-product-name-and-description p{
	color:#bfbfbf;
	margin:0px;
}
.each-listing-left-area {
	gap:30px;
}
.unit-area{
	gap:30px;
}
.each-listing-right-area .unit-area{
	margin-bottom:0px;
}
.each-success-listing{
	border-top:1px solid #464646;
	padding:30px 0px;
}
.order-success-button{
	margin-top:30px;
}
.order-success-button a{
	background:#ecba65;
	color:#000;
	display:inline-block;
	padding:19px 25px;
	min-width:216px;
	text-align:center;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.order-success-button a:hover{
	color:#fff;
	background:#000;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.white-theme .order-success-wrapper > p {
    color:#000;
}
.white-theme .order-details {
    background-color: rgba(0,0,0,0.05);
}

@media (max-width: 1600px)
{
	.each-result-image > img {
		height: auto;
	}
}