@import url('simplebar.css');
@import url('perfect-scrollbar.css');
@import url('metisMenu.min.css');
@import url('semi-dark.css');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
	--admin-shell-bg: #eef4f8;
	--admin-surface: #ffffff;
	--admin-surface-muted: #f8fbfd;
	--admin-border: #dbe5ec;
	--admin-text: #4c5258;
}

body {
	font-size: 15px;
	color: var(--admin-text);
	letter-spacing: .5px;
	font-family: Roboto, sans-serif;
	background: linear-gradient(180deg, #f8fbfd 0%, var(--admin-shell-bg) 100%);
	overflow-x: hidden;
	line-height: 1.6;
}

.wrapper {
	width: auto;
	position: relative
}

a {
	text-decoration: none;
}

::placeholder {
	opacity: 0.4 !important;
}

/* Header */

.top-header .navbar {
	position: fixed;
	top: 0;
	left: 260px;
	right: 0;
	background-color: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid var(--admin-border);
	backdrop-filter: blur(12px);
	background-clip: padding-box;
	height: 60px;
	z-index: 10;
	padding: 0 1.5rem;
	transition: all .2s;
}


.top-header .navbar .top-navbar-right .nav-link {

	color: #293445;
	font-size: 18px;
	font-weight: 500;
	padding-right: .8rem;
	padding-left: .8rem;

}


.top-header .navbar .mobile-toggle-icon,
.top-header .navbar .search-toggle-icon {

	color: #293445;
	font-size: 18px;
	font-weight: 500;
	display: none;
	cursor: pointer;

}

.top-header .navbar .messages,
.top-header .navbar .notifications {

	position: relative;

}

.top-header .navbar .searchbar {
	position: relative;
	width: 20%;

}

.top-header .navbar .searchbar .search-close-icon {
	right: 2rem;
	opacity: 0.5;
	cursor: pointer;
	display: none;

}

.top-header .navbar .searchbar .form-control {
	border-radius: 30px;
	box-shadow: none;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	border: 1px solid #e2e3e4;

}

.top-header .navbar .dropdown-searchbar .form-control {
	border-radius: 30px;
	border: 1px solid rgb(206 212 218 / 0%);
	padding-left: 3rem;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}


.top-header .navbar .searchbar .form-control:focus,
.top-header .navbar .dropdown-searchbar .form-control:focus {
	border-color: #86b7fe;
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.top-header .navbar .searchbar .search-icon,
.top-header .navbar .dropdown-searchbar .search-icon {

	opacity: 0.5;

}


.dropdown-toggle-nocaret:after {
	display: none
}

.top-header .navbar .dropdown-menu {
	-webkit-animation: .6s cubic-bezier(.25, .8, .25, 1) 0s normal forwards 1 animdropdown;
	animation: .6s cubic-bezier(.25, .8, .25, 1) 0s normal forwards 1 animdropdown
}

@-webkit-keyframes animdropdown {
	from {
		-webkit-transform: translate3d(0, 6px, 0);
		transform: translate3d(0, 6px, 0);
		opacity: 0
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes animdropdown {
	from {
		-webkit-transform: translate3d(0, 6px, 0);
		transform: translate3d(0, 6px, 0);
		opacity: 0
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}


.top-header .navbar .dropdown-large,
.dropdown-user-setting .navbar .dropdown-large {
	position: relative
}


.dropdown-large .dropdown-menu {
	width: 360px;
	border: 0;
	padding: 0.5rem;
	border-radius: 10px;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)
}

.top-header .navbar .dropdown-large .dropdown-menu::after {
	content: '';
	width: 13px;
	height: 13px;
	background: #fff;
	position: absolute;
	top: -6px;
	right: 16px;
	transform: rotate(45deg);
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd
}

.top-header .navbar .dropdown-menu::after {
	content: '';
	width: 13px;
	height: 13px;
	background: #ffff;
	position: absolute;
	top: -6px;
	right: 16px;
	transform: rotate(45deg);
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd
}




.dropdown-user-setting .dropdown-menu {
	width: 280px;
	border: 0;
	padding: 0.5rem;
	border-radius: 10px;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)
}

.top-header .navbar .dropdown-user-setting .dropdown-menu::after {
	content: '';
	width: 13px;
	height: 13px;
	background: #fff;
	position: absolute;
	top: -6px;
	right: 16px;
	transform: rotate(45deg);
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd
}

.top-header .navbar .dropdown-menu::after {
	content: '';
	width: 13px;
	height: 13px;
	background: #ffff;
	position: absolute;
	top: -6px;
	right: 16px;
	transform: rotate(45deg);
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd
}



.top-header .navbar .dropdown-item {
	padding: .5rem;
	border-radius: 10px;
	background: #fafafa;
	margin-bottom: 5px;
	transition: .3s;
}

.top-header .navbar .dropdown-large .dropdown-item:hover,
.top-header .navbar .dropdown-user-setting .dropdown-item:hover {

	border-radius: 10px;
	color: #1e2125;
	background-color: #f5f5f5
}

.top-header .navbar .dropdown-item .setting-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	background-color: #e1e6eb;
}

.top-header .navbar .dropdown-item .setting-text {

	font-size: 16px;
	font-weight: 500;
}

.top-header .navbar .user-img {
	width: 38px;
	height: 38px;
	padding: 0px;
	border-radius: 50%;
}

.top-header .navbar .user-name {
	font-size: 15px;
	color: #5e636b;
	font-weight: 500;
	padding-right: 10px;
}


.top-header .navbar .dropdown-menu .apps:hover {

	background-color: #f8f9fa;
	transition: all 0.2;

}

.top-header .navbar .dropdown-menu .apps .apps-icon-box {

	color: #34383f;
	width: 50px;
	height: 50px;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e9ecef;
	margin: auto;
	border-radius: 50%;
}

.top-header .navbar .dropdown-menu .apps .apps-name {

	color: #34383f;
	font-size: 15px;

}

.top-header .navbar .dropdown-menu .msg-time {
	font-size: 12px;
}


.top-header .navbar .dropdown-menu .dropdown-msg-user {
	font-size: 14px;
}

.top-header .navbar .dropdown-menu .dropdown-msg-text {
	font-size: 13px;
}


.header-message-list {
	position: relative;
	height: 400px
}


.header-notifications-list {
	position: relative;
	height: 400px
}


.top-header .navbar .dropdown-menu .notification-box {

	width: 48px;
	height: 48px;
	font-size: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e1e6eb;

}


.top-header .navbar .nav-link .notify-badge {
	position: absolute;
	top: 1px;
	right: 0px;
	color: #fff;
	font-size: 13px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f50d0d;
}


/* Sidebar */

.sidebar-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 260px;
	height: 100%;
	background: linear-gradient(180deg, #16313d 0%, #1d3f4f 55%, #224b5e 100%);
	background-clip: padding-box;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	transition: all .2s;
	z-index: 16;
}


.sidebar-wrapper .sidebar-header {
	width: 260px;
	height: 60px;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	padding: 0 15px;
	z-index: 5;
	background: rgba(14, 28, 36, 0.96);
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background-clip: padding-box;
	transition: all .2s;
}

.sidebar-wrapper .sidebar-header .logo-icon {
	width: 35px;
}

.sidebar-wrapper .sidebar-header .logo-text {
	font-size: 22px;
	margin-left: 10px;
	margin-bottom: 0;
	letter-spacing: 1px;
	color: #f8fbfd;
}

.toggle-icon {
	font-size: 26px;
	cursor: pointer;
	color: #d8edf6;
}


.sidebar-wrapper ul {
	padding: 0;
	margin: 0;
	list-style: none;
	background: 0 0
}

.sidebar-wrapper .metismenu {
	background: 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px;
	margin-top: 60px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.sidebar-wrapper .metismenu li+li {
	margin-top: 5px
}

.sidebar-wrapper .metismenu li:first-child {
	margin-top: 5px
}

.sidebar-wrapper .metismenu li:last-child {
	margin-bottom: 5px
}

.sidebar-wrapper .metismenu>li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative
}

.sidebar-wrapper .metismenu a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: left;
	padding: 10px 15px;
	border-radius: 12px;
	font-size: 15px;
	color: rgba(241, 245, 249, 0.82);
	outline-width: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	letter-spacing: .5px;
	border-left: 4px solid rgb(255 255 255 / 0%);
	transition: all .2s ease-out
}

.sidebar-wrapper .metismenu a .parent-icon {
	font-size: 18px;
	line-height: 1
}

.sidebar-wrapper .metismenu a .menu-title {
	margin-left: 10px
}

.sidebar-wrapper .metismenu ul a {
	padding: 6px 15px 6px 15px;
	font-size: 14px;
	border: 0;
	border-left: 4px solid rgb(255 255 255 / 0%);
}

.sidebar-wrapper .metismenu ul a i {
	margin-right: 10px;
	font-size: 10px;
}

.sidebar-wrapper .metismenu ul {
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(10, 24, 33, 0.22);
	border-radius: 14px;
	padding: 6px 0;
}

.sidebar-wrapper .metismenu ul ul a {
	padding: 8px 15px 8px 30px
}

.sidebar-wrapper .metismenu ul ul ul a {
	padding: 8px 15px 8px 45px
}

.sidebar-wrapper .metismenu .mm-active>a,
.sidebar-wrapper .metismenu a:active,
.sidebar-wrapper .metismenu a:focus,
.sidebar-wrapper .metismenu a:hover {
	color: #ffffff;
	text-decoration: none;
	background: linear-gradient(90deg, rgba(78, 205, 196, 0.28), rgba(78, 205, 196, 0.12));
	border-left: 4px solid #4ecdc4;
	box-shadow: 0 10px 24px rgba(7, 15, 23, 0.2);
}

.menu-label {
	padding: 20px 15px 5px 5px;
	color: rgba(216, 237, 246, 0.48);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .5px
}

.metismenu .has-arrow:after {
	position: absolute;
	content: "";
	width: .5em;
	height: .5em;
	border-style: solid;
	border-width: 1.2px 0 0 1.2px;
	border-color: initial;
	right: 15px;
	transform: rotate(-45deg) translateY(-50%);
	transform-origin: top;
	top: 50%;
	transition: all .3s ease-out
}


@media screen and (min-width:1025px) {
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .logo-text {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper {
		width: 70px
	}

	.wrapper.toggled.sidebar-hovered .sidebar-wrapper {
		box-shadow: 0 .3rem .8rem rgba(0, 0, 0, .12) !important
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		width: 70px
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		justify-content: center
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		width: 70px
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu a {
		justify-content: center;
		border-left: 0px solid #3461ff;
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .menu-title {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li ul {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li.menu-label {
		display: none
	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .has-arrow:after {
		display: none
	}

	.email-toggle-btn {
		display: none !important
	}

	.chat-toggle-btn {
		display: none !important
	}
}



.wrapper.toggled .top-header .navbar {
	left: 70px
}

.wrapper.toggled .page-content {
	margin-left: 70px
}



/* Page Content */

.page-content {
	margin-left: 260px;
	margin-top: 60px;
	padding: 1.5rem;
	transition: all .2s;
	min-height: calc(100vh - 60px);
	background:
		radial-gradient(circle at top right, rgba(44, 123, 229, 0.08), transparent 18%),
		linear-gradient(180deg, #f8fbfd 0%, var(--admin-shell-bg) 100%);
}


/* Utilities */

.radius-10 {
	border-radius: 10px;
}

.radius-15 {
	border-radius: 15px;
}

.radius-30 {
	border-radius: 30px;
}


.font-13 {
	font-size: 13px;
}

.font-14 {
	font-size: 14px;
}

.font-20 {
	font-size: 20px;
}

.font-22 {
	font-size: 22px;
}

.font-24 {
	font-size: 24px;
}

.font-30 {
	font-size: 30px;
}

.font-35 {
	font-size: 35px;
}

.text-justify {
	text-align: justify;
}

.table-responsive {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	border: 1px solid #e1eaf0;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	scrollbar-width: thin;
	scrollbar-color: rgba(71, 85, 105, 0.35) transparent;
}

.table-responsive::-webkit-scrollbar {
	height: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
	background: rgba(71, 85, 105, 0.3);
	border-radius: 999px;
}

.table-responsive>.table {
	margin-bottom: 0;
	min-width: 720px;
	vertical-align: middle;
}

.table-responsive>.table>thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	padding: 1rem .95rem;
	border-bottom: 1px solid #d9e5ee;
	background: linear-gradient(180deg, #f8fbfd 0%, #eef5f9 100%);
	color: #334155;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.table-responsive>.table>thead th[data-sortable="true"] {
	cursor: pointer;
	user-select: none;
}

.table-responsive>.table>thead th[data-sortable="true"]::after {
	content: "\F229";
	font-family: bootstrap-icons;
	font-size: .72rem;
	margin-left: .45rem;
	opacity: .45;
}

.table-responsive>.table>thead th[data-sort-direction="asc"]::after {
	content: "\F235";
	opacity: 1;
}

.table-responsive>.table>thead th[data-sort-direction="desc"]::after {
	content: "\F229";
	opacity: 1;
}

.table-responsive>.table>tbody td,
.table-responsive>.table>tfoot th,
.table-responsive>.table>tfoot td {
	padding: .95rem;
	border-color: #ebf1f5;
	color: #334155;
	vertical-align: middle;
	background: transparent;
}

.table-responsive>.table>tbody tr {
	transition: background-color .18s ease, transform .18s ease;
}

.table-responsive>.table>tbody tr:hover {
	background-color: #f7fbff;
}

.table-responsive>.table>tbody tr:nth-child(even) {
	background-color: rgba(248, 251, 253, 0.9);
}

.table-responsive>.table .btn-group button,
.table-responsive>.table .dropdown>button {
	border: 0;
}

.table-responsive>.table .dropdown-menu {
	border: 1px solid #d9e5ee;
	border-radius: 14px;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.table-responsive>.table .badge,
.table-responsive>.table .btn,
.table-responsive>.table .dropdown-toggle,
.table-responsive>.table .btn-group {
	white-space: nowrap;
}

.fm-menu .list-group a {
	font-size: 16px;
	color: #5f5f5f;
	display: flex;
	align-items: center;
}

.fm-menu .list-group a i {
	font-size: 23px;
}

.fm-menu .list-group a:hover {
	background-color: rgb(52 97 255 / 15%);
	color: #3461ff;
	transition: all .2s ease-out
}

.add-post {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
}

.fm-icon-box {
	font-size: 32px;
	background: #fff;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
}


.back-to-top {
	display: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 26px;
	color: #fff;
	position: fixed;
	border-radius: 50%;
	bottom: 20px;
	right: 12px;
	background-color: #0d6efd;
	z-index: 5
}

.back-to-top:hover {
	color: #fff;
	background-color: #000;
	transition: all .5s
}


.project-user-groups img {
	margin-right: -14px;
	border: 1px solid #e4e4e4;
	padding: 2px;
	cursor: pointer;
}

.project-user-plus {
	width: 33px;
	height: 33px;
	margin-right: 0px;
	line-height: 33px;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 22px;
	cursor: pointer;
	border: 1px dotted #a9b2bb;
	color: #404142;
}

.user-groups img {
	margin-left: -14px;
	border: 1px solid #e4e4e4;
	padding: 2px;
	cursor: pointer;
}

.user-plus {
	width: 33px;
	height: 33px;
	margin-left: -14px;
	line-height: 33px;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 22px;
	cursor: pointer;
	border: 1px dotted #a9b2bb;
	color: #404142;
}

.icon-box {
	width: 60px;
	height: 60px;
	background-color: #ffffff;
	border-radius: 50%;
	border: 1px solid #c7c8cb;
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.product-box {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	cursor: pointer;
	background-color: #ffffff;
}

.best-product-item {
	background-color: #ffffff;
	cursor: pointer;
	border-radius: 10px;
	padding: .5rem;
}

.best-product-item:hover {
	background-color: #f5f5f5;
}

.product-box img {
	width: 100%;
}

.best-product {
	position: relative;
	height: 420px;
}

.by-device-container {
	position: relative;
	height: 120px;
}


.chart-container1 {
	position: relative;
	height: 340px;
}

.sepration {
	height: 100px;
}

.sepration-2 {
	height: 50px;
}

.gmaps,
.gmaps-panaroma {
	height: 400px;
	background: #eee;
	border-radius: 3px;
}

.theme-icons {
	background-color: #fff;
	color: #434547;
}

.cursor-pointer {
	cursor: pointer;
}

.icon-badge {
	width: 45px;
	height: 45px;
	font-size: 1.2rem;
	background: #f2f2f2;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.product-img-2 {
	width: 45px;
	height: 45px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid #e6e6e6;
}

.error-social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	margin: 5px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}


.productlist .product-box {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.25rem;
	border: 1px solid #e2e3e4;
	background-color: #ffffff;

}

.productlist .product-box img {
	width: 100%
}

.productlist .product-title {

	color: rgb(25, 27, 34);

}


.orderlist .product-box {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.25rem;
	border: 1px solid #e2e3e4;
	background-color: #ffffff;

}

.orderlist .product-box img {
	width: 100%
}

.orderlist .product-title {

	color: rgb(25, 27, 34);

}

.breadcrumb-title {
	font-size: 20px;
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	display: inline-block;
	padding-right: .5rem;
	color: #6c757d;
	font-family: LineIcons;
	content: "\ea5c";
}

.page-breadcrumb .breadcrumb li.breadcrumb-item {
	font-size: 16px;
}


.iconmenu .ps__rail-x {

	height: 0px;
}

.iconmenu .ps__rail-y {

	width: 0px;

}

.iconmenu .ps__rail-x.ps--clicking .ps__thumb-x,
.iconmenu .ps__rail-x:focus>.ps__thumb-x,
.iconmenu .ps__rail-x:hover>.ps__thumb-x {
	height: 5px
}

.iconmenu .ps__rail-y.ps--clicking .ps__thumb-y,
.iconmenu .ps__rail-y:focus>.ps__thumb-y,
.iconmenu .ps__rail-y:hover>.ps__thumb-y {
	width: 5px
}


.w_chart {
	position: relative;
	display: inline-block;
	width: 80px !important;
	height: 80px !important;
	text-align: center;
	font-size: 1.4em;
}

.w_percent {
	display: inline-block;
	line-height: 80px !important;
	z-index: 2;
	color: #0a0808;
}

.w_percent:after {
	content: '%';
	margin-left: 0.1em;
}

.w_chart canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px !important;
	height: 80px !important;
}


#geographic-map {
	width: 100%;
	height: 400px;
}

.new-customer-list {
	position: relative;
	height: 500px
}

.new-customer-list .customer-list-item {
	padding: 0.5rem;
	border-radius: 10px;
}

.new-customer-list .customer-list-item:hover {
	background-color: #f0f0f0;
}



.top-sellers-list {
	position: relative;
	height: 460px
}

.top-sellers-list .sellers-list-item {
	padding: 0.5rem;
	border-radius: 10px;
}

.top-sellers-list .sellers-list-item:hover {
	background-color: #f0f0f0;
}


.client-message {
	position: relative;
	height: 565px
}

.client-message .client-messages-list {
	padding: 0.5rem;
}

.client-message .client-messages-list:hover {
	background-color: #f0f0f0;
}

/* Widgets */

.widget-icon {
	width: 48px;
	height: 48px;
	background-color: #fafafa;
	border-radius: 50%;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.widget-icon-large {
	width: 54px;
	height: 54px;
	background-color: #fafafa;
	border-radius: 10px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/* Chips */

.chip {
	display: inline-block;
	height: 32px;
	padding: 0 12px;
	margin-right: 1rem;
	margin-bottom: 1rem;
	font-size: 14px;
	font-weight: 500;
	line-height: 32px;
	color: rgba(0, 0, 0, .7);
	cursor: pointer;
	background-color: #f1f1f1;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 16px;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	box-shadow: none;
}

.chip img {
	float: left;
	width: 32px;
	height: 32px;
	margin: 0 8px 0 -12px;
	border-radius: 50%;
}

.profile-cover {
	background-image: linear-gradient(to bottom right, rgb(26 30 33 / 50%), rgb(0 0 0 / 50%)), url(../images/gallery/33.png);
	background-size: cover;
	height: 24rem;
	background-position: center;
	margin: -4.0rem -1.5rem -5.5rem -1.5rem;
	padding: 1.5rem 1.5rem 6.5rem 1.5rem;

}


/* Email */


.email-wrapper {
	width: auto;
	height: 600px;
	overflow: hidden;
	border-radius: .25rem;
	position: relative;
	background: #fff;
	box-shadow: 0 .1rem .7rem rgba(0, 0, 0, .1)
}

.email-sidebar {
	width: 250px;
	height: 100%;
	position: absolute;
	background: #fff;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	overflow: hidden;
	border-right: 1px solid rgba(0, 0, 0, .125);
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem
}

.email-sidebar-header {
	width: auto;
	height: auto;
	position: relative;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .125);
	border-right: 0 solid rgba(0, 0, 0, .125);
	border-top-left-radius: .25rem;
	padding: 15px
}

.email-navigation {
	position: relative;
	padding: 0;
	height: 345px;
	border-bottom: 1px solid rgba(0, 0, 0, .125)
}

.email-header {
	position: absolute;
	height: 70px;
	left: 250px;
	right: 0;
	top: 0;
	padding: 15px;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .125);
	border-top-right-radius: .25rem;
	z-index: 1
}

.email-content {
	position: absolute;
	left: 0;
	right: 0;
	width: auto;
	top: 70px;
	height: auto;
	margin-left: 250px;
	padding: 0;
	background: #fff;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem
}

.email-navigation a.list-group-item {
	color: #404142;
	padding: .35rem 1.25rem;
	background-color: #fff;
	border-bottom: 1px solid rgb(0 0 0 / 0%);
	transition: all .3s ease-out
}

.email-navigation a.list-group-item:hover {
	background-color: rgb(13 110 253 / .12)
}

.email-navigation a.list-group-item.active {
	color: #0b5ed7;
	font-weight: 600;
	background-color: rgb(13 110 253 / .12)
}

.email-meeting {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0
}

.email-meeting a.list-group-item {
	color: #404142;
	padding: .35rem 1.25rem;
	background-color: #fff;
	border-bottom: 1px solid rgb(0 0 0 / 0%)
}

.email-meeting a.list-group-item:hover {
	background-color: rgb(0 123 255 / 15%);
	transition: all .3s ease-out
}

.email-hangout .chat-user-online:before {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 45px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff;
	background: #16e15e
}

.email-toggle-btn {
	width: auto;
	height: auto;
	margin-right: 10px;
	text-align: center;
	font-size: 24px;
	color: #404142;
	border-radius: 0;
	cursor: pointer;
	background-color: #fff;
	border: 0 solid rgb(0 0 0 / 15%)
}

.email-actions {
	width: 230px
}

.email-time {
	font-size: 13px;
	color: #6c757d
}

.email-list div.email-message {
	background: #fff;
	border-bottom: 1px solid rgb(0 0 0 / 8%);
	color: #383a3c
}

.email-list div.email-message:hover {
	transition: all .2s ease-out;
	background-color: #eceef1
}

.email-list {
	position: relative;
	height: 530px
}

.email-star {
	color: #6c757d
}

.email-read-box {
	position: relative;
	height: 530px
}

.compose-mail-popup {
	width: 42%;
	position: fixed;
	bottom: -30px;
	right: 30px;
	z-index: 15;
	display: none
}

.compose-mail-toggled {
	display: block
}

.compose-mail-title {
	font-size: 16px
}

.compose-mail-close {
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-size: 14px;
	border-radius: 2px;
	background-color: rgb(255 255 255 / 0%)
}

.compose-mail-close:hover {
	background-color: rgb(255 255 255 / 20%)
}

/* chat box */


.chat-wrapper {
	width: auto;
	height: 600px;
	border-radius: .25rem;
	position: relative;
	background: #fff;
	box-shadow: 0 .1rem .7rem rgba(0, 0, 0, .1)
}

.chat-sidebar {
	width: 340px;
	height: 100%;
	position: absolute;
	background: #fff;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	overflow: hidden;
	border-right: 1px solid rgba(0, 0, 0, .125);
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem
}

.chat-sidebar-header {
	width: auto;
	height: auto;
	position: relative;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .125);
	border-right: 0 solid rgba(0, 0, 0, .125);
	border-top-left-radius: .25rem;
	padding: 15px
}

.chat-sidebar-content {
	padding: 0
}

.chat-user-online {
	position: relative
}

.chat-sidebar-header .chat-user-online:before {
	content: '';
	position: absolute;
	bottom: 7px;
	left: 40px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff;
	background: #16e15e
}

.chat-list .chat-user-online:before {
	content: '';
	position: absolute;
	bottom: 7px;
	left: 36px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff;
	background: #16e15e
}

.chat-content {
	margin-left: 340px;
	padding: 85px 15px 15px 15px
}

.chat-header {
	position: absolute;
	height: 70px;
	left: 340px;
	right: 0;
	top: 0;
	padding: 15px;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .125);
	border-top-right-radius: .25rem;
	z-index: 1
}

.chat-footer {
	position: absolute;
	height: 70px;
	left: 340px;
	right: 0;
	bottom: 0;
	padding: 15px;
	background: #f8f9fa;
	border-top: 1px solid rgba(0, 0, 0, .125);
	border-bottom-right-radius: .25rem
}

.chat-footer-menu a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #6c757d;
	text-align: center;
	border-radius: 50%;
	margin: 3px;
	background-color: #fff;
	border: 1px solid rgb(0 0 0 / 15%)
}

.chat-tab-menu li a.nav-link {
	padding: .3rem .2rem;
	line-height: 1.2;
	color: #4a4b4c
}

.chat-tab-menu .nav-pills .nav-link.active,
.chat-tab-menu .nav-pills .show>.nav-link {
	color: #008cff;
	background-color: rgb(0 123 255 / 0%)
}

.chat-title {
	font-size: 14px;
	color: #272b2f
}

.chat-msg {
	font-size: 13px;
	color: #6c757d
}

.chat-time {
	font-size: 13px;
	color: #6c757d
}

.chat-list {
	position: relative;
	height: 300px
}

.chat-list .list-group-item {
	border: 1px solid rgb(0 0 0 / 0%);
	background-color: transparent
}

.chat-list .list-group-item:hover {
	border: 1px solid rgb(0 0 0 / 0%);
	background-color: rgb(13 110 253 / .12)
}

.chat-list .list-group-item.active {
	background-color: rgb(13 110 253 / .12)
}

.chart-online {
	color: #16e15e
}

.chat-top-header-menu a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #6c757d;
	text-align: center;
	border-radius: 50%;
	margin: 3px;
	background-color: #fff;
	border: 1px solid rgb(0 0 0 / 15%)
}

.chat-content {
	position: relative;
	width: auto;
	height: 520px
}

.chat-content-leftside .chat-left-msg {
	width: fit-content;
	background-color: #eff2f5;
	padding: .8rem;
	border-radius: 12px;
	max-width: 480px;
	text-align: left;
	border-top-left-radius: 0
}

.chat-content-rightside .chat-right-msg {
	width: fit-content;
	background-color: #dcedff;
	padding: .8rem;
	border-radius: 12px;
	float: right;
	max-width: 480px;
	text-align: left;
	border-bottom-right-radius: 0
}

.chat-toggle-btn {
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-right: 15px;
	text-align: center;
	font-size: 24px;
	color: #6c757d;
	border-radius: 50%;
	cursor: pointer;
	background-color: #fff;
	border: 1px solid rgb(0 0 0 / 15%)
}


/* Authentication */

.authentication-card {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	max-width: 1000PX;
	height: 100vh;
}

.login-separater span {
	position: relative;
	top: 26px;
	margin-top: -10px;
	background: #fff;
	padding: 5px;
	font-size: 12px;
	color: #cbcbcb;
	z-index: 1;
}


/* swicther */

.btn-switcher {
	position: fixed;
	right: 0px;
	top: 40%;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}


.header-colors-indigators .indigator {
	width: 50px;
	height: 50px;
	background-color: #f7f8fa;
	border-radius: 10px;
	cursor: pointer;
}


/* Responsive */

@media screen and (max-width:1280px) {
	.email-header {
		height: auto
	}

	.email-content {
		padding: 100px 0 0 0
	}
}



@media screen and (max-width:1024px) {


	.sidebar-wrapper {

		left: -300px;
	}


	.page-content {

		margin-left: 0px;

	}

	.top-header .navbar {

		left: 0px;
	}

	/* Toggeled */


	.wrapper.toggled .sidebar-wrapper {

		left: 0px;
	}


	.wrapper.toggled .page-content {

		margin-left: 0px;

	}

	.wrapper.toggled .top-header .navbar {

		left: 0px;
	}


	.wrapper.toggled .overlay {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: #000;
		opacity: .6;
		z-index: 12;
		display: block;
		cursor: move;
		transition: all .2s ease-out
	}


	.top-header .navbar .searchbar {
		position: relative;
		width: 30%;
		display: none;

	}

	.top-header .navbar .full-searchbar {

		position: absolute;
		top: 0%;
		left: 0;
		right: 0%;
		width: 100%;
		height: 60px;
		background-color: #ffffff;
		border-bottom: 1px solid rgb(0 0 0 / 0%);
		background-clip: padding-box;
		display: flex !important;
		z-index: 1;
		align-items: center;
		justify-content: start;
		padding: 0 1rem;
		-webkit-animation: .6s cubic-bezier(.25, .8, .25, 1) 0s normal forwards 1 animdropdown;
		animation: .6s cubic-bezier(.25, .8, .25, 1) 0s normal forwards 1 animdropdown
	}

	.email-header {
		border-top-left-radius: .25rem
	}

	.email-sidebar {
		left: -280px
	}

	.email-content {
		margin-left: 0
	}

	.email-header {
		left: 0
	}

	.email-toggled .email-sidebar {
		left: 0
	}

	.email-toggled .overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 250px;
		background: #000;
		opacity: .5;
		z-index: 9;
		display: block;
		cursor: move;
		transition: all .3s ease-out
	}

	.compose-mail-popup {
		width: auto;
		position: fixed;
		bottom: -30px;
		right: 0;
		left: 0
	}

	.chat-header {
		border-top-left-radius: .25rem
	}

	.chat-footer {
		border-bottom-left-radius: .25rem
	}

	.chat-sidebar {
		left: -370px
	}

	.chat-content {
		margin-left: 0
	}

	.chat-header {
		left: 0
	}

	.chat-footer {
		left: 0
	}

	.chat-toggled .chat-sidebar {
		left: 0
	}

	.chat-toggled .overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 340px;
		background: #000;
		opacity: .5;
		z-index: 11;
		display: block;
		cursor: move;
		transition: all .3s ease-out
	}

	.authentication-card {
		padding: 1.5rem 0;
		height: auto;
	}

	.top-header .navbar .mobile-toggle-icon,
	.top-header .navbar .search-toggle-icon {

		display: block;

	}

	.top-header .navbar .searchbar .search-close-icon {

		display: block;

	}




}



@media screen and (max-width:767px) {

	.top-header .navbar .dropdown-menu::after {
		display: none
	}

	.top-header .navbar .dropdown {
		position: static !important
	}

	.top-header .navbar .dropdown-menu {
		width: 100% !important;
	}

	.by-device-container {
		height: 210px;
	}



}


@media screen and (max-width:520px) {

	.chat-footer-menu,
	.chat-top-header-menu {
		display: none
	}
}


.card-footer.pagination-card-footer {
	background: inherit;
	border-top: none;
	border-top: 1px solid #e6e6e6;
}



.card-footer.pagination-card-footer .pagination {
	float: right;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.card-footer.pagination-card-footer .pagination .page-item .page-link {
	border-radius: 20px;
	margin: 0 5px 5px 0;
	outline: none;
	box-shadow: none;
	min-height: 38px;
	min-width: 38px;
	text-align: center;
}

.table td {
	background: none;
}

/* form control */
.form-control,.form-select {
	box-shadow: none !important;
	outline: none !important;
}

input.form-control {
	padding: 8px;
}

select.form-control {
	padding: 10px;
}
select.form-select {
	padding: 10px;
}

/* form control  end*/

/* button control */
.btn {
	box-shadow: none !important;
	outline: none !important;
	padding: 8px 12px;
	font-size: 15px;
}

.btn.btn-sm {
	padding: 3px 4px;
	font-size: 14px;
}

/* button control end*/


/* table responsive */
[data-label] {
	position: relative;
}

[data-label]::before {
	position: absolute;
	content: attr(data-label);
	font-weight: 700;
	color: #000000;
	top: 0;
	left: 0;
	padding: 13px 15px;
	display: none;
}

@media (max-width: 767px) {
	.table-responsive--sm table .user {
		justify-content: flex-end;
	}

	.table-responsive--sm table .user .name {
		width: auto;
	}

	table thead th:first-child {
		border-radius: 0;
	}

	table thead th:last-child {
		border-radius: 0;
	}

	table.dataTable .user {
		justify-content: flex-start;
	}

	table.dataTable .user .name {
		width: calc(100% - 40px);
	}

	.table-responsive--sm table.dataTable .user {
		justify-content: flex-end;
	}

	.table-responsive--sm table.dataTable .user .name {
		width: auto;
	}

}

@media (max-width: 1199px) {
	.table-responsive--lg thead {
		display: none;
	}

	table thead th:first-child {
		border-radius: 0;
	}

	table thead th:last-child {
		border-radius: 0;
	}

	.table-responsive--lg tbody tr:nth-child(odd) {
		background-color: #e2e2e233;
	}

	.table-responsive--lg tr th,
	.table-responsive--lg tr td {
		display: block;
		padding-left: 45% !important;
		text-align: right !important;
	}

	.table-responsive--lg .user-table-list,
	.table-responsive--lg .customer-details {
		justify-content: flex-end;
	}

	.table-responsive--lg [data-label]::before {
		display: block;
	}

	.table-responsive--lg table.dataTable .user {
		justify-content: flex-end;
	}

	.table-responsive--lg table.dataTable .user .name {
		width: auto;
	}

	.table-responsive--lg table .user {
		justify-content: flex-end;
	}

	.table-responsive--lg table .user .name {
		width: auto;
	}
}

@media (max-width: 991px) {
	.table-responsive--md thead {
		display: none;
	}

	table thead th:first-child {
		border-radius: 0;
	}

	table thead th:last-child {
		border-radius: 0;
	}

	.table-responsive--md tbody tr:nth-child(odd) {
		background: #e2e2e233;
	}

	.table-responsive--md tr th,
	.table-responsive--md tr td {
		display: block;
		padding-left: 45% !important;
		text-align: right !important;
	}

	.table-responsive--md .user-table-list,
	.table-responsive--md .customer-details {
		justify-content: flex-end;
	}

	.table-responsive--md [data-label]::before {
		display: block;
	}

	.table-responsive--md table.dataTable .user {
		justify-content: flex-end;
	}

	.table-responsive--md table.dataTable .user .name {
		width: auto;
	}

	.table-responsive--md table .user {
		justify-content: flex-end;
	}

	.table-responsive--md table .user .name {
		width: auto;
	}
}

@media (max-width: 767px) {
	.table-responsive--sm thead {
		display: none;
	}

	table thead th:first-child {
		border-radius: 0;
	}

	table thead th:last-child {
		border-radius: 0;
	}

	.table-responsive--sm tbody tr:nth-child(odd) {
		background-color: #e2e2e233;
	}

	.table-responsive--sm tr th,
	.table-responsive--sm tr td {
		display: block;
		padding-left: 45% !important;
		text-align: right !important;
	}

	.table-responsive--sm .user-table-list,
	.table-responsive--sm .customer-details {
		justify-content: flex-end;
	}

	.table-responsive--sm [data-label]::before {
		display: block;
	}
}

@media (max-width: 575px) {
	.table-responsive--xs thead {
		display: none;
	}

	table thead th:first-child {
		border-radius: 0;
	}

	table thead th:last-child {
		border-radius: 0;
	}

	.table-responsive--xs tbody tr:nth-child(odd) {
		background-color: #e2e2e233;
	}

	.table-responsive--xs tr th,
	.table-responsive--xs tr td {
		display: block;
		padding-left: 45% !important;
		text-align: right !important;
	}

	.table-responsive--xs .user-table-list,
	.table-responsive--xs .customer-details {
		justify-content: flex-end;
	}

	.table-responsive--xs [data-label]::before {
		display: block;
	}
}

@media (max-width: 1199px) {

	*[class*="table-responsive--"].data-label--none tr th,
	*[class*="table-responsive--"].data-label--none tr td {
		padding-left: .75rem;
	}
}

*[class*="table-responsive--"] .table-dark tbody [data-label]::before {
	color: #5b6e88;
}

@media (max-width: 1199px) {
	.table-responsive--lg .table-dark tbody tr:nth-child(odd) {
		background-color: #343a40;
	}

	.table-responsive--lg .table-dark tbody tr:nth-child(even) {
		background-color: #222930;
	}

	.table-responsive--lg table.dataTable tbody tr td {
		white-space: normal;
	}
}

@media (max-width: 991px) {
	.table-responsive--md .table-dark tbody tr:nth-child(odd) {
		background-color: #343a40;
	}

	.table-responsive--md .table-dark tbody tr:nth-child(even) {
		background-color: #222930;
	}

	.table-responsive--md table.dataTable tbody tr td {
		white-space: normal;
	}
}

@media (max-width: 767px) {
	.table-responsive--sm .table-dark tbody tr:nth-child(odd) {
		background-color: #343a40;
	}

	.table-responsive--sm .table-dark tbody tr:nth-child(even) {
		background-color: #222930;
	}

	.table-responsive--sm table.dataTable tbody tr td {
		white-space: normal;
	}
}

@media (max-width: 575px) {
	.table-responsive--xs .table-dark tbody tr:nth-child(odd) {
		background-color: #343a40;
	}

	.table-responsive--xs .table-dark tbody tr:nth-child(even) {
		background-color: #222930;
	}

	ol.sec-item li i,
	ol.sec-item li span {
		font-size: 18px;
	}
}


/* toggle btn */
.toggle-group .toggle-handle {
	background-color: #10163A;
}

/* toggle btn */

/* select 2 */
.select2-container {
	width: 100% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #F0F5F8;
	border-color: #D7D7D7;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 45px;
	line-height: 45px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
	color: #282828;
	font-size: 13px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	border-right-color: #D7D7D7;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	border-color: #5E50EE;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	background-color: #DFDFDF;
}

.select2-container--default .select2-results__option--selected {
	background-color: #5E50EE;
}

.select2-container .select2-selection--multiple {
	min-height: 43px;
	padding-top: 5px;
}

.select2-dropdown {
	border: 1px solid #4634FF;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
	border: 1px solid #CED4DA !important;
}

.select2-results__option.select2-results__option--selected {
	background-color: #F1F1F1;
}

.select2-container {
	z-index: 99999999999 !important;
}

/* select 2 end*/



.iconpicker-popover.fade {
	opacity: 1;
}

.sp-replacer {
	padding: 0;
	border: none;
	border-radius: 5px 0 0 5px;
}

.sp-preview {
	width: 100px;
	height: 45px;
	border: 0;
}

.sp-preview-inner {
	width: 110px;
}

.sp-dd {
	display: none;
}


/* image uploder */
.image--uploader {
	width: 240px;
	border-radius: 10px;
}

.image-upload-wrapper {
	height: 280px;
	position: relative;
}

.image-upload-preview {
	max-width: 100%;
	height: 100%;
	display: block;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 5px;
	border: 1px dashed #CED4DA;
}

.image-upload-input {
	height: 0;
	width: 0;
	opacity: 0;
}

.image-upload-wrapper label {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: pointer;
	top: 0;
	left: 0;
}

.image__support_file_size button {
	font-size: 12px;
	background: #616161;
	border-radius: 5px;
	padding: 0px 5px;
	color: #ffffff;
	display: inline-block;
	outline: none;
	border: none;
	font-weight: 300;
}
/* image uploder end*/


table .user .thumb img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	object-fit: cover;
	-o-object-fit: cover;
	object-position: center;
	-o-object-position: center;
	border: 2px solid #ffffff;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}


img {
	width: 100%;
}

/* for search */

.search-list {
	position: absolute;
	top: 100%;
	background-color: #fff;
	width: 100%;
	z-index: 99;
	max-height: 310px;
	overflow: auto;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	padding-left: 0;
	padding: 8px;
	border-radius: 8px;
}

.search-list::-webkit-scrollbar {
	width: 2px
}

.search-list::-webkit-scrollbar-track {
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3)
}

.search-list::-webkit-scrollbar-thumb {
	background-color: darkgrey;
	outline: 1px solid slategrey
}

.search-list li {
	padding: 8px;
	list-style: none;
	background: #f9f9f9;
	margin-bottom: 5px;
	border-radius: 10px;
}

.search-list li a {
	color: #363636 !important;
	font-size: 15px
}

.search-list li a:hover {
	color: #7634FA;
}

.search-list li.bg-dark {
	background: #1a2232;
}

.search-list li.bg-dark a {
	color: #ffffff !important;
}

.search-list li.bg-dark small {
	color: #fff;
}

/* for search end*/



/*Notification Css*/
.notify__item {
	display: flex;
	text-decoration: none !important;
	align-items: center;
	padding: 10px 15px;
	background: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	transition: all ease .3s;
}

.notify__item:not(:last-child) {
	margin-bottom: 5px;
}

.notify__item .notify__thumb {
	width: 50px;
	height: 50px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.notify__item .notify__thumb i {
	color: #fff;
	font-size: 20px;
}

.notify__item .notify__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.notify__item .notify__content {
	width: calc(100% - 50px);
	padding-left: 15px;
	color: #555555;
}

.notify__item .notify__content .title {
	font-size: 16px;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
}

.notify__item .notify__content .info {
	font-size: 14px;
	line-height: 1.4;
	display: block;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
}

.notify__item .notify__content .date {
	font-size: 12px;
	line-height: 1.5;
	display: flex;
	align-items: center;
}

.notify__item .notify__content .date i {
	color: #f74a05;
	font-size: 18px;
	margin-right: 5px;
}

.notify__item:hover {
	background: rgba(115, 103, 240, 0.1);
}

.unread--notification {
	background-color: #d6d6e633 !important;
}

/* avatar image*/
.avatar img {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	object-fit: cover;
	-o-object-fit: cover;
	object-position: center;
	-o-object-position: center;
}

.avatar.avatar--xl img {
	width: 75px;
	height: 75px;
}

.avatar.avatar--lg img {
	width: 65px;
	height: 65px;
}

.avatar.avatar--md img {
	width: 55px;
	height: 55px;
}

.avatar.avatar--sm img {
	width: 45px;
	height: 45px;
}

.avatar.avatar--xs img {
	width: 35px;
	height: 35px;
}

.thumb {
	width: 40px;
	height: 40px;
}

.thumb img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	object-fit: cover;
	-o-object-fit: cover;
	object-position: center;
	-o-object-position: center;
	border: 2px solid #ffffff;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.image-upload-preview.bg--dark {
	background: #1a2232;
}


.select2-container--default .select2-search--dropdown .select2-search__field {
	outline: none !important;
	height: 40px !important;
}

.wrapper.toggled .sidebar-header img {
	display: none;
}

.wrapper.toggled.sidebar-hovered .sidebar-header img {
	display: block;
}

.red__notify {
	content: '';
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	height: 8px;
	width: 8px;
	background: #f50d0d;
	border-radius: 50%;
	animation: notifyAnimation 0.8s ease-in-out infinite;
}

.green__notify {
	content: '';
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	height: 8px;
	width: 8px;
	background: #147500;
	border-radius: 50%;
	animation: notifyAnimation 0.8s ease-in-out infinite;
}

@keyframes notifyAnimation {
	0% {
		width: 5px;
		height: 5px;
	}

	100% {
		width: 7px;
		height: 7px;
	}
}


.login-bg {
	background-image: linear-gradient(#000000b1, #000000b1), url(../images/login-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Dashboard */

.dashboard-shell {
	display: grid;
	gap: 1.5rem;
}

.dashboard-hero {
	border: 0;
	border-radius: 24px;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
		linear-gradient(135deg, #123c36 0%, #174b7a 55%, #1a2438 100%);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.dashboard-hero .card-body {
	padding: 1.75rem;
}

.dashboard-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.dashboard-hero-title {
	margin: 1rem 0 0.65rem;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.7rem);
	font-weight: 700;
	line-height: 1.1;
}

.dashboard-hero-text {
	max-width: 620px;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.98rem;
	line-height: 1.7;
}

.dashboard-range {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
}

.dashboard-mini-stat {
	height: 100%;
	padding: 1rem 1.05rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
}

.dashboard-mini-stat span {
	display: block;
	margin-bottom: 0.4rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.dashboard-mini-stat strong {
	color: #fff;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.dash-filter-card {
	border: 0;
	border-radius: 20px;
	background: linear-gradient(135deg, #fff 0%, #f5f9ff 100%);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.dash-filter-card .card-body {
	padding: 1.15rem 1.35rem;
}

.dash-filter-card .form-control {
	min-height: 42px;
	border-color: #d8e4f0;
	border-radius: 12px;
	background: #f8fbff;
	color: #1e293b;
	font-size: 0.9rem;
}

.dash-filter-card .form-control:focus {
	border-color: #2c7be5;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(44, 123, 229, 0.1);
}

.dash-filter-label {
	margin-bottom: 0.35rem;
	color: #64748b;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.dash-filter-reset {
	border-radius: 12px;
}

.dash-today {
	color: #64748b;
	font-size: 0.85rem;
	font-weight: 500;
}

.dash-section {
	margin-bottom: 0.15rem;
}

.dash-section-title {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.9rem;
	padding: 0.4rem 0.85rem;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #fff;
	color: #475569;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.dash-section-title.s-orders {
	color: #0f766e;
	border-color: rgba(15, 118, 110, 0.18);
	background: rgba(15, 118, 110, 0.08);
}

.dash-section-title.s-collect {
	color: #0369a1;
	border-color: rgba(3, 105, 161, 0.18);
	background: rgba(14, 165, 233, 0.08);
}

.dash-section-title.s-expense {
	color: #7c3aed;
	border-color: rgba(124, 58, 237, 0.18);
	background: rgba(139, 92, 246, 0.08);
}

.dash-section-title.s-supplier {
	color: #0f766e;
	border-color: rgba(16, 185, 129, 0.18);
	background: rgba(16, 185, 129, 0.08);
}

.dash-section-title.s-people {
	color: #1d4ed8;
	border-color: rgba(37, 99, 235, 0.18);
	background: rgba(59, 130, 246, 0.08);
}

.dash-section-title.s-charts {
	color: #be185d;
	border-color: rgba(190, 24, 93, 0.18);
	background: rgba(244, 114, 182, 0.09);
}

.stat-card {
	display: block;
	height: 100%;
	margin-bottom: 0;
	border: 1px solid #e8eef5;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06) !important;
	text-decoration: none !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.stat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(44, 123, 229, 0.24);
	box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1) !important;
}

.stat-card .card-body {
	display: flex;
	align-items: center;
	gap: 0.95rem;
	padding: 1.1rem 1.15rem;
}

.stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	font-size: 1.35rem;
}

.stat-label {
	max-width: 170px;
	margin-bottom: 0.2rem;
	overflow: hidden;
	color: #64748b !important;
	font-size: 0.77rem;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.stat-value {
	margin: 0;
	color: #0f172a;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.icon-success {
	background: rgba(34, 197, 94, 0.14);
	color: #15803d;
}

.icon-info {
	background: rgba(14, 165, 233, 0.14);
	color: #0284c7;
}

.icon-primary {
	background: rgba(59, 130, 246, 0.14);
	color: #2563eb;
}

.icon-purple {
	background: rgba(139, 92, 246, 0.14);
	color: #7c3aed;
}

.icon-warning {
	background: rgba(245, 158, 11, 0.14);
	color: #d97706;
}

.icon-danger {
	background: rgba(239, 68, 68, 0.14);
	color: #dc2626;
}

.icon-teal {
	background: rgba(20, 184, 166, 0.14);
	color: #0f766e;
}

.icon-pink {
	background: rgba(236, 72, 153, 0.14);
	color: #db2777;
}

.text-pink {
	color: #db2777 !important;
}

.text-purple {
	color: #7c3aed !important;
}

.chart-card {
	border: 1px solid #e8eef5;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06) !important;
}

.chart-card .card-body {
	padding: 1.25rem;
}

@media (max-width: 991.98px) {
	.dashboard-hero .card-body {
		padding: 1.35rem;
	}
}

@media (max-width: 575.98px) {
	.dashboard-mini-stat strong {
		font-size: 1rem;
	}

	.stat-card .card-body {
		padding: 1rem;
	}

	.stat-value {
		font-size: 1.1rem;
	}
}

.admin-table-card {
	border: 1px solid #e3ebf2;
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
	overflow: hidden;
}

.admin-table-header,
.admin-table-footer {
	padding: 1.1rem 1.35rem;
	border-color: #e7eef4;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.admin-table-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.admin-table-title {
	color: #10233a;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0;
}

.admin-table-subtitle {
	max-width: 640px;
	color: #64748b;
	font-size: .92rem;
	line-height: 1.7;
}

.admin-table-header-actions,
.admin-table-toolbar-start,
.admin-table-toolbar-end,
.admin-table-export-group {
	display: flex;
	align-items: center;
	gap: .75rem;
	flex-wrap: wrap;
}

.admin-table-body {
	padding: 1.2rem 1.35rem 1.35rem;
}

.admin-table-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.admin-table-search {
	position: relative;
	min-width: 280px;
}

.admin-table-search i {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	color: #64748b;
}

.admin-table-search .form-control {
	height: 46px;
	padding-left: 40px;
	border-color: #d9e5ee;
	border-radius: 14px;
	background: #fbfdff;
}

.admin-table-search .form-control:focus {
	border-color: #2c7be5;
	box-shadow: 0 0 0 4px rgba(44, 123, 229, 0.1);
	background: #fff;
}

.admin-table-export-btn,
.admin-table-add-btn,
.admin-action-trigger {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	height: 42px;
	padding: 0 .95rem;
	border-radius: 12px;
	font-weight: 600;
}

.admin-table-export-btn {
	border: 1px solid #d9e5ee;
	background: #fff;
	color: #334155;
}

.admin-table-export-btn:hover,
.admin-action-trigger:hover {
	background: #f8fbfd;
	color: #10233a;
}

.admin-action-dropdown .dropdown-menu {
	min-width: 190px;
	padding: .5rem;
}

.admin-action-dropdown .dropdown-menu li+li {
	margin-top: .2rem;
}

.admin-action-dropdown .dropdown-menu a,
.admin-action-dropdown .dropdown-menu button {
	display: flex;
	align-items: center;
	gap: .55rem;
	width: 100%;
	padding: .6rem .75rem;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #334155;
	text-align: left;
}

.admin-action-dropdown .dropdown-menu a:hover,
.admin-action-dropdown .dropdown-menu button:hover {
	background: #f1f7fb;
	color: #10233a;
}

.admin-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .38rem .7rem;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 700;
	line-height: 1;
}

.admin-status-badge.is-success {
	background: rgba(34, 197, 94, 0.14);
	color: #15803d;
}

.admin-status-badge.is-warning {
	background: rgba(245, 158, 11, 0.16);
	color: #b45309;
}

.admin-status-badge.is-danger {
	background: rgba(239, 68, 68, 0.14);
	color: #b91c1c;
}

.admin-status-badge.is-neutral {
	background: rgba(100, 116, 139, 0.14);
	color: #475569;
}

/*@media (max-width: 991px) {*/
/*	.table-responsive {*/
/*		white-space: normal;*/
/*		border: 0;*/
/*		background: transparent;*/
/*		box-shadow: none;*/
/*		overflow: visible;*/
/*	}*/

/*	.table-responsive>.table {*/
/*		min-width: 100%;*/
/*		background: transparent;*/
/*	}*/

/*	.table-responsive thead {*/
/*		display: none;*/
/*	}*/

/*	.table-responsive tbody,*/
/*	.table-responsive tfoot {*/
/*		display: grid;*/
/*		gap: 14px;*/
/*	}*/

/*	.table-responsive tbody tr,*/
/*	.table-responsive tfoot tr {*/
/*		display: block;*/
/*		border: 1px solid #e1eaf0;*/
/*		border-radius: 18px;*/
/*		background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);*/
/*		box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);*/
/*		overflow: hidden;*/
/*	}*/

/*	.table-responsive tbody tr:nth-child(even) {*/
/*		background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);*/
/*	}*/

/*	.table-responsive tr th,*/
/*	.table-responsive tr td {*/
/*		position: relative;*/
/*		display: block;*/
/*		width: 100%;*/
/*		padding: .9rem 1rem .9rem 48% !important;*/
/*		border-bottom: 1px solid #edf2f7;*/
/*		text-align: right !important;*/
/*		white-space: normal;*/
/*	}*/

/*	.table-responsive tr th:last-child,*/
/*	.table-responsive tr td:last-child {*/
/*		border-bottom: 0;*/
/*	}*/

/*	.table-responsive [data-label]::before {*/
/*		display: block;*/
/*		max-width: 42%;*/
/*		padding: .9rem 1rem;*/
/*		font-size: .75rem;*/
/*		font-weight: 700;*/
/*		line-height: 1.4;*/
/*		text-transform: uppercase;*/
/*		letter-spacing: .04em;*/
/*		color: #64748b;*/
/*	}*/

/*	.admin-table-header,*/
/*	.admin-table-toolbar {*/
/*		flex-direction: column;*/
/*		align-items: stretch;*/
/*	}*/

/*	.admin-table-search {*/
/*		min-width: 100%;*/
/*	}*/
/*}*/
