/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
	/* Main colors - Professional Enterprise Palette */
	--color-dark-text: #2d3748; /* Professional Dark Gray */
	--color-secondary: #1a365d; /* Professional Dark Blue */
	--color-sidebar-collapsed-text: #1a365d; /* Professional Dark Blue */
	--color-primary: #3182ce; /* Professional Medium Blue */
	--color-primary-hover: #2c5aa0; /* Professional Darker Blue Hover */

	/* Dashboard specific colors - Subtle Professional Tones */
	--color-dashboard-icon-revenue: #38a169; /* Professional Green */
	--color-dashboard-icon-customers: #dd6b20; /* Professional Orange */
	--color-light-text: #718096; /* Professional Light Gray */
	--color-dashboard-text: #4a5568; /* Professional Medium Gray */
	--color-dashboard-activity-label-bg: #f7fafc; /* Clean Light Background */
	--color-dashboard-news-text: #4a5568; /* Professional Medium Gray */

	/* Utility colors - Clean and Professional */
	--color-dropdown-border: rgba(
		26,
		54,
		93,
		0.15
	); /* Subtle Professional Border */
	--color-border: #e2e8f0; /* Clean Light Border */
	--color-dropdown-shadow: rgba(
		0,
		0,
		0,
		0.1
	); /* Subtle Professional Shadow */
	--color-shadow: rgba(0, 0, 0, 0.05); /* Very Subtle Shadow */
	--color-white: #ffffff; /* Pure White */
	--color-light-background: #f8fafc; /* Clean Background */

	/* Background colors - Consistent Professional Theme */
	--color-dashboard-sales-bg: #f7fafc; /* Clean Light Background */
	--color-dashboard-revenue-bg: #f0fff4; /* Subtle Green Tint */
	--color-dashboard-customers-bg: #fffaf0; /* Subtle Orange Tint */
	--color-dropdown-divider: #cbd5e0; /* Professional Divider */

	/* Additional professional colors for consistent theming */
	--color-muted-text: #a0aec0; /* Muted text color */
	--color-card-footer: #718096; /* Card footer text */
	--color-accordion-text: #4a5568; /* Accordion content text */
	--color-breadcrumb-active: #2d3748; /* Active breadcrumb */
	--color-nav-tabs: #4a5568; /* Navigation tabs */

	/* Behavior */
	scroll-behavior: smooth;

	/* Theme transition - for smooth theme switching */
	transition: background-color 0.3s ease, color 0.3s ease;
}

/*tabela*/
.e-grid .e-groupdroparea.e-grouped {
	background-color: var(--color-border);
}

body {
	font-family: "Open Sans", sans-serif;
	background: var(--color-light-background);
	color: var(--color-dark-text);
	transition: background-color 0.3s ease, color 0.3s ease;
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	color: var(--color-primary-hover);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
	margin-top: 60px;
	padding: 20px 30px;
	transition: all 0.3s;
}

@media (max-width: 1199px) {
	#main {
		padding: 20px;
	}
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
	margin-bottom: 10px;
}

.pagetitle h1 {
	font-size: 24px;
	margin-bottom: 0;
	font-weight: 600;
	color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 24px;
	color: var(--color-white);
	line-height: 0;
}

.back-to-top:hover {
	background: var(--color-primary-hover);
	color: var(--color-white);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
	border-radius: 4px;
	padding: 10px 0;
	animation-name: dropdown-animate;
	animation-duration: 0.2s;
	animation-fill-mode: both;
	border: 0;
	box-shadow: 0 5px 30px 0 var(--color-dropdown-shadow);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
	text-align: center;
	font-size: 15px;
	padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
	color: var(--color-dark-text);
	text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
	text-decoration: none;
}

.dropdown-menu .dropdown-divider {
	color: var(--color-dropdown-divider);
	margin: 0;
}

.dropdown-menu .dropdown-item {
	font-size: 14px;
	padding: 10px 15px;
	transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
	margin-right: 10px;
	font-size: 18px;
	line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
	background-color: var(--color-light-background);
}

@media (min-width: 768px) {
	.dropdown-menu-arrow::before {
		content: "";
		width: 13px;
		height: 13px;
		background: var(--color-white);
		position: absolute;
		top: -7px;
		right: 20px;
		transform: rotate(45deg);
		border-top: 1px solid var(--color-border);
		border-left: 1px solid var(--color-border);
	}
}

@keyframes dropdown-animate {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}

	0% {
		opacity: 0;
	}
}

/* Light Backgrounds - Professional color scheme */
.bg-primary-light {
	background-color: #ebf8ff;
	border-color: #bee3f8;
}

.bg-secondary-light {
	background-color: #f7fafc;
	border-color: #e2e8f0;
}

.bg-success-light {
	background-color: #f0fff4;
	border-color: #c6f6d5;
}

.bg-danger-light {
	background-color: #fed7d7;
	border-color: #feb2b2;
}

.bg-warning-light {
	background-color: #fffbeb;
	border-color: #fde68a;
}

.bg-info-light {
	background-color: #ebf8ff;
	border-color: #bee3f8;
}

.bg-dark-light {
	background-color: #f7fafc;
	border-color: #e2e8f0;
}

/* Card */
.card {
	/*  margin-bottom: 30px;*/
	border: none;
	border-radius: 5px;
	box-shadow: 0px 0 30px var(--color-shadow);
}

.card-header,
.card-footer {
	border-color: var(--color-border);
	background-color: var(--color-white);
	color: var(--color-card-footer);
	padding: 15px;
}

.card-title {
	padding: 20px 0 15px 0;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-secondary);
	font-family: "Poppins", sans-serif;
}

.card-title span {
	color: var(--color-light-text);
	font-size: 14px;
	font-weight: 400;
}

.card-body {
	padding: 0 20px 20px 20px;
}

.card-img-overlay {
	background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
}

/* Close Button */
.btn-close {
	background-size: 25%;
}

.btn-close:focus {
	outline: 0;
	box-shadow: none;
}

/* Accordion */
.accordion-item {
	border: 1px solid var(--color-border);
}

.accordion-button:focus {
	outline: 0;
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	color: var(--color-secondary);
	background-color: var(--color-light-background);
}

.accordion-flush .accordion-button {
	padding: 15px 0;
	background: none;
	border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
	box-shadow: none;
	color: var(--color-primary);
}

.accordion-flush .accordion-body {
	padding: 0 0 15px 0;
	color: var(--color-accordion-text);
	font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
	font-size: 14px;
	font-family: "Nunito", sans-serif;
	color: var(--color-light-text);
	font-weight: 600;
}

.breadcrumb a {
	color: var(--color-light-text);
	transition: 0.3s;
}

.breadcrumb a:hover {
	color: var(--color-breadcrumb-active);
}

.breadcrumb .breadcrumb-item::before {
	color: var(--color-light-text);
}

.breadcrumb .active {
	color: var(--color-breadcrumb-active);
	font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
	border-bottom: 2px solid var(--color-border);
}

.nav-tabs-bordered .nav-link {
	margin-bottom: -2px;
	border: none;
	color: var(--color-nav-tabs);
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
	color: var(--color-primary);
}

.nav-tabs-bordered .nav-link.active {
	background-color: var(--color-white);
	color: var(--color-primary);
	border-bottom: 2px solid var(--color-primary);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
	line-height: 1;
}

@media (min-width: 1200px) {
	.logo {
		width: 280px;
	}
}

.logo img {
	max-height: 26px;
	margin-right: 6px;
}

.logo span {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-secondary);
	font-family: "Nunito", sans-serif;
}

.header {
	transition: all 0.5s;
	z-index: 997;
	height: 60px;
	box-shadow: 0px 2px 20px var(--color-shadow);
	background-color: var(--color-white);
	padding-left: 20px;
	/* Toggle Sidebar Button */
	/* Search Bar */
}

.header .toggle-sidebar-btn {
	font-size: 32px;
	padding-left: 10px;
	cursor: pointer;
	color: var(--color-secondary);
}

.header .search-bar {
	min-width: 360px;
	padding: 0 20px;
}

@media (max-width: 1199px) {
	.header .search-bar {
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		padding: 20px;
		box-shadow: 0px 0px 15px 0px var(--color-shadow);
		background: white;
		z-index: 9999;
		transition: 0.3s;
		visibility: hidden;
		opacity: 0;
	}

	.header .search-bar-show {
		top: 60px;
		visibility: visible;
		opacity: 1;
	}
}

.header .search-form {
	width: 100%;
}

.header .search-form input {
	border: 0;
	font-size: 14px;
	color: var(--color-secondary);
	border: 1px solid var(--color-dropdown-border);
	padding: 7px 38px 7px 8px;
	border-radius: 3px;
	transition: 0.3s;
	width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
	outline: none;
	box-shadow: 0 0 10px 0 var(--color-dropdown-border);
	border: 1px solid var(--color-dropdown-border);
}

.header .search-form button {
	border: 0;
	padding: 0;
	margin-left: -30px;
	background: none;
}

.header .search-form button i {
	color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
	list-style: none;
}

.header-nav > ul {
	margin: 0;
	padding: 0;
}

.header-nav .nav-icon {
	font-size: 22px;
	color: var(--color-secondary);
	margin-right: 25px;
	position: relative;
}

.header-nav .nav-profile {
	color: var(--color-secondary);
}

.header-nav .nav-profile img {
	max-height: 36px;
}

.header-nav .nav-profile span {
	font-size: 14px;
	font-weight: 600;
}

.header-nav .badge-number {
	position: absolute;
	inset: -2px -5px auto auto;
	font-weight: normal;
	font-size: 12px;
	padding: 3px 6px;
}

.header-nav .notifications {
	inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
	display: flex;
	align-items: center;
	padding: 15px 10px;
	transition: 0.3s;
}

.header-nav .notifications .notification-item i {
	margin: 0 20px 0 10px;
	font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
	font-size: 13px;
	margin-bottom: 3px;
	color: var(--color-muted-text);
}

.header-nav .notifications .notification-item:hover {
	background-color: var(--color-light-background);
}

.header-nav .messages {
	inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
	padding: 15px 10px;
	transition: 0.3s;
}

.header-nav .messages .message-item a {
	display: flex;
}

.header-nav .messages .message-item img {
	margin: 0 20px 0 10px;
	max-height: 40px;
}

.header-nav .messages .message-item h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--color-dark-text);
}

.header-nav .messages .message-item p {
	font-size: 13px;
	margin-bottom: 3px;
	color: var(--color-muted-text);
}

.header-nav .messages .message-item:hover {
	background-color: var(--color-light-background);
}

.header-nav .profile {
	min-width: 240px;
	padding-bottom: 0;
	top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
	font-size: 18px;
	margin-bottom: 0;
	font-weight: 600;
	color: var(--color-dark-text);
}

.header-nav .profile .dropdown-header span {
	font-size: 14px;
}

.header-nav .profile .dropdown-item {
	font-size: 14px;
	padding: 10px 15px;
	transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
	margin-right: 10px;
	font-size: 18px;
	line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
	background-color: var(--color-light-background);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
	position: fixed;
	top: 60px;
	left: 0;
	bottom: 0;
	width: 300px;
	z-index: 996;
	transition: all 0.3s;
	padding: 20px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--color-light-text) transparent;
	box-shadow: 0px 0px 20px var(--color-shadow);
	background-color: var(--color-white);
}

@media (max-width: 1199px) {
	.sidebar {
		left: -300px;
	}
}

.sidebar::-webkit-scrollbar {
	width: 5px;
	height: 8px;
	background-color: var(--color-white);
}

.sidebar::-webkit-scrollbar-thumb {
	background-color: var(--color-light-text);
}

@media (min-width: 1200px) {
	#main,
	#footer {
		margin-left: 300px;
	}
}

@media (max-width: 1199px) {
	.toggle-sidebar .sidebar {
		left: 0;
	}
}

@media (min-width: 1200px) {
	.toggle-sidebar #main,
	.toggle-sidebar #footer {
		margin-left: 0;
	}

	.toggle-sidebar .sidebar {
		left: -300px;
	}
}

.sidebar-nav {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar-nav li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar-nav .nav-item {
	margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
	font-size: 11px;
	text-transform: uppercase;
	color: var(--color-light-text);
	font-weight: 600;
	margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	color: var(--color-primary);
	transition: 0.3;
	background: var(--color-light-background);
	padding: 10px 15px;
	border-radius: 4px;
}

.sidebar-nav .nav-link i {
	font-size: 16px;
	margin-right: 10px;
	color: var(--color-primary);
}

.sidebar-nav .nav-link.collapsed {
	color: var(--color-secondary);
	background: var(--color-white);
}

.sidebar-nav .nav-link.collapsed i {
	color: var(--color-light-text);
}

.sidebar-nav .nav-link:hover {
	color: var(--color-primary);
	background: var(--color-light-background);
}

.sidebar-nav .nav-link:hover i {
	color: var(--color-primary);
}

.sidebar-nav .nav-link .bi-chevron-down {
	margin-right: 0;
	transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
	transform: rotate(180deg);
}

.sidebar-nav .nav-content {
	padding: 5px 0 0 0;
	margin: 0;
	list-style: none;
}

.sidebar-nav .nav-content a {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-secondary);
	transition: 0.3;
	padding: 10px 0 10px 40px;
	transition: 0.3s;
}

.sidebar-nav .nav-content a i {
	font-size: 6px;
	margin-right: 8px;
	line-height: 0;
	border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
	color: var(--color-primary);
}

.sidebar-nav .nav-content a.active i {
	background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
	position: absolute;
	right: 0px;
	top: 15px;
}

.dashboard .filter .icon {
	color: var(--color-light-text);
	padding-right: 20px;
	padding-bottom: 5px;
	transition: 0.3s;
	font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
	color: var(--color-primary);
}

.dashboard .filter .dropdown-header {
	padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--color-light-text);
	margin-bottom: 0;
	padding: 0;
}

.dashboard .filter .dropdown-item {
	padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
	padding-bottom: 10px;
}

.dashboard .info-card h6 {
	font-size: 28px;
	color: var(--color-secondary);
	font-weight: 700;
	margin: 0;
	padding: 0;
}

.dashboard .card-icon {
	font-size: 32px;
	line-height: 0;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	flex-grow: 0;
}

.dashboard .sales-card .card-icon {
	color: var(--color-primary);
	background: var(--color-dashboard-sales-bg);
}

.dashboard .revenue-card .card-icon {
	color: var(--color-dashboard-icon-revenue);
	background: var(--color-dashboard-revenue-bg);
}

.dashboard .customers-card .card-icon {
	color: var(--color-dashboard-icon-customers);
	background: var(--color-dashboard-customers-bg);
}

/* Activity */
.dashboard .activity {
	font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
	color: var(--color-dashboard-text);
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
	min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
	content: "";
	position: absolute;
	right: -11px;
	width: 4px;
	top: 0;
	bottom: 0;
	background-color: var(--color-dashboard-activity-label-bg);
}

.dashboard .activity .activity-item .activity-badge {
	margin-top: 3px;
	z-index: 1;
	font-size: 11px;
	line-height: 0;
	border-radius: 50%;
	flex-shrink: 0;
	border: 3px solid var(--color-white);
	flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
	padding-left: 10px;
	padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
	top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
	padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item + .post-item {
	margin-top: 15px;
}

.dashboard .news img {
	width: 80px;
	float: left;
	border-radius: 5px;
}

.dashboard .news h4 {
	font-size: 15px;
	margin-left: 95px;
	font-weight: bold;
	margin-bottom: 5px;
}

.dashboard .news h4 a {
	color: var(--color-secondary);
	transition: 0.3s;
}

.dashboard .news h4 a:hover {
	color: var(--color-primary);
}

.dashboard .news p {
	font-size: 14px;
	color: var(--color-dashboard-news-text);
	margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
	font-size: 14px;
}

.dashboard .recent-sales .table thead {
	background: var(--color-dashboard-sales-bg);
}

.dashboard .recent-sales .table thead th {
	border: 0;
}

.dashboard .recent-sales .dataTable-top {
	padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
	padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
	font-size: 14px;
}

.dashboard .top-selling .table thead {
	background: var(--color-dashboard-sales-bg);
}

.dashboard .top-selling .table thead th {
	border: 0;
}

.dashboard .top-selling .table tbody td {
	vertical-align: middle;
}

.dashboard .top-selling img {
	border-radius: 5px;
	max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
	display: grid;
	max-width: 100%;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.25rem;
	padding-top: 15px;
}

.iconslist .icon {
	background-color: var(--color-white);
	border-radius: 0.25rem;
	text-align: center;
	color: var(--color-secondary);
	padding: 15px 0;
}

.iconslist i {
	margin: 0.25rem;
	font-size: 2.5rem;
}

.iconslist .label {
	font-family: var(--bs-font-monospace);
	display: inline-block;
	width: 100%;
	overflow: hidden;
	padding: 0.25rem;
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--color-light-text);
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
	max-width: 120px;
}

.profile .profile-card h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-nav-tabs);
	margin: 10px 0 0 0;
}

.profile .profile-card h3 {
	font-size: 18px;
}

.profile .profile-card .social-links a {
	font-size: 20px;
	display: inline-block;
	color: rgba(1, 41, 112, 0.5);
	line-height: 0;
	margin-right: 10px;
	transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
	color: var(--color-secondary);
}

.profile .profile-overview .row {
	margin-bottom: 20px;
	font-size: 15px;
}

.profile .profile-overview .card-title {
	color: var(--color-secondary);
}

.profile .profile-overview .label {
	font-weight: 600;
	color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
	font-weight: 600;
	color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
	max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-primary);
}

.faq .basic p {
	color: var(--color-light-text);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
	padding: 28px 30px;
}

.contact .info-box i {
	font-size: 38px;
	line-height: 0;
	color: var(--color-primary);
}

.contact .info-box h3 {
	font-size: 20px;
	color: var(--color-secondary);
	font-weight: 700;
	margin: 20px 0 10px 0;
}

.contact .info-box p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.contact .php-email-form .error-message {
	display: none;
	color: var(--color-white);
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: var(--color-white);
	background: #18d26e;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: var(--color-white);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--color-primary);
}

.contact .php-email-form input {
	padding: 10px 15px;
}

.contact .php-email-form textarea {
	padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
	background: var(--color-primary);
	border: 0;
	padding: 10px 30px;
	color: var(--color-white);
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: var(--color-primary-hover);
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
	padding: 30px;
}

.error-404 h1 {
	font-size: 180px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0;
	line-height: 150px;
}

.error-404 h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 30px;
}

.error-404 .btn {
	background: var(--color-breadcrumb-active);
	color: var(--color-white);
	padding: 8px 30px;
}

.error-404 .btn:hover {
	background: var(--color-accordion-text);
}

@media (min-width: 992px) {
	.error-404 img {
		max-width: 50%;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	padding: 20px 0;
	font-size: 14px;
	transition: all 0.3s;
	border-top: 1px solid var(--color-border);
}

.footer .copyright {
	text-align: center;
	color: var(--color-secondary);
}

.footer .credits {
	padding-top: 5px;
	text-align: center;
	font-size: 13px;
	color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Main Home
--------------------------------------------------------------*/

#main_home {
	margin-top: 60px;
	padding: 20px 30px;
	transition: all 0.3s;
}

@media (max-width: 1199px) {
	#main_home {
		padding: 20px;
	}
}

/*--------------------------------------------------------------
# Header Home
--------------------------------------------------------------*/
.header-home {
	background-color: var(--color-white);
	box-shadow: 0px 2px 20px var(--color-shadow);
	padding: 10px 20px;
	border-bottom: 5px solid var(--color-primary);
}

.header-home .logo {
	display: flex;
	align-items: center;
}

.header-home .logo img {
	max-height: 40px;
	margin-right: 10px;
}

.header-home .logo span {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-secondary);
}

.nav-menu {
	margin-left: auto;
}

.nav-menu ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 40px;
	margin: 0px;
	padding: 0px;
}

.nav-menu ul li {
	display: block;
	font-size: 1.5rem;
}

.nav-menu ul li a {
	color: var(--color-dark-text);
	text-decoration: none;
	font-size: 20px;
}

.nav-menu ul li a.active {
	color: #00bfff;
}

.nav-menu ul li a:hover {
	color: #00bfff;
}

.header-home .toogle-menu-home {
	display: none;
}

@media (max-width: 1199px) {
	.hero-center {
		margin-left: 30px;
		margin-right: 30px;
	}

	.header-home {
		z-index: 1000;
		position: relative;
	}

	.header-home .toogle-menu-home {
		display: block;
		margin-left: auto;
		z-index: 1001;
		position: relative;
	}

	.header-home .nav-menu {
		display: none;
	}

	.header-home.active .nav-menu {
		display: block;
		z-index: 1001;
		position: relative;
	}

	.header-home.active {
		position: static;
		z-index: 1000;
	}

	.header-home.active .logo {
		display: none;
	}

	.header-home.active .toogle-menu-home {
		margin-left: auto;
		z-index: 1001;
	}

	.header-home.active .nav-menu {
		margin-right: auto;
		margin-left: 15px;
		z-index: 1001;
	}

	.header-home.active .nav-menu ul {
		margin-top: 50px;
		display: flex;
		flex-direction: column;
	}
}

/*--------------------------------------------------------------
# Toogle Nav Home
--------------------------------------------------------------*/

.toogle-menu-home {
	margin-left: 15px;
}

.toggle-sidebar-btn-home {
	font-size: 32px;
}

/*--------------------------------------------------------------
# Hero Home
--------------------------------------------------------------*/
.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background-image: url("/assets/img/banner.jpg");
	background-size: cover;
	background-position: center;
	height: 80px;
	margin: -30px -30px -30px -30px;
	text-align: center;
	height: 800px;
	z-index: 1;
	opacity: 90%;
}

.hero-center {
	background-image: url("/assets/img/banner-background.png");
	background-size: cover;
	background-position: center;
	padding: 25px;
	border-radius: 25px;
}

.hero h1,
.hero h2 {
	position: relative;
	top: 0px;
	color: white;
	opacity: 100%;
}

.info {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.info .p {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	top: -30px;
	width: 170px;
	height: 150px;
	background-color: white;
	z-index: 2;
	border-radius: 10px;
	box-shadow: 0 6px 32px 0 rgba(65, 84, 241, 0.1),
		0 1.5px 4px 0 rgba(65, 84, 241, 0.08);
	margin: 10px;
	transition: background-color 0.3s, box-shadow 0.3s, color 0.3s,
		border-color 0.3s;
}

.info .p:hover {
	background-color: #f0f7ff;
	color: #4154f1;
	border-color: #b3c6fa;
	box-shadow: 0 8px 36px 0 rgba(65, 84, 241, 0.16),
		0 2px 8px 0 rgba(65, 84, 241, 0.1);
}

.p i {
	display: block;
	font-size: 60px;
}

/*--------------------------------------------------------------
# Footer Home
--------------------------------------------------------------*/

#footer_home {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #333;
	height: 150px;
}

#footer_home a {
	color: #aab7cf;
}

/*--------------------------------------------------------------
# About Home
--------------------------------------------------------------*/
.text-align-home {
	text-align: justify;
}

/*--------------------------------------------------------------
# Theme Transition
--------------------------------------------------------------*/
.theme-transition,
.theme-transition *,
.theme-transition *:before,
.theme-transition *:after {
	transition: all 0.3s ease !important;
	transition-delay: 0 !important;
}

/* Theme transition class */
.theme-transition {
	transition: background-color 0.3s ease, color 0.3s ease,
		border-color 0.3s ease !important;
}

/* Prevent layout shifts during theme transition */
.theme-transition .e-control,
.theme-transition .e-control * {
	transition: background-color 0.3s ease, color 0.3s ease,
		border-color 0.3s ease !important;
}

/* Force component size consistency regardless of theme */
.e-grid,
.e-dialog,
.e-dropdownlist,
.e-combobox,
.e-toolbar,
.e-diagram,
.e-dashboardlayout,
.e-charts,
.e-accumulationchart {
	width: 100% !important;
	box-sizing: border-box !important;
}

/* Fix for padding and margin inconsistencies */
.e-input-group,
.e-ddl,
.e-multi-select-wrapper,
.e-control .e-content {
	box-sizing: border-box !important;
}

/* Force consistent sizing for Syncfusion components */
.syncfusion-themed-component {
	/* Ensure box-sizing is consistent */
	box-sizing: border-box !important;

	/* Preserve dimensions during theme changes */
	max-width: 100% !important;
	transition: background-color 0.3s ease, color 0.3s ease,
		border-color 0.3s ease !important;
}

/* Ensure grid components maintain dimensions */
.e-grid.e-responsive {
	width: 100% !important;
	min-height: inherit !important;
}

/* Fix for dialog components to maintain dimensions */
.e-dialog {
	max-width: 100% !important;
}

/* Force consistent sizing during theme initialization */
body.theme-initialized .e-control {
	opacity: 0.99; /* Force a repaint without making it fully invisible */
}

/* Override any conflicting styles that could cause size changes */
.dark-theme .e-control,
.light-theme .e-control {
	font-size: inherit !important;
	line-height: inherit !important;
}

/* Ensure profile images maintain consistent size during theme transition */
.theme-transition .header-nav .nav-profile img,
.theme-transition img.rounded-circle {
	transition: all 0.3s ease !important;
	max-height: 36px !important;
	width: 36px !important;
	height: 36px !important;
	object-fit: cover !important;
}

/* Fix for image scaling and border issues in both themes */
.header-nav .nav-profile img,
img.rounded-circle {
	max-height: 36px;
	width: 36px;
	height: 36px;
	object-fit: cover;
	border: 1px solid var(--color-border);
	box-shadow: none;
}

/* Fix for dot next to profile icon */
.header-nav .nav-item.dropdown {
	list-style: none;
	position: relative;
}

/* Remove any pseudo-elements that might be creating the dot */
.header-nav .nav-item.dropdown::before,
.header-nav .nav-item.dropdown::after {
	display: none !important;
	content: none !important;
}

/* Fix for the profile image and ensure no bullet points */
.nav-item.dropdown .nav-link.nav-profile {
	position: relative;
	display: flex;
	align-items: center;
}

/* Ensure proper alignment of profile menu items */
.header-nav ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

/* Additional fixes to remove bullet points from all nav elements */
nav ul,
nav li,
.dropdown ul,
.dropdown li,
.nav-item,
.header-nav * {
	list-style-image: none !important;
	list-style-position: outside !important;
	list-style-type: none !important;
}

/* Reset for navigation pseudo elements that might create dots */
.header-nav *::before,
.header-nav *::after,
.nav-item::before,
.nav-item::after {
	content: none !important;
}

/* Fix for Bootstrap default styles that might add bullets */
.header-nav .dropdown-toggle::after {
	display: none !important;
}

/* Only show the dropdown caret if explicitly added in span */
.header-nav .dropdown-toggle span.caret,
.header-nav .dropdown-toggle span.dropdown-toggle {
	display: inline-block;
}

/* Dark mode toggle for public header */
.header-home .dark-mode-toggle {
	margin-left: auto;
	margin-right: 15px;
}

.header-home .dark-mode-indicator {
	display: flex;
	align-items: center;
	color: var(--color-secondary);
}

.header-home .dark-mode-indicator i {
	font-size: 1.2rem;
	color: #007bff;
}

.header-home .form-check-input:checked {
	background-color: #007bff;
	border-color: #007bff;
}

/* Responsive adjustments for dark mode toggle */
@media (max-width: 1199px) {
	.header-home .dark-mode-toggle {
		margin-right: 15px;
		order: 1;
	}

	.header-home.active .dark-mode-toggle {
		position: absolute;
		top: 15px;
		right: 60px;
	}
}

/*--------------------------------------------------------------
# Syncfusion LinearGauge and CircularGauge Light Mode Overrides
--------------------------------------------------------------*/
.light-theme .e-lineargauge .e-axis-labels text,
.light-theme .e-lineargauge .e-pointer,
.light-theme .e-lineargauge .e-bar,
.light-theme .e-lineargauge .e-range,
.light-theme .e-lineargauge .e-tick,
.light-theme .e-lineargauge .e-axis-line {
	stroke: #23242a !important;
	fill: #23242a !important;
}

.light-theme .e-lineargauge .e-pointer,
.light-theme .e-lineargauge .e-bar,
.light-theme .e-lineargauge .e-range {
	stroke-width: 2px !important;
}

.light-theme .e-lineargauge .e-axis-labels text {
	fill: #23242a !important;
	stroke: none !important;
	font-weight: 700;
	font-size: 1.15em;
	paint-order: stroke fill;
	text-shadow: 0 0 2px #fff, 0 1px 0 #fff;
}

.light-theme .e-lineargauge .e-background,
.light-theme .e-lineargauge .e-gauge-background,
.light-theme .e-lineargauge .e-gauge-panel,
.light-theme .e-lineargauge .e-gauge,
.light-theme .e-lineargauge svg,
.light-theme .e-lineargauge rect,
.light-theme .e-lineargauge .e-border {
	background: transparent !important;
	background-color: transparent !important;
	fill: #fff !important;
}

.light-theme .e-circulargauge .e-axis-labels text,
.light-theme .e-circulargauge .e-pointer,
.light-theme .e-circulargauge .e-bar,
.light-theme .e-circulargauge .e-range,
.light-theme .e-circulargauge .e-tick,
.light-theme .e-circulargauge .e-axis-line {
	stroke: #23242a !important;
	fill: #23242a !important;
}

.light-theme .e-circulargauge .e-pointer,
.light-theme .e-circulargauge .e-bar,
.light-theme .e-circulargauge .e-range {
	stroke-width: 2px !important;
}

.light-theme .e-circulargauge .e-axis-labels text {
	fill: #23242a !important;
	stroke: none !important;
	font-weight: 700;
	font-size: 1.15em;
	paint-order: stroke fill;
	text-shadow: 0 0 2px #fff, 0 1px 0 #fff;
}

.light-theme .e-circulargauge .e-background,
.light-theme .e-circulargauge .e-gauge-background,
.light-theme .e-circulargauge .e-gauge-panel,
.light-theme .e-circulargauge .e-gauge,
.light-theme .e-circulargauge svg,
.light-theme .e-circulargauge rect,
.light-theme .e-circulargauge .e-border {
	background: transparent !important;
	background-color: transparent !important;
	fill: #fff !important;
}

.modal-dialog {
	background-color: var(--color-white);
	color: var(--color-secondary);
	border-color: var(--color-border);
}
