:root{
	--color-theme-01:#7c7ad7;
	--color-theme-01-2:#785aa0;
	--color-theme-02:#ff6da5;
	--color-theme-03:#E7574E;
}
a, a:hover{
	text-decoration:none;
}
/*** utilities css ***/
.box-shadow{
	box-shadow:0 0 10px rgba(100,100,100,.15);
}
/*** text color css ***/
.text-theme{
	color:var(--color-theme-01);
}
/*** Button css ***/
.btn-theme{
	background:#E7574E;
	padding:10pt 20pt;
	border-radius:35px;
	color:#fff;
	font-weight:700;
	transition:all ease .3s;
}
.btn-theme:hover{
	background:#c34840;
	color:#fff;
}

.btn-primary{
	background:var(--color-theme-01);
	color:#fff;
}
.btn-primary:hover{
	background:#E7574E;
	color:#fff;
}
/*** back to top ***/
#back-to-top {
	position: fixed;
	bottom:80px;
	right:10px;
	background-color:var(--color-theme-01);
	color: white;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	z-index: 1000; /* Ensure it appears above other content */	
	/* Initial state for fade effect */
	opacity: 0;
	transition: opacity 0.5s ease; /* Smooth fade transition */
}
#back-to-top.show {
	opacity: 1;
}
/*** ***/
body{
	/*font-size:12px;*/
}
.body-bg{
	background-color:#F0F3FF;
}
.body-wrapper{
	height:100%;
	min-height:100vh;
	max-width:600px;
	margin:0 auto;
	padding-bottom:125px;
	/*overflow-Y:auto;*/
	position:relative;
	font-size:14px;
}
.searh-bar{
	background:#fff;
	border-radius:15pt;
	position:relative;
	padding:10px 0;
	padding-left:36px;
	box-shadow:0 0 10px rgba(100,100,100,.15);
}
.custom-input-search{
	background:transparent;
	border:0;
	padding:0 10pt;
	width:100%;
	font-size:14px;
	color:var(--color-theme-01);
}
.custom-input-search::placeholder{
	color:var(--color-theme-01);
}
.custom-input-search:focus{
	outline:none;
}
.search-icon{
	position:absolute;
	left:10px;
	top:50%;
	transform:translateY(-50%);
	color:var(--color-theme-01);
}
/*** Custom Select ***/
.custom-select-wrapper {
	position: relative;
	display: inline-block;
	user-select: none;
}
.custom-select-wrapper select {
	display: none;
}
.custom-select-2 {
	position: relative;
	display: inline-block;
}
.custom-select-trigger {
	position: relative;
	display: block;
	width:136px;
	padding:0 15px;
	font-size:14px;
	font-weight:600;
	color:var(--color-theme-01-2);
	cursor: pointer;
}
.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	width: 10px; height: 10px;
	top: 50%; right: 25px;
	margin-top: -3px;
	border-bottom: 1px solid var(--color-theme-01-2);
	border-right: 1px solid var(--color-theme-01-2);
	transform: rotate(45deg) translateY(-50%);
	transition: all .3s ease-in-out;
	transform-origin: 50% 0;
}
.custom-select-2.opened .custom-select-trigger:after {
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
	position: absolute;
	display: block;
	top: 100%; left: 0; right: 0;
	min-width: 100%;
	margin: 15px 0;
	border: 1px solid #f7f7f7;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0,0,0,.07);
	background: #fff;
	transition: all .3s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
	z-index:2;
}
.custom-select-2.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
}
.custom-options:before {
	position: absolute;
	display: block;
	content: '';
	bottom: 100%; right: 25px;
	width: 7px; height: 7px;
	margin-bottom: -4px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background: #fff;
	transform: rotate(45deg);
	transition: all .3s ease-in-out;
}
.option-hover:before {
	background: #f9f9f9;
}
.custom-option {
	position: relative;
	display: block;
	padding: 0 15px;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	font-weight:normal;
	color: var(--color-theme-01);
	line-height: 30px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}
.custom-option:first-of-type {
	border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
	border-bottom: 0;
	border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
	background: #eee;
}
/*** Main slider ***/
#main-slider .item{
	border-radius:10px;
	overflow:hidden;
}
#main-slider .item img{
	border-radius:10px;
}
/*** Main categories slider ***/
#main-categories .item a{
	text-decoration:none;
	color:var(--color-theme-02);
	display:block;
	transition:all ease .3s;
}
#main-categories .item a:hover h4{
	opacity:.65;
}
#main-categories .item a:hover img{
	transform:rotateY(180deg);
	opacity:.35;
}
#main-categories .item img{
	width:100%;
	max-width:52px;
	display:block;
	margin:0 auto 10pt;
	transition:all ease .3s;
}
#main-categories .item h4{
	font-size:14px;
	color:var(--color-theme-02);
	text-align:center;
	transition:all ease .3s;
}
@media (min-width:768px){
	#main-categories .item img{
		max-width:62px;
	}
	#main-categories .item h4{
		font-size:16px;
	}
}
/*** Flash sales ***/
.flash-sales-widget h4{
	margin-bottom:0;
	font-weight:bold;
	font-size:14pt;
	letter-spacing:1.25px;
	color:#000;
}
.flash-sales-widget h4 span{
	color:red;
}
.flash-sales-product-grid ul{
	margin:0;
	padding:0;
	display:flex;
	gap:5px;
}
.flash-sales-product-grid li{
	display:block;
	list-style:none;
	width:33.333%;
}
.flash-sales-product-link{
	cursor:pointer;
	text-decoration:none;
	transition:all ease .3s;
}
.flash-sales-product-link:hover .flash-sales-product-img img{
	max-width:100%;
	filter:brightness(0.85);
}
.flash-sales-card{
	border:1px solid #ddd;
	border-radius:10px;
}
.flash-sales-product-img{
	width:100%;
	height:auto;
	max-height:65px;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:10px 10px 0 0;
}
@media (min-width:768px){
	.flash-sales-product-img{
		max-height:100px;
	}
}
.flash-sales-product-img img{
	max-width:110%;
	transition:all ease .3s;
}
.flash-sales-points{
	text-align:center;
	padding:10px 0;
	font-size:14px;
	color:#d00;
}
.flash-sales-points span{
	font-weight:bold;
	font-size:16px;
	padding-right:5px;
}
/*** Promotion slider ***/
#promo-slider .owl-stage-outer .owl-stage{
	padding-left:-30px !important;
	margin-left:-30px !important;
}
/*** Your Favorite Pick-up ***/
.favorite-product-card{
	border:1px solid #ddd;
	border-radius:10px;
}
.favorite-product-img{
	width:100%;
	height:auto;
	max-height:65px;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:10px 10px 0 0;
}
@media (min-width:768px){
	.favorite-product-img{
		max-height:100px;
	}
}
.favorite-product-img img{
	max-width:110%;
	transition:all ease .3s;
}
.favorite-product-content{
	text-align:left;
	padding:10px;
	font-size:14px;
}
.favorite-product-name{
	font-size:14px;
}
.favorite-product-points{
	font-size:14px;
	color:#d00;
}
.favorite-product-points span{
	font-size:16px;
	font-weight:bold;
	padding-right:5px;
}
.favorite-product-link{
	color:var(--color-theme-01);
	transition:all ease .3s;
}
.favorite-product-link:hover{
	color:var(--color-theme-01-2);
}
.favorite-product-link:hover .favorite-product-img img{
	max-width:100%;
	filter:brightness(.85);
}
/*** Footer ***/
.fixed-footer-bar{
	width:100%;
	position:fixed;
	left:0;
	bottom:0;
	z-index:1;
}
.fixed-footer-bar-inner-wrapper{
	width:100%;
	max-width:600px;
	padding:10px 0;
	margin:0 auto;
	background:#fff;
	border-top:1px solid #f7f7f7;
	border-radius:10px 10px 0 0;
	box-shadow:0px -3px 10px rgb(175 175 175 / 35%);
}
.fixed-bottom-nav{
	width:100%;
}
.fixed-bottom-nav ul{
	margin:0;
	padding:0;
	display:flex;
	justify-content: space-around;
}
.fixed-bottom-nav li{
	list-style:none;
	display:block;
	padding:0 10px;
	width:24.666%;
	text-align:center;
}
.fixed-bottom-nav li a{
	color:var(--color-theme-01);
	font-size:12px;
}
.fixed-bottom-nav li a:hover .bottom-nav-icon{
	opacity:.65;
}
.bottom-nav-icon{
	display:block;
	margin:0 auto;
	max-width:25px;
	transition:all ease .3s;
}
.sub-title h4{
	margin-bottom:0;
}
/*** Profile ***/
.inner-wrapper{
	background:#ebeefb;
}
.page-inner-top-header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:10pt 0;
}
.left-div, .right-div{
	width:36px;
}
.page-inner-top-title h4{
	margin-bottom:0;
	font-size:12pt;
	font-weight:bold;
}
@media (min-width:768px){
	.page-inner-top-title h4{
		font-size:14pt;
	}
}
.back-previous-page{
	width:25px;
	height:25px;
	display:block;
}
.back-previous-page img{
	max-width:100%;
}
.wallets-grid{
	margin:10pt 0;
}
.wallets-grid ul{
	margin:0;
	padding:0;
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}
.wallets-grid li{
	width:48%;
	display:block;
	list-style:none;
}
.wallet-card{
	width:100%;
	background:#d4d3ff;
	border-radius:10px;
	padding:10pt;
	font-size:14px;
}
.wallet-amount{
	font-size:20px;
	font-weight:bold;
}
.label-sticker{
	font-size:14px;
	background:#f7f7f7;
	border-radius:10px;
	box-shadow:0 0 10px rgba(0,0,0,.15);
	transition:all ease .3s;
}
.label-sticker:hover{
	background:#efefef;
}
.label-sticker a{
	padding:10pt;
	display:block;
	color:var(--color-theme-01);	
}
/*** Address Book ***/
.btn-add-new-address{
	width:100%;
	padding:15px;
	border-radius:15px;
	border:1px solid var(--color-theme-01-2);
	display:flex;
	justify-content:center;
	align-items:center;
	color:var(--color-theme-01-2);
}
.my-address-book-card{
	display:flex;
	gap:10px;
	padding:15px;
}
.my-address-book-icon{
	width:36px;
}
.my-address-details{
	width:45%;
}
.my-address-details span{
	display:block;
}
/*** View order history ***/
.my-orders-list{
	margin:10px 0;
}
.my-orders-list ul{
	margin:0;
	padding:0;
}
.my-orders-list li{
	list-style:none;
	display:block;
}
.my-orders-card{
	width:100%;
	min-height:125px;
	padding:10px;
	border:1px solid #ddd;
	border-radius:15px;
	background:#fff;
	font-size:14px;
}
.my-orders-card-head{
	display:flex;
	justify-content:space-between;
	margin-bottom:10px;
}
.order-id{
	font-size:12px;
}
.my-orders-status{
	font-size:12px;
}
.my-orders-card-body{
	display:flex;
	justify-content:space-between;
	gap:5px;
	margin-bottom:15px;
}
.item-order-detail-grid{
	display:flex;
	gap:10px;	
}
.item-order-img{
	width:32px;
	height:32px;
	border:1px solid #eee;
	border-radius:5px;
	background:#f7f7f7;
	display:flex;
	justify-content:center;
	align-items:center;
	overflow:hidden;
}
.item-order-img img{
	max-width:100%;
}
@media (min-width:768px){
	.item-order-img{
		width:65px;
		height:65px;
	}
}
.item-order-detail{
	width:50%;
}
.item-order-name{
	margin-bottom:5px;
}
.my-orders-card-total span{
	font-size:14pt;
	font-weight:bold;
}
.my-orders-card-footer{
	border-top:1px dotted #ccc;
	display:flex;
	padding:10pt 0;
}
.my-orders-customer-date{
	color:#777;
	font-size:10pt;
}
/*** Order details ***/
.orders-details-list{
	margin:10px 0;
}
.orders-details-list ul{
	margin:0;
	padding:0;
}
.orders-details-list li{
	list-style:none;
	display:block;
}
.orders-details-card{
	width:100%;
	min-height:125px;
	padding:10px;
	border:1px solid #ddd;
	border-radius:15px;
	background:#fff;
	font-size:14px;
}
.orders-details-card-head{
	display:flex;
	justify-content:space-between;
	margin-bottom:10px;
}
.orders-details-card-body p{
	margin-bottom:5pt;
}
.orders-details-card-body hr{
	margin:5px 0;
	border-top-color: #aaa;
}
.orders-details-card-footer{
	border-top:1px dotted #ccc;
	display:flex;
	padding:10pt 0;
}
.shipping-icon{
	width:30%;
	max-width:26px;
	height:26px;
}
.shipping-icon img{
	max-width:100%;
}
.shipping-information{
	margin-left:10px;
	font-size:12px;
}
.receiver-name{
	text-transform:capitalize;
	font-weight:700;
	font-size:14px;
	margin-bottom:3px;
}
.receiver-contact{	
	color:#888;
	margin-bottom:3px;
}
.delivery-address{
	margin-bottom:5px;
}
.orders-details-amount{
	font-weight:600;
}
/*** Product page ***/
.product-slider-grid{
	margin-top:-60px;
}
#product-slider{
	
}
.product-page-wrapper{
	padding:15px;
	font-size:14px;
}
.product-title{
	font-weight:600;
	font-size:20px;
	margin-bottom:10px;
}
.product-pricing-grid{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:15px 0;
}
.product-price{
	color:var(--color-theme-03);
	padding:10px 0;
}
.product-price span{
	font-size:20px;
	font-weight:700;
}
@media (min-width:768px){
	.product-price span{
		font-size:32px;
	}
}
.qty-container{
	display: flex;
	align-items: center;
	justify-content: center;
	padding:15px 0;
}
.qty-container .input-qty{
	text-align: center;
	padding: 6px 10px;
	border:0;
	max-width: 80px;
	height:38px;
}
.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus{
	border:0;
	padding:0;
	font-size: 10px;
	height: 38px;
	width: 38px;
	transition: 0.3s;
}
.qty-container .qty-btn-plus{
	margin-left: -1px;
}
.qty-container .qty-btn-minus{
	margin-right: -1px;
}
.btn-cornered,
.input-cornered{
	border-radius: 4px;
}
.btn-rounded{
	border-radius: 50%;
}
.input-rounded{
	border-radius: 50px;
}
.voucher-card{
	padding:15px;
	border-radius:10px;
	background:#eee1ff;
	border: 1px solid #e1d2f5;
	position:relative;
}
.voucher-card-title-name, .voucher-card-balance{
	font-size:14px;
}
@media (min-width:768px){
	.voucher-card-title-name, .voucher-card-balance{
		font-size:16px;
	}
}
.voucher-card-label{
	position:absolute;
	top:0;
	left:0;
	background:#AC48D9;
	color:#fff;
	padding: 5px 20px 5px 10px;
    border-radius: 0 0 35% 0;
	display:flex;
	align-items:center;
	gap:5px;
}
.merchant-store-grid{
	display:flex;
	align-items:center;
	padding:10px 0;
}
.merchant-store-grid-left{
	display:flex;
	gap:10px;
}
.merchant-store-grid-right{
	margin-left:auto;
	width:30%;
	display:flex;
	justify-content:end;
}
.merchant-store-logo{
	width:40px;
	height:40px;
	position:relative;
	object-fit:fill;
	overflow:hidden;
	border-radius:50%;
}
.merchant-store-logo img{
	max-width:100%;
}
.merchant-store-name h3{
	font-size:14px;
	font-weight:600;
	margin-bottom:0;
}
.merchant-store-rating span.bi.checked{
	color: orange;
}
.merchant-store-grid-right .btn{
	padding:6px 15px;
	font-size:14px;
}
/*** custom radio button ***/
.custom-radio-container {
	display: block;
	position: relative;
	padding-right: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 18px;
	font-weight:600;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/* Hide the browser's default radio button */
.custom-radio-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
/* Create a custom radio button */
.custom-radio-checkmark {
	position: absolute;
	top: 0;
	right: 0;
	height: 25px;
	width: 25px;
	background-color: #fff;
	border-radius: 50%;
	border:2px solid #ccc;
}
/* On mouse-over, add a grey background color */
.custom-radio-container:hover input ~ .custom-radio-checkmark {
	background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.custom-radio-container input:checked ~ .custom-radio-checkmark {
	background-color: #fff;
	border:5px solid #AC48D9;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.custom-radio-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
/* Show the indicator (dot/circle) when checked */
.custom-radio-container input:checked ~ .custom-radio-checkmark:after {
	display: block;
}
/* Style the indicator (dot/circle) */
.custom-radio-container .custom-radio-checkmark:after {
	top: 0px;
	left: 0px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: white;
}
.add-to-cart-grid{
	width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index:2;
	background:#fff;
}
.add-cart-inner{
	width:100%;
	max-width:600px;
	min-height:70px;
	background:#fff;
	margin:0 auto;
	padding:10px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.product-content-details{
	padding:15px 0;
}
.product-content-title{
	text-align:center;
	padding:10px 0;
	font-size:16px;
	font-weight:700;
	position:relative;
}
.product-content-title:before{
	content:'';
	position:absolute;
	top:50%;
	left:10px;
	width:35%;
	height:1px;
	background:#bbb;
	transform:translateY(-50%);
}
.product-content-title:after{
	content:'';
	position:absolute;
	top:50%;
	right:10px;
	width:35%;
	height:1px;
	background:#bbb;
	transform:translateY(-50%);
}/*** vendor page ***/
.vendor-store-detail{
	margin:10pt 0;
	text-align:center;
}
.vendor-store-logo{
	width:60px;
	height:60px;
	margin:0 auto 10px;
	display:block;
	position:relative;
	object-fit:fill;
	overflow:hidden;
	border-radius:50%;
}
.vendor-store-logo img{
	max-width:100%;
}
.vendor-store-name h3{
	font-size:14pt;
	font-weight:600;
	margin-bottom:5px;
}
.vendor-store-name p{
	font-size:12px;
}
.vendor-store-rating{
	margin-bottom:10px;
}
.vendor-store-rating span.bi.checked{
	color: orange;
}

/*** cart page ***/
.shopping-cart-list ul{
	margin:0;
	padding:0;
}
.shopping-cart-list li{
	list-style:none;
	margin-bottom:10px;
}
.shopping-cart-card{
	padding:10px;
	background:#fff;
	border-radius:10px;
	border:1px solid #eee;
}
.shopping-cart-detail{
	font-size:14px;
}
.shopping-cart-detail{
	display:flex;
	align-items:start;
	gap:20px;
}
.shopping-cart-detail .shopping-cart-product-img{
	width:20%;
}
.shopping-cart-detail .item-order-detail{
	width:80%;
}
.shopping-product-order{
	width:100%;
    height:100%;
	max-width:120px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.shopping-product-order img{
	max-width:100%;
}
.item-sell-by{
	margin-bottom:5px;
}
.item-modal{
	background:#e0e1f7;
	padding:5px 10px;
	border-radius:25px;
	display:inline-block;
	font-size:12px;
	color:#6f5eb3;
}
.item-unit-price{
	font-size:14px;
	font-weight:500;
	display:flex;
	align-items:center;
	gap:10px;
}
.item-total-amount{
	padding:5pt 0 0;
	border-top:1px solid #eee;
	font-size:14px;
	text-align:right;
}
.item-total-amount span{
	font-size:16pt;
	font-weight:700;
	color:var(--color-theme-01);
}
.qty-grid{
	display: flex;
	align-items: center;
	justify-content: center;
	padding:15px 0;
	font-size:12px;
}
.qty-grid .input-qty{
	text-align: center;
	padding: 6px 10px;
	border:0;
	max-width:50px;
	height:26px;
	border:1px solid #ccc;
}
.qty-grid .qty-btn-minus,
.qty-grid .qty-btn-plus{
	border:1px solid #ccc;
	padding:0;
	font-size: 10px;
	height:26px;
	width:26px;
	transition: 0.3s;
	color:#000;
}
.qty-grid .qty-btn-plus{
	margin-left: -1px;
}
.qty-grid .qty-btn-minus{
	margin-right: -1px;
}
/*** check out page ***/
.check-out-items-img{
	width:52px;
	height:52px;
	overflow:hidden;
	border-radius:10px;
	border:1px solid #eee;
	display:flex;
	justify-content:center;
	align-items:center;
}
.check-out-items-img img{
	max-width:110%;
}
.check-out-items-title{
	font-weight:700;
	font-size:14px;
}
.check-out-items-price{
	font-size:20pt;
	font-weight:bold;
	color:var(--color-theme-03);
}
.table-check-out tr{
	border-bottom:1px solid #ccc;
}
.table-check-out tr td{
	padding:15pt 10px;
	font-size:14px;
}
span.amount-discount{
	color:var(--color-theme-01);
}
span.total-checkout-amount{
	font-size:20px;
	font-weight:bold;
}
.default-input-field{
	border:0;
	background:transparent;
	padding:10px 0;
}
.default-input-field:focus{
	outline:none;
}
/*** custom toggle switch ***/
.switch {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 25px;
}
.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left:2px;
	bottom:3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
	background-color: #2196F3;
}
input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}
.slider.round {
	border-radius: 34px;
}
.slider.round:before {
	border-radius: 50%;
}
/*** product list page ***/
.link-to-product{
	color:#000;
	display:block;
	transition:all ease .3s;
}
.link-to-product:hover{
	color:#666;
}
.product-list-card{
	min-height:125px;
	border:1px solid #eee;
	border-radius:15px;
	background:#fff;
}
.product-list-img{
	min-height:150px;
	overflow:hidden;
	border-radius:15px 15px 0 0;
	display:flex;
	justify-content:center;
	align-items:center;
}
.product-list-img img{
	max-width:110%;
}
.product-list-content{
	padding:10px;
}
.product-list-item-name{
	font-weight:600;
	margin-bottom:5px;
}


.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #F5F5F5;
  border-color: #dee2e6 #dee2e6 #F5F5F5;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #FFD333;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content{
	border:1px solid #DBDBDB;
	background:#FFF;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}
.note-popover .popover-content, .panel-heading.note-toolbar{
	display:none;
}
/*** enquiry detail page ***/
.ticket-chat-message{
	color:#111;
	margin-bottom:20pt;
	padding:10px;
	border-radius:10px;
	position:relative;
}
.ticket-chat-message p{
	font-size:12pt;
}
.ticket-chat-message.your-message{
	background:#afafff;
	position:relative;
}
.ticket-chat-message.your-message:before{
	content:'';
	position:absolute;
	right:20px;
	bottom:-10px;
	background:#afafff;
	width:32px;
	height:35px;
	transform:skewX(40deg) rotate(35deg);
}
.ticket-chat-message.support-message{
	background:#d8d8f0;
	position:relative;
}
.ticket-chat-message.support-message:before{
	content:'';
	position:absolute;
	left:20px;
	bottom:-10px;
	background:#d8d8f0;
	width:32px;
	height:35px;
	transform:skewX(-40deg) rotate(-35deg);
}
.message-date-created{
	text-align:right;
	font-size:12px;
	font-weight:500;
	color:#555;
	position:relative;
}

/*----------multiple-file-upload-----------*/
.input-group.file-caption-main{
    display: none;
}
.close.fileinput-remove{
    display: none;
}
.file-drop-zone{
    margin: 0px;
    border: 1px solid #fff;
    background-color: #fff;
    padding: 0px;
    display: contents;
}
.file-drop-zone.clickable:hover{
    border-color: #fff;
}
.file-drop-zone .file-preview-thumbnails{
    display: inline;
}
.file-drop-zone-title{
    padding: 15px;
    height: 120px;
    width: 120px;
    font-size: 12px;
}
.file-input-ajax-new{
    display: inline-block;
}
.file-input.theme-fas{
    display: inline-block;
    width: 100%;
}
.file-preview{
    padding: 0px;
    border: none;
    display: block;
}
.file-drop-zone-title{
    display: none;
}
.file-footer-caption{
    display: none !important;
}
.kv-file-upload{
    display: none;
}
.file-upload-indicator{
    display: none;
}
.file-drag-handle.drag-handle-init.text-info{
    display: none;
}
.krajee-default.file-preview-frame .kv-file-content{
    width:60px !important;
    height:60px !important;
	max-height:none !important;
    display: flex;
    text-align: center;
    align-items: center;
}
.krajee-default.file-preview-frame{
    background-color: #fff;
    margin: 3px;
    border-radius:5px;
    overflow: hidden;
}
.krajee-default.file-preview-frame:not(.file-preview-error):hover{
    box-shadow: none;
    border-color: #ed3237;
}
.krajee-default.file-preview-frame:not(.file-preview-error):hover .file-preview-image{
    transform: scale(1.1);
}
.krajee-default.file-preview-frame{
    box-shadow: none;
    border-color: #fff;
    max-width: 150px;
    margin: 5px;
    padding: 0px;
    transition: 0.5s;
}
.file-thumbnail-footer,
.file-actions{
    width: 20px;
    height: 20px !important;
    position: absolute !important;
    top: 3px;
    right: 3px;
}
.kv-file-remove:focus,
.kv-file-remove:active{
    outline: none !important;
    box-shadow: none !important;
}
.kv-file-remove{
    border-radius: 50%;
    z-index: 1;
    right: 0;
    position: absolute;
    top: 0;
    text-align: center;
    color: #fff;
	border:none !important;
    background-color:rgba(0,0,0,.15);
    padding: 2px 6px;
    font-size: 11px;
    transition: 0.5s;
}
.kv-file-remove:hover{
    border-color: #fdeff0;
    background-color: #fdeff0;
    color: #ed1924;
}
.kv-preview-data.file-preview-video{
    width: 100% !important;
    height: 100% !important;
}
.btn-outline-secondary.focus, .btn-outline-secondary:focus{
    box-shadow: none;
}
.btn-toggleheader,
.btn-fullscreen,
.btn-borderless{
    display: none;
}
.btn-kv.btn-close{
    color: #fff;
    border: none;
    background-color: #ed3237;
    font-size: 11px;
    width: 18px;
    height: 18px;
    text-align: center;
    padding: 0px;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, 
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, 
.show>.btn-outline-secondary.dropdown-toggle:focus{
    background-color: rgba(255,255,255,0.8);
    color: #000;
    box-shadow: none;
    color: #ed3237;
}
.file-preview{
	width:30px;
	height:20px;
	padding:0 !important;
	border:none !important;
}
.krajee-default.file-preview-frame{
	padding:0 !important;
}
.kv-file-content .file-preview-image{
    width:60px !important;
    height:60px;
    max-width:60px !important;
    max-height: none !important;
    transition: 0.5s;
}
.btn-danger.btn-file{
    padding: 0px;
    height:35px;
    width:35px;
    display:flex;
	align-items:center;
	justify-content:center;
    margin: 5px;
    background-color: #666;
    color: #fff;
	border:none;
    border-radius:5px;
    transition: 0.5s;
	cursor:pointer;
}
.btn-danger.btn-file:active,
.btn-danger.btn-file:hover{
    background-color: #fde3e5;
    color: #ed1924;
    border-color: #fdeff0;
    box-shadow: none;
}
.btn-danger.btn-file i{
    font-size: 30px;  
}
.btn-danger.btn-file input[type=file]{
	cursor:pointer;
}
@media (max-width: 350px){
    .krajee-default.file-preview-frame:not([data-template=audio]) .kv-file-content{
        width: 90px;
    }
}
.img-preview-modal{
	display:flex;
	align-items:center;
	justify-content:center;
	width:52px;
	height:52px;
	overflow:hidden;
}
.img-preview-modal img{
	min-width:100px;
}
/*** Multiple Upload image with preview ***/
.preview-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10pt;
	margin-bottom: 10pt;
}

.image-slot {
	width: 80px;
	height: 80px;
	border: 2px dashed #ccc;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #f9f9f9;
	cursor: pointer;
	overflow: hidden;
}

.image-slot:hover img.icon{
	opacity:.5;
}

.image-slot img.preview {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.image-slot img.icon {
	width: 24px;
	height: 24px;
	opacity: 0.3;
	pointer-events: none;
	transition:all ease .3s;
}

.image-slot input[type="file"] {
	display: none;
}

.remove-btn {
	position: absolute;
	top: 2px;
	right: 2px;
	background: rgba(0, 0, 0, 0.15);
	color: white;
	border: none;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size:8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1;
}

.add-button {
	width: 80px;
	height: 80px;
	border: 2px dashed #aaa;
	border-radius: 4px;
	background-color: #f1f1f1;
	font-size: 32px;
	color: #777;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.add-button.hidden {
	display: none;
}