
/* Root variables */
:root {
	/* Light theme */
	--light-theme-body-background: #eeeeee;
	--light-theme-body-color: #000000;
	--light-theme-body-scrollbar-background: #dddddd;
	--light-theme-body-scrollbar-thumb: #bbbbbb;
	--light-theme-body-scrollbar-hover: #aaaaaa;
	--light-theme-app-header-background: #ffffff;
	--light-theme-dashboard-header-background: #ffffff;
	--light-theme-app-navigation-background: #ffffff;
	--light-theme-app-navigation-scrollbar-background: #ffffff;
	--light-theme-app-navigation-scrollbar-thumb: #bbbbbb;
	--light-theme-app-navigation-scrollbar-hover: #aaaaaa;
	--light-theme-app-navigation-text: #111;
	--light-theme-app-navigation-hover: #eee;
	--light-theme-app-navigation-active: #eee;
	--light-theme-app-bottom-navigation-background: #ffffff;
	--light-theme-card-background: #ffffff;
	--light-theme-input-background: #ffffff;
	--light-theme-backdrop-background: rgba(237, 237, 237, 0.8);
	
	/* Dark theme */
	--dark-theme-body-background: #1a1d1f;
	--dark-theme-body-color: #ffffff;
	--dark-theme-body-scrollbar-background: #151819;
	--dark-theme-body-scrollbar-thumb: #343b42;
	--dark-theme-body-scrollbar-hover: #47505a;
	--dark-theme-app-header-background: #292e32;
	--dark-theme-dashboard-header-background: #1f2226;
	--dark-theme-app-navigation-background: #212529;
	--dark-theme-app-navigation-scrollbar-background: #212529;
	--dark-theme-app-navigation-scrollbar-thumb: #343b42;
	--dark-theme-app-navigation-scrollbar-hover: #47505a;
	--dark-theme-app-navigation-text: #ddd;
	--dark-theme-app-navigation-hover: #343b42;
	--dark-theme-app-navigation-active: #47505a;
	--dark-theme-app-bottom-navigation-background: #292e32;
	--dark-theme-card-background: #25292c;
	--dark-theme-input-background: #292f35;
	--dark-theme-backdrop-background: rgba(15, 16, 17, 0.9);

	/* Primary colors */
	--primary-color: #0075FF;
	--primary-color-hover: #0066db;
	--primary-color-active: #005ac2;
	--primary-color-text: #ffffff;
	--primary-color-light: #80bbff;

	/* Secondary colors */
	--secondary-color: #2ecc71;
	--secondary-color-hover: #28b463;
	--secondary-color-active: #229c5a;
	--secondary-color-text: #ffffff;
	--secondary-color-light: #58d68d;

	/* Neutral colors */
	--white: #ffffff;
	--black: #000000;
	--gray-100: #f7f7f7;
	--gray-200: #e0e0e0;
	--gray-300: #cfcfcf;
	--gray-400: #bfbfbf;
	--gray-500: #a0a0a0;
	--gray-600: #808080;
	--gray-700: #606060;
	--gray-800: #404040;
	--gray-900: #202020;

	/* State colors */
	--success-color: #1abc9c;
	--success-color-hover: #16a588;
	--success-color-active: #10a083;
	--success-color-text: #ffffff;
	--success-color-light: #99dfd1;

	--danger-color: #f1556c;
	--danger-color-hover: #cf455a;
	--danger-color-active: #af394b;
	--danger-color-text: #ffffff;
	--danger-color-light: #f09da9;
  
	--warning-color: #f7b84b;
	--warning-color-hover: #d69f3f;
	--warning-color-active: #c08d35;
	--warning-color-text: #ffffff;
	--warning-color-light: #e9ca94;
  
	--info-color: #17a2b8;
	--info-color-hover: #127b87;
	--info-color-active: #0e5c67;
	--info-color-text: #ffffff;
	--info-color-light: #4ab0cf;

	--calm-color: #3485ff;
	--calm-color-hover: #2d77e6;
	--calm-color-active: #1e63ca;
	--calm-color-text: #ffffff;
	--calm-color-light: #89b0e9;

	/* Transition */
	--transition-duration: 200ms;

	/* Spacing */
	--spacing: 16px;

	/* Main side navigation */
	--app-navigation-width: 250px;

	/* Main Header */
	--app-header-height: 55px;

	/* Bottom Navigation */
	--app-bottom-navigation-safe-area: env(safe-area-inset-bottom);
	--app-bottom-navigation-height: 55px;

	--container-max-width: 1024px;
}

* {
	font-family: "inter" !important;
	margin: 0;
	-webkit-tap-highlight-color: transparent;
}

/* Body */
body {
	margin: 0;
	transition: var(--transition-duration) opacity ease;
	opacity: 0;
	user-select: none;
}
body.no-scroll {
    overflow: hidden;
}
body.visible {
	opacity: 1;
}
body.light {
	background: var(--light-theme-body-background);
	color: var(--light-theme-body-color);
	color-scheme: light;
}
body.dark {
	background: var(--dark-theme-body-background);
	color: var(--dark-theme-body-color);
	color-scheme: dark;
}
body::-webkit-scrollbar {
	width: 14px;
}
body.light::-webkit-scrollbar-track {
	background: var(--light-theme-body-scrollbar-background);
}
body.dark::-webkit-scrollbar-track {
	background: var(--dark-theme-body-scrollbar-background);
}
body::-webkit-scrollbar-thumb {
	border-radius: 7px;
	opacity: 0.1;
}
body.light::-webkit-scrollbar-thumb {
	background: var(--light-theme-body-scrollbar-thumb);
	border: 4px solid var(--light-theme-body-scrollbar-background);
}
body.dark::-webkit-scrollbar-thumb {
	background: var(--dark-theme-body-scrollbar-thumb);
	border: 4px solid var(--dark-theme-body-scrollbar-background);
}
body.light::-webkit-scrollbar-thumb:hover {
	background: var(--light-theme-body-scrollbar-hover);
}
body.dark::-webkit-scrollbar-thumb:hover {
	background: var(--dark-theme-body-scrollbar-hover);
}

/* Sizing */
.w-25 { width: 25%; }
.w-50 { width: 50%; }
.w-75 { width: 75%; }
.w-100 { width: 100%; }
.w-auto { width: auto; }
.mw-100 { max-width: 100%; }
.h-25 { height: 25%; }
.h-50 { height: 50%; }
.h-75 { height: 75%; }
.h-100 { height: 100%; }
.h-auto { height: auto; }
.mh-100 { max-height: 100%; }
.dvh-100 { height: 100dvh; }

/* Background */
.bg-primary { background-color: var(--primary-color); color: var(--primary-color-text); }
.bg-primary.interact:hover { background-color: var(--primary-color-hover); }
.bg-primary.interact:active { background-color: var(--primary-color-active); }

.bg-success { background-color: var(--success-color); color: var(--success-color-text); }
.bg-success.interact:hover { background-color: var(--success-color-hover); }
.bg-success.interact:active { background-color: var(--success-color-active); }

.bg-danger { background-color: var(--danger-color); color: var(--danger-color-text); }
.bg-danger.interact:hover { background-color: var(--danger-color-hover); }
.bg-danger.interact:active { background-color: var(--danger-color-active); }

.bg-warning { background-color: var(--warning-color); color: var(--warning-color-text); }
.bg-warning.interact:hover { background-color: var(--warning-color-hover); }
.bg-warning.interact:active { background-color: var(--warning-color-active); }

.bg-info { background-color: var(--info-color); color: var(--info-color-text); }
.bg-info.interact:hover { background-color: var(--info-color-hover); }
.bg-info.interact:active { background-color: var(--info-color-active); }

.bg-calm { background-color: var(--calm-color); color: var(--calm-color-text); }
.bg-calm.interact:hover { background-color: var(--calm-color-hover); }
.bg-calm.interact:active { background-color: var(--calm-color-active); }

/* Button */
.button {
	border: 0;
	outline: 0;
	color: var(--primary-color-text);
	cursor: pointer;
	transition: var(--transition-duration) background-color ease;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}
.button .text {
	margin: 0 auto;
}
.button.full {
	width: 100%;
}
.button.sm {
	height: 26px;
	padding: 0 8px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 4px;
}
.button {
	height: 32px;
	padding: 0 10px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 6px;
}
.button.lg {
	height: 42px;
	padding: 0 12px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 8px;
}

/* Cursor */
.cursor-pointer {
	cursor: pointer;
}
.cursor-text {
	cursor: text;
}
.cursor-default {
	cursor: default;
}
.cursor-not-allowed {
	cursor: not-allowed;
}

/* Grid */
.row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing);
}
.col {
	flex: 1 1 100%;
}
.col-1 {
		--size: 1;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-2 {
		--size: 2;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-3 {
		--size: 3;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-4 {
		--size: 4;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-5 {
		--size: 5;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-6 {
		--size: 6;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-7 {
		--size: 7;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-8 {
		--size: 8;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-9 {
		--size: 9;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-10 {
		--size: 10;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-11 {
		--size: 11;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
.col-12 {
		--size: 12;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
@media (min-width: 576px) {
	.col-xs-1, .col-sm-1 {
		--size: 1;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-2, .col-sm-2 {
		--size: 2;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-3, .col-sm-3 {
		--size: 3;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-4, .col-sm-4 {
		--size: 4;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-5, .col-sm-5 {
		--size: 5;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-6, .col-sm-6 {
		--size: 6;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-7, .col-sm-7 {
		--size: 7;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-8, .col-sm-8 {
		--size: 8;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-9, .col-sm-9 {
		--size: 9;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-10, .col-sm-10 {
		--size: 10;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-11, .col-sm-11 {
		--size: 11;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xs-12, .col-sm-12 {
		--size: 12;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
}
@media (min-width: 768px) {
	.col-md-1 {
		--size: 1;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-2 {
		--size: 2;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-3 {
		--size: 3;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-4 {
		--size: 4;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-5 {
		--size: 5;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-6 {
		--size: 6;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-7 {
		--size: 7;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-8 {
		--size: 8;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-9 {
		--size: 9;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-10 {
		--size: 10;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-11 {
		--size: 11;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-md-12 {
		--size: 12;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
}
@media (min-width: 992px) {
	.col-lg-1 {
		--size: 1;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-2 {
		--size: 2;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-3 {
		--size: 3;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-4 {
		--size: 4;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-5 {
		--size: 5;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-6 {
		--size: 6;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-7 {
		--size: 7;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-8 {
		--size: 8;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-9 {
		--size: 9;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-10 {
		--size: 10;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-11 {
		--size: 11;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-lg-12 {
		--size: 12;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
}
@media (min-width: 1200px) {
	.col-xl-1 {
		--size: 1;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-2 {
		--size: 2;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-3 {
		--size: 3;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-4 {
		--size: 4;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-5 {
		--size: 5;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-6 {
		--size: 6;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-7 {
		--size: 7;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-8 {
		--size: 8;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-9 {
		--size: 9;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-10 {
		--size: 10;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-11 {
		--size: 11;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
	.col-xl-12 {
		--size: 12;
		flex: 0 0 calc(((var(--size) / 12) * 100%) - ((((12 / var(--size) - 1) * var(--spacing)) / (12 / var(--size)))));
	}
}

/* Card */
.card {
	width: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.05);
}
.card .header {
	border-radius: 8px 8px 0 0;
	box-shadow: inset 0 -1px rgba(0,0,0,0.06);
	background: rgba(0,0,0,0.03);
	padding: var(--spacing);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: var(--spacing);
}
.card .header .title {
	font-weight: 600;
	font-size: 16px;
	opacity: 0.8;
}
.card .header .title.center {
	margin: 0 auto;
	text-align: center;
}
.card .body {
	padding: var(--spacing);
	flex-direction: column;
}
.card .footer {
	box-shadow: inset 0 1px rgba(0,0,0,0.06);
	background: rgba(0,0,0,0.03);
	border-radius: 0 0 8px 8px;
	padding: var(--spacing);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: end;
	gap: var(--spacing);
}
.light .card {
	background: var(--light-theme-card-background);
}
.dark .card {
	background: var(--dark-theme-card-background);
}

/* Form */
.form-group {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: start;
}
.form-group .label {
	cursor: pointer;
	font-weight: 600;
}
.form-group .label.required::after {
	content: "*";
	color: var(--danger-color);
}
.input-container {
	width: 100%;
	height: 42px;
	padding: 2px;
	display: flex;
	box-sizing: border-box;
	flex-direction: row;
	align-items: center;
	box-shadow: transparent 0 0 inset, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px, rgba(0, 0, 0, 0.06) 0px 2px 3px;
	transition: var(--transition-duration) box-shadow ease;
	border-radius: 6px;
	overflow: hidden;
	cursor: text;
}
.light .input-container {
	background: var(--light-theme-input-background);
}
.dark .input-container {
	background: var(--dark-theme-input-background);
}
.input-container:focus-within {
	box-shadow: 0 0 0 2px inset var(--primary-color), 0 0 0 1px rgba(0, 0, 0, 0.06), 0 2px 3px rgba(0, 0, 0, 0.06);
}
.input-container .icon {
	width: 42px;
	height: 42px;
	font-size: 21px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
}
.input-container .input-button {
	opacity: 1;
	color: var(--primary-color);
	cursor: pointer;
}
.input {
	outline: none;
	border: 0;
	padding: 0;
	background: transparent;
	flex-grow: 1;
	font-size: 16px;
	height: 100%;
	border-radius: 6px;
}

/* Dropdown */
.dropdown {
	position: relative;
}
.dropdown .list {
	width: 150px;
	position: absolute;
	top: 100%;
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-duration) opacity ease, var(--transition-duration) visibility ease, var(--transition-duration) margin-top ease;
}
.dropdown.active .list {
	opacity: 1;
	visibility: visible;
	margin-top: 5px;
}
.dropdown .list.right {
	right: 0;
}
.dropdown .list.left {
	left: 0;
}
.dropdown a {
	text-decoration: none;
}
.dropdown .item {
	padding: 8px 12px;
	transition: var(--transition-duration) background-color ease;
}
.dropdown .item:hover {
	padding: 8px 12px;
}
.light .dropdown .item {
	box-shadow: 0 1px rgba(0,0,0,0.06);
}
.dark .dropdown .item {
	box-shadow: 0 1px rgba(255,255,255,0.06);
}
.light .dropdown .item:hover {
	background: rgba(0,0,0,0.04);
}
.dark .dropdown .item:hover {
	background: rgba(255,255,255,0.03);
}
.light .dropdown a {
	color: var(--light-theme-body-color);
}
.dark .dropdown a {
	color: var(--dark-theme-body-color);
}

/* Avatar */
.avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #eee;
	background-position: center;
	background-size: cover;
}

/* Advertise Layout */
.advertise-layout,
.authentication-layout {
	width: 100%;
	height: 100dvh;
	box-sizing: border-box;
	padding: 50px 0;
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.advertise-layout .box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--spacing);
}
.advertise-layout .title,
.advertise-layout .text {
	text-align: center;
}
.advertise-layout .title {
	font-size: 28px;
	font-weight: 800;
	display: flex;
	flex-direction: row;
	gap: 5px;
	align-items: center;
}
.advertise-layout .text {
	font-size: 16px;
	font-weight: 400;
	opacity: 0.8;
}

/* Authentication Layout */
.authentication-layout .box {
	width: calc(100% - 40px);
	padding: 40px 30px;
	max-width: 400px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.09), 0 4px 16px rgba(0,0,0,0.06);
	box-sizing: border-box;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.light .authentication-layout .box {
	background: var(--light-theme-card-background);
}
.dark .authentication-layout .box {
	background: var(--dark-theme-card-background);
}
.authentication-layout .title {
	font-size: 21px;
	font-weight: 600;
	text-align: center;
}

/* Dashboard Layout */
.dashboard-layout {

}

/* App Header */
.app-header {
	position: fixed;
	z-index: 4;
	width: 100%;
	box-sizing: border-box;
	top: 0;
	left: 0;
	height: var(--app-header-height);
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 1px 1px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.05);
}
.light .app-header {
	background: var(--light-theme-app-header-background);
}
.dark .app-header {
	background: var(--dark-theme-app-header-background);
}
.app-header .container {
	display: flex;
	flex-direction: row;
	gap: 10px;
	box-sizing: border-box;
	padding: 0 var(--spacing);
	align-items: center;
}
.app-header .toggle-button {
	width: 30px;
	height: 30px;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	opacity: 0.4;
	cursor: pointer;
	transition: var(--transition-duration) opacity ease;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.app-header .toggle-button:hover {
	opacity: 0.7;
}
@media screen and (max-width: 1024px) {
	.app-header .toggle-button {
		display: none;
	}
}

/* App Side Navigation */
.app-navigation {
	position: fixed;
	width: var(--app-navigation-width);
	height: calc(100dvh - var(--app-header-height));
	top: var(--app-header-height);
	z-index: 3;
	overflow-y: auto;
	box-sizing: border-box;
	transform: translateX(calc(var(--app-navigation-width) * -1));
	transition: var(--transition-duration) transform ease, var(--transition-duration) opacity ease;
	box-shadow: 1px 0 1px rgba(0,0,0,0.05), 4px 0 12px rgba(0,0,0,0.05);
	opacity: 0;
	display: flex;
	flex-direction: column;
}
.app-navigation.without-transition {
	transition: none;
}
.light .app-navigation {
	background: var(--light-theme-app-navigation-background);
}
.dark .app-navigation {
	background: var(--dark-theme-app-navigation-background);
}
.app-navigation.visible {
	transform: translateX(0);
	opacity: 1;
}
.app-navigation .list {
	margin: 0;
	list-style: none;
	padding: var(--spacing);
	display: flex;
	flex-direction: column;
	gap: 4px;
	overflow-y: auto;
	height: 100%;
}
.app-navigation .list::-webkit-scrollbar {
	width: 14px;
	border-radius: 7px;
	border: solid 10px red;
}
.light .app-navigation .list::-webkit-scrollbar-track {
	background: var(--light-theme-app-navigation-scrollbar-background);
}
.dark .app-navigation .list::-webkit-scrollbar-track {
	background: var(--dark-theme-app-navigation-scrollbar-background);
}
.app-navigation .list::-webkit-scrollbar-thumb {
	border-radius: 7px;
	opacity: 0.1;
}
.light .app-navigation .list::-webkit-scrollbar-thumb {
	background: var(--light-theme-app-navigation-scrollbar-thumb);
	border: 4px solid var(--light-theme-app-navigation-scrollbar-background);
}
.dark .app-navigation .list::-webkit-scrollbar-thumb {
	background: var(--dark-theme-app-navigation-scrollbar-thumb);
	border: 4px solid var(--dark-theme-app-navigation-scrollbar-background);
}
.light .app-navigation .list::-webkit-scrollbar-thumb:hover {
	background: var(--light-theme-app-navigation-scrollbar-hover);
}
.dark .app-navigation .list::-webkit-scrollbar-thumb:hover {
	background: var(--dark-theme-app-navigation-scrollbar-hover);
}
.app-navigation .list a {
	text-decoration: none;
}
.app-navigation .item-button {
	padding: 8px 8px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	transition: var(--transition-duration) background-color ease;
	border-radius: 8px;
}
.app-navigation .icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	font-size: 19px;
	font-weight: normal;
	display: flex;
	cursor: pointer;
	opacity: 0.5;
}
.app-navigation .name {
	font-size: 16px;
	line-height: 18px;
	font-weight: 500;
}
.app-navigation .navigation-dropdown {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: 200ms opacity ease, 200ms max-height ease, 100ms padding ease, 100ms margin ease;
	margin: 0 0 0 18px;
	padding: 0 0 0 10px;
	opacity: 0;
	max-height: 0;
}
.app-navigation .navigation-dropdown.active {
	margin: 0 0 0 18px;
	padding: 4px 0 0 10px;
	opacity: 1;
	max-height: 500px;
}
.light .app-navigation .item-button {
	color: var(--light-theme-app-navigation-text);
}
.light .app-navigation .item-button:hover {
	background: var(--light-theme-app-navigation-hover);
}
.light .app-navigation .item-button:active {
	background: var(--light-theme-app-navigation-active);
}
.dark .app-navigation .item-button {
	color: var(--dark-theme-app-navigation-text);
}
.dark .app-navigation .item-button:hover {
	background: var(--dark-theme-app-navigation-hover);
}
.dark .app-navigation .item-button:active {
	background: var(--dark-theme-app-navigation-active);
}
.app-navigation .item-button.active,
.app-navigation .item-button.active:hover {
	background: var(--primary-color);
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.app-navigation {
		top: initial;
		width: calc(100% - (var(--spacing) * 2));
		max-width: 600px;
		left: 50%;
		height: auto;
		max-height: calc(100dvh - var(--app-header-height) - var(--spacing));
		border-radius: 8px 8px 0 0;
		padding-bottom: calc(var(--app-bottom-navigation-height) + var(--app-bottom-navigation-safe-area));
		bottom: 0;
		box-sizing: border-box;
		transform: translateX(-50%) translateY(100%);
		box-shadow: 0 -1px 1px rgba(0,0,0,0.05), 0 -4px 12px rgba(0,0,0,0.05);
	}
	.app-navigation .list {
		padding: 0 var(--spacing) var(--spacing) var(--spacing);
	}
	.app-navigation.visible {
		transform: translateX(-50%) translateY(0);
	}
	.app-navigation .drag-rectangle {
		width: 40px;
		height: 6px;
		border-radius: 3px;
		background: rgba(0,0,0,1);
		opacity: 0.3;
		margin: var(--spacing) auto;
		flex-shrink: 0;
	}
}

/* App Bottom Navigation */
.app-bottom-navigation {
	width: 100%;
	height: calc(var(--app-bottom-navigation-height) + var(--app-bottom-navigation-safe-area));
	position: fixed;
	z-index: 4;
	box-sizing: border-box;
	padding-bottom: var(--app-bottom-navigation-safe-area);
	bottom: 0;
	left: 0;
	flex-shrink: 0;
	box-shadow: 0 -1px 1px rgba(0,0,0,0.05), 0 -4px 12px rgba(0,0,0,0.05);
	transform: translateY(calc(var(--app-bottom-navigation-height) + var(--app-bottom-navigation-safe-area)));
	transition: var(--transition-duration) transform ease;
}
.light .app-bottom-navigation {
	background: var(--light-theme-app-bottom-navigation-background);
}
.dark .app-bottom-navigation {
	background: var(--dark-theme-app-bottom-navigation-background);
}
.app-bottom-navigation a {
	text-decoration: none;
	opacity: 0.9;
}
.light .app-bottom-navigation a {
	color: var(--light-theme-body-color);
}
.dark .app-bottom-navigation a {
	color: var(--dark-theme-body-color);
}
.app-bottom-navigation .container {
	max-width: 600px;
	margin: 0 auto;
	height: calc(var(--app-bottom-navigation-height) + var(--app-bottom-navigation-safe-area));
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: row;
}
.app-bottom-navigation .item {
	width: 50px;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}
.app-bottom-navigation .icon {
	font-size: 24px;
}
.app-bottom-navigation .name {
	font-size: 12px;
}
.app-bottom-navigation-backdrop {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 2;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-duration) opacity ease, var(--transition-duration) visibility ease;
}
.light .app-bottom-navigation-backdrop {
	background: var(--light-theme-backdrop-background);
}
.dark .app-bottom-navigation-backdrop {
	background: var(--dark-theme-backdrop-background);
}
@media screen and (max-width: 1024px) {
	.app-bottom-navigation {
		transform: translateY(0);
	}
	.app-bottom-navigation-backdrop.visible {
		opacity: 1;
		visibility: visible;
	}
}

/* App Content */
.app-content {
	position: absolute;
	width: 100%;
	min-height: 100dvh;
	padding-top: calc(var(--app-header-height) * 2);
	left: 0;
	transition: var(--transition-duration) left ease, var(--transition-duration) width ease;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.app-content.with-navigation {
	width: calc(100% - var(--app-navigation-width));
	left: var(--app-navigation-width);
}
@media screen and (max-width: 1024px) {
	.app-content {
		padding-bottom: calc(var(--app-bottom-navigation-height) + var(--app-bottom-navigation-safe-area));
	}
	.app-content.with-navigation {
		width: 100%;
		left: 0;
	}
}

/* Dashboard */
.dashboard-header {
	width: 100%;
	height: var(--app-header-height);
	z-index: 4;
	box-sizing: border-box;
	position: fixed;
	left: 0;
	top: var(--app-header-height);
	padding: 0 var(--spacing);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 1px 1px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.05);
	transition: var(--transition-duration) left ease, var(--transition-duration) width ease;
}
.app-content.with-navigation .dashboard-header {
	width: calc(100% - var(--app-navigation-width));
	left: var(--app-navigation-width);
}
@media screen and (max-width: 1024px) {
	.app-content.with-navigation .dashboard-header {
		width: 100%;
		left: 0;
	}
}
.light .dashboard-header {
	background: var(--light-theme-dashboard-header-background);
}
.dark .dashboard-header {
	background: var(--dark-theme-dashboard-header-background);
}
.dashboard-header .title {
	font-size: 18px;
	font-weight: 600;
	opacity: 0.8;
}

/* Dashboard Builder */
.dashboard-builder {
	flex: 1;
	position: relative;
}
.dashboard-builder .container {
	width: calc(100% - calc(var(--spacing) * 2));
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--spacing) 0;
}
.dashboard-builder .card-stats {
	height: 100%;
}
.dashboard-builder .stats {
	display: flex;
	gap: 8px;
}
.dashboard-builder .stats .icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
}
.dashboard-builder .stats .value {
	font-size: 21px;
	font-weight: 800;
	display: flex;
	flex-direction: row;
	gap: 5px;
	align-items: center;
}
.dashboard-builder .stats span {
	font-size: 14px;
	font-weight: 400;
	opacity: 0.4;
}
.dashboard-builder .stats .label {
	font-size: 16px;
	font-weight: 400;
	opacity: 0.7;
}

/* ApexCharts */
.apexcharts-menu {
	border: none !important;
	border-radius: 8px !important;
	box-shadow: 0 1px 1px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.05) !important;
}
.light .apexcharts-menu {
	background: var(--light-theme-card-background) !important;
}
.dark .apexcharts-menu {
	background: var(--dark-theme-card-background) !important;
}
.light .apexcharts-menu-item:hover {
	background: rgba(0,0,0,0.05) !important;
}
.dark .apexcharts-menu-item:hover {
	background: rgba(0,0,0,0.1) !important;
}
.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg,
.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,
.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg {
  fill: var(--primary-color) !important;
}
.light .apexcharts-theme-light .apexcharts-menu-icon:hover svg,
.light .apexcharts-theme-light .apexcharts-reset-icon:hover svg,
.light .apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,
.light .apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,
.light .apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,
.light .apexcharts-theme-light .apexcharts-zoomout-icon:hover svg {
  fill: #000 !important;
}
.dark .apexcharts-theme-light .apexcharts-menu-icon:hover svg,
.dark .apexcharts-theme-light .apexcharts-reset-icon:hover svg,
.dark .apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,
.dark .apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,
.dark .apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,
.dark .apexcharts-theme-light .apexcharts-zoomout-icon:hover svg {
  fill: #fff !important;
}

/* CRUD Builder */
.crud-builder {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.crud-builder .container {
	width: 100%;
	flex: 1;
	padding: var(--spacing) 0;
	display: flex;
	flex-direction: column;
}
.crud-builder .filter {
	width: calc(100% - calc(var(--spacing) * 2));
	margin: 0 auto;
}
.crud-builder .filter .body {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	column-gap: var(--spacing);
	row-gap: calc(var(--spacing) / 2);
}
.crud-builder .filter .title {
	font-size: 16px;
	font-weight: 400;
	opacity: 0.8;
	display: flex;
	flex-direction: row;
	gap: 5px;
	align-items: center;
}
.crud-builder .filter .title .icon {
	opacity: 0.4;
}
.crud-builder .filter .item {
	padding: 5px 8px;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
	cursor: pointer;
	font-size: 14px;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}
.crud-builder .filter .item .icon {
	opacity: 0.4;
}
.crud-builder .not-found {
	width: calc(100% - (var(--spacing) * 2));
	max-width: 250px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: var(--spacing);
	align-items: center;
	text-align: center;
}
.crud-builder .not-found img {
	width: 100%;
	max-width: 150px;
}
.crud-builder .not-found .text {
	font-size: 16px;
	opacity: 0.5;
}