* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

body {
	padding: 0px;
	margin: 0px;	/*font-family: "Poppins", sans-serif;*/
	font-family: 'Karla', sans-serif;
	overflow-x: hidden;
}

pre {
	font-family: 'Karla', sans-serif !important;
}

body::-webkit-scrollbar {
	width: 10px;
	height: 150px;
}

body::-webkit-scrollbar-track {
	background: #eee;
}

body::-webkit-scrollbar-thumb {
	background-color: #DFFECD;
	border: 1px solid #eee;
	border-radius: 5px;
}

a {
	text-decoration: none !important;
	outline: none !important;
}

img {
	border: none;
}

input::-webkit-contacts-auto-fill-button {
	opacity: 0;
}

.clr {
	clear: both;
}

.page-section-gap {
	margin: 40px 0;
	display: flex;
}


/*Top-Strip*/
.top-strip {
	width: 100%;
	height: auto;
	background: #0F330A;
	padding: 10px 0;
}

.top-inner {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.top-inner form {
	width: auto;
	margin: auto;
	display: flex;
	height: 100%;
	align-items: center;
	position: relative;
}

.search-drop {
	width: inherit;
	height: auto;
	background: #f6f6f6;
	position: absolute;
	z-index: 9999;
	top: 100%;
	left: 0;
	padding: 10px;
	margin-top: 2px;
	display: none;
}

.search-drop ul {
	padding: 0;
	margin: 0;
	height: 150px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding-right: 20px;
}

.search-drop ul::-webkit-scrollbar {
	width: 10px;
	height: 150px;
}

.search-drop ul::-webkit-scrollbar-track {
	background: #88E755;
}

.search-drop ul::-webkit-scrollbar-thumb {
	background-color: #0F330A;
	border: 1px solid #88E755;
	border-radius: 5px;
}

.search-drop ul li {
	list-style: none;
	margin-bottom: 5px;
}

.search-drop ul li a {
	font-size: 14px;
	color: #000;
	display: inline-block;
}

.top-inner form button {
	border: none;
	outline: none;
	width: auto;
	padding: 0 10px;
	height: 45px;
	border-radius: 30px 0px 0px 30px;
	background: #88E755;
}

.top-inner form button i {
	margin-left: 5px;
}

.top-inner form label {
	border: none;
	outline: none;
	width: 350px;
	height: 45px;
	margin: 0;
	background: #fff;
	border-radius: 0px 30px 30px 0px;
	position: relative;
	display: flex;
	align-items: center;
}

.top-inner form label i {
	font-size: 20px;
	font-weight: 500;
	color: #808080;
	position: absolute;
	right: 10px;
	top: auto;
}

.top-inner form label input[type="text"] {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	border-radius: 0px 30px 30px 0px;
	padding-left: 10px;
	padding-right: 40px;
	font-size: 14px;
	color: #0A0A0A;
}

.top-inner form label input[type="text"]::placeholder {
	color: #0A0A0A;
	font-weight: 500;
}

.top-social {
	width: auto;
	height: auto;
	position: absolute;
	right: 0;
	top: auto;
}

.top-social ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.top-social ul li {
	list-style: none;
	position: relative;
}

.top-social ul li:before {
	position: absolute;
	content: "";
	height: 100%;
	width: 1px;
	background: #aaa;
	right: 0;
}

.top-social ul li:last-child:before {
	display: none;
}

.top-social ul li a {
	display: block;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
}

.top-social ul li a:first-child {
	padding-right: 10px;
}

.top-social ul li a span {
	position: absolute;
	width: 17px;
	height: 17px;
	background: #fff;
	border-radius: 50%;
	color: #000;
	font-size: 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	right: -2px;
	top: -10px;
}

.top-social ul li a i {
	display: block;
}

.top-social ul li a img {
	width: 25px;
	height: auto;
	object-fit: contain;
	transform: rotate(0deg);
	filter: brightness(0);
	transition: 0.5s;
}

.top-social ul li a:hover img {
	transform: rotate(360deg);
	transition: 0.5s;
}

.search-drop-list {
	width: 100%;
	position: absolute;
	top: 100%;
	z-index: 999999;
	background: #fff;
	margin-top: 5px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px -5px #aaa;
	padding: 10px;
	display: none;
}

.search-drop-list ul {
	padding: 0;
	margin: 0;
	display: flex;
	overflow-y: scroll;
	height: auto;
	max-height: 250px;
	padding-right: 10px;
	align-items: flex-start;
	flex-direction: column;
}

.search-drop-list ul::-webkit-scrollbar {
	width: 10px;
	height: 150px;
}

.search-drop-list ul::-webkit-scrollbar-track {
	background: #0F330A;
	border-radius: 5px;
}

.search-drop-list ul::-webkit-scrollbar-thumb {
	background-color: #88E755;
	border: 1px solid #0F330A;
	border-radius: 5px;
}

.search-drop-list ul li {
	list-style: none;
	width: 100%;
}

.search-drop-list ul li a {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 10px 0px;
	gap: 12px;
	border-bottom: 1px solid #ddd;
}

.search-drop-list ul li:first-child a {
	padding-top: 0;
}

.search-drop-list ul li:last-child a {
	border-bottom: 0;
	padding-bottom: 0;
}

.search-drop-list ul li a img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 5px;
	margin-top: 5px;
}

.search-drop-list ul li a .search-drop-list-right {
	width: 100%;
}

.search-drop-list ul li a .search-drop-list-right h1 {
	font-size: 14px;
	font-weight: 600;
	color: #055f83;
	line-height: 22px;
	margin-bottom: 5px;
}

.search-drop-list ul li a .search-drop-list-right p {
	font-size: 13px;
	font-weight: 600;
	color: #aaa;
	margin-bottom: 0;
}

/*Top-Strip*/

/* ------ Admin login sign in css ------ *//* ------ Admin login sign in css ------ *//*Nav-Section*/.nav-wrap {
	width: 100%;
	height: auto;
	position: sticky;
	background: #fff;
	z-index: 999;
	left: 0;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.15));
	top: auto;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.nav-wrap .container .row {
	padding: 0 15px;
}

/*.nav-wrap:before {  position: absolute;  content: '';  width: 100%;  height: 100%;  background-size: unset;  top: 100%;  left: 0;  margin: auto;  right: 0;  background-position: top center;  background-repeat: no-repeat;  z-index: -1;}*/
.nav-in {
	width: auto;
	height: 100%;
	margin: auto;
}

.nav-in:first-child {
	width: auto;
	margin-left: 0;
}

.nav-in:last-child {
	width: auto;
	margin-right: 0;
}

.nav-in ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	height: 100%;
	gap: 80px;
	justify-content: flex-end;
}

.nav-in:last-child ul {
	gap: 15px;
}

.nav-in ul li {
	list-style: none;
	position: relative;
}

.nav-in ul li a {
	display: block;
	width: 100%;
	height: 100%;
	font-weight: 600;
	font-size: 15px;
	color: #0A0A0A;
	padding: 4px 0;
}

.nav-in ul li:hover a {
	color: #88E755;
}

.nav-in ul li a.active {
	color: #88E755;
}

.nav-in ul li a i {
	font-size: 15px;
	color: #000;
	margin-left: 10px;
}

.nav-in ul li a.get-btn {
	background: #88E755;
	padding: 10px 20px;
	border-radius: 5px;
	color: #0A0A0A;
	border: 1px solid #88E755;
}

.nav-in ul li a.get-btn:hover {
	background: transparent;
	border: 1px solid #0A0A0A;
	color: #0A0A0A;
}

.nav-in ul li a i {
	color: #37173d;
}

.nav-in ul li a img {
	width: 100%;
	height: auto;
}

#account img {
	width: 15px;
	margin-right: 10px;
}

/* CART-SECTION */
.cart-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.cart-wrap h1 {
	font-weight: 600;
	color: #37173d;
	font-size: 18px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0;
}

.cart-wrap p {
	font-weight: 400;
	font-size: 16px;
	color: #37173d;
	margin: 10px 0 25px 0;
}

/*.cart-wrap a {  background: #FF6261;  border-radius: 24px;  display: block;  width: -webkit-fill-available;  text-align: center;  padding: 10px;  font-weight: 600;  font-size: 13px;  color: #FFFFFF;  letter-spacing: 0.12em;  text-transform: uppercase;}*/
.cart-btn {
	width: 100%;
	height: auto;
}

.cart-btn a {
	background: #ff6261;
	border-radius: 24px;
	display: block;
	width: -webkit-fill-available;
	text-align: center;
	padding: 10px;
	font-weight: 600;
	font-size: 13px;
	color: #ffffff;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.cart-btn a.cart-web-menu-btn {
	display: block;
	margin-bottom: 0;
}

.cart-btn a.cart-mob-menu-btn {
	display: none;
}

.cart-web-menu-btn {
	display: inline-block !important;
	margin-bottom: 0;
}

.cart-mob-menu-btn {
	display: none !important;
}

.cart-btn a.last-btn {
	background: #fff;
	border: 1px solid #ffedec;
	color: #ff6261;
}

.cart-btn a:last-child {
	margin-bottom: 0px;
}

.cart-product-list-wrap {
	width: 100%;
	height: 230px;
	overflow-y: scroll;
	margin-bottom: 25px;
}

.cart-product-list-wrap::-webkit-scrollbar {
	width: 8px;
	height: 10px;
}

.cart-product-list-wrap::-webkit-scrollbar-track {
	background: #fff;
}

.cart-product-list-wrap::-webkit-scrollbar-thumb {
	background-color: #0F330A;
	border: 1px solid #fff;
	border-radius: 10px;
}

.cart-product-list {
	width: 100%;
	height: auto;
	border-top: 1px solid #ffedec;
}

.cart-product-list a {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.cart-product-list a:hover h2 {
	color: #ff6261;
}

.cart-product-list:first-of-type {
	margin-top: 30px;
}

.cart-product-list:last-of-type {
	border-bottom: 1px solid #ffedec;
}

.cart-product-list img {
	width: 65px;
	height: 65px;
	object-fit: contain;
}

.cart-product-list h2 {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	line-height: 20px;
	margin-bottom: 0;
}

/* CART-SECTION */

/* ACOOUNT-SECTION */.account-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px 0px;
	overflow: hidden;
}

.account-wrap h1 {
	font-weight: 600;
	color: #37173d;
	font-size: 18px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0;
	padding: 0px 20px;
}

.account-wrap p {
	font-weight: 400;
	font-size: 16px;
	color: #37173d;
	margin: 10px 0 25px 0;
	padding: 0px 20px;
}

.account-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 0px 20px;
}

.account-btn a {
	background: #ff6261;
	border-radius: 24px;
	display: block;
	width: -webkit-fill-available;
	text-align: center;
	padding: 10px;
	font-weight: 600;
	font-size: 13px;
	color: #ffffff;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.account-btn a:first-child {
	color: #ff6261;
	background: #ffffff;
	border: 1px solid #ffedec;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.account-btn a:first-child img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.account-wrap ul {
	padding: 0;
	margin: 0;
	width: 100%;
	margin-bottom: 20px;
}

.account-wrap ul li {
	list-style: none;
}

.account-wrap ul li a {
	padding: 15px 20px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	display: flex;
	align-items: center;
	gap: 10px;
	border-top: 1px solid #ffedec;
}

.account-wrap ul li:first-child a {
	border-top: 1px solid #ffedec;
	border-bottom: 0;
}

.account-wrap ul li:last-child a {
	border-bottom: 1px solid #ffedec;
	border-top: 1px solid #ffedec;
}

.account-wrap ul li a img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.account-wrap ul li a i {
	color: #c5c5c5;
	font-size: 22px;
	font-weight: 100;
	margin-left: auto;
}

.account-wrap-profile-img {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
	padding: 0 20px;
	gap: 15px;
}

.account-wrap-profile-img img {
	width: 55px;
	height: 55px;
	object-fit: cover;
	border-radius: 50%;
}

.account-wrap-profile-img h2 {
	font-weight: 600;
	font-size: 14px;
	text-align: left;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.account-wrap-profile-img h2 span {
	font-weight: 400;
	font-size: 14px;
	color: #37173d;
	text-transform: none;
}

/* ACOOUNT-SECTION */

/*MEGA-MENU-SECTION*/.mega-menu-wrap {
	width: 95%;
	height: auto;
	margin: auto;
	padding: 0 15px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.mega-menu-in {
	width: 100%;
	height: auto;
}

.mega-menu-in:last-child {
	width: auto;
}

.mega-menu-in h1 {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 30px;
	color: #37173d;
}

.mega-menu-in h1 a {
	color: #37173d;
}

.mega-menu-in ul {
	padding: 0;
	margin: 0;
}

.mega-menu-in ul li {
	list-style: none;
	margin-bottom: 10px;
}

.mega-menu-in ul li a {
	font-weight: 500;
	font-size: 14px;
	color: #37173d;
	display: flex;
	align-items: center;
}

.mega-menu-in:last-child ul li a {
	display: block;
}

.mega-menu-in ul li a span {
	background: #ff6261;
	border-radius: 20px;
	font-weight: 600;
	font-size: 10px;
	color: #ffffff;
	padding: 2px 8px;
	text-transform: uppercase;
	margin-left: 10px;
}

.mega-menu-in ul li a:hover {
	color: #ff6261;
}

.mega-menu-in ul li a b {
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	width: 100%;
}

.mega-menu-in ul li a img {
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
}

/*MEGA-MENU-SECTION*/

/*SEARCH-SECTION*/.search-wrap {
	width: 100%;
	height: auto;
}

.search-wrap form {
	width: 100%;
	height: auto;
	background: #fff8f7;
}

.search-wrap form label {
	width: 95%;
	height: auto;
	background: transparent;
	padding: 30px 15px;
	display: flex;
	outline: none;
	border: none;
	margin: auto;
	margin-bottom: 0;
	align-items: center;
}

.search-wrap form label i {
	color: #757575;
	font-size: 14px;
	margin-right: 10px;
}

.search-wrap form label input {
	background: transparent;
	border: none;
	width: 100%;
	font-weight: 400;
	font-size: 16px;
	color: #757575;
}

.search-wrap form label input[type="search"]::-webkit-search-cancel-button {
	background-image: url(../images/cross.png);
	appearance: none;
	height: 1em;
	width: 1em;
	-webkit-appearance: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
	opacity: 0;
	cursor: pointer;
}

.search-wrapformlabelinput[type="search"]:focus::-webkit-search-cancel-button {
	opacity: 1;
}

.search-wrap form label button {
	background: none;
	border: none;
	outline: none;
}

.search-wrap form label button i {
	color: #757575;
	font-size: 14px;
	margin: 0;
}

.search-inner {
	width: 95%;
	height: auto;
	padding: 0 15px;
	display: flex;
	margin: auto;
	justify-content: center;
	gap: 20px;
}

.search-product {
	width: 20%;
	height: auto;
	text-align: center;
}

.search-product a {
	display: block;
	transition: 0.5s;
	overflow: hidden;
}

.search-product a img {
	width: 100%;
	height: 200px;
	object-fit: contain;
	margin-bottom: 10px;
	transition: 0.5s;
}

.search-product a:hover img {
	transform: scale(1.1);
	transition: 0.5s;
}

.search-product a p {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 22px;
	color: #37173d;
}

/*SEARCH-PRODUCT-LIST-SECTION*/
.search-product-list-in {
	width: 95%;
	height: auto;
	margin: auto;
	border-bottom: 1px solid #ffedec;
}

.search-product-list-in a {
	display: flex;
	align-items: center;
}

.search-product-list-in a img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-right: 25px;
}

.search-product-list-in-txt {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
}

.search-product-list-in-txt h1 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin: 0;
	transition: 0.5s;
}

.search-product-list-in-txt h1:hover {
	color: #ff6261;
	transition: 0.5s;
}

.search-product-list-in-txt p {
	font-weight: 500;
	font-size: 16px;
	color: #37173d;
	margin-left: auto;
	margin-bottom: 0;
}

.search-product-list-in-txt p span {
	color: #ff6261;
}

.search-product-list-btn {
	width: 95%;
	height: auto;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.search-product-list-btn a {
	display: block;
	padding: 12px 0;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ff6261;
	text-align: center;
	background: #ffffff;
	border: 1px solid #ffedec;
	border-radius: 30px;
	transition: 0.5s;
}

.search-product-list-btn a:hover {
	color: #fff;
	background: #ff6261;
	border: 1px solid #ff6261;
	transition: 0.5s;
}

/*SEARCH-PRODUCT-LIST-SECTION*/

/*NO-PRODUCT-FOUND*/#no-product-find {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 50px 0px;
}

#no-product-find img {
	width: 70px;
	height: auto;
	margin-bottom: 15px;
}

#no-product-find p {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin: 0;
}

/*NO-PRODUCT-FOUND*/

/*SEARCH-SECTION*//*Nav-Section*//*Steps-Section*/.steps-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
	background: #fff8f7;
}

.steps-in {
	width: 100%;
	height: auto;
	text-align: center;
}

.steps-in img {
	width: 35px;
	height: auto;
	margin-bottom: 20px;
}

.steps-in h1 {
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 15px;
}

.steps-in p {
	font-weight: 500;
	font-size: 14px;
	color: #292929;
	line-height: 22px;
	margin-bottom: 15px;
}

.steps-in a {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #37173d;
}

.steps-in a:hover, .steps-in a:hover i {
	color: #ff6261;
}

.steps-in a i {
	color: #37173d;
	margin-left: 10px;
}

/*Steps-Section*/

/*About-Section*/.about-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.customize-booth-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

/*.customize-booth-wrap .about-img {  padding-right: 20px;}.customize-booth-wrap .about-text {  padding-left: 20px;}*/
.about-in {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	transition: 0.5s;
}

.about-wrap .container .row .about-in:nth-child(3) {
	flex-direction: row-reverse;
}

.about-in:last-child {
	margin-bottom: 0px;
}

.about-img {
	width: 100%;
	height: 500px;
	position: relative;
	overflow: hidden;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top right;
	transition: 0.5s;
}

.about-page-img {
	height: 460px;
}

.about-page-img img {
	object-position: center;
	object-fit: fill;
}

.about-mission img {
	transform: scale(1.3);
	filter: brightness(1.1);
}

.about-in:hover .about-img img {
	transform: scale(1.1);
	transition: 0.5s;
}

.about-text {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
}

.about-text h2 {
	font-weight: 500;
	font-size: 22px;
	color: #333333;
	margin: 0;
	margin-bottom: 20px;
}

.about-text h1 {
	font-weight: 600;
	font-size: 45px;
	color: #000;
	margin: 0;
	margin-bottom: 20px;
}

.about-text p {
	font-weight: 400;
	font-size: 15px;
	color: #292929;
	margin: 0;
	margin-bottom: 20px;
	line-height: 25px;
	text-align: justify;
}

.about-text a {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	padding: 10px 30px;
	transition: 0.5s;
	background: #bfa99e;
	border-radius: 5px;
}

.about-in:hover .about-text a {
	transition: 0.5s;
}

.about-text ul {
	padding: 0;
	margin: 0;
}

.about-text ul li {
	list-style: none;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	gap: 10px;
	font-weight: 400;
	font-size: 15px;
	color: #292929;
}

.about-text ul li img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.about-pg-heading {
	margin-top: 40px;
}

.about-mission-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.about-mission-wrap .row {
	gap: 50px 0px;
	align-items: center;
}

.about-mission-wrap .about-img {
	width: 220px;
	height: 220px;
	background: #fff;
	border: 8px solid #055f83;
	border-radius: 50%;
	padding: 30px;
}

.about-mission-wrap .about-text h1 {
	font-size: 30px;
}

.about-mission-wrap .about-text p {
	font-size: 14px;
}

/*About-Section*/

/*Bestsellers-Section*/.bestseller-wrap {
	width: 100%;
	height: auto;
	padding: 40px 0 60px 0;
}

.bestseller-in {
	width: 100%;
	height: auto;
}

.bestseller-in .nav-tabs {
	border-bottom: 0;
	gap: 10px;
	margin-bottom: 30px;
	overflow-x: scroll;
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}

.bestseller-in .nav-tabs::-webkit-scrollbar {
	display: none;
}

.bestseller-in .nav-tabs .nav-link {
	margin-bottom: 0px;
	border: none;
	border-radius: 5px;
	font-weight: 500;
	font-size: 15px;
	width: max-content;
	color: #333333;
}

.bestseller-in .nav-tabs .nav-link.active {
	background: #bfa99e;
	color: #fff;
}

.bestseller-in .nav-tabs .nav-link:hover {
	background: #bfa99e;
	color: #fff;
}

.tabs-btn {
	position: absolute;
	right: 0;
	width: 40px;
	color: #ccb6ae;
	border-radius: 50%;
	height: 40px;
	background: #ffffff;
	border: 1px solid #e6beae;
}

.btn-left {
	left: 0;
	right: inherit;
	display: none;
}

.bestseller-slider-item {
	width: 100%;
	height: auto;
	text-align: center;
	overflow: hidden;
}

.bestseller-slider-item img {
	width: 100% !important;
	height: 390px;
	object-fit: cover;
	transition: 0.5s;
}

.bestseller-slider-item:hover img {
	transform: scale(1.1);
	transition: 0.5s;
}

.bestseller-text {
	width: 45%;
	height: auto;
	padding: 20px;
	position: absolute;
	bottom: 0;
	right: 10px;
	background: rgba(255, 255, 255, 0.86);
	text-align: center;
	display: none;
	z-index: 9;
}

.bestseller-wrap .owl-item.active.center {
	width: 100%;
}

.bestseller-wrap .owl-item.active.center .bestseller-text {
	display: block;
}

.bestseller-text h1 {
	font-weight: 600;
	font-size: 20px;
	color: #37173d;
	margin: 15px 0;
	text-align: left;
}

.bestseller-text p {
	font-weight: 600;
	font-size: 16px;
	color: #37173d;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	text-align: left;
	margin-bottom: 20px;
}

.bestseller-text p img {
	width: 20px !important;
	height: auto;
}

.bestseller-text a {
	background: #bfa99e;
	border-radius: 5px;
	font-weight: 400;
	font-size: 15px;
	text-align: center;
	padding: 10px 20px;
	display: inline-block;
	color: #ffffff;
}

.bestseller-in .owl-nav {
	width: 100%;
	height: auto;
	padding-left: 20px;
	transition: 0.5s;
}

.bestseller-in .owl-nav button {
	width: 50px;
	height: 50px;
	background: rgba(204, 182, 174, 0.8) !important;
	box-shadow: none;
	color: #ffffff !important;
	position: absolute;
	top: 50%;
	left: -25px;
	right: inherit;
	z-index: 0;
	border: none !important;
	outline: none;
	border-radius: 5px;
}

.bestseller-in .owl-nav button i {
	font-size: 22px;
	text-align: center;
	display: flex;
	font-weight: 500;
	justify-content: center;
	height: 100%;
	color: #fff;
	place-items: flex-end;
	align-items: center;
}

.bestseller-in .owl-nav button span {
	font-size: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	height: 100%;
	place-items: flex-end;
	align-items: center;
}

.bestseller-in .owl-nav button:last-child {
	right: -25px;
	left: inherit;
}

.bestseller-btn {
	width: 100%;
	height: auto;
	margin: 30px 0 0px 0;
	text-align: center;
	font-size: 24px;
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #0F330A;
	justify-content: center;
	gap: 15px;
}

.bestseller-btn a {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	background: #DFFECD;
	border-radius: 5px;
	display: inline-block;
	text-align: center;
	padding: 12px 28px;
	color: #ffffff;
}

.faq-wrapper .bestseller-btn a {
	color: #0F330A;
}

.bestseller-slider-image, .about-slider-image {
	width: 100%;
	height: 350px;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 15px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-slider-image {
	height: 280px;
}

.about-slider-image:before {
	display: none;
}

.bestseller-slider-image:before {
	width: 95%;
	height: 95%;
	position: absolute;
	content: "";
	border: 1px solid #f3d8c7;
	border-radius: 10px;
	left: auto;
	top: auto;
	z-index: 99;
}

.bestseller-slider-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.bestseller-slider-item:hover .bestseller-slider-image img {
	transform: scale(1.1) rotate(5deg);
	transition: 0.5s;
}

.bestseller-slider-content {
	width: 100%;
	height: auto;
}

.bestseller-slider-content h1 {
	font-weight: 400;
	font-size: 15px;
	color: #1a202c;
	margin: 0;
}

#suggested-slider {
	margin-bottom: 35px;
}

#suggested-slider .owl-nav, #suggested-slider-2 .owl-nav, #suggested-slider-3 .owl-nav, #booth-detail-slider .owl-nav {
	width: 100%;
	height: auto;
	padding-left: 20px;
	transition: 0.5s;
}

#suggested-slider .owl-nav button, #suggested-slider-2 .owl-nav button, #suggested-slider-3 .owl-nav button, #booth-detail-slider .owl-nav button {
	width: 35px;
	height: 35px;
	background: transparent !important;
	box-shadow: none;
	color: #ffffff !important;
	position: absolute;
	top: 45%;
	left: -45px;
	right: inherit;
	z-index: 0;
	border: 1px solid #b2967d;
	outline: none;
	border-radius: 50%;
}

#suggested-slider .owl-nav button i, #suggested-slider-2 .owl-nav button i, #suggested-slider-3 .owl-nav button i, #booth-detail-slider .owl-nav button i {
	font-size: 22px;
	text-align: center;
	display: flex;
	font-weight: 500;
	justify-content: center;
	height: 100%;
	color: #000;
	place-items: flex-end;
	align-items: center;
}

#suggested-slider .owl-nav button span, #suggested-slider-2 .owl-nav button span, #suggested-slider-3 .owl-nav button span, #booth-detail-slider .owl-nav button span {
	font-size: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	height: 100%;
	place-items: flex-end;
	align-items: center;
}

#suggested-slider .owl-nav button:last-child, #suggested-slider-2 .owl-nav button:last-child, #suggested-slider-3 .owl-nav button:last-child, #booth-detail-slider .owl-nav button:last-child {
	right: -45px;
	left: inherit;
}

/*Bestsellers-Section*/

/*Chiasso-Reborn-Section*/.reborn-wrap {
	width: 100%;
	height: auto;
	background-image: url(../images/about-us/mission-bg.jpg);
	background-attachment: fixed;
	background-position: 70% 0px;
	background-size: cover;
	padding: 50px 0;
}

.reborn-in {
	width: 100%;
	height: auto;
	background: #fff8f7;
	padding: 40px;
	border-radius: 10px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.reborn-in img {
	width: 70px;
	height: auto;
}

.reborn-in h1 {
	font-weight: 600;
	font-size: 35px;
	color: #000;
	margin: 20px 0 20px 0;
}

.reborn-in p {
	font-weight: 400;
	font-size: 14px;
	color: #333;
	margin: 0;
	line-height: 30px;
}

/*Chiasso-Reborn-Section*/

/*how-works-Section*/.how-works-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}

.how-works-wrap:before {
	width: 100%;
	height: 50%;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	background-image: url(../images/how-works/wrap-bg.jpg);
	background-position: top left;
	background-repeat: repeat-x;
	background-size: cover;
}

.how-works-in {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
	transition: 0.5s;
}

.how-works-in img {
	width: 100%;
	height: 375px;
	object-fit: cover;
	position: relative;
	transition: 0.5s;
}

.how-works-in:hover img {
	transform: scale(1.1) rotate(5deg);
	transition: 0.5s;
}

.how-works-in-text {
	width: 90%;
	height: 50%;
	background: rgba(255, 255, 255, 0.84);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	position: absolute;
	bottom: 20px;
	z-index: 9;
	padding: 20px;
	transition: 0.5s;
}

.how-works-in:hover .how-works-in-text {
	height: 90%;
	transition: 0.5s;
}

.how-works-in-text h1 {
	font-weight: 500;
	font-size: 18px;
	color: #000;
	margin-bottom: 15px;
}

.how-works-in-text p {
	font-weight: 400;
	font-size: 14px;
	color: #333333;
	margin-bottom: 15px;
}

.how-works-in-text a {
	font-weight: 500;
	font-size: 15px;
	background: #bfa99e;
	border-radius: 5px;
	color: #fff;
	padding: 8px 22px;
	transition: 0.5s;
}

/*how-works-Section*/

/*Celebration-Section*/.celebration-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}

.celebration-wrap:before {
	width: 100%;
	height: 60%;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	background-image: url(../images/how-works/wrap-bg.jpg);
	background-position: top left;
	background-repeat: repeat-x;
	background-size: cover;
}

.celebration-wrap.about-us-inner:before {
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	background-image: url(../images/how-works/wrap-bg.jpg);
	background-position: top left;
	background-repeat: repeat-x;
	background-size: cover;
}

.celebration-in {
	width: 100%;
	height: 100%;
	display: flex;
	box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
	align-items: center;
}

.celebration-in img {
	width: 50%;
	height: 100%;
	object-fit: cover;
}

.celebration-in-right {
	width: 50%;
	height: 100%;
	background: #fff;
	display: flex;
	flex-direction: column;
	padding: 40px;
}

.celebration-in-right h1 {
	font-weight: 500;
	font-size: 40px;
	color: #000000;
	margin-bottom: 20px;
}

.celebration-in-right form {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 15px;
}

.celebration-in-right form input[type="text"] {
	width: 100%;
	height: auto;
	padding: 10px;
	background: #ffffff;
	border: 1px solid #cbcbcb;
	border-radius: 5px;
}

.celebration-in-right form textarea {
	width: 100%;
	height: 100px;
	padding: 10px;
	background: #ffffff;
	border: 1px solid #cbcbcb;
	border-radius: 5px;
}

.celebration-in-right form input[type="submit"] {
	padding: 10px;
	background: #bfa99e;
	border-radius: 10px;
	border: none;
	outline: none;
	font-weight: 500;
	font-size: 18px;
	color: #ffffff;
}

/*Celebration-Section*/

/*Reviews-Section*/.reviews-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0 50px 0;
	background: url(../images/reviews-bg.jpg);
	background-size: cover;
}

.reviews-inner {
	width: 85%;
	height: auto;
	margin-left: auto;
	background: #ffffff;
	box-shadow: 0px 16px 32px rgb(55 23 61 / 4%);
	padding: 30px;
	padding-left: 80px;
	border-radius: 10px;
	display: grid;
	align-content: space-evenly;
	position: relative;
}

.reviews-image {
	position: absolute;
	width: 120px;
	height: 120px;
	left: -60px;
	top: 25px;
}

.reviews-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviews-heading {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.reviews-inner ul {
	padding: 0;
	margin: 0;
	display: flex;
	gap: 5px;
	align-items: center;
}

.reviews-inner ul li {
	list-style: none;
}

.reviews-inner ul li img {
	width: 15px !important;
	height: auto;
}

.reviews-inner h1 {
	font-weight: 600;
	font-size: 20px;
	color: #ccb6ae;
	margin: 0;
}

.reviews-inner h2 {
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	margin-bottom: 15px;
}

.reviews-inner p {
	font-weight: 400;
	font-size: 14px;
	color: #292929;
	margin: 0;
	line-height: 28px;
}

#reviews-slider .owl-dots {
	margin: auto;
	margin-top: 30px;
	text-align: center;
}

#reviews-slider .owl-dots button {
	outline: none;
	border: none;
}

#reviews-slider .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 0px 5px;
	background: #ffffff;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 0.2s ease;
	border-radius: 50%;
}

#reviews-slider .owl-dots .owl-dot.active span, .owl-theme #reviews-slider .owl-dots .owl-dot:hover span {
	background: #f3d8c7;
}

/*Reviews-Section*/

/*Intsa-gallery-Section*/.insta-gallery {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.insta-gallery-inner {
	width: 100%;
	height: auto;
}

.insta-gallery-inner ul {
	padding: 0;
	margin: 0;
	display: flex;
	gap: 25px;
	align-items: center;
	justify-content: flex-start;
}

.insta-gallery-inner ul li {
	list-style: none;
	flex-basis: 100%;
	height: 200px;
}

.insta-gallery-inner ul li .insta-gallery-box {
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.insta-gallery-inner ul li a {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: 0.5s;
	font-size: 15px;
	color: #fff;
	font-weight: 400;
	z-index: 9;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.insta-gallery-inner ul li a video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.insta-gallery-inner ul li a i {
	font-size: 30px;
	position: absolute;
	margin-bottom: 10px;
	color: #fff;
	transition: 0.5s;
}

.insta-gallery-inner ul li a:hover i {
	transform: rotate(360deg);
	transition: 0.5s;
}

.insta-gallery-inner ul li a:before {
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	z-index: 0;
	transition: 0.5s;
}

.insta-gallery-inner ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.insta-gallery-inner ul li .insta-gallery-box i {
	color: #ff6261;
	font-size: 25px;
}

.insta-gallery-inner ul li .insta-gallery-box p {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 20px 0 5px 0;
}

.insta-gallery-inner ul li .insta-gallery-box p:last-child {
	margin: 0;
}

.insta-gallery-inner ul li .insta-gallery-box p b {
	font-weight: 600;
}

/*Intsa-gallery-Section*/

/*Market-Place-Section*/.market-place-heading {
	width: 100%;
	height: auto;
	padding: 50px 0;
	padding-bottom: 0;
}

.market-place-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
	/* background: rgb(184, 234, 255);
	background: linear-gradient(90deg, rgba(184, 234, 255, 1) 50%, rgba(236, 250, 255, 1) 50%); */
	background: #DFFECD;
	background: linear-gradient(90deg, rgb(223, 254, 205) 50%, rgb(240, 255, 229) 50%);

}

.market-place-inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.market-place-inner h1 {
	font-size: 30px;
	color: #0F330A;
	font-weight: 600;
	margin-bottom: 20px;
}

.market-place-inner h2 {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin: 20px 0;
}

.market-place-inner p {
	font-size: 14px;
	line-height: 25px;
	margin-bottom: 10px;
	font-weight: 400;
}

.market-place-inner ul {
	padding: 0;
	margin: 0;
	display: flex;
	text-align: center;
	justify-content: space-between;
	margin-top: auto;
}

.market-place-inner ul li {
	list-style: none;
	font-size: 14px;
	font-weight: 500;
	color: #0F330A;
}

.market-place-inner ul li .list-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: auto;
	margin-bottom: 10px;
	padding: 5px;
	background: #fff;
}

.market-place-inner ul li .list-img img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.market-place-wrap .container .row .col-lg-6:first-child .market-place-inner {
	padding-left: 0;
	padding-right: 20px;
}

.market-place-wrap .container .row .col-lg-6:last-child .market-place-inner {
	padding-left: 20px;
	padding-right: 0px;
}

.about-page-sec {
	width: 100%;
	height: auto;
	margin: 10px 0;
}

.market-place-inner pre {
	white-space: pre-wrap;
	font-family: 'Karla', sans-serif;
}

/*Market-Place-Section*/

/*Footer-Section*/.footer-wrap {
	width: 100%;
	height: auto;
	background: #0F330A;
	padding: 60px 0 50px 0;
	border-bottom: 1px solid #0F330A;
}

.footer-inner-wrap {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
	gap: 50px;
}

.footer-inner {
	width: auto;
	height: auto;
}

.footer-inner:first-child {
	width: 50%;
}

.footer-logo {
	width: 120px;
	height: auto;
	margin-bottom: 22px;
}

.footer-logo a {
	display: block;
}

.footer-logo a img {
	/* width: 68%; */
	height: 100%;
}

.footer-inner ul {
	padding: 0;
	margin: 0;
}

.footer-icons {
	background-color: #fff;
	color: #0F330A;
	padding: 10px;
	border-radius: 30px;
	width: 30px;
	height: 30px;
	display: flex;
	margin-right: 8px;
	align-items: center;
	justify-content: center;
}

.footer-inner ul li {
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.footer-inner ul li img {
	width: 25px;
	height: auto;
}

.footer-inner ul li a {
	font-weight: 400;
	font-size: 16px;
	color: #333;
}

.footer-inner ul li a:hover {
	color: #bfa99e;
}

.footer-inner h1 {
	font-weight: 600;
	font-size: 17px;
	color: #fff;
	margin-bottom: 21px;
}

.footer-inner p {
	margin: 0px 0 8px 0;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
}

.footer-inner p a {
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	display: flex;
	align-items: center;
}

.footer-inner p a:hover {
	color: #88E755;
}

.footer-inner form {
	width: 100%;
	height: auto;
}

.footer-inner form label {
	width: 100%;
	height: 40px;
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	margin: 0;
	display: flex;
}

.footer-inner-input {
	width: 100%;
	height: 100%;
	border: none;
	font-weight: 500;
	font-size: 14px;
	background: #ffffff;
	color: #292929;
	border-radius: 20px !important;
	padding: 0px 10px 0px 15px;
}

.footer-inner-input::placeholder {
	font-weight: 600;
	color: #292929;
}

.footer-inner-btn {
	padding: 0px 20px;
	background: #ff6261;
	height: 100%;
	border: none;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	color: #ffffff;
	font-size: 13px;
	border-radius: 30px;
}

.footer-wrap-bottom {
	width: 100%;
	height: auto;
	background: #1A4413;
	padding: 15px 0;
}

.footer-wrap-bottom .footer-inner p {
	margin: 0;
	display: flex;
}

.footer-wrap-bottom .footer-inner p a {
	margin-left: 5px;
}

.footer-wrap-bottom .footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-social {
	width: 100%;
	height: auto;
}

.footer-social ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.footer-social ul li {
	list-style: none;
}

.footer-social ul li a {
	display: block;
}

.footer-social ul li a img {
	width: 28px;
	height: auto;
}

/*Footer-Section*/

/*LOGIN-PAGE-SECTION*/.login-pg-wrap {
	width: 100%;
	height: auto;
	padding: 80px 0;
}

.login-pg-wrap form {
	width: 100%;
	display: flex;
	height: auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.login-pg-inner {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.login-pg-inner .login-pg-wrap-label {
	width: 49%;
}

.login-pg-wrap-label {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
	display: block;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	color: #37173d;
	text-transform: uppercase;
	position: relative;
}

.login-pg-wrap-input {
	width: 100%;
	height: auto;
	padding: 10px;
	font-weight: 500;
	font-size: 13px;
	color: #757575;
	margin-top: 10px;
	border: 1px solid #ffedec;
	outline: none;
}

.login-pg-wrap-textarea {
	width: 100%;
	height: 140px;
	padding: 10px;
	font-weight: 500;
	font-size: 13px;
	color: #757575;
	margin-top: 10px;
	border: 1px solid #ffedec;
	outline: none;
}

.login-pg-wrap form a {
	font-weight: 400;
	font-size: 15px;
	color: #37173d;
	text-align: center;
}

.login-pg-wrap form a:hover {
	color: #ff6261;
	text-decoration: underline !important;
}

.login-pg-wrap-button {
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 12px 0;
	font-weight: 600;
	font-size: 13px;
	background: #ff6261;
	border-radius: 24px;
	outline: none;
	border: none;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 25px 0 20px 0;
}

.register-btn {
	width: auto;
	padding: 12px 100px;
}

.login-pg-wrap form p {
	font-weight: 400;
	font-size: 15px;
	color: #37173d;
	margin-bottom: 0;
	text-align: center;
}

.login-pg-wrap form p a {
	color: #ff6261;
	text-decoration: underline !important;
}

/*LOGIN-PAGE-SECTION*/

/*Category-Section*/.category-pg-wrap {
	width: 100%;
	height: auto;
	padding: 80px 0;
}

.category-pg-inner {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.category-pg-inner a {
	display: block;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	text-align: center;
}

.category-pg-inner a:hover {
	color: #ff6261;
}

.category-pg-inner a .category-pg-inner-img {
	width: 100%;
	height: 250px;
	margin-bottom: 15px;
	overflow: hidden;
}

.category-pg-inner a .category-pg-inner-img img {
	width: 100%;
	height: 100%;
	transition: 0.5s;
}

.category-pg-inner a:hover .category-pg-inner-img img {
	transform: scale(1.1);
	transition: 0.5s;
}

/*Category-Section*/

/*Cart-Page-Section*/.cart-pg-wrap {
	width: 100%;
	height: auto;
	padding: 60px 0;
}

.cart-pg-inner {
	width: 100%;
	height: auto;
}

.cart-pg-inner h1 {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	display: flex;
	margin-bottom: 25px;
	border-bottom: 1px solid #ffedec;
	padding-bottom: 15px;
	align-items: center;
}

.cart-pg-inner h1 span {
	width: 160px;
	height: auto;
	margin-left: auto;
}

.cart-pg-inner h1 span img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cart-pg-box {
	width: 100%;
	height: auto;
	display: flex;
	padding-bottom: 25px;
	margin-bottom: 25px;
	align-items: center;
	border-bottom: 1px solid #ffedec;
}

.cart-pg-box-image {
	width: 100px;
	height: auto;
	margin-right: 25px;
}

.cart-pg-box-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cart-pg-box-text {
	width: 100%;
	height: auto;
}

.cart-pg-box-text h2 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	display: flex;
	margin-bottom: 14px;
	align-items: center;
}

.cart-pg-box-text h2 a {
	display: block;
	margin-left: auto;
}

.cart-pg-box-text h2 a img {
	width: 18px;
}

.cart-pg-box-text ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.cart-pg-box-text ul li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #757575;
	width: 35%;
}

.cart-pg-box-select {
	height: auto;
	width: 100%;
	outline: none;
	padding: 10px;
	font-weight: 600;
	font-size: 13px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	background: url(../images/dropdown.png);
	appearance: none;
	background-color: #277000;
	border: 1px solid #88E755;
	background-size: 10px;
	background-position: right 10px center;
	background-repeat: no-repeat;
	margin-top: 5px;
}

.cart-pg-box-text ul li span {
	font-weight: 500;
	font-size: 14px;
	color: #37173d;
	margin-top: 5px;
}

.cart-pg-inner-btn {
	width: 100%;
	height: auto;
}

.cart-pg-inner-btn a {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ff6261;
	border: 1px solid #ffedec;
	border-radius: 30px;
	padding: 12px 60px;
	display: inline-block;
	transition: 0.5s;
}

.cart-pg-inner-btn a:hover {
	background: #ff6261;
	color: #fff;
	border: 1px solid #ff6261;
	transition: 0.5s;
}

.cart-pg-total {
	width: 100%;
	height: auto;
	padding: 25px;
	border: 1px solid #ffedec;
	position: sticky;
	top: 20px;
	z-index: 9;
}

.cart-pg-total h1 {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 20px;
}

.cart-pg-price ul {
	padding: 0;
	margin: 0;
}

.cart-pg-price ul li {
	display: flex;
	list-style: none;
	justify-content: space-between;
	position: relative;
	margin-bottom: 15px;
	align-items: center;
}

.cart-pg-price ul li:before {
	position: absolute;
	content: "";
	width: 100%;
	height: auto;
	border-bottom: 1px dashed #cccccc;
	z-index: -1;
}

.cart-pg-price ul li span {
	font-weight: 500;
	font-size: 14px;
	color: #37173d;
	padding-right: 10px;
	background: #fff;
}

.cart-pg-price ul li span:last-child {
	padding-left: 10px;
}

.cart-pg-total hr {
	background: #ffedec;
	width: 100%;
	border: none;
	height: 1px;
	margin: 20px 0;
}

.cart-pg-total h2 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 10px;
}

.cart-pg-total form {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.cart-pg-total form label {
	width: 100%;
	height: 45px;
	background: #ffffff;
	border-radius: 30px;
	overflow: hidden;
	margin: 0;
	display: flex;
	position: relative;
}

.cart-pg-total-input {
	width: 100%;
	height: 100%;
	font-weight: 500;
	font-size: 14px;
	background: #ffffff;
	color: #292929;
	border: 1px solid #ffedec !important;
	border-radius: 30px !important;
	padding: 0px 100px 0px 15px;
}

.cart-pg-total-input::placeholder {
	font-weight: 500;
	color: #292929;
}

.cart-pg-total-btn {
	padding: 0px 20px;
	background: #ff6261;
	height: 100%;
	border: none;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	color: #ffffff;
	font-size: 13px;
	border-radius: 30px;
	position: absolute;
	right: 0;
	top: 0;
}

.cart-pg-total .cart-pg-inner-btn a {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: #ff6261;
	color: #fff;
	border: 1px solid #ff6261;
	border-radius: 30px;
	padding: 12px 60px;
	display: inline-block;
	transition: 0.5s;
}

.cart-pg-total h3 {
	width: 100%;
	font-weight: 500;
	font-size: 14px;
	color: #37173d;
	text-align: center;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 30px;
	background: #fff;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 8px 20px;
	z-index: 9;
}

.cart-pg-total h3:after {
	position: absolute;
	content: "";
	width: 65%;
	height: 100%;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	z-index: -1;
}

.cart-pg-total h3:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	background: #cccccc;
	z-index: -1;
}

.cart-pg-price-options {
	width: 100%;
	height: auto;
}

.cart-pg-price-options ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.cart-pg-price-options ul li {
	list-style: none;
	width: 48%;
}

.cart-pg-price-options ul li a {
	display: block;
	width: 100%;
	height: 100%;
	font-weight: 500;
	font-size: 12px;
	color: #37173d;
	text-align: center;
}

.cart-pg-price-options ul li a img {
	width: 100%;
	height: 70px;
	object-fit: contain;
	background: #fff8f7;
	padding: 20px;
}

.cart-pg-price-options ul li:last-child a img {
	margin-bottom: 10px;
}

/*Cart-Page-Section*/

/*privacy-Page-Section*/.privacy-pg-wrap {
	width: 100%;
	height: auto;
	padding: 60px 0;
}

.privacy-pg-wrap h1 {
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin: 40px 0;
}

.privacy-pg-wrap h1:first-child {
	margin-top: 0;
}

.privacy-pg-wrap p {
	font-weight: 400;
	font-size: 14px;
	color: #37173d;
	line-height: 25px;
	margin-bottom: 20px;
}

.privacy-pg-wrap p:last-child {
	margin-bottom: 0;
}

/*privacy-Page-Section*/

/*404-Page-Section*/.page-not-found-wrap {
	width: 100%;
	height: auto;
	padding: 60px 0;
}

.page-not-found-in {
	width: 100%;
	height: auto;
}

.page-not-found-in h1 {
	font-weight: 600;
	font-size: 48px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 20px;
}

.page-not-found-in h2 {
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 20px;
}

.page-not-found-in p {
	font-weight: 400;
	font-size: 16px;
	color: #292929;
	margin-bottom: 30px;
	line-height: 25px;
}

.page-not-found-in a {
	font-weight: 600;
	font-size: 13px;
	color: #ffffff;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: #ff6261;
	border-radius: 24px;
	padding: 12px 50px;
}

.page-not-found-in a i {
	font-size: 13px;
	font-weight: 200;
	margin-right: 10px;
}

.page-not-found-in img {
	width: 100%;
	height: 100%;
}

/*404-Page-Section*/

/*Contact-Page-Section*/.contact-pg-wrap {
	width: 100%;
	height: auto;
	padding: 60px 0 0px 0;
}

.contact-pg-inner {
	width: 100%;
	height: auto;
}

.contact-pg-inner h1 {
	font-weight: 600;
	font-size: 30px;
	color: #0F330A;
	margin-bottom: 15px;
}

.contact-pg-inner form h4 {
	font-weight: 600;
	font-size: 30px;
	color: #DFFECD;
	margin-bottom: 15px;
}

.contact-pg-info {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.contact-pg-info-icon {
	width: 85px;
	height: 80px;
	background: #277000;
	border-radius: 50%;
	padding: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-pg-info-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contact-pg-inner p {
	font-weight: 500;
	font-size: 16px;
	color: #0F330A;
	line-height: 28px;
	margin-bottom: 25px;
}

.contact-pg-inner h2 {
	font-weight: 600;
	font-size: 22px;
	color: #0A0A0A;
	margin-bottom: 0px;
	margin-left: 15px;
	display: flex;
	gap: 10px;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.contact-pg-inner h2 a {
	font-weight: 500;
	font-size: 16px;
	color: #0F330A;
	line-height: 25px;
}

.contact-pg-social {
	width: 100%;
	height: auto;
}

.contact-pg-social ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.contact-pg-social ul li {
	list-style: none;
}

.contact-pg-social ul li a {
	display: block;
	width: 35px;
	height: 35px;
	background: #fff8f7;
	border-radius: 30px;
	padding: 8px;
}

.contact-pg-social ul li a:hover {
	background: #ff6261;
}

.contact-pg-social ul li a:hover img {
	filter: brightness(0) invert(1);
}

.contact-pg-social ul li a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contact-pg-inner form {
	width: 100%;
	height: auto;
	background: #277000;
	padding: 20px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.contact-pg-inner-lbl {
	width: 100%;
	height: auto;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contact-pg-inner-txt {
	width: 100%;
	height: auto;
	padding: 10px;
	margin-top: 10px;
	background: #277000;
	font-weight: 500;
	font-size: 14px;
	outline: none;
	border-radius: 5px !important;
	color: #ffffff;
	border: 1px solid #88E755;
}

.contact-pg-inner-txt::placeholder {
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
}

.contact-pg-inner-txtarea {
	width: 100%;
	height: 100px;
	padding: 10px;
	margin-top: 10px;
	background: #277000;
	font-weight: 500;
	font-size: 14px;
	outline: none;
	color: #757575;
	border: 1px solid #88E755;
	border-radius: 5px !important;
}

.contact-pg-inner-txtarea::placeholder {
	font-weight: 600;
	font-size: 14px;
	color: #fff;
}

.contact-pg-inner-btn {
	width: 100%;
	background: #DFFECD;
	border-radius: 5px;
	border: none;
	outline: none;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: #0F330A;
	margin: auto;
	padding: 10px 70px;
}

.contact-pg-inner form h3 {
	font-weight: 400;
	font-size: 13px;
	color: #37173d;
	text-align: center;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	line-height: 25px;
}

.contact-pg-inner form h3 a {
	color: #ff6261;
	text-decoration: underline !important;
}

.contact-pg-wrap iframe {
	width: 100%;
	height: 350px;
	margin-top: 80px;
}

.contact-pg-captcha {
	width: 100%;
	height: 100%;
	margin: 0;
}

.contact-pg-captcha-code {
	width: 250px;
	height: 100%;
	border-radius: 5px;
	border: 1px solid #a7a7a7;
	margin: 0 10px;
}

.contact-pg-captcha-code img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

.contact-pg-captcha-btn {
	width: 100px;
	height: 100%;
	background: #000;
	border: 1px solid #a7a7a7;
	border-radius: 5px;
}

.contact-pg-captcha-btn i {
	font-size: 20px;
	color: #fff;
}

/*Contact-Page-Section*/

/*Profile-Page-Section*/.profile-pg-wrap {
	width: 100%;
	height: auto;
	padding: 60px 0;
}

.profile-pg-tabs {
	width: 100%;
	height: auto;
	position: sticky;
	top: 20px;
	z-index: 9;
}

.profile-pg-tabs ul {
	padding: 0;
	margin: 0;
}

.profile-pg-tabs ul li {
	list-style: none;
	margin-bottom: 12px;
}

.profile-pg-tabs ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 10px 12px 20px;
	background: #fff;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	border-radius: 48px;
	color: #37173d;
}

.profile-pg-tabs ul li a:hover {
	background: #ffedec;
	color: #37173d;
}

.profile-pg-tabs ul li a.active {
	background: #ffedec;
	color: #37173d;
}

.profile-pg-tabs ul li:last-child a {
	border-top: 1px solid #ffedec;
	border-radius: 0;
	padding-top: 15px;
}

.profile-pg-tabs ul li:last-child a {
	background: #fff !important;
	color: #ff6261 !important;
}

.profile-pg-tabs ul li a.active {
	background: #ffedec;
	color: #37173d;
}

.profile-pg-tabs ul li a img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.profile-right {
	width: 100%;
	height: auto;
}

.profile-right h1 {
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	padding-bottom: 20px;
	margin-bottom: 25px;
	border-bottom: 1px solid #ffedec;
}

.profile-right form {
	width: 100%;
	display: flex;
	height: auto;
	flex-direction: column;
	align-items: flex-start;
}

.profile-pg-label {
	width: 50%;
	height: auto;
	margin-bottom: 20px;
	display: block;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	color: #37173d;
	text-transform: uppercase;
}

.profile-pg-input {
	width: 100%;
	height: auto;
	padding: 10px;
	font-weight: 500;
	font-size: 13px;
	color: #757575;
	margin-top: 10px;
	border: 1px solid #ffedec;
	outline: none;
}

.product-detail-btn {
	display: flex;
	gap: 5px 15px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.product-detail-btn h3 {
	font-size: 14px;
	text-align: center;
	margin-bottom: 0;
}

.profile-pg-button {
	width: 48%;
	height: 100%;
	color: #fff;
	padding: 12px 0px;
	font-weight: 600;
	font-size: 13px;
	background: #ff6261;
	border-radius: 24px;
	outline: none;
	border: none;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 10px 0 20px 0;
	border: 2px solid #ff6261;
}

.profile-pg-button-first {
	color: #37173d;
	background: #fff;
	border: 2px solid #37173d;
}

/*TABS-FOR-MOBILE*/
.profile-pg-mob-tabs {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
	position: relative;
	display: none;
}

.profile-pg-mob-tabs h1 {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin: 0;
	display: flex;
	background: #ffedec;
	border-radius: 48px;
	padding: 12px 10px 12px 20px;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
}

.profile-pg-mob-tabs h1 img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	margin-right: 15px;
}

.profile-pg-mob-tabs h1 img:last-child {
	margin-left: auto;
	width: 12px;
	height: auto;
	transform: rotateX(0deg);
	transition: 0.2s;
}

.profile-pg-mob-tabs h1 img.mob-dropdown {
	transform: rotateX(180deg);
	transition: 0.2s;
}

.profile-pg-mob-tabs ul {
	margin: 0;
	background: #ffffff;
	border: 1px solid #ffedec;
	box-shadow: 0px 8px 16px rgb(0 0 0 / 8%);
	border-radius: 20px;
	padding: 10px;
	position: absolute;
	width: 100%;
	top: auto;
	left: 0;
	z-index: 9;
	margin-top: 5px;
}

.profile-pg-mob-tabs ul li {
	list-style: none;
	margin-bottom: 12px;
}

.profile-pg-mob-tabs ul li:last-child {
	margin-bottom: 0px;
}

.profile-pg-mob-tabs ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 0px 12px 0px;
	background: #fff;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	border-radius: 48px;
	color: #37173d;
	justify-content: center;
}

.profile-pg-mob-tabs ul li a:hover {
	background: #ffedec;
	color: #37173d;
}

.profile-pg-mob-tabs ul li a.active {
	background: #ffedec;
	color: #37173d;
}

.profile-pg-mob-tabs ul li:last-child a {
	border-top: 1px solid #ffedec;
	border-radius: 0;
	padding-top: 15px;
}

.profile-pg-mob-tabs ul li:last-child a {
	background: #fff !important;
	color: #ff6261 !important;
}

.profile-pg-mob-tabs ul li a.active {
	background: #ffedec;
	color: #37173d;
}

.profile-pg-mob-tabs ul li a img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

/*TABS-FOR-MOBILE*/

/*Profile-Page-Section*//*Favorite-Page-Section*/.favorite-product {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ffedec;
}

.favorite-product:last-child {
	border-bottom: none;
}

.favorite-product-img {
	width: 100px;
	height: 100px;
}

.favorite-product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.favorite-product-text {
	width: 100%;
	height: auto;
	margin-left: 20px;
}

.favorite-product-text h2 {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 10px;
}

.favorite-product-text h2 a {
	color: #37173d;
}

.favorite-product-text p {
	font-weight: 500;
	font-size: 16px;
	color: #37173d;
	margin-bottom: 0;
}

.favorite-product-text p span {
	color: #ff6261;
}

.favorite-product-icon {
	width: 45px;
	height: auto;
	margin-left: auto;
	border: 1px solid #ffedec;
	border-radius: 50%;
	padding: 6px;
}

.favorite-product-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*Favorite-Page-Section*/

/*Notifications-Page-Section*/.notification-in {
	width: 100%;
	height: auto;
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 22px;
}

.notification-in h3 {
	font-weight: 500;
	font-size: 16px;
	color: #37173d;
	line-height: 25px;
}

.notification-in h3 span {
	font-weight: 400;
	font-size: 14px;
	color: #292929;
}

.switch {
	position: relative;
	display: inline-block;
	width: 55px;
	height: 28px;
}

.switch .switch-input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	bottom: 0;
	background-color: #ffedec;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	align-items: center;
}

.slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 2px;
	bottom: auto;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.switch-input:checked + .slider {
	background-color: #ff6261;
}

.switch-input:focus + .slider {
	box-shadow: 0;
}

.switch-input:checked + .slider:before {
	-webkit-transform: translateX(29px);
	-ms-transform: translateX(29px);
	transform: translateX(29px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 30px;
}

.slider.round:before {
	border-radius: 50%;
}

/*Notifications-Page-Section*/

/*Products-Page-Section*/.products-pg-wrap {
	width: 100%;
	height: auto;
	padding: 60px 0;
}

.products-pg-inner {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.products-pg-inner-left {
	width: auto;
	height: auto;
}

.web-filter-btn {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	border: 1px solid #ffedec;
	border-radius: 40px;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.products-pg-inner-left a {
	color: #37173d;
}

.mobile-filter-btn {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	border: 1px solid #ffedec;
	border-radius: 40px;
	padding: 10px 20px;
	align-items: center;
	gap: 8px;
	display: none;
}

.products-pg-inner-left a.bg-color {
	background: #ffedec;
	border: 1px solid #ffedec;
	border-radius: 40px;
}

.products-pg-inner-left a img {
	width: 20px;
	height: auto;
	object-fit: contain;
}

.products-filter-grid {
	width: 100%;
	height: auto;
	display: flex;
	gap: 35px;
}

.products-pg-filters {
	width: 35%;
}

.products-pg-filters-tab {
	width: 100%;
	height: auto;
}

.products-pg-filters-tab ul {
	padding: 0;
	margin: 20px 0px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.products-pg-filters-tab ul li {
	list-style: none;
	background: #fff8f7;
	border-radius: 32px;
	font-weight: 500;
	font-size: 12px;
	color: #37173d;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.products-pg-filters-tab ul li a {
	color: #37173d;
}

.products-pg-filters-tab ul li a i {
	color: #37173d;
}

.products-pg-grid {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 20px;
}

.products-in {
	width: 23%;
	text-align: center;
}

#products-in-wrap .products-in-2 {
	width: 31%;
}

.products-in a {
	display: block;
}

.products-in-img {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.products-in-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.5s;
}

.products-in:hover .products-in-img img {
	transform: scale(1.1);
	transition: 0.5s;
}

.products-in a h1 {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.12em;
	color: #37173d;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.products-in a p {
	font-weight: 500;
	font-size: 16px;
	color: #37173d;
	margin-bottom: 0;
}

.products-in a p span {
	color: #ff6261;
}

.products-pg-filters #accordion .faq-titel a {
	font-weight: 600;
	font-size: 13px;
}

.products-pg-filters #accordion .panel:first-child .panel-heading .faq-titel a {
	border-top: 1px solid #ffedec;
}

.products-pg-filters #accordion .panel:last-child {
	border-bottom: 1px solid #ffedec;
}

.products-pg-filters-label {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	margin: 15px 0 10px 0;
	font-weight: 500;
	font-size: 14px;
	color: #37173d;
}

.products-pg-filters-input {
	width: 18px;
	height: 18px;
	border-radius: 0px;
	margin-right: 10px;
	accent-color: #ff000000;
	color: transparent;
	border: 1px solid #ffedec;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.products-pg-filters-input:checked {
	border-color: #ff6261;
	background-image: url(../images/check.png);
	background-color: #ff6261;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.products-pg-filters-color-label {
	margin: 10px 10px 10px 0;
}

.products-pg-filters-radio {
	width: 25px;
	height: 25px;
	display: flex;
	appearance: none;
	outline: 2px solid #ffedec;
	border-radius: 50%;
	position: relative;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.products-pg-filters-radio:before {
	content: "";
	border-radius: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	margin: auto;
	content: " ";
	outline: 2px solid #fff;
	outline-offset: -1px;
}

.products-pg-filters-radio:checked {
	outline-color: #ff6261;
}

.products-pg-filters-radio:checked:before {
	outline: 2px solid #fff;
	outline-offset: -1px;
}

/*MOBILE-FILTER-SECTION*/
.mobile-filter-pg-wrap {
	width: 100%;
	height: auto;
	padding: 20px 0px 150px 0px;
}

.mobile-filter-pg-wrap .products-pg-filters {
	width: 100%;
	height: auto;
}

.products-pg-filters-tab ul li {
	padding: 8px 13px;
	gap: 6px;
}

.products-pg-filters h1 {
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 22px;
	letter-spacing: 0.12em;
	color: #37173d;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}

.products-pg-filters h1 a {
	color: #37173d;
	font-size: 30px;
	margin-right: 10px;
}

.mobile-filter-btn-wrap {
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	right: 0;
	padding: 15px;
	margin: auto;
	background: #ffffff;
	border-top: 1px solid #ffedec;
}

.products-pg-filters-button {
	width: 100%;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 12px;
	padding: 10px 0;
	background: #ff6261;
	border-radius: 20px;
	outline: none;
	border: none;
}

/*MOBILE-FILTER-SECTION*/
.product-in-not-found {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	padding: 10px 0 10px 0;
}

.product-in-not-found img {
	width: 90px;
	height: auto;
	object-fit: contain;
}

.product-in-not-found p {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin: 0;
	line-height: 22px;
	text-align: center;
}

/*Products-Page-Section*/

/*Products-Detail-Page-Section*/.product-detail-pg-wrap {
	width: 100%;
	height: auto;
	padding: 60px 0;
}

.product-detail-in {
	width: 100%;
	height: auto;
}

.product-detail-in h1 {
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 15px;
}

.product-detail-in p {
	font-weight: 500;
	font-size: 16px;
	color: #37173d;
	margin-bottom: 10px;
}

.product-detail-in p b {
	font-weight: 700;
}

.product-detail-rating {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.product-detail-rating ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 3px;
}

.product-detail-rating ul li {
	list-style: none;
}

.product-detail-rating ul li:last-child {
	padding-top: 4px;
}

.product-detail-rating ul li img {
	width: 16px;
	height: auto;
}

.product-detail-rating ul li span {
	font-weight: 500;
	font-size: 14px;
	color: #292929;
	margin-left: 5px;
}

.product-detail-right {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.product-detail-right h2 {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.product-detail-right .products-pg-filters-color-label {
	margin-top: 0;
	margin-bottom: 0;
}

.product-detail-number {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
}

.product-detail-number button {
	background: none;
	border: none;
	outline: none;
	color: #757575;
}

.product-detail-number button i {
	color: #757575;
}

.product-detail-number .input-group-field {
	background: none;
	border: 1px solid #ffedec;
	outline: none;
	padding: 10px 0px;
	width: 75px;
	font-weight: 500;
	font-size: 14px;
	color: #37173d;
	text-align: center;
	margin: 0 10px;
}

.product-detail-number .input-group-field::-webkit-outer-spin-button, .product-detail-number .input-group-field::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.product-detail-rent {
	width: 100%;
	height: auto;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.product-detail-rent-lbl {
	width: 48%;
	height: auto;
	border: 2px solid #ffedec;
	padding: 10px;
	margin: 0;
	cursor: pointer;
	position: relative;
}

.product-detail-rent-lbl h4 {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #37173d;
	margin: 0;
}

.product-detail-rent-lbl h4 span {
	font-weight: 400;
}

.product-detail-rent-lbl i {
	position: absolute;
	right: 10px;
	top: auto;
	left: auto;
	font-size: 16px;
	color: #ff6261;
	display: none;
}

.product-detail-rent input {
	display: none;
}

.product-detail-rent input[type="radio"]:checked + .product-detail-rent-lbl {
	background: #ffedec;
}

.product-detail-rent input[type="radio"]:checked + .product-detail-rent-lbl i {
	display: block;
}

.product-detail-description {
	width: 100%;
	height: auto;
	padding: 20px;
	border: 1px solid #ffedec;
	margin: 30px 0;
}

.product-detail-description h1 {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 10px;
}

.product-detail-description p {
	font-weight: 400;
	font-size: 16px;
	color: #37173d;
	margin-bottom: 0px;
}

.product-detail-specifications {
	width: 100%;
	height: 100%;
	padding: 20px;
	background: #fff8f7;
}

.product-detail-specifications h1 {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 15px;
}

.product-detail-specifications ul {
	padding: 0;
	margin: 0;
}

.product-detail-specifications ul li {
	list-style: none;
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #37173d;
}

.product-detail-specifications ul li i {
	font-size: 8px;
	color: #ff6261;
}

.product-detail-specifications table {
	width: 100%;
	height: auto;
}

.product-detail-specifications table tr:nth-child(odd) {
	background: #ffedec;
}

.product-detail-specifications table tr td {
	font-weight: 400;
	font-size: 14px;
	color: #37173d;
	padding: 8px 20px;
	width: 50%;
}

.product-detail-ask {
	width: 100%;
	height: auto;
	padding: 30px 0;
	border: 1px solid #ffedec;
	margin: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.first-child-img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.product-detail-ask p {
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin: 30px 0;
}

.product-detail-ask-btn {
	width: auto;
	height: auto;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.product-detail-ask-btn a {
	border: 1px solid rgba(55, 23, 61, 0.16);
	border-radius: 40px;
	padding: 8px 30px;
	display: flex;
	font-weight: 600;
	font-size: 12px;
	color: #37173d;
	line-height: 18px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	align-items: center;
	gap: 5px;
	transition: 0.5s;
}

.product-detail-ask-btn a:hover {
	border: 1px solid #37173d;
	color: #fff;
	background: #37173d;
	transition: 0.5s;
}

.product-detail-ask-btn a:hover img {
	filter: brightness(0) invert(1);
	transition: 0.5s;
}

.product-detail-ask-btn a img {
	width: 19px;
	height: 19px;
	object-fit: contain;
}

.product-detail-star {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: auto;
	padding: 30px 0;
	border: 1px solid #ffedec;
}

.product-detail-star-left {
	width: auto;
	height: auto;
}

.product-detail-star-left h2 {
	font-weight: 700;
	font-size: 32px;
	color: #000000;
	display: flex;
	margin-bottom: 0;
	align-items: center;
	gap: 10px;
}

.product-detail-star-left h2 span {
	font-weight: 500;
	font-size: 12px;
	color: #292929;
	line-height: 18px;
}

.product-detail-star-left h2 span b {
	font-weight: 600;
	font-size: 12px;
	color: #000000;
}

.product-detail-star-center {
	width: auto;
	height: auto;
}

.product-detail-star-center-in {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}

.product-detail-star-center-in meter {
	width: 150px;
	margin: 0 10px;
}

.product-detail-star-center-in p {
	margin-bottom: 0;
	font-weight: 500;
	font-size: 13px;
	color: #000000;
}

.product-detail-star-center-in meter::-webkit-meter-bar {
	background: #DFFECD;
	border-radius: 50px;
	width: 100%;
	border: none;
	height: 10px;
}

.product-detail-star-center-in meter::-webkit-meter-optimum-value {
	background: #DFFECD;
}

.product-detail-star-center-in meter::-webkit-meter-suboptimum-value {
	background: #DFFECD;
}

.product-detail-star-center-in meter::-webkit-meter-even-less-good-value {
	background: #DFFECD;
}

.product-detail-reviews {
	width: 100%;
	height: auto;
	margin: 30px 0 40px 0;
}

.product-detail-reviews .nav {
	flex-wrap: nowrap;
	border-bottom: 0px;
}

.product-detail-reviews .nav .nav-item {
	width: 100%;
}

.product-detail-reviews .nav-tabs .nav-link {
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	margin-bottom: 0px;
	border-radius: 0;
	border: 1px;
	border-bottom: 2px solid #ffedec;
}

.product-detail-reviews .nav-tabs .nav-link.active {
	border: 1px;
	border-bottom: 2px solid #37173d;
}

.product-detail-reviews .nav-tabs .nav-link:hover {
	border: 1px;
	border-bottom: 2px solid #37173d;
}

.product-user-reviews {
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	padding: 20px 0 30px 0;
	gap: 15px;
	border-bottom: 1px solid #ffedec;
}

.product-user-reviews-left {
	width: 50px;
	height: 50px;
}

.product-user-reviews-left img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

.product-user-reviews-right {
	width: 100%;
	height: auto;
}

.product-user-reviews-right h1 {
	font-weight: 400;
	font-size: 14px;
	color: #37173d;
	margin-bottom: 0;
	display: flex;
	align-items: center;
}

.product-user-reviews-right h1 b {
	font-weight: 600;
	margin-right: 8px;
}

.product-user-reviews-right h1 span {
	margin-left: auto;
}

.product-user-reviews-right p {
	font-weight: 400;
	font-size: 15px;
	color: #37173d;
	margin: 10px 0;
}

.product-user-reviews-upload-img {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: flex-start;
}

.product-user-reviews-upload-img img {
	width: 150px;
	height: 110px;
	object-fit: cover;
}

.product-user-reviews-btn {
	width: 100%;
	height: auto;
	margin: 30px 0 0px 0;
	text-align: center;
}

.product-user-reviews-btn a {
	padding: 12px 30px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ff6261;
	border: 1px solid #ffedec;
	border-radius: 24px;
	transition: 0.5s;
}

.product-user-reviews-btn a:hover {
	color: #fff;
	background: #ff6261;
	border: 1px solid #ff6261;
	transition: 0.5s;
}

.product-user-reviews-right-ans {
	width: 100%;
	height: auto;
	padding: 15px;
	background: #fff8f7;
	margin-top: 20px;
}

.product-user-reviews-right-ans h2 {
	font-weight: 600;
	font-size: 14px;
	color: #37173d;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.product-user-reviews-right-ans h2 span {
	margin-left: auto;
	font-weight: 400;
	font-size: 14px;
	color: #37173d;
}

.product-detail-heart {
	width: auto;
	height: auto;
	position: absolute;
	right: 10px;
	top: 10px;
}

.product-detail-heart label {
	width: 100%;
	height: 100%;
	cursor: pointer;
	margin-bottom: 0;
	border-radius: 50%;
	display: flex;
	box-shadow: 0px 0px 5px -2px #0009;
	align-items: center;
	justify-content: center;
	padding: 8px;
	background: #fff;
}

.product-detail-heart label i {
	font-size: 16px;
	color: #88E755;
}

.product-detail-heart input {
	display: none;
}

.product-detail-heart label .far.fa-heart {
	display: block;
}

.product-detail-heart label .fas.fa-heart {
	display: none;
}

.product-detail-heart input[type="checkbox"]:checked + label .far.fa-heart {
	display: none;
	transition: 0.5s;
}

.product-detail-heart input[type="checkbox"]:checked + label .fas.fa-heart {
	display: block;
	transition: 0.5s;
}

.single-product {
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}

/*Products-Detail-Page-Section*/

/*Renting-Detail-Page-Section*/.renting-pg-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.renting-pg-wrap .login-pg-wrap-label {
	width: 50%;
}

.renting-pg-wrap .login-pg-wrap-label-left {
	width: 48%;
}

.renting-pg-wrap .login-pg-wrap-label .cart-pg-box-select {
	width: 100%;
	padding: 10px 10px;
	background-position: right 15px center;
}

.renting-pg-wrap-shipping {
	width: 100%;
	height: auto;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ffedec;
}

.renting-pg-wrap-shipping-label {
	display: flex;
	align-items: flex-start;
	width: 100%;
	gap: 18px;
	border: 1px solid #ffedec;
	padding: 15px 20px;
	margin-bottom: 10px;
	cursor: pointer;
}

.renting-pg-wrap-shipping-label-bdr {
	border-color: #ff6261 !important;
}

.radio-btn {
	width: 13px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	outline: 2px solid #ffedec;
	outline-offset: 3px;
}

.renting-pg-wrap-shipping-label input[type="radio"] {
	display: none;
}

.renting-pg-wrap-shipping-label input[type="radio"]:checked + .radio-btn {
	background: #ff6261;
	border-radius: 50%;
	outline: 2px solid #ff6261;
	outline-offset: 3px;
}

.renting-pg-wrap-shipping-label h2 {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: -6px 0px 0px 0px;
	line-height: 25px;
	width: 100%;
}

.renting-pg-wrap-shipping-label h2 span {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #37173d;
	text-transform: none;
	letter-spacing: normal;
}

.cart-pg-inner .cart-pg-inner-btn a {
	background: #ff6261;
	color: #fff;
	border: 1px solid #ff6261;
}

.cart-pg-inner h3 {
	width: 100%;
	font-weight: 500;
	font-size: 14px;
	color: #37173d;
	text-align: center;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 30px;
	background: #fff;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 8px 20px;
	z-index: 9;
}

.cart-pg-inner h3:after {
	position: absolute;
	content: "";
	width: 35%;
	height: 100%;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	z-index: -1;
}

.cart-pg-inner h3:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	background: #cccccc;
	z-index: -1;
}

.cart-pg-inner .cart-pg-price-options ul li a img {
	margin-bottom: 10px;
}

.cart-added-items {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid #ffedec;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.cart-added-items:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cart-added-items-img {
	width: 100px;
}

.cart-added-items-img img {
	width: 100%;
}

.cart-added-items-text {
	width: 100%;
	height: auto;
}

.cart-added-items-text h4 {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	line-height: 18px;
}

.cart-added-items-text ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 20px;
}

.cart-added-items-text ul li {
	list-style: none;
	font-weight: 500;
	font-size: 14px;
	color: #37173d;
}

/*Renting-Detail-Page-Section*/

/*Payment-Page-Section*/.payment-pg-inner .notification-in h4 {
	font-weight: 500;
	font-size: 16px;
	color: #37173d;
	line-height: 25px;
	margin-bottom: 0;
	width: 100%;
}

.payment-pg-inner .notification-in h4 span {
	font-weight: 400;
	font-size: 14px;
	color: #292929;
}

.payment-pg-inner .notification-in {
	margin-bottom: 50px;
	align-items: center;
}

.payment-pg-inner .notification-in .switch {
	margin-bottom: 0px;
	width: 62px;
}

.payment-pg-inner .login-pg-wrap-label-left {
	width: 50%;
}

.payment-pg-date {
	width: 50%;
	height: auto;
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
}

.payment-pg-inner .cart-pg-inner-btn a {
	width: 50%;
}

/*Payment-Page-Section*/

/*PAGINATION-SECTION*/.pagination-web {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 40px 0 0px 0;
}

.pagination-web ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
	gap: 10px;
}

.pagination-web ul li {
	list-style: none;
}

.pagination-web ul li a {
	font-weight: 500;
	font-size: 16px;
	text-align: center;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #37173d;
	width: 56px;
	line-height: 40px;
	height: 40px;
	display: block;
	background: #fff;
	border-radius: 20px;
}

.pagination-web ul li a:hover {
	color: #fff;
	background: #ff6261;
}

.pagination-web ul li a.active {
	color: #fff;
	background: #ff6261;
}

.pagination-web ul li a i {
	color: #37173d;
	background: #fff;
	line-height: 40px;
	font-size: 20px;
}

.pagination-web ul li a.prev, .pagination-web ul li a.next {
	color: #37173d;
	background: #fff;
	line-height: 40px;
	font-size: 20px;
}

/*PAGINATION-MOBILE*/
.pagination-mobile {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 40px 0 0px 0;
	display: none;
}

.pagination-mobile ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
	gap: 10px;
}

.pagination-mobile ul li {
	list-style: none;
}

/*.pagination-mobile ul li a {  font-weight: 500;  font-size: 16px;  text-align: center;  letter-spacing: 0.12em;  text-transform: uppercase;  color: #37173D;  width: 56px;  line-height: 40px;  height: 40px;  display: block;  background: #fff;  border-radius: 20px;}*/
.pagination-mobile ul li a:hover {
	color: #fff;
	background: #ff6261;
}

.pagination-mobile ul li a.active {
	color: #fff;
	background: #ff6261;
}

.pagination-mobile ul li a i {
	color: #37173d;
	background: #fff;
	line-height: 40px;
	font-size: 20px;
}

.pagination-mobile ul li a.prev, .pagination-mobile ul li a.next {
	color: #37173d;
	background: #fff;
	line-height: 40px;
	font-size: 20px;
}

.pagination-mobile ul li:first-child {
	margin-right: 0;
	margin-left: 20px;
}

.pagination-mobile ul li:nth-child(2) {
	margin: auto;
	width: 100%;
}

.pagination-mobile ul li:last-child {
	margin-left: auto;
	margin-right: 20px;
}

.pagination-mobile ul li .cart-pg-box-select {
	margin-top: 0;
	width: 80px;
	border-radius: 50px;
	padding: 9px 0px 9px 0px;
	background-position: right 15px center;
	text-align: center;
}

/*PAGINATION-MOBILE*/

/*PAGINATION-SECTION*//*Page-Section*/.price-wrap {
	width: 100%;
	height: 100%;
	background: #ffffff;
	box-shadow: 0px 0px 4px rgb(0 0 0 / 25%);
	border-radius: 5px;
	overflow: hidden;
	padding-bottom: 120px;
	position: relative;
	transition: 0.5s;
	display: flex;
	isolation: isolate;
	transform-style: preserve-3d;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.page-wrap .margin-bottom {
	margin-bottom: 40px;
}

.price-wrap:before {
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	background-image: url(../images/pricing/bg.png);
	bottom: 0;
	left: 0;
	background-position: bottom;
	background-repeat: no-repeat;
	transition: 0.5s;
	z-index: -1;
	animation: zoom-in-zoom-out 5s ease infinite;
}

@keyframes zoom-in-zoom-out {
	0% {
		transform: scale(1, 1);
	}

	50% {
		transform: scale(1.1, 1.1);
	}

	100% {
		transform: scale(1, 1);
	}

}

.price-image {
	width: 100%;
	height: 250px;
}

.price-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.price-content {
	width: 100%;
	height: auto;
	padding: 20px;
	text-align: center;
}

.price-content h1 {
	font-weight: 600;
	font-size: 22px;
	text-align: center;
	color: #b2967d;
	margin-bottom: 10px;
}

.price-content hr {
	width: 75px;
	height: 4px;
	margin: auto;
	background: #000;
	border: none;
	margin-bottom: 10px;
}

.price-content h2 {
	font-weight: 700;
	font-size: 38px;
	text-transform: capitalize;
	color: #333333;
	margin: 20px 0;
}

.price-content ul {
	padding: 0;
	margin: 0;
}

.price-content ul li {
	font-weight: 400;
	font-size: 15px;
	color: #1a202c;
	list-style: none;
	margin-bottom: 12px;
}

.price-btn {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: auto;
}

.price-btn a {
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #1a202c;
}

.price-btn a.get-btn {
	background: #bfa99e;
	font-weight: 400;
	padding: 10px 40px;
	border-radius: 5px;
	color: #fff;
	border: 1px solid #bfa99e;
}

/*Page-Section*/

/*Select-Event-Booth-Section*/.steo-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.step-inner {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}

.back-icon {
	width: auto;
	height: auto;
}

.back-icon a {
	display: block;
}

.back-icon a i {
	font-size: 25px;
	color: #000;
	font-weight: 500;
}

.step-center {
	width: 75%;
	height: auto;
	margin: auto;
	text-align: center;
}

.step-center h1 {
	font-weight: 600;
	font-size: 40px;
	color: #000000;
	margin-bottom: 0;
}

.step-center ul {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	text-align: center;
}

.step-center ul li {
	list-style: none;
	width: 100%;
	position: relative;
}

.step-center ul li a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #000;
	font-weight: 600;
	font-size: 16px;
}

.step-center ul li a span {
	width: 35px;
	height: 35px;
	background: #fff;
	margin: auto;
	border: 5px solid #b2967d;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-center ul li a span:before {
	width: 15px;
	height: 15px;
	background: #bfa99e;
	border-radius: 50%;
	position: absolute;
	content: "";
	display: none;
	transition: 0.5s;
}

.step-center ul li a:hover span:before {
	display: block;
	transition: 0.5s;
}

.step-center ul li a.active span:before {
	display: block;
	transition: 0.5s;
}

.step-center ul li a:hover {
	color: #b2967d;
}

.step-center ul li a.active {
	color: #b2967d;
}

.step-center ul li a:before {
	width: 50%;
	height: 50%;
	background-image: url(../images/arrow-line.png);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	right: -65px;
	content: "";
	transition: 0.5s;
	background-size: contain;
	z-index: -1;
}

.step-center ul li:last-child a:before {
	display: none;
}

.step-form {
	width: 100%;
	height: 750px;
	overflow-y: scroll;
}

.step-form::-webkit-scrollbar {
	width: 5px;
	height: 10px;
}

.step-form::-webkit-scrollbar-track {
	background: #fff;
}

.step-form::-webkit-scrollbar-thumb {
	background-color: #0F330A;
	border: 1px solid #fff;
	border-radius: 0px;
}

.step-images {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.step-images label {
	width: 45%;
	cursor: pointer;
	height: 360px;
	border: 4px solid #fff;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}

.step-images label img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.step-images input {
	display: none;
}

.step-images label i {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #43d100;
	font-size: 30px;
	display: none;
}

.step-images input[type="checkbox"]:checked + label {
	border-color: #43d100;
}

.step-images input[type="checkbox"]:checked + label i {
	display: block;
}

.step-right {
	width: 100%;
	height: 100%;
	background: #ffffff;
	box-shadow: 0px 0.5px 10px rgb(0 0 0 / 25%);
	border-radius: 10px;
	padding: 35px 40px;
}

.step-right form {
	width: 100%;
	height: auto;
	position: sticky;
	top: 20px;
	z-index: 9;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.step-contact form {
	flex-direction: inherit;
	gap: 10px;
	justify-content: space-between;
}

.step-contact form label {
	width: 48%;
	margin-bottom: 0;
}

.step-contact form label .lbl-wrap {
	display: flex;
	gap: 10px;
	width: 100%;
}

.lbl-wrap .lbl-inner {
	width: 100%;
}

.lbl-wrap .lbl-inner span {
	font-weight: 400;
	font-size: 12px;
	color: #333333;
}

.step-contact form label p {
	font-weight: 400;
	font-size: 14px;
	color: #333333;
	margin-bottom: 5px;
}

.step-contact form label select {
	width: 100%;
	height: auto;
	font-weight: 400;
	font-size: 14px;
	color: #333333;
	padding: 10px;
	border: 1.43885px solid rgba(188, 188, 188, 0.5);
	border-radius: 5px;
	color: #333333;
	cursor: pointer;
	appearance: none;
	outline: none;
	background-image: url(../images/gray-drop-icon.png);
	background-size: 12px;
	background-position: right 10px center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

.drop-up-icon {
	background-image: url(../images/gray-drop-up-icon.png) !important;
}

/*Date-Picker-Contact-Page*/
.step-contact form label input[type="date"] {
	color: transparent;
	cursor: pointer;
	border: none;
	width: 100%;
	height: auto;
	padding: 10px;
	border: 1.43885px solid rgba(188, 188, 188, 0.5);
	border-radius: 5px;
	margin-bottom: 10px;
}

.step-contact form label input[type="date"]::before {
	color: #333;
	content: attr(placeholder) !important;
}

.step-contact form label input[type="date"]:focus, .step-contact form label input[type="date"]:valid {
	color: #333;
}

.step-contact form label input[type="date"]:focus::before, .step-contact form label input[type="date"]:valid::before {
	content: "" !important;
}

.step-contact form label input[type="date"]::-webkit-calendar-picker-indicator {
	background-image: url(../images/date.png);
	cursor: pointer;
	width: 20px;
	margin-right: 8px;
}

/*Date-Picker-Contact-Page*/
.step-right form h1 {
	font-weight: 500;
	font-size: 20px;
	margin: 20px 0;
	color: #333333cc;
}

.step-right form h1:first-child {
	margin-top: 0;
}

.step-right form input[type="text"] {
	width: 100%;
	height: auto;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	padding: 10px 0px 10px 10px;
	margin-bottom: 10px;
	border: 1.43885px solid rgba(188, 188, 188, 0.5);
	border-radius: 5px;
}

.step-contact form input[type="text"] {
	padding: 10px;
	color: #333;
	font-size: 14px;
}

.step-contact form input[type="number"] {
	padding: 10px;
	color: #333;
	width: 100%;
	height: auto;
	font-weight: 400;
	font-size: 14px;
	color: #333;
	margin-bottom: 10px;
	border: 1.43885px solid rgba(188, 188, 188, 0.5);
	border-radius: 5px;
}

.step-right form label textarea {
	width: 100%;
	height: 140px;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	padding: 10px 0px 10px 10px;
	margin-bottom: 10px;
	border: 1.43885px solid rgba(188, 188, 188, 0.5);
	border-radius: 5px;
}

/* Chrome, Safari, Edge, Opera */
.step-contact form input[type="number"]::-webkit-outer-spin-button, .step-contact form input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
.step-contact form input[type="number"][type="number"] {
	-moz-appearance: textfield;
}

.step-right form input[type="button"] {
	width: 100%;
	height: auto;
	font-weight: 400;
	font-size: 16px;
	margin-top: 10px;
	padding: 10px 0px 10px 0px;
	margin-bottom: 0px;
	border: 1.43885px solid rgba(188, 188, 188, 0.5);
	border-radius: 5px;
	color: #fff;
	background: #bfa99e;
}

.step-btns {
	width: 100%;
	height: auto;
	padding: 50px 0 0px 0;
	display: flex;
	align-items: center;
}

.step-btns a {
	background: #bfa99e;
	padding: 8px 50px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	border: 1px solid #bfa99e;
	margin-left: auto;
}

.step-pre-btn {
	background: #fff !important;
	font-size: 15px !important;
	color: #333333 !important;
	margin-left: 0 !important;
}

.modal-box .share-detail-pop .modal-dialog {
	width: 50%;
}

#report-popup .modal-dialog {
	width: 35%;
}

.share-detail-wrap {
	width: 100%;
	height: auto;
	padding: 35px;
}

.share-detail-heading {
	width: 100%;
	height: auto;
	text-align: center;
	margin-bottom: 20px;
}

.share-detail-heading span {
	color: #333333b2;
	font-weight: 600;
	font-size: 15px;
}

.share-detail-heading img {
	width: 80px;
	height: auto;
	object-fit: contain;
}

.share-detail-heading h1 {
	font-weight: 600;
	font-size: 35px;
	color: #000000;
	margin: 10px 0;
}

.share-detail-heading p {
	font-weight: 400;
	font-size: 14px;
	line-height: 25px;
	text-align: center;
	color: #333333de;
}

.share-detail-form {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 15px;
}

.share-detail-text {
	width: 100%;
	height: auto;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	padding: 10px 0px 10px 10px;
	border: 1.43885px solid rgba(188, 188, 188, 1);
	border-radius: 5px !important;
}

.share-detail-text::placeholder {
	color: #333;
	font-weight: 500;
}

.share-detail-textarea {
	width: 100%;
	height: 100px;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	padding: 10px 0px 10px 10px;
	border: 1.43885px solid rgba(188, 188, 188, 1);
	border-radius: 5px !important;
}

.share-detail-textarea::placeholder {
	color: #333;
	font-weight: 500;
}

.share-detail-lbl {
	width: 100%;
	height: auto;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	padding: 10px 0px 10px 10px;
	background: #fff;
	border: 1.43885px solid rgba(188, 188, 188, 1);
	border-radius: 5px !important;
	display: flex;
	align-items: center;
	margin-bottom: 0;
	position: relative;
}

.share-detail-lbl input[type="text"] {
	width: 100%;
	height: auto;
	border: none;
	outline: none;
	color: #333;
}

.share-detail-lbl input[type="text"]::placeholder {
	color: #333;
	font-weight: 500;
}

.share-detail-lbl input[type="password"] {
	width: 100%;
	height: auto;
	border: none;
	outline: none;
	color: #333;
}

.share-detail-lbl input[type="password"]::placeholder {
	color: #333;
	font-weight: 500;
}

.share-detail-lbl img {
	width: 18px;
	height: auto;
	object-fit: contain;
	margin-right: 10px;
}

.share-detail-form p {
	text-align: center;
	display: flex;
	width: fit-content;
	margin: auto;
	margin-bottom: 20px;
	gap: 5px;
	color: #333333;
	font-size: 15px;
	font-weight: 500;
}

.share-detail-form p a {
	display: block;
	color: #000000;
	font-weight: 600;
}

.share-detail-form p a u {
	color: #333;
	font-weight: 500;
}

.share-detail-form ul {
	padding: 0;
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.share-detail-form ul li {
	list-style: none;
}

.share-detail-form ul li a {
	display: block;
	width: 40px;
	height: 40px;
	background: #fff;
	padding: 5px;
	border-radius: 50%;
}

.share-detail-form ul li:last-child a {
	padding: 0px;
	width: 38px;
	height: 38px;
}

.share-detail-form ul li a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.share-detail-lbl-check {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 10px 0;
	margin-bottom: 0;
}

.share-detail-lbl-check input[type="checkbox"] {
	margin: 0;
	cursor: pointer;
}

.share-detail-lbl-check p {
	margin: 0;
	margin-left: 10px;
}

/*Date-Picker*/
.share-detail-lbl input[type="date"] {
	color: transparent;
	cursor: pointer;
	border: none;
	width: 100%;
	height: auto;
}

.share-detail-lbl input[type="date"]::before {
	color: #333;
	content: attr(placeholder) !important;
}

.share-detail-lbl input[type="date"]:focus, .share-detail-lbl input[type="date"]:valid {
	color: #333;
}

.share-detail-lbl input[type="date"]:focus::before, .share-detail-lbl input[type="date"]:valid::before {
	content: "" !important;
}

.share-detail-lbl input[type="date"]::-webkit-calendar-picker-indicator {
	background-image: url(../images/date.png);
	cursor: pointer;
	width: 20px;
	margin-right: 8px;
}

/*Date-Picker*/

/*Time-Picker*/.share-detail-lbl input[type="time"] {
	color: transparent;
	cursor: pointer;
	border: none;
	width: 100%;
	height: auto;
}

.share-detail-lbl input[type="time"]::before {
	color: #333;
	content: attr(placeholder) !important;
}

.share-detail-lbl input[type="time"]:focus, .share-detail-lbl input[type="time"]:valid {
	color: #333;
}

.share-detail-lbl input[type="time"]:focus::before, .share-detail-lbl input[type="time"]:valid::before {
	content: "" !important;
}

.share-detail-lbl input[type="time"]::-webkit-calendar-picker-indicator {
	background-image: url(../images/time.png);
	cursor: pointer;
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

/*Time-Picker*/
.share-detail-btn {
	width: 100%;
	height: auto;
	font-weight: 700;
	font-size: 16px;
	padding: 10px 0px 10px 0px;
	margin-bottom: 0px;
	border: 0;
	border-radius: 5px;
	color: #055f83;
	background: #65ff99;
	text-transform: uppercase;
}

.modal-box #sharedetails-submitted-popup .share-detail-pop .modal-dialog {
	width: 40%;
}

/*Select-Event-Booth-Section*/

/* Conatct-Page */.step-contact-wrapper {
	display: flex;
	align-items: flex-start;
}

.step-contact-left {
	width: 70%;
	height: auto;
	padding: 40px 20px;
	background: rgba(231, 216, 201, 0.5);
	border-radius: 10px 0px 0px 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.step-contact-logo {
	width: 130px;
	height: auto;
}

.step-contact-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.step-contact-left h1 {
	font-weight: 600;
	font-size: 32px;
	color: #000000;
	margin-bottom: 0;
}

.step-contact-left p {
	font-weight: 400;
	font-size: 15px;
	color: #333333;
	margin-bottom: 0;
}

.step-contact-img {
	width: 100%;
	height: auto;
}

.step-contact-img ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 0px;
}

.step-contact-img ul li {
	list-style: none;
	width: 32%;
	cursor: pointer;
}

.step-contact-img ul li:first-child {
	width: 100%;
	cursor: auto;
}

.step-contact-img img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.step-contact form label input[type="submit"] {
	background: #bfa99e;
	padding: 8px 80px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 15px;
	color: #fff;
	border: 1px solid #bfa99e;
	margin-top: 10px;
}

/* Conatct-Page */

/*Booth-Details*/.booth-detail-slider .owl-nav {
	display: none;
}

.about-text-bottom {
	width: 100%;
	display: flex;
	margin-top: 10px;
}

.about-text-bottom h3 {
	font-weight: 600;
	font-size: 22px;
	color: #000000;
	margin-bottom: 0;
}

.about-text-bottom-rating {
	width: auto;
	height: auto;
	margin-left: 40px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-text-bottom h3 {
	font-weight: 600;
	font-size: 22px;
	color: #000000;
	margin-bottom: 0;
}

.about-text-bottom-rating ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: -5px;
}

.about-text-bottom-rating ul li {
	list-style: none;
	width: 25px;
	height: auto;
}

.about-text-bottom-rating ul li img {
	width: 100%;
	height: 100%;
}

.about-text-bottom-rating span {
	font-weight: 400;
	font-size: 16px;
	color: #000000;
}

.booth-detail-list ul li {
	margin-bottom: 25px;
}

.booth-slider-image {
	height: 480px;
	border-radius: 10px;
}

.booth-slider-image img {
	border-radius: 10px;
}

.booth-detail-inner {
	padding: 0px 0px 0px 40px;
}

/*Booth-Details*/

/*Experience-Center*/#accordion.experience-inner {
	border: 1px solid #bebebe;
	border-radius: 0px 0px 10px 10px;
	border-top: 0;
	border-bottom: 0;
}

#accordion.experience-inner .panel {
	margin-bottom: 0;
	border: none;
	border-bottom: 1px solid #d2d2d2;
}

#accordion.experience-inner .panel:last-child {
	border-radius: 10px;
}

#accordion.experience-inner .faq-titel a {
	border-bottom: 0;
	font-weight: 500;
	font-size: 14px;
	padding: 15px 10px;
	padding-right: 40px;
	color: #333;
	border-top: 1px solid #ffedec;
}

#accordion.experience-inner .panel-title a.collapsed {
	background: #fff;
	color: #333;
	font-weight: 400;
}

#accordion.experience-inner .panel-title a {
	background: #fff;
	color: #000;
}

#accordion.experience-inner .panel:first-child .panel-heading .faq-titel a {
	border-top: 0;
	border-radius: none;
}

#accordion.experience-inner .panel:last-child .panel-heading .faq-titel a {
	border-bottom: 0;
	border-radius: 10px;
}

#accordion.experience-inner .faq-body {
	background: none;
	margin: 0;
	padding: 0;
	border-radius: 0;
	padding: 15px 30px;
	background: rgba(231, 216, 201, 0.3);
}

#accordion.experience-inner .faq-titel > a.collapsed:after {
	background: url(../images/drop-icon.png);
	background-repeat: no-repeat;
	background-position: center;
}

#accordion.experience-inner .faq-titel a:after {
	content: "";
	background: url(../images/drop-up-icon.png);
	background-size: contain !important;
	background-repeat: no-repeat;
	background-position: center;
	width: 14px;
	height: 14px;
	position: absolute;
	top: auto;
	right: 12px;
	transition: 0.1s;
}

#accordion.experience-inner .faq-body p {
	margin-bottom: 5px;
}

#accordion.experience-inner .faq-body p a {
	color: #000000cc;
}

.event-categories-heading {
	width: 100%;
	height: auto;
}

.event-categories-heading {
	width: 100%;
	height: auto;
}

.event-categories-heading h1 {
	font-weight: 500;
	font-size: 14px;
	color: #ffffff;
	margin-bottom: 0;
	background: #bfa99e;
	border-radius: 6px 5px 0px 0px;
	padding: 15px 10px;
}

.experience-right {
	width: 100%;
	height: auto;
}

.experience-right-grid {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.experience-right-image {
	width: 31%;
	height: 300px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	transition: 0.5s;
}

.experience-right-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.experience-right-image:hover img {
	transform: scale(1.1) rotate(5deg);
	transition: 0.5s;
}

.experience-right-image a {
	background: #bfa99e;
	border-radius: 10px;
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: #ffffff;
	padding: 10px 20px;
	position: absolute;
	bottom: 15px;
	z-index: 9;
}

.experience-right-image a:hover {
	background: #fff;
	color: #333;
}

.experience-slider-image {
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.experience-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#experience-center-slider .owl-nav {
	width: 100%;
	height: auto;
	padding-left: 20px;
	transition: 0.5s;
}

#experience-center-slider .owl-nav button {
	width: 40px;
	height: 50px;
	background: rgba(51, 51, 51, 0.8) !important;
	box-shadow: none;
	color: #ffffff !important;
	position: absolute;
	top: 45%;
	left: 15px;
	right: inherit;
	z-index: 0;
	border: none !important;
	outline: none;
	border-radius: 0px;
}

#experience-center-slider .owl-nav button i {
	font-size: 30px;
	text-align: center;
	display: flex;
	font-weight: 300;
	justify-content: center;
	height: 100%;
	color: #fff;
	place-items: flex-end;
	align-items: center;
}

#experience-center-slider .owl-nav button span {
	font-size: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	height: 100%;
	place-items: flex-end;
	align-items: center;
}

#experience-center-slider .owl-nav button:last-child {
	right: 20px;
	left: inherit;
}

.experience-tabs .nav-tabs {
	margin-bottom: 0px;
	border-bottom: 0;
}

.experience-tabs .nav-tabs .nav-item.show .nav-link, .experience-tabs .nav-tabs .nav-link {
	border: 1px solid #dddddd !important;
	color: #0F330A;
	margin-right: 0px;
	border-color: #0F330A;
	font-size: 14px;
	padding: 12px 20px;
	font-weight: 600;
}

.experience-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	border-color: #dddddd;
	background: #88E755;
}

.experience-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover {
	border-color: #dddddd;
	background: #88E755;
}

.experience-pagination {
	width: 100%;
	height: auto;
	margin-top: 30px;
}

.experience-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.experience-pagination ul li {
	list-style: none;
}

.experience-pagination ul li a {
	font-weight: 400;
	font-size: 14px;
	color: #000000;
	border: 1px solid #000000;
	border-radius: 4px;
	width: 30px;
	display: flex;
	height: 30px;
	align-items: center;
	justify-content: center;
}

.experience-pagination ul li a.active {
	color: #fff;
	background: #ccb6ae;
	border: 1px solid #ccb6ae;
}

.experience-pagination ul li a:hover {
	color: #fff;
	background: #ccb6ae;
	border: 1px solid #ccb6ae;
}

.experience-pagination ul li:first-child a {
	font-weight: 400;
	font-size: 14px;
	color: #000000;
	border: none;
	border-radius: 0;
	background: none;
}

.experience-pagination ul li:last-child a {
	font-weight: 400;
	font-size: 14px;
	color: #000000;
	border: none;
	border-radius: 0;
	background: none;
}

/*Experience-Center*/

/*Brokers-Section*/.brokers-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.brokers-inner {
	width: 100%;
	height: auto;
	text-align: center;
}

.brokers-inner-image {
	width: 100%;
	height: 180px;
	border-radius: 10px;
	/* border: 2px solid #000; */
	margin-bottom: 10px;
	overflow: hidden;
}

.brokers-inner-image img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	object-position: top;
	border-radius: 10px;
}

.brokers-inner h1 {
	font-size: 15px;
	color: #0F330A;
	font-weight: 600;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.brokers-inner p {
	font-size: 13px;
	color: #0F330A;
	font-weight: 600;
	margin-bottom: 0px;
}

.bestseller-in .owl-nav {
	width: 100%;
	height: auto;
	padding-left: 20px;
	transition: 0.5s;
}

.brokers-slider .owl-nav button {
	width: 50px;
	height: 50px;
	background: rgba(204, 182, 174, 0) !important;
	box-shadow: none;
	color: #ffffff !important;
	position: absolute;
	top: 30%;
	left: -60px;
	right: inherit;
	z-index: 0;
	border: none !important;
	outline: none;
	border-radius: 5px;
}

.brokers-slider .owl-nav button i {
	font-size: 80px;
	text-align: center;
	display: flex;
	font-weight: 100;
	justify-content: center;
	height: 100%;
	color: #0F330A;
	place-items: flex-end;
	align-items: center;
}

.brokers-slider .owl-nav button span {
	font-size: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	height: 100%;
	place-items: flex-end;
	align-items: center;
}

.brokers-slider .owl-nav button:last-child {
	right: -60px;
	left: inherit;
}

/*Brokers-Section*/

/*Categories-Section*/.categories-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.categories-inner {
	width: 100%;
	height: auto;
	text-align: center;
}

.categories-inner-image {
	width: 100%;
	height: 100px;
	border-radius: 50%;
	border: 2px solid #000;
	margin-bottom: 15px;
	overflow: hidden;
}

.categories-inner-image img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.categories-inner h1 {
	font-size: 14px;
	color: #0F330A;
	font-weight: 600;
	margin-bottom: 2px;
	text-transform: uppercase;
}

#categories-slider .owl-nav {
	width: 100%;
	height: auto;
	padding-left: 20px;
	transition: 0.5s;
}

#categories-slider .owl-nav button {
	width: 50px;
	height: 50px;
	background: rgba(204, 182, 174, 0) !important;
	box-shadow: none;
	color: #ffffff !important;
	position: absolute;
	top: 25%;
	left: -60px;
	right: inherit;
	z-index: 0;
	border: none !important;
	outline: none;
	border-radius: 5px;
}

#categories-slider .owl-nav button i {
	font-size: 80px;
	text-align: center;
	display: flex;
	font-weight: 100;
	justify-content: center;
	height: 100%;
	color: #0F330A;
	place-items: flex-end;
	align-items: center;
}

#categories-slider .owl-nav button span {
	font-size: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	height: 100%;
	place-items: flex-end;
	align-items: center;
}

#categories-slider .owl-nav button:last-child {
	right: -60px;
	left: inherit;
}

/*Categories-Section*/

/*Terms-Conditions-Section*/.terms-page {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.terms-in {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.terms-in h1, .terms-in h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #0F330A;
}

.terms-in h2 {
	font-weight: 700;
}

.terms-in h3 {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #000;
	text-align: center;
}

.terms-in p {
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 20px;
	color: #000;
}

.terms-in p:last-child {
	margin-bottom: 0px;
}

/*Terms-Conditions-Section*/

/*Deals-Section*/.deals-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.deals-in {
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 8px -5px #000;
	margin: 10px 0px;
	overflow: hidden;
	border-radius: 6px;
}

.deals-image {
	width: 100%;
	height: 277px;
	position: relative;
	overflow: hidden;
}

.deals-image img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.deals-image h4 {
	position: absolute;
	font-size: 12px;
	color: #fff;
	font-weight: 400;
	width: min-content;
	right: 0;
	top: 0;
	margin: 0;
	isolation: isolate;
	padding-top: 5px;
	padding-right: 5px;
	text-align: center;
}

.deals-image h4:before {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-top: 100px solid #066084;
	border-left: 100px solid transparent;
	right: 0px;
	top: 0px;
	margin: 0;
	z-index: -1;
}

.deals-contant {
	width: 100%;
	height: 315px;
	padding: 20px;
	background: #FFF7E6;
	display: flex;
	flex-direction: column;
}

.deals-contant ul {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 15px;
}

.deals-contant ul li {
	list-style: none;
	width: 15px;
	height: auto;
}

.deals-contant ul li img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.deals-contant h1 {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	color:#0F330A;
}

.deals-contant h2 {
	font-size: 15px;
	text-align: center;
	font-weight: 400;
	color: #808080;
	margin-bottom: 15px;
}

.deals-contant-inner {
	margin-top: auto;
}

.deals-contant p {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	color: #0F330A;
	margin-bottom: 10px;
}

.deals-contant a {
	padding: 7px 20px;
	display: flex;
	background: #88E755;
	width: fit-content;
	margin: auto;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	color: #0F330A;
	justify-content: center;
	margin-bottom: 15px;
}

.deals-contant h3 {
	color: #0F330A;
	font-size: 14px;
	text-align: left;
	font-weight: 400;
	margin-bottom: 5px;
}

.deals-slider .owl-nav {
	width: 100%;
	height: auto;
	padding-left: 20px;
	transition: 0.5s;
}

.deals-slider .owl-nav button {
	width: 35px;
	height: 35px;
	background: rgba(204, 182, 174, 0) !important;
	box-shadow: none;
	color: #ffffff !important;
	position: absolute;
	top: -90px;
	border: 2px solid #0F330A !important;
	left: inherit;
	right: 40px;
	z-index: 0;
	outline: none;
	border-radius: 0px;
}

.deals-slider .owl-nav button i {
	font-size: 24px;
	text-align: center;
	display: flex;
	font-weight: 400;
	justify-content: center;
	height: 100%;
	background-color: #DFFECD;
	color: #0F330A;
	place-items: flex-end;
	align-items: center;
}

.deals-slider .owl-nav button span {
	font-size: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	height: 100%;
	place-items: flex-end;
	align-items: center;
}

.deals-slider .owl-nav button:last-child {
	right: 0;
	left: inherit;
}

.deal-range-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.deal-range-wrap meter {
	width: 200px;
	margin: 0;
}

.deal-range-wrap span {
	margin-bottom: 0;
	font-weight: 500;
	font-size: 13px;
	color: #0A0A0A;
}

.deal-range-wrap meter::-webkit-meter-bar {
	background: #DFFECD;
	border-radius: 50px;
	width: 100%;
	border: none;
	height: 10px;
}

.deal-range-wrap meter::-webkit-meter-optimum-value {
	background: #DFFECD;
}

.deal-range-wrap meter::-webkit-meter-suboptimum-value {
	background: #277000;
}

.deal-range-wrap meter::-webkit-meter-even-less-good-value {
	background: #277000;
}

/*Deals-Section*/

/*Feedback-Section*/.feedback-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
	background: #DFFECD;
}

.feed-inner {
	width: 100%;
	height: auto;
}

.feed-inner ul {
	display: flex;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.feed-inner ul li {
	width: 20%;
	height: 250px;
	list-style: none;
	position: relative;
	overflow: hidden;
}

.feed-inner ul li iframe {
	width: 100% !important;
	height: 100%;
	max-width: 100% !important;
	min-width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
}

.feed-inner ul li a {
	display: block;
	height: 100%;
	width: 100%;
	overflow: hidden;
	transition: 0.5s;
}

.feed-inner ul li a:hover img {
	transform: scale(1.1) rotate(5deg);
	transition: 0.5s;
}

.feed-inner ul li a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

/*Feedback-Section*/
.ver-code {
	margin: auto;
	width: 100%;
	text-align: center;
}

.sumo-verification-txt {
	width: 40px;
	height: 40px;
	background: #fff;
	border: none;
	margin: 15px 3px 15px 2px;
	font-size: 18px;
	color: #000000;
	text-align: center;
	font-weight: 700;
	padding: 0;
	border: 1.53407px solid #ced4da;
	border-radius: 5px !important;
	-moz-appearance: textfield;
}

.sumo-verification-txt::-webkit-outer-spin-button, .sumo-verification-txt::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.modal-box #reset-password-suc-popup .share-detail-pop .modal-dialog {
	width: 30%;
}

.modal-box #forgot-popup .share-detail-pop .modal-dialog, .modal-box #verification-popup .share-detail-pop .modal-dialog {
	width: 40%;
}

.resources-pg-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.resources-inner {
	width: 100%;
	height: auto;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 25px;
}

.resources-inner-image {
	width: 100%;
	height: 210px;
	text-align: center;
    background-color: beige;
}

.resources-inner-image img {
	/*width: 100%;*/
	height: 100%;
	/* object-fit: cover; */
}

.resources-inner-text {
	width: 100%;
	height: 215px;
	/* background: #FFDA8F; */
	background: #FFF7E6;
	
	padding: 10px 10px;
	text-align: right;
	display: flex;
	flex-direction: column;
}

.resources-inner-text h1 {
	font-weight: 600;
	font-size: 18px;
	color: #0F330A;
	margin-bottom: 10px;
	text-align: left;
}

.resources-inner-text p {
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #0A0A0A;
	margin-bottom: 10px;
	text-align: left;
}

.resources-inner-text a {
	font-weight: 600;
	font-size: 15px;
	color: #0F330A;
	margin-top: auto;
}

.resources-pg-wrap .bestseller-btn a {
	color: #0F330A;
	display: flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin: auto;
}

.resources-pg-wrap .bestseller-btn a i {
	color: #0F330A;
}

.how-sumo-works .heading-in {
	margin-bottom: 50px;
}

.steps-inner {
	width: 100%;
	height: auto;
	display: flex;
	margin: 40px 0 60px 0;
	justify-content: center;
}

.step-box {
	width: 297px;
	height: auto;
	position: relative;
	margin: 0 -8.8px;
}

.step-box h1 {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #0F330A;
}

.step-img {
	width: 100%;
	height: 290px;
	margin: 50px auto;
	position: relative;
	display: flex;
	align-items: center;
	padding: 45px;
	justify-content: center;
}

.step-box .step-img:before {
	width: 100%;
	height: 50%;
	position: absolute;
	content: "";
	background-size: contain;
	background-image: url(../images/steps/top-shape-new.png);
	background-repeat: no-repeat;
	background-position: top;
	top: 1px;
}

.steps-inner .step-box:nth-child(2) .step-img:before {
	display: none;
}

.steps-inner .step-box:nth-child(4) .step-img:before {
	display: none;
}

.step-box .step-img:after {
	width: 100%;
	height: 50%;
	position: absolute;
	content: "";
	background-size: contain;
	background-image: url(../images/steps/botm-shape-new.png);
	background-repeat: no-repeat;
	background-position: bottom;
	bottom: 1px;
}

.steps-inner .step-box:nth-child(1) .step-img:after {
	display: none;
}

.steps-inner .step-box:nth-child(3) .step-img:after {
	display: none;
}

.step-img img {
	width: 100%;
	height: 100%;
	border-radius: 100%;
}

.step-box p {
	font-weight: 600;
	font-size: 22px;
	text-align: center;
	color: #0F330A;
	margin-bottom: 0;
}

.top-inner-back {
	width: auto;
	height: auto;
	padding: 5px 0;
	margin-right: auto;
}

.top-inner-back a {
	display: block;
	color: #fff;
	font-size: 30px;
}

.top-inner-back a i {
	font-weight: 400;
}

/*Broker-Profile*/
.broker-profile-pg-wrap {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.broker-profile {
	width: 100%;
	height: auto;
}

.broker-profile-bg {
	padding: 20px;
	/* background: rgb(223 254 205 / 40%); */
	background: #DFFECD;
	border-radius: 10px;
	margin-bottom: 30px;
}

.broker-profile-image {
	width: 100%;
	height: 250px;
	border-radius: 10px;
}

.broker-profile-image img {
	width: 100%;
    /* height: 100%; */
	border-radius: 10px;
	max-height: 700px ;
	/* object-fit: cover; */
	object-position: top;
}

.broker-profile h1 {
	font-weight: 600;
	font-size: 28px;
	color: #0F330A;
	margin-bottom: 20px;
}

.broker-profile-text {
	display: flex;
	align-items: center;
	width: 100%;
	height: auto;
}

.broker-profile-text p {
	margin: 0;
	display: flex;
	align-items: center;
	margin-right: 30px;
	font-weight: 500;
	font-size: 16px;
	color: #0A0A0A;
}

.broker-profile-text p span {
	display: flex;
	align-items: center;
	margin-right: 10px;
	background: #277000;
	border-radius: 5px;
	padding: 5px 10px;
}

.broker-profile-text p span img {
	width: 15px;
	height: 15px;
	margin-left: 5px;
	filter: brightness(0);
	object-fit: contain;
}

.verified-in {
	width: auto;
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 18px;
	padding: 0px 10px 0px 0px;
}

.verified-in h2 {
	margin: 0;
	background: #9a3bdd;
	font-weight: 500;
	font-size: 8px;
	align-items: center;
	color: #ffffff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
}

.verified-in h3 {
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	display: flex;
	align-items: center;
	color: #0F330A;
	margin-bottom: 0;
	margin-left: 10px;
}

.verified-in h3 img {
	width: 15px;
	object-fit: contain;
	margin-left: 5px;
}

.broker-profile-table {
	width: 100%;
	margin-top: 30px;
}

.broker-profile-table table {
	width: 100%;
}

.broker-profile-table table tr td {
	font-weight: 500;
	font-size: 16px;
	color: #0A0A0A;
	padding: 10px 0px;
	width: 100px;
}

.broker-profile-table table tr td.verified {
	color: #277000;
}

.broker-profile-table table tr td:last-child {
	font-weight: 600;
}

.broker-profile-table table tr td form {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px 0px;
	justify-content: space-between;
}

.broker-profile-table table tr td form label {
	width: 48%;
	height: auto;
	margin-bottom: 0;
	display: flex;
	background: #fff;
	border: 1px solid #9a9a9a;
	border-radius: 30px;
	padding: 8px;
}

.broker-profile-table table tr td form label a {
	width: 35px;
	height: 30px;
	margin-right: 10px;
	border-radius: 50%;
	display: block;
	border: 1px solid #055f83;
	padding: 7px;
}

.broker-profile-table table tr td form label img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.broker-profile-table table tr td form label input {
	background: #fff;
	border: none;
	outline: none;
	width: 100%;
	border-radius: 30px;
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 0.035em;
	color: #0F330A;
}

/*Broker-Profile*/
.experience-tabs .tab-content .tab-pane {
	padding: 30px;
	background: rgb(223 254 205 / 40%);


	border-radius: 0px 0px 10px 10px;
}

/*FAQ-Section*/
.faq-Categories {
	width: 100%;
	height: auto;
}

.faq-Categories h1 {
	font-size: 16px;
	background: #88E755;
	color: #fff;
	padding: 15px 15px;
	border-radius: 5px 5px 0px 0px;
	margin-bottom: 0;
}

.faq-Categories ul {
	padding: 15px 0;
	margin: 0;
	background: #fff;
	border-radius: 0px 0px 5px 5px;
}

.faq-Categories ul li {
	list-style: none;
}

.faq-Categories ul li a {
	padding: 10px 15px;
	display: block;
	background: #fff;
	font-size: 14px;
	border-bottom: 1px dashed #bfbfbf;
	color: #0F330A;
	font-weight: 500;
}

.faq-Categories ul li a.active {
	background: #DFFECD;
	font-weight: 600;
	border-bottom: 1px dashed #88E755;
}

.faq-Categories ul li a:hover {
	background: #DFFECD;
	font-weight: 600;
	border-bottom: 1px dashed #88E755;
}

.faq-body-right {
	width: 80%;
	display: flex;
	align-items: center;
	gap: 20px;
}

.faq-body-inner {
	width: 100%;
	border-radius: 10px;
}

.faq-body-inner img {
	width: 100%;
	height: 150px;
	border-radius: 10px;
}

.faq-body-inner video {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.video-section {
	text-align: center;
	height: 150px;
	border-radius: 10px;
}

.position-relative {
	position: relative !important;
	display: inline-block;
	height: 100%;
	border-radius: 10px;
	width: 100%;
}

.position-relative video {
	max-width: 100%;
}

.play-btn {
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	cursor: pointer;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(0, 16, 39, 0.3);
	border-radius: 10px;
}

.vid-sec .play-btn {
	border-radius: 10px;
}

.play-btn img {
	width: 38px !important;
	height: 38px !important;
}

.faq-wrapper {
	width: 100%;
	height: auto;
	padding: 50px 0;
}

.faq-inner h5 {
	font-size: 35px;
	color: #0F330A;
	margin-bottom: 20px;
	font-weight: 600;
}

.price-wrapper {
	width: 100%;
	height: auto;
	padding: 50px 0;
	background: #f0f0f0;
}

.price-detail {
	width: 100%;
	height: auto;
	padding: 15px;
	background: #fff;
	padding-bottom: 100px;
}

.price-detail h1 {
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 600;
	color: #000;
}

.price-detail table {
	width: 100%;
	height: auto;
	margin: 30px 0 20px 0;
}

.price-detail table tr {
	border-bottom: 1px solid #f0efef;
}

.price-detail table tr:last-child {
	border-bottom: none;
}

.price-detail table tr td {
	font-size: 15px;
	color: #35383a;
	padding: 12px 0;
	font-weight: 400;
}

.price-detail table tr td:last-child {
	color: #055f83;
	font-weight: 600;
}

.bill-btn {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 50px;
}

.bill-btn label {
	width: 100%;
	text-align: center;
	border: 1px solid #222222;
	padding: 7px 5px;
	color: #222222;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 0;
	cursor: pointer;
}

.bill-btn input[type="radio"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
	accent-color: #64ff99;
	appearance: none;
	background: #64ff99;
	border-radius: 50%;
	display: none;
}

/*.bill-btn input[type=radio]:checked {  outline: 2px solid #000000;  outline-offset: -5px;}*/
.bill-btn input[type="radio"]:checked + label {
	background: #055f83;
	color: #fff;
	border: 1px solid #055f83;
}

.bill-btn label b {
	font-weight: 600;
}

.price-detail-botm {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.price-detail-botm.product-deal {
	gap: 10px;
}

.price-detail-botm p {
	font-size: 16px;
	font-weight: 600;
	color: #0A0A0A;
	margin-bottom: 0;
	text-align: center;
}

.price-detail-botm a {
	font-size: 16px;
	font-weight: 600;
	color: #0A0A0A;
}

.price-detail-botm button {
	background: #64ff99;
	color: #055f83;
	font-size: 16px;
	padding: 8px 30px;
	border: none;
	outline: none;
	font-weight: 700;
	box-shadow: 5px 5px 10px -10px #000000bf;
}

.price-detail-botm button a {
	background: #64ff99;
	color: #055f83;
	font-size: 16px;
	padding: 8px 30px;
	font-weight: 700;
}

.price-procces {
	width: 100%;
	height: auto;
}

.price-procces-heading {
	width: 100%;
	height: auto;
	padding: 15px 20px;
	background: #fff;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 15px;
}

.price-procces-heading:last-child {
	margin-bottom: 0px;
}

.price-procces-heading.active {
	background: #055f83;
	margin-bottom: 0;
}

.price-procces-heading span {
	width: 20px;
	height: 20px;
	background: #055f83;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
	border-radius: 2px;
}

.price-procces-heading.active span {
	background: #fff;
	color: #055f83;
}

.price-procces-heading h1 {
	font-size: 16px;
	margin-bottom: 0;
	text-transform: uppercase;
	color: #000;
	font-weight: 600;
}

.price-procces-heading.active h1 {
	color: #fff;
}

.price-procces-heading h1 p {
	font-size: 14px;
	margin-bottom: 0;
	text-transform: none;
	color: #222222;
	font-weight: 400;
	margin-top: 7px;
}

.price-procces-heading a {
	display: block;
	height: 100%;
	border: 1px solid #64ff99;
	padding: 8px 40px;
	margin-left: auto;
	text-align: center;
	color: #64ff99;
	font-size: 16px;
	font-weight: 600;
}

.price-procces-inner {
	width: 100%;
	height: auto;
	padding: 20px 30px;
	background: #fff;
	margin-bottom: 20px;
}

.pay-login {
	display: flex;
	width: 100%;
	gap: 50px;
}

.pay-login form {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 50%;
	gap: 15px;
	text-align: right;
}

.pay-login form input[type="text"] {
	width: 100%;
	border: none;
	border-bottom: 1px solid #c8c8c8;
	padding: 10px 0px;
	color: #656565;
	outline: none;
	font-size: 15px;
}

.pay-login form input[type="password"] {
	width: 100%;
	border: none;
	border-bottom: 1px solid #c8c8c8;
	padding: 10px 0px;
	color: #656565;
	outline: none;
	font-size: 15px;
}

.pay-login form a {
	font-size: 14px;
	color: #656565;
	font-weight: 500;
}

.pay-login form input[type="submit"] {
	background: #64ff99;
	color: #055f83;
	font-size: 16px;
	padding: 8px 30px;
	border: none;
	outline: none;
	font-weight: 700;
	box-shadow: 5px 5px 10px -10px #000000bf;
}

a.pay-login-btn {
	display: block;
	height: 100%;
	border: 2px solid #64ff99;
	padding: 10px 40px;
	margin-left: auto;
	width: 50%;
	text-align: center;
	color: #64ff99;
	font-size: 16px;
	font-weight: 600;
}

.add-Address {
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.add-Address form {
	width: 70%;
	height: auto;
	display: flex;
	gap: 15px 0px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.add-Address form label {
	width: 49%;
	margin-bottom: 0;
	border: 1px solid #e0e0e0;
}

.add-Address form label input[type="text"] {
	width: 100%;
	border: none;
	outline: none;
	color: #999999;
	font-size: 14px;
	padding: 10px;
}

.add-Address form label input[type="text"]::placeholder {
	color: #999999;
}

.add-Address form textarea {
	width: 100%;
	height: 100px;
	color: #999999;
	font-size: 14px;
	padding: 10px;
	border: 1px solid #e0e0e0;
}

.add-Address form textarea::placeholder {
	color: #999999;
}

.add-Address form input[type="submit"] {
	background: #64ff99;
	color: #055f83;
	font-size: 15px;
	padding: 8px 40px;
	border: none;
	outline: none;
	font-weight: 700;
	box-shadow: 5px 5px 10px -10px #000000bf;
	margin-top: 0px;
}

.add-Address form label select {
	width: 100%;
	border: 1px solid #e0e0e0;
	height: 100%;
	color: #999999;
	font-size: 14px;
	outline: none;
	cursor: pointer;
	padding: 10px;
	appearance: none;
	background: url(../images/dropdown.png);
	background-size: 10px;
	background-position: right 10px center;
	background-repeat: no-repeat;
}

.add-Address form label select option {
	color: #000;
	font-size: 14px;
}

.select-address {
	width: 30%;
	border: 1px solid #dddddd;
}

.select-address h1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0;
	padding: 11.1px;
	color: #666666;
	font-size: 15px;
	cursor: pointer;
}

.select-address h1 img {
	width: 15px;
	height: 100%;
	transform: rotate(0deg);
	transition: 0.5s;
}

.select-address h1 img.img-rotate {
	transform: rotate(180deg);
	transition: 0.5s;
}

.select-address-list {
	width: 100%;
	height: auto;
	display: none;
	padding: 11.1px;
	padding-top: 0;
}

.select-address-list a {
	color: #666666;
	font-size: 15px;
	font-weight: 500;
	border-top: 1px solid #ddd;
	padding: 8px 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
	overflow: hidden;
}

.select-address-list a:last-child {
	padding-bottom: 0;
}

.same-address {
	width: 100%;
}

.same-address label:first-child {
	width: auto !important;
	border: none;
	background: #ebf9ff;
	padding: 5px 8px;
	font-size: 14px;
	color: #000;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.same-address label input[type="checkbox"] {
	width: 15px;
	height: 15px;
	background-color: #ebf9ff;
	appearance: none;
	border: 1px solid #aaa;
}

.same-address label input[type="checkbox"]:checked {
	accent-color: #055f83;
	appearance: auto;
}

.summary-inner {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px 0px;
}

.summary-inner-pro {
	width: 48%;
	display: flex;
	gap: 20px 0px;
	flex-wrap: wrap;
}

.summary-inner-image {
	width: 30%;
	height: 108px;
}

.summary-inner-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.summary-inner-text {
	width: 70%;
	padding-left: 15px;
}

.summary-inner-text h1 {
	font-size: 20px;
	color: #000;
	margin-bottom: 5px;
	font-weight: 500;
}

.summary-inner-text p {
	font-size: 16px;
	color: #000;
	margin-bottom: 5px;
	font-weight: 400;
}

.summary-inner-text h2 {
	font-size: 25px;
	color: #000;
	margin-bottom: 20px;
	font-weight: 600;
}

.summary-inner-text h3 {
	color: #565656;
	font-size: 14px;
	text-align: left;
	font-weight: 400;
	margin-bottom: 5px;
}

.summary-inner-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.summary-inner .summary-inner-pro .summary-inner-text .deal-range-wrap {
	gap: 20px;
}

.summary-inner-bottom-number {
	width: fit-content;
	height: auto;
	display: flex;
	align-items: center;
}

.summary-inner-bottom a {
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	text-align: center;
	color: #6a6a6a;
	margin-left: 10px;
}

.summary-inner-bottom-number button {
	background: none;
	border: none;
	outline: none;
	color: #666666;
	border: 1px solid #dadada;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center;
}

.summary-inner-bottom-number button i {
	color: #757575;
}

.summary-inner-bottom-number .input-group-field {
	background: none;
	border: 1px solid #dadada;
	outline: none;
	padding: 5px 0px;
	width: 50px;
	font-weight: 500;
	font-size: 14px;
	color: #666666;
	text-align: center;
	margin: 0 10px;
}

.summary-inner-bottom-number .input-group-field::-webkit-outer-spin-button, .summary-inner-bottom-number .input-group-field::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.summary-inner-note {
	width: 100%;
	height: auto;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}

.summary-inner-note h1 {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin-bottom: 15px;
}

.summary-inner-note p {
	font-size: 15px;
	font-weight: 400;
	color: #000;
	line-height: 28px;
	margin-bottom: 0;
}

.summary-inner-note a {
	display: flex;
	background: #64ff99;
	color: #055f83;
	font-size: 16px;
	padding: 8px 60px;
	font-weight: 700;
	box-shadow: 5px 5px 20px -10px #000000bf;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin-left: auto;
	margin-top: 30px;
}

.card-payment {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
}

.card-inner {
	width: 30%;
	position: relative;
}

.card-inner img {
	width: 100%;
}

.card-inner a {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #959595;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-inner a i {
	color: #000;
	font-size: 14px;
}

.card-pay-btn {
	width: 100%;
	height: auto;
	margin: 40px 0 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.card-pay-btn a {
	width: auto;
	background: #64ff99;
	color: #055f83;
	font-size: 16px;
	padding: 8px 30px;
	font-weight: 700;
	text-align: center;
	box-shadow: 5px 5px 10px -10px #000000bf;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-pay-btn a i {
	color: #055f83;
	font-size: 20px;
	margin-left: 10px;
	font-weight: 400;
}

#card-charged-popup .share-detail-pop .modal-dialog {
	width: 45%;
}

#card-charged-popup .modal-dialog .modal-content {
	border-radius: 5px;
}

#card-charged-popup .share-detail-heading h1 {
	font-weight: 600;
	font-size: 25px;
	color: #000000;
	margin: 10px 0;
	margin-bottom: 20px;
}

#card-charged-popup .share-detail-heading p {
	font-weight: 400;
	font-size: 15px;
	text-align: justify;
	color: #333333;
	line-height: 25px;
}

#confirm-payment-popup .share-detail-heading img {
	width: 60px;
	margin-bottom: 20px;
}

#confirm-payment-popup .share-detail-heading h1 {
	font-weight: 600;
	font-size: 25px;
	color: #000000;
	margin: 10px 0;
}

#confirm-payment-popup .share-detail-wrap {
	width: 100%;
	height: auto;
	padding: 20px;
}

#confirm-payment-popup .share-detail-pop .modal-dialog {
	width: 40%;
}

#confirm-payment-popup .modal-dialog .modal-content {
	background: #f0f0f0;
	border-radius: 5px;
	border: none;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

#confirm-payment-popup .share-detail-heading p {
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;
	text-align: center;
	color: #000;
}

#confirm-payment-popup .share-detail-lbl-check {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px 0 20px 0;
}

#confirm-payment-popup .share-detail-lbl-check p {
	margin: 0;
	margin-left: 10px;
	color: #777777 !important;
}

#confirm-payment-popup .share-detail-lbl-check p a {
	color: #777777 !important;
}

#confirm-payment-popup .share-detail-btn {
	width: auto;
	height: auto;
	font-weight: 600;
	font-size: 16px;
	padding: 10px 50px;
	margin-bottom: 0px;
	border: 0;
	border-radius: 5px;
	color: #055f83;
	background: #65ff99;
	text-transform: uppercase;
}

#confirm-payment-suc-popup .share-detail-heading img {
	width: 60px;
}

#confirm-payment-suc-popup .share-detail-heading h1 {
	font-weight: 600;
	font-size: 25px;
	color: #000000;
	margin: 10px 0;
}

#confirm-payment-suc-popup .share-detail-wrap {
	width: 100%;
	height: auto;
	padding: 20px;
}

#confirm-payment-suc-popup .share-detail-pop .modal-dialog {
	width: 30%;
}

#confirm-payment-suc-popup .modal-dialog .modal-content {
	background: #f0f0f0;
	border-radius: 5px;
	border: none;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

#confirm-payment-suc-popup .share-detail-heading p {
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;
	text-align: center;
	color: #000;
}

#confirm-payment-suc-popup .share-detail-btn {
	width: auto;
	height: auto;
	font-weight: 600;
	font-size: 16px;
	padding: 10px 50px;
	margin-bottom: 0px;
	border: 0;
	border-radius: 5px;
	color: #055f83;
	background: #65ff99;
	text-transform: uppercase;
}

#rating-popup .share-detail-pop .modal-dialog {
	width: 35%;
}

#rating-popup .share-detail-heading h1 {
	font-weight: 600;
	font-size: 25px;
	color: #000000;
	margin: 25px 0 30px 0;
}

#rating-popup .modal-dialog .modal-content {
	background: #f0f0f0;
	border-radius: 5px;
	border: none;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

#rating-popup .share-detail-heading {
	margin-bottom: 0px;
}

#rating-popup .share-detail-btn {
	width: auto;
	height: auto;
	font-weight: 700;
	font-size: 16px;
	padding: 10px 50px;
	margin-bottom: 0px;
	border: 0;
	border-radius: 5px;
	color: #055f83;
	background: #65ff99;
	text-transform: uppercase;
}

.full-stars-example-two h4 {
	font-size: 16px;
	margin: 0;
	color: #000;
	font-weight: 600;
}

#rating-popup .share-detail-heading textarea {
	width: 100%;
	height: 90px;
	padding: 10px;
	background: transparent;
	border-radius: 5px;
	font-size: 14px;
	color: #333333;
	margin: 15px 0px 20px 0px;
}

/*Deals-Section*/
.explore-deals-products {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0px 20px;
}

.explore-deals-products .deals-in {
	width: 276px;
}

.deals-inner-filter {
	width: fit-content;
	height: auto;
	display: flex;
	align-items: center;
	margin-left: auto;
	margin-bottom: 20px;
}

.deals-inner-filter span {
	font-weight: 500;
	font-size: 16px;
	color: #0F330A;
}

.deals-inner-filter h2 {
	font-weight: 500;
	font-size: 16px;
	color: #0F330A;
	background: #DFFECD;
	border-radius: 8px;
	padding: 10px;
	margin: 0;
	margin-left: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.deals-inner-filter h2 i {
	font-size: 22px;
	color: #0F330A;
	margin-left: 5px;
}

.deals-inner-filter-list {
	position: absolute;
	top: 100%;
	background: #DFFECD;
	border-radius: 5px;
	width: max-content;
	right: 0;
	margin-top: 10px;
	display: none;
	z-index: 9;
}

.deals-inner-filter-list ul {
	padding: 10px 10px 12px 10px;
	margin: 0;
	position: relative;
}

.deals-inner-filter-list ul li {
	list-style: none;
}

.deals-inner-filter-list ul li a {
	font-weight: 600;
	font-size: 16px;
	color: #0F330A;
	padding: 5px 10px;
	display: block;
}

.explore-deals-inner {
	width: 100%;
}

.explore-deals-cat {
	width: 100%;
	height: auto;
	border-radius: 5px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dddddd;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.explore-deals-cat h1 {
	background: #0F330A;
	font-weight: 400;
	font-size: 18px;
	color: #fff;
	padding: 12px 15px;
	margin-bottom: 20px;
}

.deal-filter {
	width: 90%;
	height: auto;
	margin: auto;
	margin-bottom: 2px;
}

.deal-filter h2 {
	background: #F5F5F5;
	font-weight: 600;
	font-size: 14px;
	color: #0F330A;
	padding: 10px 10px;
	margin-bottom: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.deal-filter h2 i {
	font-size: 20px;
	color: #0F330A;
}

.deal-filter-list {
	width: 100%;
	/* background: #ebf9ff; */
	border-radius: 5px;
	padding: 10px;
	margin: 5px 0;
}

.deal-filter-list ul {
	padding: 0;
	display: flex;
	margin: 0;
	flex-direction: column;
}

.deal-filter-list ul li {
	list-style: none;
}

.deal-filter-list ul li a {
	font-size: 14px;
	color: #0F330A;
	padding: 5px 0 5px 0;
	display: block;
	font-weight: 400;
	border-bottom: 1px dashed #0A0A0A;
}

.deal-search-filter {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.deal-search-filter h2 {
	background: #0F330A;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	padding: 10px 10px;
	margin-bottom: 0px;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.deal-search-filter h2 i {
	font-size: 20px;
	/* color: #000; */
}

.deal-search-filter-list {
	width: 100%;
	background: #ffffff;
	border-radius: 5px;
	padding: 10px;
	margin: 5px 0;
	border: 1px solid #ddd;
}

.deal-search-filter-list ul {
	padding: 0;
	display: flex;
	margin: 0;
	flex-direction: column;
}

.deal-search-filter-list-scroll {
	height: 150px;
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 10px !important;
}

.deal-search-filter-list-scroll::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.deal-search-filter-list-scroll::-webkit-scrollbar-track {
	background: #DFFECD;
	border-radius: 0px;
}

.deal-search-filter-list-scroll::-webkit-scrollbar-thumb {
	background-color: #0F330A;
	border: 1px solid #DFFECD;
	border-radius: 0px;
}

.deal-search-filter-list ul li {
	list-style: none;
}

.deal-search-filter-list ul li a {
	font-size: 14px;
	color: #000;
	padding: 5px 0 5px 0;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.deal-search-filter-list ul li a input[type="checkbox"] {
	width: 15px;
	height: 15px;
	cursor: pointer;
}

.deal-search-filter-list form label {
	margin-bottom: 10px;
	border: 1px solid #dddddd;
	border-radius: 20px;
	display: flex;
	width: 100%;
	height: 38px;
	/* background: #ebf9ff; */
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.deal-search-filter-list form label i {
	position: absolute;
	left: 10px;
}

.deal-search-filter-list form label input[type="text"] {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	padding: 0px 5px 0px 30px;
	color: #333333;
	font-size: 14px;
	font-weight: 500;
	/* background: #ebf9ff; */
}

.delas-pagination {
	width: 100%;
	height: auto;
	text-align: center;
	margin-top: 30px;
}

.delas-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.delas-pagination ul li {
	list-style: none;
}

.delas-pagination ul li a {
	color: #000;
	font-size: 16px;
	font-weight: 500;
}

.pro-deal-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: auto;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.pro-deal-btn span {
	font-size: 14px;
	font-weight: 600;
	color: #0A0A0A;
}

.pro-deal-btn .summary-inner-bottom-number button {
	background: #88E755;
	border: none;
	outline: none;
	color: #0F330A;
	border: 1px solid #64ff99;
	border-radius: 0%;
	width: 30px;
	height: 40px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pro-deal-btn .summary-inner-bottom-number button i {
	color: #0F330A;
	font-size: 14px;
}

.pro-deal-btn .summary-inner-bottom-number .input-group-field {
	background: none;
	border: 1px solid #64ff99;
	outline: none;
	padding: 5px 0px;
	width: 35px;
	font-weight: 500;
	height: 40px;
	font-size: 14px;
	color: #666666;
	border-left: 0;
	border-right: 0;
	text-align: center;
	margin: 0 0px;
	-moz-appearance: textfield;
}

.pro-deal-btn a {
	background: #88E755;
	height: 40px;
	color: #0F330A;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 5px;
}

.pro-deal-btn a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: scale(0.9);
}

.deal-detail-right {
	width: 100%;
	height: auto;
	padding: 0 15px;
}

.deal-detail-bread {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.deal-detail-bread ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	align-items: center;
}

.deal-detail-bread ul li {
	list-style: none;
	position: relative;
	display: flex;
	align-items: center;
}

.deal-detail-bread ul li:before {
	position: absolute;
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	font-weight: 500;
	font-size: 15px;
	color: #585858;
	right: -15px;
	line-height: 0;
}

.deal-detail-bread ul li:last-child:before {
	display: none;
}

.deal-detail-bread ul li a {
	font-size: 14px;
	color: #0A0A0A;
	font-weight: 500;
}

.deal-detail-bread ul li a:hover {
	color: #055f83;
}

.deal-detail-bread-btn {
	width: auto;
	height: auto;
}

.deal-detail-bread-btn a {
	color: #bb0000;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 5px;
}

.deal-detail-bread-btn a span {
	width: 23px;
	height: 23px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #bb0000;
	border-radius: 50%;
}

.deal-detail-right-heading {
	width: 100%;
	height: auto;
}

.deal-detail-right-heading h1 {
	font-size: 20px;
	font-weight: 600;
	color: #0F330A;
	margin-bottom: 15px;
}

.deal-detail-right-heading p {
	font-size: 14px;
	line-height: 25px;
	color: #0A0A0A;
	margin-bottom: 15px;
}

.deal-detail-right-text {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.deal-detail-right-text-inner {
	width: 100%;
}

.deal-detail-right-text-inner h2 {
	font-size: 24px;
	color: #0F330A;
	font-weight: 600;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	position: relative;
}

.deal-detail-right-text-inner h2 span {
	margin-left: 5px;
	display: inline-flex;
	cursor: pointer;
	position: relative;
	align-items: center;
	justify-content: center;
	transform: rotate(180deg);
	border: 1px solid red;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	padding: 10px;
	font-size: 16px;
	top: -8px;
	color: red;
}

.deal-detail-right-text-inner h2 span div {
	position: absolute;
	width: 200px;
	background: #fff;
	border: 1px solid #aaa;
	padding: 5px 8px;
	font-size: 14px;
	color: #0F330A;
	font-weight: 400;
	line-height: 21px;
	border-radius: 5px;
	right: 35px;
	display: flex;
	top: auto;
	align-items: center;
	justify-content: flex-start;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	cursor: auto;
	transform: rotate(180deg);
}

.deal-detail-right-text-inner h2 span:hover div {
	opacity: 1;
	visibility: visible;
	transition: .5s;
}

.deal-detail-right-text-inner h2 span div:before {
	width: 12px;
	height: 12px;
	position: absolute;
	content: '';
	left: -6px;
	top: auto;
	background: #fff;
	border: 1px solid #aaa;
	transform: rotate(45deg);
	border-right-color: #fff;
	border-top-color: #fff;
}

.deal-detail-right-text-inner p {
	font-size: 14px;
	color: #0A0A0A;
	margin-bottom: 8px;
	font-weight: 500;
}

.deal-detail-right-text-inner p b {
	font-weight: 600;
	color: #0A0A0A;
}

.deal-detail-right-text-inner .share-icons {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
}

.deal-detail-right-text-inner .share-icons p {
	margin-bottom: 0;
}

.deal-detail-right-text-inner .share-icons ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.deal-detail-right-text-inner .share-icons ul li {
	list-style: none;
}

.deal-detail-right-text-inner .share-icons ul li a {
	display: flex;
	width: 30px;
	height: 30px;
	border: 1px solid #0F330A;
	padding: 7px;
	border-radius: 50%;
}

.deal-detail-right-text-inner .share-icons ul li:nth-child(5) a {
	border: 0;
	width: 25px;
	height: 25px;
	padding: 0px;
	border-radius: 0%;
}

.deal-detail-right-text-inner .share-icons ul li a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.deal-detail-right-text-inner .deals-contant {
	padding: 0;
	background: none;
	margin-top: 18px;
	height: auto;
}

.deal-detail-right-text-inner .deals-contant .deal-range-wrap {
	width: fit-content;
}

.deal-detail-right-text-inner .deals-contant .deal-range-wrap span {
	margin-left: 30px;
}

.deal-detail-right-in-blu {
	width: 100%;
	height: auto;
	padding: 15px;
	background: #DFFECD;
	margin-top: 30px;
	border: 1px solid #DFFECD;
}

.deal-detail-right-in-blu .heading-in h3 {
	font-weight: 600;
	font-size: 20px;
	color: #0F330A;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 15px;
	display: block;
}

.deal-detail-right-in-blu .heading-in h3:before {
	position: absolute;
	content: "";
	background: #88E755;
	width: 100px;
	height: 3px;
	bottom: 0;
	left: 0;
	z-index: 9;
}

.deal-detail-right-in-blu .heading-in h3:after {
	position: absolute;
	content: "";
	background: #d1dee4;
	width: 100%;
	height: 3px;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.broker-details-wrapper {
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
}

.broker-details-wrapper .broker-profile-text {
	display: flex;
	align-items: flex-start;
	width: 100%;
	height: auto;
	flex-direction: column;
}

.broker-details-wrapper .broker-profile-image {
	width: 20%;
	height: 121.93px;
	border-radius: 10px;
	overflow: hidden;
	margin-right: 20px;
}

.broker-details-wrapper .broker-profile-image img {
	width: 100%;
	height: 100%;
}

.broker-details-wrapper .broker-profile-text p {
	margin-bottom: 15px;
	margin-right: 0;
}

.broker-details-wrapper .broker-profile-text p span {
	background: #277000;
	color: #fff;
}

.broker-details-wrapper .broker-profile-text p span img {
	filter: brightness(0) invert(1);
	margin-right: 5px;
}

.broker-details-wrapper .broker-profile-text .verified-in {
	background: #fff;
	margin-right: 0;
}

.broker-details-list {
	width: 100%;
	column-count: 2;
	margin-top: 20px;
	column-gap: 30px;
}

.broker-details-list p {
	font-size: 14px;
	color: #0A0A0A;
	margin-bottom: 7px;
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: start;
	gap: 4px;
	padding-left: 10px;
	flex-direction: row;
	flex-wrap: wrap;
}

.broker-details-list p:before {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #88E755;
	left: 0;
	top: 6px;
}

.broker-details-list p b {
	font-weight: 600;
	color: #0A0A0A;
}

.broker-details-list p span {
	color: #277000;
}

.broker-details-social {
	width: 100%;
	height: auto;
	margin-top: 20px;
}

.broker-details-social form {
	width: 100%;
	height: auto;
	column-count: 2;
}

.broker-details-social form label {
	width: 70%;
	height: auto;
	margin-bottom: 15px;
	display: flex;
	background: #fff;
	/* border: 1px solid #9a9a9a; */
	border-radius: 30px;
	padding: 4px 5px;
}

.broker-details-social form label span {
	width: 35px;
	height: 32px;
	margin-right: 10px;
	border: 1px solid #277000;
	padding: 8px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.broker-details-social form label span img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.broker-details-social form label input {
	background: #fff;
	border: none;
	outline: none;
	width: 100%;
	border-radius: 30px;
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 0.035em;
	color: #277000;
}

.broker-details-list.without-dots p {
	padding-left: 0;
}

.broker-details-list.without-dots p:before {
	display: none;
}

.broker-details-list.without-dots p span {
	color: #277000;
	margin-right: 5px;
}

.broker-details-list.without-list {
	column-count: 1;
}

.broker-details-list.without-list p {
	flex-wrap: wrap;
	line-height: 25px;
}

.broker-details-list.without-list-2 {
	column-count: 1;
}

.broker-details-comment {
	width: 100%;
	height: auto;
	padding: 25px 15px;
	background: #fff;
	border: 1px solid #dddddd;
	margin-bottom: 20px;
}

.broker-details-comment:last-child {
	margin-bottom: 0px;
}

.broker-details-comment-profile {
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
}

.broker-details-comment-profile-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}

.broker-details-comment-profile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.broker-details-comment-profile-text {
	width: auto;
	height: auto;
	margin-left: 10px;
}

.broker-details-comment-profile-text h1 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
	color: #000;
	line-height: 24px;
}

.broker-details-comment-profile-text h1 span {
	color: #333;
	font-size: 13px;
	font-weight: 400;
}

.broker-details-comment-profile-text h1 b {
	color: #333;
	font-size: 13px;
	font-weight: 600;
}

.broker-details-comment p {
	font-size: 13px;
	color: #333333;
	line-height: 26px;
}

.broker-details-comment-btn {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 25px;
	margin-top: 20px;
	position: relative;
}

.broker-details-comment-btn a {
	font-size: 14px;
	color: #7f7f7f;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.broker-details-comment-btn a.reply {
	margin-left: -10px;
	font-weight: 600;
	color: #000;
}

.broker-details-comment-btn a:before {
	content: "";
	position: absolute;
	right: -12px;
	width: 1px;
	height: 100%;
	background: #7f7f7f;
	display: none;
}

.broker-details-comment-btn a:first-child:before {
	display: block;
}

.broker-details-comment-btn a img {
	width: 17px;
	height: auto;
}

.deal-detail-right-in-blu .bestseller-btn {
	margin-top: 0;
}

.deal-detail-right-in-blu .bestseller-btn a {
	padding: 8px 40px;
	color: #277000;
	font-weight: 600;
}

/*Deals-Section*/

/*Forum-And-Questions*/.fourm-wrap {
	width: 100%;
	height: auto;
	display: flex;
	background: #ebf8fe;
	align-items: flex-start;
}

.fourm-wrap .single-product {
	width: 40%;
	background: #b8eaff;
}

.fourm-wrap .single-product h1 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	line-height: 30px;
	background: #055f83;
	margin-bottom: 0;
	padding: 10px;
}

.fourm-wrap .single-product .product-image {
	width: 90%;
	margin: auto;
}

.fourm-wrap .single-product .price-detail-botm.product-deal p {
	color: #333;
	font-size: 14px;
	text-align: left;
	margin-top: 35px;
	line-height: 25px;
	padding-bottom: 30px;
}

.fourm-wrap .product-image .product-image-main {
	padding-top: 0;
	padding-bottom: 0;
	height: auto;
	margin-top: 40px;
}

.fourm-wrap .deal-detail-right-in-blu {
	width: 60%;
	border: none;
}

.fourm-wrap .single-product .price-detail-botm.product-deal {
	gap: 10px;
	width: 90%;
	margin: auto;
}

.fourm-wrap.deal-detail-right-in-blu.broker-details-comment.broker-details-comment-btn.buyer-rep {
	padding: 10px 0;
	margin-top: 0;
}

.fourm-wrap.deal-detail-right-in-blu.broker-details-comment.broker-details-comment-btn.buyer-rep:before {
	width: 100%;
	height: 1px;
	position: absolute;
	content: "";
	background: #afafaf;
	top: 0;
}

.fourm-wrap.deal-detail-right-in-blu.broker-details-comment.broker-details-comment-btn.buyer-rep:after {
	width: 100%;
	height: 1px;
	position: absolute;
	content: "";
	background: #afafaf;
	bottom: 0;
}

.broker-details-comment-add-comment {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
	border-bottom: 1px solid #afafaf;
	padding-bottom: 15px;
}

.broker-details-comment-add-comment-img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	overflow: hidden;
}

.broker-details-comment-add-comment-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.broker-details-comment-add-comment label {
	width: 85%;
	margin: 0;
	margin-left: auto;
	display: flex;
	justify-content: flex-end;
	background: transparent;
	height: 40px;
	border-radius: 20px;
	position: relative;
}

.broker-details-comment-add-comment label input[type="text"] {
	border: none;
	outline: none;
	background: #ebf9ff;
	width: 100%;
	height: 100%;
	padding-left: 20px;
	font-size: 12px;
	border-radius: 20px;	/* padding-right: 150px; */
	padding-right: 0px !important;
}

.broker-details-comment-add-comment label button {
	border: 0;
	outline: 0;
	width: auto;
	font-size: 14px;
	height: 100%;
	position: absolute;
	font-weight: 500;
	border-radius: 20px;
	padding: 0px 20px;
	background: #65ff99;
	color: #055f83;
}

.seller-reply {
	transform: scale(0.9);
	padding: 0px 0;
	margin-bottom: 15px;
}

.broker-details-comment-btns {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.broker-details-comment-btns ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.broker-details-comment-btns ul li {
	list-style: none;
}

.broker-details-comment-btns ul li label {
	padding: 8px 15px;
	border-radius: 20px;
	background: #fff;
	color: #000000;
	display: block;
	margin-bottom: 0;
	font-weight: 500;
	font-size: 13px;
	cursor: pointer;
}

.broker-details-comment-btns ul li input[type="radio"] {
	display: none;
}

.broker-details-comment-btns ul li input[type="radio"]:checked ~ label {
	background: #65ff99;
	color: #055f83;
}

.broker-details-comment-btns ul li label.active, .broker-details-comment-btns ul li label:hover {
	background: #65ff99;
	color: #055f83;
}

.broker-details-comment-btns form {
	width: 90%;
	height: auto;
	margin: 20px auto;
}

.broker-details-comment-btns form label {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin: 0;
}

.broker-details-comment-btns form label input[type="text"] {
	width: 100%;
	height: 38px;
	outline: none;
	padding: 0px 40px 0px 20px;
	border-radius: 30px;
	font-size: 14px;
	background: transparent;
	border: 1px solid #055f83;
}

.broker-details-comment-btns form label input[type="text"]::placeholder {
	color: #055f83;
}

.broker-details-comment-btns form label button {
	position: absolute;
	right: 15px;
	border: none;
	background: none;
	color: #055f83;
}

.related-questions .broker-details-comment-add-comment-img {
	width: 30px;
	height: 30px;
}

.broker-details-comment-add-comment form {
	width: 85%;
	margin-left: auto;
}

.related-questions .broker-details-comment-add-comment form label {
	height: 35px;
	width: 100%;
}

.related-questions.broker-details-comment-add-commentformlabelinput[type="text"] {
	padding-left: 10px;
	font-size: 12px;
	padding-right: 10px;
}

.related-questions-btn {
	width: 100%;
	height: 100%;
	margin-bottom: 20px;
}

.related-questions-btn input[type="text"] {
	padding-left: 15px !important;
}

.related-questions-btn a {
	width: 100%;
	height: auto;
	display: flex;
	background: #88E755;
	text-align: center;
	padding: 8px 0px;
	border-radius: 8px;
	margin-top: 10px;
	color: #055f83;
	font-size: 16px;
	font-weight: 500;
	align-items: center;
	justify-content: center;
}

.related-questions-btn a img {
	width: 12px;
	height: auto;
	object-fit: contain;
	margin-right: 5px;
}

.related-questions-list {
	width: 100%;
	height: auto;
}

.related-questions-list h1 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	position: relative;
	padding: 0px 0 10px 0;
}

.related-questions-list h1:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: #afafaf;
	bottom: 0;
}

.related-questions-list ul {
	padding: 0;
	margin: 0;
}

.related-questions-list ul li {
	list-style: none;
	margin-bottom: 10px;
}

.related-questions-list ul li a {
	font-size: 14px;
	font-weight: 500;
	line-height: 25px;
}

#add-question-popup .share-detail-pop .modal-dialog {
	width: 50%;
}

#add-question-popup .share-detail-heading {
	text-align: left;
}

#add-question-popup .share-detail-heading h1 {
	font-weight: 600;
	font-size: 20px;
	color: #000000;
	margin: 10px 0 20px 0;
}

#add-question-popup .share-detail-heading form {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}

#add-question-popup .share-detail-heading form input[type="text"] {
	width: 100%;
	height: 50px;
	border: 1px solid #dddddd;
	border-radius: 10px 10px 0px 0px;
	outline: none;
	padding: 0 10px;
	background: #ebf9ff;
	color: #333;
	font-size: 15px;
	font-weight: 500;
}

#add-question-popup .share-detail-heading form input[type="text"]::placeholder {
	color: #000;
}

#add-question-popup .share-detail-heading form textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #dddddd;
	border-top: 0;
	border-radius: 0px 0px 10px 10px;
	padding: 10px;
	background: #ebf9ff;
	color: #000;
	font-size: 15px;
	font-weight: 500;
}

#add-question-popup .share-detail-heading form textarea::placeholder {
	color: #000;
}

#add-question-popup .modal-dialog .modal-content {
	background: #ffffff;
	border-radius: 10px;
	border: none;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.share-detail-file {
	cursor: pointer;
	margin: 15px 0px 0px 0px;
	width: 60px;
	height: 60px;
	background: #e8e8e8;
	display: flex;
	border-radius: 5px;
	padding: 8px;
	border: 1px solid #bfbfbf;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}

.share-detail-file img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.share-detail-file input[type="file"] {
	position: absolute;
	left: 70px;
}

.share-detail-file input[type="file"]::file-selector-button {
	display: none;
}

.share-detail-buttons {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0 0px 0;
	gap: 20px;
}

.share-detail-buttons button {
	width: auto;
	height: auto;
	padding: 10px 40px;
	color: #fff;
	background: #d4d4d4;
	border: none;
	outline: none;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 600;
}

.share-detail-buttons button.active {
	background: #64ff99;
	color: #055f83;
}

#add-question-submit-popup .share-detail-pop .modal-dialog {
	width: 30%;
}

#add-question-submit-popup .share-detail-heading h1 {
	font-size: 25px;
}

#add-question-submit-popup .modal-dialog .modal-content {
	background: #fff;
	border-radius: 6px;
}

#add-question-submit-popup .share-detail-btn {
	padding: 8px 40px;
}

#add-question-submit-popup .share-detail-wrap {
	padding: 50px 10px 30px 10px;
}

/*Forum-And-Questions*/

/* Cart */.cart-wrapper {
	width: 100%;
	height: auto;
	padding: 50px 0;
	background: #e9f9ff;
}

.cart-pro {
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.cart-pro-in {
	width: 100%;
	display: flex;
	height: auto;
	background: #fff;
}

.cart-pro-image {
	width: 45%;
	height: auto;
}

.cart-pro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-pro-text {
	width: 75%;
	padding: 20px;
	position: relative;
}

.cart-pro-text h1 {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #000000;
}

.cart-pro-text p {
	font-weight: 400;
	font-size: 14px;
	line-height: 25px;
	color: #333333;
	margin-bottom: 30px;
}

.cart-pro-text h2 {
	font-weight: 600;
	font-size: 24px;
	color: #000000;
	margin-bottom: 15px;
}

.cart-pro-text h3 {
	color: #565656;
	font-size: 14px;
	text-align: left;
	font-weight: 400;
	margin-bottom: 5px;
}

.cart-pro-text .deal-range-wrap {
	width: fit-content;
}

.cart-pro-text .deal-range-wrap {
	margin-bottom: 15px;
}

.cart-pro-text .summary-inner-bottom-number button {
	background: #64ff99;
}

.cart-pro-text .summary-inner-bottom-number .input-group-field {
	border: 1px solid #000;
	border-radius: 5px;
	-moz-appearance: textfield;
}

.cart-pro-text .deal-range-wrap span {
	margin-left: 15px;
}

.cart-pro input[type="checkbox"] {
	appearance: none;
	width: 19px;
	height: 19px;
	cursor: pointer;
	margin-right: 5px;
	border: 1px solid #055f82;
	border-radius: 2px;
}

.cart-pro input[type="checkbox"]:checked {
	background: url(../images/chechbox.png);
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
}

.delete-btn {
	width: auto;
	height: auto;
	position: absolute;
	right: 10px;
	top: 10px;
}

.delete-btn a {
	display: block;
	width: 25px;
	height: 25px;
}

.delete-btn a img {
	width: 100%;
	height: 100%;
}

/* Cart */

/*EXTRA-CSS*/.resources-bg.page-bg img {
	width: 100%;
	height: 578px;
	filter: blur(0px);
	object-fit: cover;
}

/*ADD-CARD*/
.card-wrap {
	width: 100%;
	height: auto;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.add-card {
	width: 31.4%;
	height: auto;
	background: #000;
	padding: 40px 15px 15px 15px;
	border-radius: 10px;
	position: relative;
}

.add-card a {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 25px;
	height: 25px;
	background: #959595;
	border-radius: 50%;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
}

.add-card a i {
	font-weight: 500;
}

.card-inner-top {
	margin-bottom: 20px;
}

.card-wrap .add-card .card-inner-top input[type="text"] {
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
}

.add-card .card-inner-bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0;
}

.add-card .card-inner-bottom input[type="text"] {
	width: 50%;
	font-weight: 400;
	background: transparent;
	outline: none;
	font-size: 9.9px;
	border: none;
	color: #ffffff;
}

.add-card .card-inner-bottom input[type="text"]:last-child {
	text-align: right;
}

.add-card p {
	font-weight: 400;
	font-size: 10px;
	line-height: 16px;
	color: #ffffff !important;
	width: 100%;
	padding: 0;
	text-align: left;
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}

.card_intent {
	position: absolute;
	top: -10px;
	left: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	accent-color: #64ff99;
	appearance: none;
	background: #64ff99;
	border-radius: 50%;
}

.card_intent:checked {
	outline: 2px solid #000000;
	outline-offset: -5px;
}

#add-bank .modal-dialog {
	max-width: 500px;
	margin: 0rem auto;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

#add-bank .modal-heading {
	width: 100%;
	clear: both;
	height: auto;
	padding: 30px 0px;
	padding-bottom: 0;
	display: flex;
	background: #fff;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
}

#add-bank .modal-heading h1 {
	text-align: center;
	margin: 0;
	font-weight: 600;
	font-size: 28px;
	line-height: 42px;
	color: #000000;
	margin-left: auto;
	margin-right: auto;
}

#add-bank .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	border: 1px solid #fff !important;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	box-shadow: none;
	color: #000;
	margin-left: auto;
	font-size: 35px;
	text-shadow: none;
	font-weight: 300;
	opacity: 1;
	line-height: 30px;
	z-index: 9;
}

#add-bank .edit-in form {
	width: 100%;
	height: 100%;
}

#add-bank .edit-in form .form-bg {
	width: 100%;
	height: 100%;
	display: flex;
	gap: 0px 10px;
	justify-content: space-between;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
	background: #ebf9ff;
	border-radius: 8px;
	margin-bottom: 20px;
}

#add-bank .edit-in form label {
	width: 100%;
	text-align: left;
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -0.6px;
	color: #000;
}

.card-input-bottom {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

#add-bank .edit-in form .form-bg .card-input-bottom label {
	width: 30%;
	margin-bottom: 0;
}

#add-bank .edit-in_txt-2 {
	width: 100%;
	height: 40px !important;
	background: transparent;
	font-size: 13px;
	margin-bottom: 15px;
	border: none;
	border-bottom: 1px solid #ababab;
	position: relative;
	font-weight: 500;
	color: #737373;
	padding: 0px 20px 0px 0px;
	border-radius: 0px !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#add-bank .edit-in form label:last-child {
	margin-bottom: 0;
}

#add-bank .edit-in_txt-2:last-child {
	margin-bottom: 0px;
}

#add-bank .login-btn {
	width: 100%;
	height: auto;
	border-radius: 8px;
	background: #000;
	color: #fff !important;
	font-size: 16px;
	border: none;
	display: flex;
	font-weight: 700;
	margin-bottom: 0;
	text-align: center;
	align-items: center;
	justify-content: center;
}

#add-bank .modal-body {
	padding: 2rem;
}

#add-bank .modal-content {
	border-radius: 10px;
	overflow: hidden;
}

#add-bank .edit-in_btn {
	border-radius: 20px !important;
	width: auto !important;
	padding: 8px 50px;
	margin: auto;
	font-weight: 500 !important;
	margin-bottom: 0px;
}

/*ADD-CARD*/

/*NEW-CODE*/#pro-slider .owl-carousel .owl-stage {
	margin: auto;
}

.carousel-item video {
	width: 100%;
	height: auto;/*	object-fit: fill;*/
}

.resources-detail-image {
	/* width: 50%; */
	height: 400px;
	float: left;
	margin: 12px 20px 20px 0px;
	border-radius: 10px;
	overflow: hidden;
}

.resources-detail-image img {
	width: 100%;
	height: 100%;
}

.resources-detail-image video {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.terms-in.resources-detail h3 {
	text-align: left;
	line-height: 45px;
}

.terms-in.resources-detail p {
	text-align: justify;
}

.resources-inner-image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.form_inner_wrap {
	width: 100%;
	height: auto;
	display: flex !important;
	gap: 15px 0px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.resources-video-section {
	height: 100%;
}

.reply-inner {
	width: 100%;
	height: auto;
	margin-top: 15px;
}

.reply-inner label {
	width: 100%;
	margin: 0;
	margin-left: auto;
	display: flex;
	justify-content: flex-end;
	background: transparent;
	height: 40px;
	border-radius: 20px;
	position: relative;
}

.reply-inner label input[type="text"] {
	border: none;
	outline: none;
	background: #ebf9ff;
	width: 100%;
	height: 100%;
	padding-left: 20px;
	font-size: 12px;
	border-radius: 20px;    /* padding-right: 150px; */
	padding-right: 157px !important;
}

.reply-inner label textarea {
	border: none;
	outline: none;
	background: #ebf9ff;
	width: 100%;
	height: 80px;
	padding-top: 10px;
	padding-left: 10px;
	font-size: 14px;
	border-radius: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
}

.reply-inner label button {

	/* border: 0;
	outline: 0;
	width: auto;
	font-size: 14px;
	height: auto;
	font-weight: 500;
	border-radius: 20px;
	padding: 10px 20px;
	background: #65ff99;
	color: #055f83; */
	border: 0;
	outline: 0;
	width: auto;
	font-size: 14px;
	height: 100%;
	position: absolute;
	font-weight: 500;
	border-radius: 20px;
	padding: 0px 20px;
	background: #65ff99;
	color: #055f83;
}

.broker-details-comment-uploaded-image {

	/* width: 100%;
	height: auto;
	margin-bottom: 10px; */

	width: 40%;
	height: auto;
	margin-bottom: 10px;
}

.broker-details-comment-uploaded-image img {
	width: 100%;
	border-radius: 5px;
}

.card-added-succ {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

/*NEW-CODE*/

/* foram-page-new-css  start*/
#add-question-popupp .share-detail-pop .modal-dialog {
	width: 50%;
}

#add-question-popupp .share-detail-heading {
	text-align: left;
}

#add-question-popupp .share-detail-heading h1 {
	font-weight: 600;
	font-size: 20px;
	color: #000000;
	margin: 10px 0 20px 0;
}

#add-question-popupp .share-detail-heading form {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}

#add-question-popupp .share-detail-heading form input[type="text"] {
	width: 100%;
	height: 50px;
	border: 1px solid #dddddd;
	border-radius: 10px 10px 0px 0px;
	outline: none;
	padding: 0 10px;
	background: #ebf9ff;
	color: #333;
	font-size: 15px;
	font-weight: 500;
}

#add-question-popupp .share-detail-heading form input[type="text"]::placeholder {
	color: #000;
}

#add-question-popupp .share-detail-heading form textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #dddddd;
	border-top: 0;
	border-radius: 0px 0px 10px 10px;
	padding: 10px;
	background: #ebf9ff;
	color: #000;
	font-size: 15px;
	font-weight: 500;
}

#add-question-popupp .share-detail-heading form textarea::placeholder {
	color: #000;
}

#add-question-popupp .modal-dialog .modal-content {
	background: #ffffff;
	border-radius: 10px;
	border: none;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

#qlist {
	list-style-type: none;
	margin-left: 28px;
	margin-top: 7px;
	margin-bottom: 1rem;
}

.about-text pre {
	white-space: pre-wrap;
}

/* foram-page-new-css end */

/*NEW-CURRENCY-CODE*/

.currency-inner {
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
}

.currency-inner select {
	width: auto;
	color: #0A0A0A;
	height: auto;
	padding: 5px 15px;
	padding-right: 40px;
	border-radius: 5px;
	border: none;
	outline: none;
	font-size: 15px;
	cursor: pointer;
	font-weight: 500;
	appearance: none;
	background: url(../images/dropdown.png);
	background-color: #88E755;
	background-size: 10px;
	background-position: right 10px center;
	background-repeat: no-repeat;
}

.currency-inner select option {
	background: #f6f6f6;
}

select#catTab {
	width: 100%;
	height: 100%;
	border: 1px solid #dddddd;
	outline: none;
	cursor: pointer;
	padding: 10px 15px;
	border-radius: 10px;
	appearance: none;
	background: url(../images/dropdown.png);
	background-size: 10px;
	background-position: right 10px center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

/*NEW-CURRENCY-CODE*

/* Cookie Popup Styling */

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
.cookie-popup a {
    color: #f4a261;
    text-decoration: none;
}
.cookie-buttons button {
    margin: 5px;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}
#acceptCookies { background: #2a9d8f; color: white; }
#rejectCookies { background: #e76f51; color: white; }
#customizeCookies { background: #f4a261; color: white; }

.cookie-buttons button:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Modal Styling */
.cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    width: 90%;
    max-width: 400px;
    overflow-y: auto;
}
.cookie-modal-content h3 {
    margin: 0 0 10px;
    color: #2a9d8f;
}
.cookie-modal-content label {
    display: block;
    margin: 10px 0;
    font-size: 14px;
}
.cookie-modal-buttons button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #2a9d8f;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    transition: background 0.3s ease;
}
.cookie-modal-buttons button:hover {
    background: #21867a;
}

/* Close Button */
.cookie-modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: #888;
    cursor: pointer;
}

.cookie-modal-content .close:hover {
    color: #444;
}

/* Overlay */
.cookie-modal:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    display: block;
}
