/* ==================== [ Root CSS Start ] ==================== */
/* ==================== [ Core Colors ] ==================== */
:root {
	--white: #ffffff;
	--black: #000000;
	--transparent: #0000;
}

/* ==================== [ Brand / Theme ] ==================== */
:root {
	--primary: #1B75BB;
	--dark-primary: #155A91;

	--info: #2CA8C2;
	--dark-info: #23879B;

	--teal: #2FAF9E;
	--dark-teal: #258C7F;

	--success: #4CAF50;
	--dark-success: #3D8B40;

	--yellow: #F4B400;
	--dark-yellow: #C49000;

	--warning: #F97316;
	--dark-warning: #D65F0E;

	--danger: #EF4444;
	--dark-danger: #D73737;

	--purple: #7C3AED;
	--dark-purple: #652FD1;

	--secondary: #929497;
	--dark-secondary: #7A7C7F;
}

:root {
	--secondary: #929497;
	--dark: #0D0D0D;
	--light: #F9F9FA;
	--body: var(--white);
	--active-bg: rgba(27, 117, 187, 0.15);
	--box-shadow: 0 2px 6px rgba(146, 148, 151, 0.13);
	--border-05: rgba(146, 148, 151, 0.05);
	--border-10: rgba(146, 148, 151, 0.10);
	--border: #E9EAEA;

	--border-primary-25: rgba(27, 117, 187, 0.25);
	--border-primary-45: rgba(27, 117, 187, 0.45);

	--border-info-25: rgba(44, 168, 194, 0.25);
	--border-info-45: rgba(44, 168, 194, 0.45);

	--border-teal-25: rgba(47, 175, 158, 0.25);
	--border-teal-45: rgba(47, 175, 158, 0.45);

	--border-success-25: rgba(76, 175, 80, 0.25);
	--border-success-45: rgba(76, 175, 80, 0.45);

	--border-yellow-25: rgba(244, 180, 0, 0.25);
	--border-yellow-45: rgba(244, 180, 0, 0.45);

	--border-warning-25: rgba(249, 115, 22, 0.25);
	--border-warning-45: rgba(249, 115, 22, 0.45);

	--border-danger-25: rgba(239, 68, 68, 0.25);
	--border-danger-45: rgba(239, 68, 68, 0.45);

	--border-purple-25: rgba(124, 58, 237, 0.25);
	--border-purple-45: rgba(124, 58, 237, 0.45);

	--border-secondary-25: rgba(146, 148, 151, 0.25);
	--border-secondary-45: rgba(146, 148, 151, 0.45);
}

/* ==================== [ Fonts ] ==================== */
:root {
	--font-primary: "Archivo", sans-serif;
	--font-secondary: "", sans-serif;
}

/* ==================== [ Layout / Container ] ==================== */
:root {
	--container: 1400px;
	--container-padding: 0px;
	--row-gutter-space: 24px;
}

/* ==================== [ Typography – Common ] ==================== */
:root {
	--a-color: var(--primary);
	--a-hover-color: var(--primary);

	--marker-color: var(--primary);

	--blockquote-border-color: var(--primary);
	--blockquote-bg: var(--white);

	--pre-bg: var(--white);
	--pre-color: var(--primary);
}

/* ==================== [ Table ] ==================== */
:root {
	--table-border: var(--border);

	--table-th-bg: rgba(27, 117, 187, 0.05);
	--table-th-color: var(--dark);

	--table-td-bg: var(--transparent);
	--table-td-color: var(--dark);
}

/* ==================== [ Headings ] ==================== */
:root {
	--heading-color: #163D36;
	--heading-font-family: var(--font-secondary);
	--heading-mb: 20px;
	--heading-fw: 700;

	--h1-fs: 48px;
	--h1-lh: 56px;

	--h2-fs: 40px;
	--h2-lh: 48px;

	--h3-fs: 32px;
	--h3-lh: 40px;

	--h4-fs: 26px;
	--h4-lh: 34px;

	--h5-fs: 22px;
	--h5-lh: 30px;

	--h6-fs: 18px;
	--h6-lh: 26px;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Brand Global CSS Start ] ==================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	color: var(--dark);
	font-family: var(--font-primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	background: var(--body);
	overflow-x: hidden;
	overscroll-behavior: none;
}

/* ==================== [ Brand Global CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
	margin: 0;
}

strong,
b {
	font-weight: 700 !important;
}

a,
input,
button,
textarea {
	outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 1000px var(--transparent) inset !important;
	-webkit-text-fill-color: var(--secondary) !important;
	transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
textarea:autofill,
select:autofill {
	background-color: var(--transparent) !important;
	color: var(--secondary) !important;
}

a {
	color: var(--a-color);
	word-break: break-word;
	transition: all 0.3s ease-in-out;
}

button {
	transition: all 0.3s ease-in-out;
}

a:hover {
	color: var(--a-hover-color);
}

p {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-bottom: 20px;
}

ol,
ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
	margin-top: 10px;
	margin-bottom: 10px;
}

ol li,
ul li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ol li::marker,
ul li::marker {
	color: var(--marker-color);
}

ul li:has(> ul),
ul li:has(> ol) {
	list-style-type: none;
}

blockquote {
	padding: 16px 16px 16px 24px;
	border-left: 5px solid var(--blockquote-border-color);
	margin-bottom: 20px;
	background-color: var(--blockquote-bg);
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

pre {
	background-color: var(--pre-bg);
	padding: 16px;
	overflow: auto;
	font-family: inherit;
	border-radius: 12px;
	position: relative;
	color: var(--pre-color);
}

pre code {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	font-size: inherit;
}

th,
td {
	border: 1px solid var(--table-border);
	padding: 8px 12px;
	text-align: left;
}

th {
	background-color: var(--table-th-bg);
	font-weight: 500;
	font-size: inherit;
	color: var(--table-th-color);
}

td {
	background-color: var(--table-td-bg);
	font-weight: 400;
	font-size: inherit;
	color: var(--table-td-color);
}

.table-light-primary {
	background-color: var(--active-bg);
}

.table-light-primary>* {
	background: inherit;
}

h1,
.h1>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h1-fs);
	line-height: var(--h1-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h2,
.h2>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h2-fs);
	line-height: var(--h2-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h3,
.h3>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h3-fs);
	line-height: var(--h3-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h4,
.h4>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h4-fs);
	line-height: var(--h4-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h5,
.h5>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h5-fs);
	line-height: var(--h5-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h6,
.h6>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h6-fs);
	line-height: var(--h6-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

hr {
	margin-block: 20px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

textarea {
	resize: none;
}

.typography {
	padding-block: 120px;
}

.typography img {
	max-width: 300px;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center;
	margin-bottom: 20px;
}

.typography img.align-left {
	margin-right: 40px;
	float: left;
}

.typography img.align-right {
	margin-left: 40px;
	float: right;
}

.typography img.align-center {
	margin-inline: auto;
	display: block;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
	margin-inline: calc(var(--row-gutter-space) / -2);
	row-gap: var(--row-gutter-space);
}

.row>* {
	padding-inline: calc(var(--row-gutter-space) / 2);
}

.img-cover * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.img-contain * {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
	width: fit-content;
	padding: 6px 14px;
	text-align: center;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	border-radius: 6px;
	border: 1px solid;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.btn.btn-sm {
	padding: 4px 10px;
	font-size: 13px;
	line-height: 18px;
	border-radius: 5px;
	gap: 4px;
}

.btn.btn-lg {
	padding: 10px 24px;
	font-size: 18px;
	line-height: 28px;
	border-radius: 8px;
}

.btn.btn-sm i {
	font-size: 16px;
}

.btn i {
	font-size: 18px;
}

.btn.btn-lg i {
	font-size: 22px;
}

.btn-primary {
	color: var(--white);
	background: var(--primary);
	border-color: var(--primary);
}

.btn-primary:is(:hover, :focus-visible, :active, .active) {
	color: var(--white) !important;
	background-color: var(--dark-primary) !important;
	border-color: var(--dark-primary) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn-info {
	color: var(--white);
	background: var(--info);
	border-color: var(--info);
}

.btn-info:is(:hover, :focus-visible, :active, .active) {
	color: var(--white) !important;
	background-color: var(--dark-info) !important;
	border-color: var(--dark-info) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn-teal {
	color: var(--white);
	background: var(--teal);
	border-color: var(--teal);
}

.btn-teal:is(:hover, :focus-visible, :active, .active) {
	color: var(--white) !important;
	background-color: var(--dark-teal) !important;
	border-color: var(--dark-teal) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn-success {
	color: var(--white);
	background: var(--success);
	border-color: var(--success);
}

.btn-success:is(:hover, :focus-visible, :active, .active) {
	color: var(--white) !important;
	background-color: var(--dark-success) !important;
	border-color: var(--dark-success) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn-yellow {
	color: var(--black);
	background: var(--yellow);
	border-color: var(--yellow);
}

.btn-yellow:is(:hover, :focus-visible, :active, .active) {
	color: var(--black) !important;
	background-color: var(--dark-yellow) !important;
	border-color: var(--dark-yellow) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn-warning {
	color: var(--white);
	background: var(--warning);
	border-color: var(--warning);
}

.btn-warning:is(:hover, :focus-visible, :active, .active) {
	color: var(--white) !important;
	background-color: var(--dark-warning) !important;
	border-color: var(--dark-warning) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn-danger {
	color: var(--white);
	background: var(--danger);
	border-color: var(--danger);
}

.btn-danger:is(:hover, :focus-visible, :active, .active) {
	color: var(--white) !important;
	background-color: var(--dark-danger) !important;
	border-color: var(--dark-danger) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn-purple {
	color: var(--white);
	background: var(--purple);
	border-color: var(--purple);
}

.btn-purple:is(:hover, :focus-visible, :active, .active) {
	color: var(--white) !important;
	background-color: var(--dark-purple) !important;
	border-color: var(--dark-purple) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

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

.btn-secondary:is(:hover, :focus-visible, :active, .active) {
	color: var(--white) !important;
	background-color: var(--dark-secondary) !important;
	border-color: var(--dark-secondary) !important;
	box-shadow: none !important;
	outline: 0 !important;
}


/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
	padding: 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100dvh;
}

.error-404 .heading {
	text-align: center;
}

.error-404 .action * {
	width: fit-content;
	margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
	padding-inline: var(--container-padding);
	margin-inline: auto;
}

.swiper-linear .swiper-wrapper {
	transition-timing-function: linear !important;
}

.border-icon {
	background-color: var(--transparent);
	font-size: 20px;
	text-decoration: none;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.border-icon.sm {
	font-size: 14px;
	width: 28px;
	height: 28px;
}

.border-icon.md {
	font-size: 16px;
	width: 32px;
	height: 32px;
}

.color-primary {
	border: 1px solid var(--border-primary-25);
	color: var(--primary);
}

.color-primary:hover {
	border: 1px solid var(--primary);
	color: var(--white);
	background-color: var(--primary);
}

.color-info {
	border: 1px solid var(--border-info-25);
	color: var(--info);
}

.color-info:hover {
	border: 1px solid var(--info);
	color: var(--white);
	background-color: var(--info);
}

.color-teal {
	border: 1px solid var(--border-teal-25);
	color: var(--teal);
}

.color-teal:hover {
	border: 1px solid var(--teal);
	color: var(--white);
	background-color: var(--teal);
}

.color-success {
	border: 1px solid var(--border-success-25);
	color: var(--success);
}

.color-success:hover {
	border: 1px solid var(--success);
	color: var(--white);
	background-color: var(--success);
}

.color-yellow {
	border: 1px solid var(--border-yellow-25);
	color: var(--yellow);
}

.color-yellow:hover {
	border: 1px solid var(--yellow);
	color: var(--white);
	background-color: var(--yellow);
}

.color-warning {
	border: 1px solid var(--border-warning-25);
	color: var(--warning);
}

.color-warning:hover {
	border: 1px solid var(--warning);
	color: var(--white);
	background-color: var(--warning);
}

.color-danger {
	border: 1px solid var(--border-danger-25);
	color: var(--danger);
}

.color-danger:hover {
	border: 1px solid var(--danger);
	color: var(--white);
	background-color: var(--danger);
}

.color-purple {
	border: 1px solid var(--border-purple-25);
	color: var(--purple);
}

.color-purple:hover {
	border: 1px solid var(--purple);
	color: var(--white);
	background-color: var(--purple);
}

.color-secondary {
	border: 1px solid var(--border-secondary-25);
	color: var(--secondary);
}

.color-secondary:hover {
	border: 1px solid var(--secondary);
	color: var(--white);
	background-color: var(--secondary);
}

.popover {
	border: 1px solid var(--border);
	outline: 0;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
}

.tooltip-inner {
	font-size: 12px;
	font-weight: 400;
	line-height: 120%;
}

.card {
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 24px;
	border: 1px solid var(--border);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.row .card {
	margin-bottom: 0;
}

.card .card-heading {
	padding-bottom: 10px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--border);
}

.card .card-heading:not(:first-of-type) {
	padding-top: 10px;
	margin-top: 16px;
	border-top: 1px solid var(--border);
}

.card .card-heading .title * {
	font-size: 18px;
	font-weight: 500;
	color: var(--dark);
	margin-bottom: 0;
}

/* ==================== [ Extra Common End ] ==================== */

/* ==================== [ Theme Extra Class Start ] ==================== */
.text-danger {
	color: var(--danger);
}

.text-warning {
	color: var(--warning);
}

.text-success {
	color: var(--success);
}

/* ==================== [ Theme Extra Class End ] ==================== */

/* ==================== [ Body Wrapper Start ] ==================== */
.page-wrapper {
	display: flex;
	width: 100%;
	overflow: hidden !important;
}

.body-heading {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.body-wrapper {
	width: 100%;
	position: relative;
	width: 100%;
	padding: 20px 16px;
	overflow: auto;
	height: calc(100dvh - 74px - 85px);
}

/* ==================== [ Body Wrapper End ] ==================== */

/* ==================== [ Datatable Setting Start ] ==================== */
/* --- General Layout & Container --- */
div.dt-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

div.dt-container div.dt-layout-row {
	margin-block: 0px;
}

div.dt-container div.dt-layout-row div.dt-layout-cell {
	overflow: auto;
}

/* --- Typography & Colors --- */
div.dt-container .dt-length,
div.dt-container .dt-search,
div.dt-container .dt-info,
div.dt-container .dt-processing,
div.dt-container .dt-paging {
	font-size: 14px;
	line-height: 120%;
	color: var(--secondary);
}

div.dt-container .dt-number {
	font-weight: 500;
}

div.dt-container .dt-length label {
	color: var(--secondary);
	margin-left: 8px;
}

/* --- Table Header & Footer --- */
table.dataTable th.dt-type-numeric div.dt-column-header,
table.dataTable th.dt-type-numeric div.dt-column-footer,
table.dataTable th.dt-type-date div.dt-column-header,
table.dataTable th.dt-type-date div.dt-column-footer,
table.dataTable td.dt-type-numeric div.dt-column-header,
table.dataTable td.dt-type-numeric div.dt-column-footer,
table.dataTable td.dt-type-date div.dt-column-header,
table.dataTable td.dt-type-date div.dt-column-footer {
	flex-direction: row;
}

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
	text-align: left;
}

table.dataTable thead th,
table.dataTable tfoot th {
	font-weight: 500;
	color: var(--primary);
}

div.dt-container.dt-empty-footer tbody>tr:last-child>*,
table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
	border-bottom: 1px solid var(--border);
}

/* --- Inputs & Search --- */
div.dt-container .dt-input,
div.dt-container .dt-search input {
	background-color: var(--white) !important;
	border: 1px solid var(--border) !important;
	border-radius: 8px !important;
	outline: 0 !important;
	box-shadow: inset 0 2px 3px rgba(27, 117, 187, 0.08), inset 0 -2px 1px rgba(255, 255, 255, 0.6) !important;
	padding: 6px 12px !important;
	-webkit-border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	-ms-border-radius: 8px !important;
	-o-border-radius: 8px !important;
}

/* --- Sorting Icons (Arrows) --- */
table.dataTable thead>tr>th.dt-orderable-asc .dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-asc .dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-asc .dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-asc .dt-column-order:before {
	position: absolute;
	display: block;
	bottom: 50%;
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.9999 10.8284L7.0502 15.7782L5.63599 14.364L11.9999 8L18.3639 14.364L16.9497 15.7782L11.9999 10.8284Z'%3E%3C/path%3E%3C/svg%3E");
	background-position: center;
	background-size: cover;
	width: 18px;
	height: 10px;
	filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(817%) hue-rotate(175deg) brightness(92%) contrast(91%);
	-webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(817%) hue-rotate(175deg) brightness(92%) contrast(91%);
}

table.dataTable thead>tr>th.dt-orderable-desc .dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-desc .dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-desc .dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-desc .dt-column-order:after {
	position: absolute;
	display: block;
	top: 50%;
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
	background-position: center;
	background-size: cover;
	width: 18px;
	height: 10px;
	filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(817%) hue-rotate(175deg) brightness(92%) contrast(91%);
	-webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(817%) hue-rotate(175deg) brightness(92%) contrast(91%);
}

table.dataTable thead>tr>th.dt-orderable-asc:hover,
table.dataTable thead>tr>th.dt-orderable-desc:hover,
table.dataTable thead>tr>td.dt-orderable-asc:hover,
table.dataTable thead>tr>td.dt-orderable-desc:hover {
	outline: none !important;
}

/* --- Pagination --- */
.dt-paging nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

div.dt-container .dt-paging .dt-paging-button {
	margin: 0;
	padding: 0;
	border: 1px solid var(--border-primary-25);
	color: var(--dark);
	background-color: var(--transparent);
	font-size: 16px;
	text-decoration: none;
	width: 38px;
	height: 38px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

div.dt-container .dt-paging .dt-paging-button i {
	color: var(--primary);
}

div.dt-container .dt-paging .dt-paging-button:hover {
	background: var(--primary);
	border: 1px solid var(--primary);
	color: var(--white) !important;
}

div.dt-container .dt-paging .dt-paging-button:hover i {
	color: var(--white);
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white) !important;
}

/* --- Pagination Disabled State --- */
div.dt-container .dt-paging .dt-paging-button.disabled,
div.dt-container .dt-paging .dt-paging-button.disabled:hover {
	border: 1px solid var(--border) !important;
	background-color: var(--transparent) !important;
	cursor: not-allowed;
	color: var(--border) !important;
}

div.dt-container .dt-paging .dt-paging-button.disabled i,
div.dt-container .dt-paging .dt-paging-button.disabled:hover i {
	color: var(--border);
}

/* ==================== [ Datatable Setting End ] ==================== */

/* ==================== [ Modal Setting Start ] ==================== */
.modal-backdrop.show,
.modal-backdrop {
	background-color: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5px);
	opacity: 1;
}

.modal-content {
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.modal-content .modal-header {
	position: relative;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border);
	z-index: 1;
	background-color: var(--white);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.modal-content .modal-header>* {
	position: relative;
	z-index: 1;
}

.modal-content .modal-header::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	pointer-events: none;
	user-select: none;
	opacity: 1;
}

.modal-content .modal-header::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
	background: linear-gradient(90.00deg, #1B75BB 0%, #2CA8C2 14%, #2FAF9E 28%, #4CAF50 42%, #F4B400 56%, #F97316 70%, #EF4444 84%, #7C3AED 100%);
	filter: blur(32px);
	-webkit-filter: blur(32px);
	pointer-events: none;
	user-select: none;
	opacity: 0.8;
}

.modal-content .modal-title {
	font-weight: 500;
	font-size: 22px;
	line-height: 120%;
	color: var(--dark);
	margin-bottom: 0;
}

.modal-dialog {
	max-width: 600px;
}

.modal-body {
	padding: 12px 16px;
}

/* ==================== [ Modal Setting End ] ==================== */

/* ==================== [ Badge Setting Start ] ==================== */
.badge-sm {
	font-size: 10px !important;
	line-height: 120%;
	height: fit-content;
	font-weight: 400;
}

.badge {
	font-size: 13px;
	font-weight: 400;
	height: fit-content;
}

.badge-lg {
	font-size: 15px !important;
	line-height: 120%;
	height: fit-content;
	font-weight: 400;
}

.badge-primary {
	color: var(--white);
	background: var(--primary);
	border-color: var(--primary);
}

.badge-info {
	color: var(--white);
	background: var(--info);
	border-color: var(--info);
}

.badge-teal {
	color: var(--white);
	background: var(--teal);
	border-color: var(--teal);
}

.badge-success {
	color: var(--white);
	background: var(--success);
	border-color: var(--success);
}

.badge-yellow {
	color: var(--black);
	background: var(--yellow);
	border-color: var(--yellow);
}

.badge-warning {
	color: var(--white);
	background: var(--warning);
	border-color: var(--warning);
}

.badge-danger {
	color: var(--white);
	background: var(--danger);
	border-color: var(--danger);
}

.badge-purple {
	color: var(--white);
	background: var(--purple);
	border-color: var(--purple);
}

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


/* ==================== [ Badge Setting End ] ==================== */

/* ==================== [ uploadPreview Setting Start ] ==================== */
.uploadPreview {
	position: relative;
}

.uploadPreview .file,
.uploadPreview .image {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	max-width: 120px;
	width: 100%;
	height: 120px;
	background-color: var(--border-10);
	border: 1px solid var(--border);
	padding: 6px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.uploadPreview .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.uploadPreview .file img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	object-position: center;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.uploadPreview>* .delete {
	position: absolute;
	top: 8px;
	right: 8px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.uploadPreview>*:hover .delete {
	opacity: 1;
}

.uploadPreview>*:hover .delete {
	opacity: 1;
}

.uploadPreview>* .delete .color-danger {
	background-color: var(--danger);
	color: var(--white);
}

.uploadPreview>* .delete .color-danger:hover {
	background-color: var(--dark-danger);
}

/* ==================== [ uploadPreview Setting End ] ==================== */

/* ==================== [ Header Start ] ==================== */
.header {
	position: relative;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: stretch;
	min-height: 74px;
	z-index: 5;
	background-color: var(--white);
}

.header>* {
	height: auto;
}

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

.header .logo-menu .logo {
	padding: 16px;
	display: block;
	width: fit-content;
	max-width: 300px;
	width: 300px;
	border-right: 1px solid var(--border);
	height: 100%;
	display: flex;
	align-items: center;
}

.header:not(:has(.menu)) .logo-menu .logo {
	border-right: 0px;
}

.header .logo-menu .logo img {
	max-height: 40px;
	height: 40px;
	width: auto;
}

.header .menu {
	padding: 16px;
	display: flex;
	align-items: center;
}

.header .profile {
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.header .profile .user-profile {
	display: flex;
	gap: 0;
	flex-direction: column;
}

.header .profile .user-profile * {
	margin-bottom: 0;
	line-height: 110%;
	color: var(--dark);
}

.header .profile .user-profile .email {
	opacity: 0.6;
}

.header .profile .border-primary-icon {
	color: var(--danger);
}

/* ==================== [ Header End ] ==================== */

/* ==================== [ Sidebar Start ] ==================== */
.sidebar {
	position: relative;
	border-right: 1px solid var(--border);
	max-width: 300px;
	width: 100%;
	flex-shrink: 0;
	padding: 16px;
	height: calc(100dvh - 75px);
	transition: all 0.3s ease-in-out;
	z-index: 2;
	overflow: auto;
	background-color: var(--white);
}

.sidebar.sidebarHide {
	margin-left: -300px;
}

.sidebar .brand {
	width: 100%;
	height: 60px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.sidebar .brand * {
	object-position: left;
}

.sidebar .card {
	padding: 0;
	box-shadow: none;
	margin-bottom: 0;
	border: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.sidebar .card:has(.card) .card {
	margin-left: 18px;
	border-left: 1px solid var(--border);
}

.sidebar .card:has(.card) .card a::before {
	position: absolute;
	content: "";
	width: 8px;
	height: 50%;
	top: 0;
	left: -1px;
	border-left: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	border-radius: 0 0 0 4px;
	-webkit-border-radius: 0 0 0 4px;
	-moz-border-radius: 0 0 0 4px;
	-ms-border-radius: 0 0 0 4px;
	-o-border-radius: 0 0 0 4px;
}

.sidebar .card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.sidebar .card ul a {
	position: relative;
	padding: 6px 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none;
	color: var(--secondary);
	gap: 6px;
	font-size: 16px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.sidebar .card ul a:is(.active, .show, :hover) {
	color: var(--primary);
}

.sidebar .card ul a i {
	font-size: 20px;
}

.sidebar .toggle-menu {
	position: relative;
}

.sidebar .toggle-menu::after {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(0,0,0,1)'%3E%3Cpath d='M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z'%3E%3C/path%3E%3C/svg%3E");
	transition: all 0.3s ease-in-out;
	transform: translateY(-50%);
	filter: brightness(0) saturate(100%) invert(64%) sepia(6%) saturate(137%) hue-rotate(177deg) brightness(91%) contrast(92%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(6%) saturate(137%) hue-rotate(177deg) brightness(91%) contrast(92%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.sidebar .toggle-menu.show::after {
	transform: translateY(-50%) rotate(90deg);
	filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(817%) hue-rotate(175deg) brightness(92%) contrast(91%);
	-webkit-transform: translateY(-50%) rotate(90deg);
	-moz-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	-o-transform: translateY(-50%) rotate(90deg);
	-webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(817%) hue-rotate(175deg) brightness(92%) contrast(91%);
}

/* ==================== [ Sidebar End ] ==================== */

/* ==================== [ Main Dashboard Start ] ==================== */
.main-dashboard .management-group ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.main-dashboard .management-group ul li {
	flex-grow: 1;
}

.main-dashboard .management-group ul a {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 18px;
	padding: 20px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border: 1px solid var(--border);
	color: var(--dark);
}

.main-dashboard .management-group ul a:hover {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	color: var(--white);
}

.main-dashboard .management-group ul a i {
	font-size: 22px;
	color: var(--primary);
	transition: all 0.3s ease-in-out;
}

.main-dashboard .management-group ul a:hover i {
	font-size: 22px;
	color: var(--white);
}

/* ==================== [ Main Dashboard End ] ==================== */

/* ==================== [ Page Hedaing Group Start ] ==================== */
.page-hedaing-group {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px;
	gap: 20px;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--border);
	background: var(--border-05);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	background-color: var(--light);
}

.page-hedaing-group::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 60%;
	z-index: -1;
	background: linear-gradient(90.00deg, #1B75BB 0%, #2CA8C2 14%, #2FAF9E 28%, #4CAF50 42%, #F4B400 56%, #F97316 70%, #EF4444 84%, #7C3AED 100%);
	filter: blur(32px);
	-webkit-filter: blur(32px);
	pointer-events: none;
	user-select: none;
	opacity: 0.8;
}

.page-hedaing-group .title * {
	font-weight: 500;
	font-size: 22px;
	line-height: 120%;
	color: var(--dark);
	margin-bottom: 0;
}

.page-hedaing-group .breadcrumb {
	margin-bottom: 0;
	margin-top: 8px;
}

.page-hedaing-group .breadcrumb .breadcrumb-item,
.page-hedaing-group .breadcrumb a {
	color: var(--secondary);
	font-size: 13px;
	text-decoration: none;
	line-height: 120%;
}

.page-hedaing-group .breadcrumb a:hover {
	color: var(--primary);
}

.page-hedaing-group .breadcrumb .breadcrumb-item {
	color: var(--dark);
}

.page-hedaing-group .breadcrumb-item+.breadcrumb-item {
	padding-left: 6px;
}

.page-hedaing-group .breadcrumb-item+.breadcrumb-item::before {
	padding-right: 6px;
}

.page-hedaing-group .action {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ==================== [ Page Hedaing Group End ] ==================== */