/* ---------- Default Style Css ----------- */

/* @font-face {
  font-family:"Jost-Light";
  src: url(../fonts/jost/Jost-Light.ttf);
}
@font-face {
  font-family:"Jost-Regular";
  src: url(../fonts/jost/Jost-Regular.ttf);
}

@font-face {
  font-family:"Jost-Medium";
  src: url(../fonts/jost/Jost-Medium.ttf);
}
@font-face {
  font-family:"Jost-Bold";
  src: url(../fonts/jost/Jost-Bold.ttf);
}
@font-face {
  font-family:"Jost-SemiBold";
  src: url(../fonts/jost/Jost-SemiBold.ttf);
}
@font-face {
  font-family:"Jost-ExtraBold";
  src: url(../fonts/jost/Jost-ExtraBold.ttf);
} */

:root {
  --primary-color: #000000;
  --secondary-color: #e5c97f;
  --w-color: #ffffff;
  --heading-color: #000000;
  --bg-gray:#efefef;

}
body{
  scroll-behavior: smooth;
}

a, span, p{
  text-decoration: none !important;
  font-size: 16px;
  line-height: 27px;
}
img{
  width: 100%;
}
.p_right_0{
  padding-right: 0;
}
.p_left_0{
  padding-left: 0;
}
ul{
	margin-bottom: 0;
}

/* ---------- Default Style Css ----------- */
/* -------------- Header Style Css Start ------------------ */
.sidebar-open {
	overflow: hidden;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(22, 63, 121, .3);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}
.sidebar-open .overlay {
	opacity: 1;
	visibility: visible;
}
.main_header {
	padding: 20px 0;
	background-color:var(--bg-gray);
    position: fixed;
	top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: .5s;
}
.scroll-header.white{
	padding: 16px 0;
    box-shadow: -2px 0 6px 2px rgb(0, 0, 0, .1);
}
.header_logo a h1{
	margin-bottom: 0;
	font-size: 26px;
	color: var(--primary-color);
	font-weight: 700;
}
.header_logo a h1 span{
	color: var(--secondary-color);
	text-transform: uppercase;
	font-size: 28px;
	font-weight: 800;
}
.row-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.nav-list {
	display: flex;
	align-items: center;
}
.nav-list li {
	padding: 0 10px;
}
.nav-list li a {
	color: #003459;
	font-size: 16px;
	text-decoration: none;
    margin: 0 20px;
	position: relative;
	display: block;
    transition: .4s ease-in-out;
	font-weight: 700;
}

.nav-list li:last-child a {
	margin-right: 0;
}
.nav-list li a:hover{
  color: var(--secondary-color);
}

.h_hamburger {
	display: none;
	z-index: 99;
}
.h_hamburger .line {
	width: 25px;
	height: 1.5px;
	background-color: var(--primary-color);
	display: block;
	margin: 5px 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.h_hamburger .line:nth-child(2) {
	width: 15px;
}
.h_hamburger:hover {
	cursor: pointer;
}
.h_hamburger.is-active .line {
	background-color: var(--primary-color);
}
.h_hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}
.h_hamburger.is-active .line:nth-child(1) {
	-webkit-transform: translateY(6.5px) rotate(45deg);
	-ms-transform: translateY(6.5px) rotate(45deg);
	-o-transform: translateY(6.5px) rotate(45deg);
	transform: translateY(6.5px) rotate(45deg);
}
.h_hamburger.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-6.5px) rotate(-45deg);
	-ms-transform: translateY(-6.5px) rotate(-45deg);
	-o-transform: translateY(-6.5px) rotate(-45deg);
	transform: translateY(-6.5px) rotate(-45deg);
}

#search-wrapper {
	display: flex;
	border: 1px solid rgba(0, 0, 0, 0, .1);
	align-items: stretch;
	border-radius: 50px;
	background-color: #fff;
	overflow: hidden;
	max-width: 400px;
	box-shadow:0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  }
  #search {
    border: none;
    width: 320px;
    font-size: 15px;
}
  #search:focus {
	outline: none;
  }
  .search-icon {
	margin: 10px;
	color: rgba(0, 0, 0, 0.564);
  }
  #search-button {
	border: none;
	cursor: pointer;
	color: #fff;
	background-color: var(--secondary-color);
	padding: 0px 10px;
  }
  
  .login_signup_menu ul li a{
	font-size: 16px;
	font-weight: 700;
	color: #003459;
  }


@media (max-width: 991.98px) {
	.h_hamburger {
		display: block;
	}
	.nav-wrap {
		position: fixed;
		top: 0;
		right: -100%;
		transform: translateX(100%);
		background-color: #ffffff;
		transition: all 0.5s linear;
		max-width: 300px;
		width: 100%;
		height: 100%;
		box-shadow: 2px -2px 5px 3px #ccc;
		opacity: 0;
		visibility: hidden;
		z-index: 0;
	}
	.nav-wrap.is-open {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		right: 0;
		z-index: 9;
	}
	.nav-list {
		flex-direction: column;
		align-items: unset;
		opacity: 0;
		visibility: hidden;
		transition-delay: 0.5s;
		transition-duration: 1s;
		transition-property: all;
		padding: 10px;
	}
	.nav-wrap.is-open .nav-list {
		opacity: 1;
		visibility: visible;
	}
	.nav-list li {
		padding: 7px 10px;
	}
	.nav-list li a {
		color: var(--primary-color);
		text-align: left;
		display: inline-block;
		padding: 2px 0;
	}
	
}

/* -------------- Header Style Css End ------------------ */
/* ---------- Banner Style Css Start ============= */
.banner_section{
	margin-top: 68px;
	height: 450px;
	background: url(../images/hero_banner.png) no-repeat center;
	background-size: cover;
}
.hero_title_main_wrap{
	height: 450px;
	display: flex;
	align-items: center;
}
.hero_content_wrapper h1{
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-color);
}
.hero_content_wrapper h4{
	font-size: 20px;
	color: var(--primary-color);
}
.hero_content_wrapper p{
	font-weight: 700;
	color: var(--primary-color);
}
  /*Button Two*/
  .button-two {
	display: inline-block;
	border-radius: 30px;
	background-color:#003459;
	border: none;
	padding:8px 1rem;
	transition: all 0.5s;
  }
  
  .button-two span {
	display: inline-block;
	position: relative;
	transition: 0.5s;
	font-weight: 700;
	color: #fff;
  }
  
  .button-two span:after {
	content: '»';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
  }
  
  .button-two:hover span {
	padding-right: 25px;
  }
  
  .button-two:hover span:after {
	opacity: 1;
	right: 0;
  }
  
  
/* ---------- Banner Style Css Start ============= */

/* -------------- Footer Section Style Css ---------------- */
.footer_top{
	padding: 40px 0;
	border-top: 1px solid #ddd;
}
.footer_title{
	margin: 1rem 0;
}
.footer_title h4{
	font-size: 18px;
}
.footer_menu ul li a{
	margin: 4px 0;
	display: inline-block;
	font-size: 14px;
	color: var(--primary-color);
	transition: .4s ease-in-out;
}
.footer_menu ul li a span{
	padding: 5px;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	background: var(--primary-color);
	color: var(--w-color);
	transition: .4s ease-in-out;
}
.footer_menu ul li a span:hover{
	background: var(--secondary-color);
}
.footer_menu ul li a:hover{
	color: var(--secondary-color);
}

.footer_bottom{
	padding: 1rem 0;
	background: var(--bg-gray);
}
.footer_copyright p a{
	color: #6a6a6a;
	font-size: 14px;
}
/* -------------- Footer Section Style Css ---------------- */

/* ------------- Product Category & Product Style Css Start =========== */
.category_with_products{
	padding: 60px 0;
}
.category_regions_main_wrapper{
	min-height: 700px;
	overflow-y: scroll;
	padding: 25px;
	box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, .1);
	border-radius: 5px;
}
.p_category_wrapper{}
.p_category_wrapper h4{
	padding: 1rem 0;
	margin-bottom: 0;
	font-size: 18px;
	border-bottom: 1px solid #ddd;
}

.category_menu_items{
	margin: 1rem 0;
	align-items: center;
}
.category_menu_items a{
	font-weight: 600;
}
.category_menu_items span{
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	background: #2e2f33;
	text-align: center;
	color: #fff;
	border-radius: 50%;
}

.product_single_item{
	margin-bottom: 25px;
	padding: 1rem;
	box-shadow: 0 0 4px 1px rgba(0, 0, 0, .1);
	border-radius: 5px;
	transition: .4s ease-in-out;
}
.product_single_item:hover{
	box-shadow: 0 4px 5px 1px rgba(0, 0, 0, .2);
}
.ps_img img{
	width: 100%;
	height: 220px;
}
.ps_title{
	padding: 5px 0;
	border-bottom: 1px solid #ddd;
}
.ps_title h4{
	margin-bottom: 0;
	font-size: 14px;
	color: #767676;
}
.ps_title h1{
	font-size: 15px;
	color: #3c9cfe;
}

.p_price, .time_remining{
	margin-top: 10px;
}
.p_price h4{
	font-size: 12px;
	color: #767676;
	text-transform: uppercase;
}
.p_price h1{
	font-size: 15px;
	color: #009933;
	font-weight: 700;
}
.time_remining h4{
	font-size: 12px;
	color: #767676;
	text-transform: uppercase;
}


/* ==============Home Product Category On Mobile ==============*/
.home_category_sidebar {
    position: relative;
    border-radius: 4px;
    margin-bottom: 35px;
}
.home_category_sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
  }

  .home_category_sidebar ul li a {
	font-weight: 600;
	display: block;
	background: #ebebeb;
	padding: 10px 15px;
	color: #0099e4;
	text-decoration: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
	border-bottom: 1px solid #fff;
  }
  .home_category_sidebar ul li .mobile_category_heading{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
  }
  .home_category_sidebar ul li a .mobile_category_badge {
    display: inline-block;
    float: right;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
    color: #ffff;
    font-size: 12px;
}
  .home_category_sidebar ul li a:hover {
	background: #0099e4;
	color: #fff;
  }
  .home_category_sidebar ul li a .fa {
    width: 16px;
    text-align: center;
    margin-right: 5px;
    float: right;
    margin-top: 5px;
}
  .home_category_sidebar ul li ul li a {
	background: #fff;
	border-left: 4px solid transparent;
	padding: 10px 20px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
  }
  .home_category_sidebar ul li ul li a:hover {
	background: #0099e4;
	border-left: 4px solid var(--primary-color);

  }
  
/* ==============Home Product Category On Mobile ==============*/


/* ------------- Product Category & Product Style Css Start =========== */

/* =========== Single Product Page Style Css Start =============== */
.breadcumb{
	padding: 25px 0;
	margin-top: 70px;
}

.single_p_display{
	padding: 20px 25px;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.demo {
	width: 100%;
}
#lightSlider li {
	display: block;
	float: left;
	margin-right: 6px;
	cursor: pointer;
  }
  #lightSlider li img{
	display: block;
	height:auto;
	width: 100%;
	background: #e5c97f;
	border-radius: 5px;
  }
  .lSSlideOuter .lSPager.lSGallery img {
    width: 116px;
}
  .social_share_icon ul li a{
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	border-radius: 5px;
  }
  .social_share_icon ul li:first-child a{
	background: #0061c3;
  }
  .social_share_icon ul li:last-child a{
	background: #fd0501;
  }
  .social_share_icon ul li:nth-child(2) a{
	background: #3c9cfe;
  }
  .social_share_icon ul li:nth-child(3) a{
	background: #01bbff;
  }
  .social_share_icon ul li:nth-child(4) a{
	background: #a31815;
  }
  .p_title_wrapper{
	padding-bottom: 1rem;
	border-bottom: 4px solid #ddd;
  }
  .sp_title h1 {
    font-size: 24px;
}
  .sp_title h4 {
	margin-bottom: 0;
    font-size: 18px;
}
  .sp_active span{
	display: inline-block;
	background: #1d9bf0;
	padding: 0px 10px;
	border-radius: 4px;
	font-size: 12px;
	color: #fff;
	font-weight: 700;

  }
  .sp_current_price_wrapper{
	grid-gap: 2rem;
  }
  .current_price h1{
	font-size: 16px;
  }
  .current_price h1 span{
	color: #009933;
  }
  .current_price_response h4{
	color: #1d9bf0;
	font-size: 13px;
	font-weight: 700;
  }
  .current_price_response h4 span{
	color: var(--primary-color);
	font-weight: 500;
  }
  .buy_now_btn a{
	padding: 5px 1rem;
	width: 100%;
	display: inline-block;
	background: #a31815;
	text-align: center;
	color: #fff;
	font-weight: 600;
	border-radius: 5px;
  }
  .buy_now_btn button{
	padding: 5px 1rem;
	width: 100%;
	display: inline-block;
	background: #009933;
	text-align: center;
	color: #fff;
	font-weight: 600;
	border-radius: 5px;
	border: none;
  }

  .bid_form_input span{
	display: block;
	font-size: 12px;
	text-align: end;
  }
  .input-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
  }
  .input-wrapper input{
	padding-left: 2.8rem;
	width: 100%;
	height: 36px;
	position: relative;
	border: 1px solid #ddd;
	border-radius: 5px;
	outline: none;
	box-shadow: none;
  }
  .input-icon{
	position: absolute;
	top: 0;
	left: 0;
	background: #eee;
	padding: 5px 14px;
	border: 1px solid #ddd;
	user-select: none;
	z-index: 99;
	border-radius: 5px 0 0 5px;
  
  }
  .watching_list_wrapper{
	margin-bottom: 1rem;
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 5px;
  }
  .watching_list_wrapper h5{
	font-size: 12px;
  }
  .watching_list_wrapper a{
	font-weight: 700;
  }
  .remaining_time_head{
	padding-bottom: 1rem;
  }
  .remaining_time_head h1{
	margin-bottom: 0;
	font-size: 16px;
  }
  .rmn_sp_des{
	padding:10px;
	background: #fcf8e3;
	border-radius: 5px;
  }
  .sp_summary_wrapper{
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
  }
  .sp_summary_list_item{
	padding: 10px;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-radius: 5px 0 0 5px;
  }
  .sp_summary_list_item.sp_summary_list_item_right{
	padding: 10px;
	border-top: 1px solid #ddd;
	border-left: none;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-radius: 0 5px 5px 0;
  }
  .sp_summary_list_item h4{
	margin-bottom: 0;
	padding-bottom: 1rem;
	border-bottom: 1px solid #ddd;
	font-size: 16px;
	font-weight: 700;
  }
  .sp_summary_list_item h6{
	margin-bottom: 0;
	margin-top: 5px;
  }
  .sp_rating{
	grid-gap: 4rem;
  }
  .sp_rating li a{
	font-size: 14px;
	color: #ffbb00;
  }
  .sp_rating span{
	color: #1d9bf0;
	font-weight: 600;
  }
  .sp_descriptions_wrapper{
	padding:10px 1rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	min-height: 400px;
  }
  .sp_descriptions_wrapper h4{
	padding-bottom: 10px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 5px;
	border-bottom: 1px solid #ddd;
  }

  .qa_wrapper_main{
	padding:0 1rem 0 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
  }
  .qa_wrapper_main h1{
	padding: 1.5rem 0;
	margin-bottom: 0;
	text-align: center;
	font-size: 16px;
	color: #6a6a6a;
	font-style: italic;
  }
  .qa_wrapper{
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
  }
  .qa_title h6{
	margin-bottom: 0;
	font-weight: 700;
  }
  .qa_title a{
	font-weight: 700;
  }
/* =========== Single Product Page Style Css Start =============== */

/* =========== Create Listing Multi Step Form Style Css Start ============= */
.create_listing_form{
	margin-top: 70px;
}
  .creating_listing_form_title_wrapper{
	padding: 10px;
	background: var(--bg-gray);
	border-radius: 4px;
	border: 1px solid #ddd;
  }
  .creating_listing_form_title_wrapper2{
	padding: 12px 10px;
	border-radius: 4px;
	border: 1px solid #ddd;
  }
  .creating_listing_form_title_wrapper2 .listing_title_form{
	font-size: 16px;
	font-weight: 700;
  }
  .creating_listing_form_title_wrapper h4{
	margin-bottom: 0;
  }
  .form-title-sc {
	color:var(--primary-color);
	font-size:15px;
	font-weight: 600;
  }
  .form-title-sc span{
	color: red;
  }
  .form {
	position: relative;
	width: 100%;
	padding: 15px 30px;
	background: white;
	box-shadow: 0px 0px 3px rgb(208 208 208 / 30%);
	border-radius: 4px;
  }
  .form-submit .form-btn {
    padding: 4px 15px;
    border: none;
    outline: none;
    display: inline-block;
    border-radius: 4px;
    background: #034db1;
    color: #fff;
}
.button_bg_white_dflt{
	padding: 4px 1rem;
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 4px;
}
  /*Steps*/
  .step-tab-items {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    justify-content: center;
    display: none;
}
  
  .step-tab-items .step-item {
	position: relative;
	list-style: none;
	width: 25px;
	height: 25px;
	background: #e2e2e2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
  }
  
  .step-tab-items .step-item.active {
	background: #00c5b2;
  }
  
  .step-tab-items .step-item:not(:last-child) {
	margin-right: 45px;
  }
  
  .step-tab-items .step-item:not(:last-of-type)::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background: rgb(241, 239, 239);
	left: calc(100% + 10px);
  }
  
  .step-tab-items .step-item.active::before {
	background: #00c5b2;
  }
  
  .step-tabs .step-tab {
	display: none;
  }
  
.step-tabs .step-tab.active {
	display: block;
}


.listbox {
  display: inline-block;
  background-color: white;
  border: 1px solid #a0abb6;
  border-top: 1px solid #98a3af;
  border-bottom: 1px solid #bdc4cc;
  border-radius: 2px;
  min-width: 120px;
  vertical-align: top;
  overflow: auto;
}
.listbox:focus {
  border-color: #2f85d8;
  box-shadow: rgba(0, 109, 223, 0.15) 0 1px 1px inset,
    rgba(255, 255, 255, 0.5) 0 0 0 1px, #006ddf 0 0 4px 1px;
  color: black;
  outline: none;
}
.listbox.full-width {
  display: block;
}

.listitem {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.2;
  padding: 5px 8px 4px 8px;
}

.listitem-target {
  display: block;
  color: #2e2f33;
  cursor: pointer;
  display: block;
  margin: -5px -8px -4px -8px;
  padding: 5px 8px 4px 8px;
  position: relative;
  text-decoration: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.listitem-target:focus {
  outline: none;
}
.listitem-target:hover {
  background-color: #ddecfc;
}
.listitem.is-selected .listitem-target {
  color: white;
  background-color: #0099e4;
}


.approveTermsContainer {
	border: 1px solid #ddd;
	padding: 10px;

}
.listbox {
    display: inline-block;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    vertical-align: top;
    height: 150px;
}
  .listbox:focus {
	border-color: #2f85d8;
	box-shadow: rgba(0, 109, 223, 0.15) 0 1px 1px inset,
	  rgba(255, 255, 255, 0.5) 0 0 0 1px, #006ddf 0 0 4px 1px;
	color: black;
	outline: none;
  }
  .listbox.full-width {
	display: block;
  }
  
  .listitem {
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
	white-space: nowrap;
	font-size: 14px;
	line-height: 1.2;
	padding: 5px 8px 4px 8px;
  }
  
  .listitem-target {
	display: block;
	color: #2e2f33;
	cursor: pointer;
	display: block;
	margin: -5px -8px -4px -8px;
	padding: 5px 8px 4px 8px;
	position: relative;
	text-decoration: none;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
  }
  .listitem-target:focus {
	outline: none;
  }
  .listitem-target:hover {
	background-color: #ddecfc;
  }
  .listitem.is-selected .listitem-target {
	color: white;
	background-color: #0099e4;
  }

  .category_listing_lists{}
  .ct_l_heading{
	padding:8px 10px;
	border-radius: 4px 4px 0 0;
	border: 1px solid #ddd;
  }
  .ct_l_heading h4{
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 700;
  }
  .ct_l_heading h4 span{
	color: #fd0501;
  }


  .standard_listing_fields{
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
  }

  .slf_wrapper_width{
	width: 75%;
  }
  .sl_fields_wrapper{
	margin-top: 1rem;
	grid-gap: 20px;
  }
  .slf_title h1{
	font-size: 14px;
	font-weight: 700;
  }
  .slf_title h1 span{
	color: #fd0501;
  }
  .slf_title {
    width: 25%;
    text-align: right;
}
  .slf_input{
	width: 100%;
	position: relative;

  }
  .slf_input .slf_form_control{
	height: 36px;
	padding-left: 46px;
	padding-right: 1rem;
	border: 1px solid #ddd;
	outline: none;
	border-radius: 4px;
	width: 100%;
	transition: .4s ease-in-out;
}
  .slf_input .slf_form_control.slf_form_controlpl-0{
	padding-left: 16px;
}
  .slf_input .slf_form_control:focus{
	border: 1px solid #a6a6a6;
}
.input_icon{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 36px;
	width: 36px;
	line-height: 36px;
	text-align: center;
	background: #ddd;
	border-radius: 4px 0 0 4px;
}

.introgative_mark{
	display: inline-block;
	margin-left:.2rem;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-weight: 700;
}

.tox .tox-promotion {
    display: none;
}
.tox:not([dir=rtl]) .tox-statusbar__branding {
    display: none;
}


  /*  Upload Images */
  .upload__inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
  }
  .upload__btn {
	display: inline-block;
	font-weight: 600;
	text-align: center;
	min-width: 116px;
	padding: 2px 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid;
	border-color: #ddd;
	border-radius: 4px;
	line-height: 26px;
	font-size: 14px;
  }
  .upload__btn-box {
	margin-bottom: 10px;
  }
  .upload__img-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
  }
  .upload__img-box {
    width: 100px;
    padding: 0 10px;
    margin-bottom: 12px;
}
.upload__img-close {
    width: 18px;
    height: 17px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: -5px;
    right: -5px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}
.upload__img-close:after {
    content: "✖";
    font-size: 10px;
    color: white;
    position: relative;
    top: -5px;
}
  .img-bg {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	padding-bottom: 100%;
  }

  /* Shipping============ */
  .shipping_add_btn{
	height: 36px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
  }
  .form-submit.grid-2.mt-4 {
    background: var(--bg-gray);
    padding: 1rem;
    border-radius: 4px;
	border: 1px solid #ddd;
}


/* Start & Duration============ */
.flatpickr-calendar {
	--flatpicker-padding: var(--spacing-scale-2x);
	--datetimepicker-day-size: 24px;
	--datetimepicker-arrows: 32px;
	box-shadow: var(--surface-shadow-md);
  }
  .flatpickr-calendar.arrowTop::before,
  .flatpickr-calendar.arrowTop::after {
	border-color: transparent;
  }
  .flatpickr-calendar.open {
	z-index: var(--z-index-layer-2);
  }
  .flatpickr-calendar .flatpickr-months {
	align-items: center;
	display: flex;
	padding: var(--flatpicker-padding) var(--flatpicker-padding) 0;
  }
  .flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
  .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
	height: auto;
	padding: 0;
	position: static;
  }
  .flatpickr-calendar .flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
  .flatpickr-calendar .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
	cursor: not-allowed;
	opacity: var(--disabled);
	display: block;
  }
  .flatpickr-calendar
	.flatpickr-months
	.flatpickr-prev-month.flatpickr-disabled
	*,
  .flatpickr-calendar
	.flatpickr-months
	.flatpickr-next-month.flatpickr-disabled
	* {
	pointer-events: none;
  }
  .flatpickr-calendar .flatpickr-months .flatpickr-month {
	flex: 1;
	height: auto;
	overflow: visible;
  }
  .flatpickr-calendar .flatpickr-months .flatpickr-current-month {
	display: flex;
	height: auto;
	padding: 0 var(--flatpicker-padding);
	position: static;
	width: 100%;
  }
  .flatpickr-calendar .flatpickr-months .flatpickr-monthDropdown-months {
	border-radius: var(--surface-rounder-sm);
	color: var(--interactive);
	font-size: var(--font-size-scale-up-01);
	font-weight: var(--font-weight-semi-bold);
	margin: 0;
	padding: 0;
  }
  .flatpickr-calendar
	.flatpickr-months
	.flatpickr-monthDropdown-months
	.flatpickr-monthDropdown-month {
	color: var(--color);
  }
  .flatpickr-calendar .flatpickr-months .flatpickr-monthDropdown-months:hover {
	background: transparent;
  }
  .flatpickr-calendar .flatpickr-months .numInputWrapper {
	flex: 1;
	margin-left: var(--flatpicker-padding);
	width: auto;
  }
  .flatpickr-calendar .flatpickr-months .numInputWrapper input.cur-year {
	border: var(--surface-width-sm) solid var(--border-color);
	border-radius: var(--surface-rounder-sm);
	color: var(--color);
	font-size: var(--font-size-scale-base);
	font-weight: var(--font-weight-semi-bold);
	padding: 0 var(--spacing-scale-base);
  }
  .flatpickr-calendar .flatpickr-months .numInputWrapper span.arrowUp,
  .flatpickr-calendar .flatpickr-months .numInputWrapper span.arrowDown {
	display: none;
  }
  .flatpickr-calendar .flatpickr-weekdaycontainer {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	padding: 0 var(--flatpicker-padding);
  }
  .flatpickr-calendar span.flatpickr-weekday {
	color: var(--color);
	font-size: var(--font-size);
	font-weight: var(--font-weight-medium);
  }
  .flatpickr-calendar .dayContainer {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	padding: 0 var(--flatpicker-padding) var(--flatpicker-padding);
  }
  .flatpickr-calendar .flatpickr-day {
	color: var(--interactive);
	font-weight: var(--font-weight-semi-bold);
	height: var(--datetimepicker-day-size);
	line-height: var(--font-line-height-medium);
	margin: calc(var(--flatpicker-padding) * 0.25) auto;
	max-width: var(--datetimepicker-day-size);
	width: var(--datetimepicker-day-size);
  }
  .flatpickr-calendar .flatpickr-day:focus {
	outline: none;
  }
  .flatpickr-calendar .flatpickr-day.focus-visible,
  .flatpickr-calendar .flatpickr-day:focus-visible {
	outline-color: var(--focus);
	outline-offset: var(--focus-offset);
	outline-style: var(--focus-style);
	outline-width: var(--focus-width);
  }
  .flatpickr-calendar .flatpickr-day.focus-visible {
	--focus-offset: 0;
	background: transparent;
	border-color: transparent;
  }
  .flatpickr-calendar .flatpickr-day:hover {
	background: var(--hover-effect);
  }
  .flatpickr-calendar .flatpickr-day.prevMonthDay,
  .flatpickr-calendar .flatpickr-day.nextMonthDay {
	font-weight: var(--font-weight-medium);
	opacity: 0.6;
  }
  .flatpickr-calendar .flatpickr-day.today {
	background: var(--orange-vivid-5);
	border-color: transparent;
	color: var(--red-warm-vivid-50);
  }
  .flatpickr-calendar .flatpickr-day.flatpickr-disabled {
	cursor: not-allowed;
	opacity: var(--disabled);
	color: var(--color);
  }
  .flatpickr-calendar .flatpickr-day.flatpickr-disabled * {
	pointer-events: none;
  }
  .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
	background: transparent;
  }
  .flatpickr-calendar .flatpickr-day.inRange {
	--interactive-rgb: var(--blue-warm-vivid-50-rgb);
	--hover: var(--hover-dark);
	background-image: linear-gradient(
	  rgba(var(--interactive-rgb), var(--hover)),
	  rgba(var(--interactive-rgb), var(--hover))
	);
	border-color: transparent;
	box-shadow: none;
	color: var(--color-dark);
	opacity: 1;
  }
  .flatpickr-calendar .flatpickr-day.selected,
  .flatpickr-calendar .flatpickr-day.startRange,
  .flatpickr-calendar .flatpickr-day.endRange {
	background: var(--selected);
	border-color: transparent;
	color: var(--color-dark);
	opacity: 1;
  }
  .flatpickr-calendar .flatpickr-time {
	display: flex;
	justify-content: center;
	margin: 0 var(--flatpicker-padding);
	max-height: none;
  }
  .flatpickr-calendar .flatpickr-time input {
	--input-background: var(--bg-color);
	--input-border-color: var(--color-secondary-06);
	--input-border-width: 1px;
	--input-border-style: solid;
	--input-padding: 0 var(--spacing-scale-half);
	--input-radius: var(--surface-rounder-sm);
	background: var(--input-background);
	border: var(--input-border-width) var(--input-border-style)
	  var(--input-border-color);
	border-radius: var(--input-radius);
	color: var(--text-color);
	display: block;
	font-size: var(--font-size-scale-up-01);
	font-weight: var(--font-weight-medium);
	height: var(--input-size);
	padding: var(--input-padding);
	width: 100%;
	margin: calc(var(--flatpicker-padding) * 0.25) 0;
  }
  .flatpickr-calendar .flatpickr-time input:not(:disabled):hover {
	background-image: linear-gradient(
	  rgba(var(--color-rgb), var(--hover)),
	  rgba(var(--color-rgb), var(--hover))
	);
  }
  .flatpickr-calendar .flatpickr-time input:focus,
  .flatpickr-calendar .flatpickr-time input:focus-visible,
  .flatpickr-calendar .flatpickr-time input.focus-visible {
	border-color: var(--focus) !important;
	box-shadow: 0 0 0 var(--surface-width-md) var(--focus);
	outline: none;
  }
  .flatpickr-calendar .flatpickr-time input.has-icon {
	padding-right: var(--spacing-scale-5x);
  }
  .flatpickr-calendar .flatpickr-time input[type="password"]::-ms-reveal,
  .flatpickr-calendar .flatpickr-time input[type="password"]::-ms-clear {
	display: none;
  }
  .flatpickr-calendar .flatpickr-time .numInputWrapper {
	align-items: center;
	display: flex;
	flex: 0 1 90px;
	flex-flow: column;
	height: auto;
	padding: calc(var(--flatpicker-padding) * 0.5) var(--flatpicker-padding);
  }
  .flatpickr-calendar .flatpickr-time .numInputWrapper:hover {
	background: transparent;
  }
  .flatpickr-calendar .flatpickr-time .numInputWrapper span {
	align-items: center;
	border: 0;
	border-radius: 50px;
	color: var(--interactive);
	display: flex;
	height: var(--datetimepicker-arrows);
	justify-content: center;
	opacity: 1;
	padding: 0;
	position: static;
	width: var(--datetimepicker-arrows);
  }
  .flatpickr-calendar .flatpickr-time .numInputWrapper span:not(:disabled):hover {
	background-image: linear-gradient(
	  rgba(var(--interactive-rgb), var(--hover)),
	  rgba(var(--interactive-rgb), var(--hover))
	);
  }
  .flatpickr-calendar .flatpickr-time .numInputWrapper span::after {
	border: none;
	position: static;
  }
  .flatpickr-calendar .flatpickr-time .numInputWrapper span.arrowUp {
	order: -1;
  }
  .flatpickr-calendar .flatpickr-time .numInputWrapper span.arrowUp::after {
	transform: rotate(225deg) translate(-1px, -1px);
  }
  .flatpickr-calendar.hasTime .flatpickr-time {
	border-color: var(--border-color);
	height: auto;
  }
  .flatpickr-calendar.hasTime.noCalendar .flatpickr-time {
	border-color: transparent;
  }
  
  .br-datetimepicker.inverted .br-input,
  .br-datetimepicker.inverted .br-input label,
  .br-datetimepicker.dark-mode .br-input,
  .br-datetimepicker.dark-mode .br-input label {
	--color: var(--color-dark);
	--focus-color: var(--focus-color-dark);
  }
  .br-datetimepicker input[disabled] {
	cursor: not-allowed;
  }
  
  /*# sourceMappingURL=datetimepicker.css.map*/
  
/* =========== Create Listing Multi Step Form Style Css Start ============= */

/* ========== Invoice Page Style Css Start ========== */
.invoice_section{
	padding: 20px 0;
	margin-top: 70px;
}
.invoice_heading_product_des_wrapper{
	margin-top: 1rem;
	padding: 4px 10px;
	grid-gap: 0px;
	background: var(--bg-gray);
	border-radius: 4px 4px 0  0;
	border: 1px solid #ddd;
}

.invoice_back h4{
	margin-bottom: 0;
	font-size: 16px;
}
.invoice_print button{
	border: 1px solid #ddd;
	outline: none;
	background: #fff;
	border-radius: 4px;
}
.invoice_content_wrapper{
	padding: 10px;
	border: 1px solid #ddd;
}
.invoice_content_wrapper_sub{
	margin: 5px 16px;
}
.invoice_heading_wrapper {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px;
}
.invoice_content_heading_payment{
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 4px;
}
.invoice_content_heading_payment a{
	display: block;
	background: #0099e4;
	color: #fff;
	text-align: center;
	padding: 2px 10px;
	border-radius: 4px;
	font-weight: 400;
}
.invoice_content_heading_payment a span{
	font-weight: 700;
}

@media print {
	.aaaa {
	  background-color: red;
	  height: 100%;
	  width: 100%;
	  position: fixed;
	  z-index: 99;
	  top: 0;
	  left: 0;
	  margin: 0;
	  right: 0;
	  padding: 15px;
	  font-size: 14px;
	  line-height: 18px;
	}
  }

  .des_unit_wrapper{
	border-bottom: 1px solid #ddd;
  }

  .des_unit_wrapper_total_style{
	background: #f8e1ff;
  }
  .des_unit_wrapper_total_style{
	padding: 6px 10px;
	background: #f8e1ff;
	border-radius: 4px;
  }
  .des_unit_wrapper_total_style .p_des_name h6,  .des_unit_wrapper_total_style .p_des_unit_price h6{
	margin-bottom: 0;
  }
  .payment_history_top{
	padding: 7px 10px;
	border-radius: 4px;
	border: 1px solid #ddd;
  }
  .payment_history_top h5{
	margin-bottom: 0;
	font-size: 17px;
  }

  .left_sidebar_menu_wrapper{
	padding: 10px;
	box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1);
	border-radius: 5px;
	width: 350px;
  }

  .sidebar_menuHeading{
	padding: 8px 10px;
	border: 1px solid #ddd;
	text-align: center;
  }
  .sidebar_menuHeading h6{
	margin-bottom: 0;
  }

  .left_sidebar_list_head{
	margin-bottom: 0;
	padding: 10px 0;
	font-size: 17px;
	border-bottom: 1px solid #ddd;
  }
  .left_sidebar_menu_wrapper .nav-item .nav-link{
	margin: 6px 0;
	padding: 0;
  }

  .left_sidebar_menu_wrapper .nav-item .nav-link.active {
	background: transparent;
	color: hotpink;
  }

  .view_short_filter_wrapper{
	grid-gap:5px;
  }
  .won_views .my_form_control{
	border: 1px solid #ddd;
	width: 180px;
	height: 30px;
	border-radius: 0 4px 4px 0;
  }
  .won_views article span{
	margin-right: -5px;
	display: inline-block;
	background: var(--bg-gray);
	padding:1px 10px;
	border: 1px solid #ddd;
	border-radius: 4px 0 0 4px;
	font-weight: 600;


  }
  .won_filter .my_form_control{
	width: inherit;
	border-radius: 4px;
	background: #fff;
  }

  .product_listing_wrapper{
	margin-top: 1rem;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 4px;
  }
  .p_listing_check_content_wrap{
	grid-gap: 20px;

  }

  .p_listing_checkbox{
	width: 30%;
  }
  .p_listing_right_content{
	width: 70%;
  }
  .p_listing_right_content ul li{
	margin: 6px 0;
	color: #767676;
  }
  .p_listing_right_content ul li ul li{
	display: inline-block;
	margin: 0 3rem;
	color: #767676;
  }
  .p_listing_right_content ul li ul li:first-child{
	margin-left: 0;
  }
  .p_listing_img img{
	width:150px;
	border-radius: 4px;
  }
  .p_listing_right_content h6{
	color: #006ddf;
  }
  .reserve_price p {
    padding: 1px 16px;
    background: #6a6a6a;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
}
  /* Three Dot Dropdown Menu  */
  /* Dropdown */
  .three_dot_toggle_dropdown {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	align-items: end;
}
  .dropdown {
	display: inline-block;
	position: relative;
  }
  .dd-button {
	display: inline-block;
	cursor: pointer;
	white-space: nowrap;
	color: #0099e4;
  }
  .dd-input {
	display: none;
  }
  .dd-menu {
	position: absolute;
	top: 100%;
	right: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0;
	margin: 2px 0 0 0;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
	list-style-type: none;
	z-index: 999;
  }
  
  .dd-input + .dd-menu {
	display: none;
  }
  
  .dd-input:checked + .dd-menu {
	display: block;
  }
  
  .dd-menu li {
	padding: 10px 20px;
	cursor: pointer;
	white-space: nowrap;
  }
  
  .dd-menu li:hover {
	background-color: #f6f6f6;
  }
  .dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 5px 20px;
	color: var(--primary-color);
}
  
  
  /* Three Dot Dropdown Menu  */



  /* ----------- Prospectus Page Css Style Start ------------------ */
.prospectus_tab_content{
	width: 100%;
  
}
  .my_vartical_tab_btn {
    min-width: 100%;
}

  .my_vartical_tab_btn button.active{
	background: #0099e4;
  }
  .prospectus_tab_heading{
	margin-bottom: 10px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
	font-size: 20px;
	font-weight: 700;
  }
  /* ----------- Prospectus Page Css Style Start ------------------ */
/* ========== Invoice Page Style Css Start ========== */

.accordion {
  width: 100%;
  max-width:100%;
  margin: 2rem auto;
}
.accordion-item {
    background-color: #fff;
    color: #111;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.accordion-item-header {
  padding: 0.8rem 3rem 0.8rem 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-header::after {
  content: "\002B";
  font-size:1.4rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

/*2025 search add*/
.search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	max-height: 400px;
	overflow-y: auto;
	display: none;
	z-index: 1000;
}

.search-result-item {
	padding: 10px;
	border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
	border-bottom: none;
}

.search-result-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.search-result-img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	margin-right: 10px;
	border-radius: 4px;
}

.search-result-info h4 {
	margin: 0;
	font-size: 14px;
	color: #333;
}

.search-result-info p {
	margin: 5px 0 0;
	font-size: 12px;
	color: #666;
}

.no-results {
	padding: 15px;
	text-align: center;
	color: #666;
}

#search-wrapper {
	position: relative;
}

.search-results {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: white;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	z-index: 1000;
	max-height: 400px;
	overflow-y: auto;
}

.search-item {
	padding: 10px;
	border-bottom: 1px solid #eee;
}

.search-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.search-item img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	margin-right: 10px;
}

.item-details h4 {
	margin: 0;
	font-size: 14px;
}

.item-details p {
	margin: 5px 0 0;
	color: #666;
}

.search-item img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	margin-right: 10px;
	border-radius: 4px;
}

.search-item {
	padding: 10px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.search-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	z-index: 999;
}


.search-results {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.search-item img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 8px;
}

.search-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	z-index: 999;
}

.search-popup {
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 800px;
	background: white;
	border-radius: 8px;
	padding: 20px;
	max-height: 80vh;
	overflow-y: auto;
}


@media (max-width: 767px) {
  html {
    font-size: 14px;
  }


}



