:root {
	/* Colors */
	--primary: #08b8a3;
	--primary-hover: #08b8a3b2;
	--dark: #404040;
	--gray-300: #736d6d;
	--danger: #fa1b1bc9;
	--danger-dark: #d31a1a;
	--accent-orange: #e66f26;
	--accent-blue: #4badf0;
	--accent-purple: #403493;
	--light-blue: #e1f0f9;
	--white: #fff;
	--black: #000;
	--gray: #d5cece;
	--gray-100: #aeaeae;

	/* Shadows */
	--shadow: 0px 4px 4px 0px #00000040;

	/* Borders Radius */
	--radius-sm: 4px;
	--radius-md: 10px;

	/* Font Sizes */
	--fs-xs: 0.75rem; /* 12px */
	--fs-sm: 0.875rem; /* 14px */
	--fs-md: 1rem; /* 16px */
	--fs-lg: 1.25rem; /* 20px */
	--fs-xl: 1.5rem; /* 24px */
	--fs-xxl: 2rem; /* 32px */

	/* Font Family */
	--font: "IBM Plex Sans Arabic", sans-serif;
}

/* Global Style */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	text-align: start;
	background-color: var(--white);
	margin: 0;
	padding: 0;
	font-size: var(--fs-sm);
	font-weight: 400;
	min-height: 100vh;
}

[dir="ltr"] {
	direction: ltr;
}

[dir="rtl"] {
	direction: rtl;
}

*::-webkit-input-placeholder {
	font-size: var(--fs-md);
	font-weight: 400;
	color: var(--dark);
	opacity: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

*::-moz-placeholder {
	font-size: var(--fs-md);
	font-weight: 400;
	color: var(--dark);
	opacity: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

*:-ms-input-placeholder {
	font-size: var(--fs-md);
	font-weight: 400;
	color: var(--dark);
	opacity: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

*::-ms-input-placeholder {
	font-size: var(--fs-md);
	font-weight: 400;
	color: var(--dark);
	opacity: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

*::placeholder {
	font-size: var(--fs-md);
	font-weight: 400;
	color: var(--dark);
	opacity: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

button,
input[type="submit"] {
	cursor: pointer;
}

input {
	outline: 0 none;
	box-shadow: none;
}

button,
li,
a {
	transition: all 0.5s ease;
}

button {
	box-shadow: none;
	outline: 0 none;
}

a {
	text-decoration: none !important;
	transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none !important;
	transition: all 0.3s;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Inputs Auto Fill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	box-shadow: none !important;
	background-color: #fff !important;
}

/* Custom Scroll bar */
body::-webkit-scrollbar,
*::-webkit-scrollbar {
	width: 0.5em;
	height: 0.3em;
}

body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
	background-color: #e1e1e1;
}

body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
	background-color: var(--primary);
}

/* custom scrollbar for firefox */
@-moz-document url-prefix() {
	*,
	html,
	body {
		/* "auto" or "thin"  */
		scrollbar-width: thin;
		/* scroll thumb & track */
		scrollbar-color: var(--primary) #e1e1e1;
	}
}

/* ================ Style ============== */
.primary {
	color: var(--primary);
}

.dark {
	color: var(--dark);
}

.gray_300 {
	color: var(--gray-300);
}

.accent_purple {
	color: var(--accent-purple);
}

.bg_purple {
	background-color: var(--accent-purple);
}

.bg_primary {
	background-color: var(--primary);
}

.bg_blue {
	background-color: var(--accent-blue);
}

.bg_orange {
	background-color: var(--accent-orange);
}

.fs_xs {
	font-size: var(--fs-xs);
}

.fs_sm {
	font-size: var(--fs-sm);
}

.fs_md {
	font-size: var(--fs-md);
}

.fs_lg {
	font-size: var(--fs-lg);
}

.fs_xl {
	font-size: var(--fs-xl);

	@media (width < 576px) {
		font-size: var(--fs-lg);
	}
}

.fs_xxl {
	font-size: var(--fs-xxl);
}

.fs_28 {
	font-size: 28px;

	@media (width < 576px) {
		font-size: 24px;
	}
}

.fs_18 {
	font-size: 18px;

	@media (width < 576px) {
		font-size: 16px;
	}
}

.fw_400 {
	font-weight: 400;
}

.fw_500 {
	font-weight: 500;
}

.fw_600 {
	font-weight: 600;
}

.fw_700 {
	font-weight: 700;
}

.input_holder {
	position: relative;
}

.input_icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	max-width: 24px;

	&:dir(rtl) {
		right: 20px;
	}
	&:dir(ltr) {
		left: 20px;
	}

	&.textarea_icon {
		top: 20px;
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
	}
}

.input,
.textarea {
	display: block;
	width: 100%;
	padding: 20px;
	background-color: var(--white);
	border: 2px solid var(--primary);
	border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	-moz-border-radius: var(--radius-sm);
	-ms-border-radius: var(--radius-sm);
	-o-border-radius: var(--radius-sm);

	&.dark {
		border-color: var(--dark);
	}

	&:invalid,
	&.error {
		border-color: var(--danger);
	}

	&.noBorder {
		border-color: transparent;
	}
}

.input_holder:has(.input_icon) .input,
.input_holder:has(.input_icon) .textarea {
	-webkit-padding-start: 50px;
	padding-inline-start: 50px;
}

.error {
	display: block;
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--danger);
	margin-top: 8px;
}

.textarea {
	resize: none;
	height: 134px;
	overflow-y: auto;
	overflow-x: hidden;
	outline: 0 none;
}

.btn {
	padding: 10px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: --var(--fsl-lg);
	box-shadow: var(--shadow) !important;
	border: 2px solid transparent;
	white-space: nowrap;
}

.primary_btn {
	background-color: var(--primary);
	color: var(--white) !important;

	&:hover {
		background-color: var(--primary-hover);
	}
}

.dark_btn {
	background-color: var(--dark);
	color: var(--white) !important;
}

.darkOutlined_btn {
	background-color: var(--white);
	color: var(--dark) !important;
	border-color: var(--dark);
}

.danger_btn {
	background-color: var(--danger);
	color: var(--white) !important;
}

.danger_dark_btn {
	background-color: var(--danger-dark);
	color: var(--white) !important;
}

.orange_btn {
	background-color: var(--accent-orange);
	color: var(--white) !important;
}

.gray_btn {
	background-color: var(--gray);
	color: var(--dark) !important;
}

.white_btn {
	background-color: var(--white);
	color: var(--accent-blue) !important;
}

.primary_link {
	background-color: transparent;
	color: var(--primary) !important;
	box-shadow: none !important;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

/* ===================== Login ==================== */
.login {
	padding: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;

	@media (width < 576px) {
		padding: 20px;
	}

	.logo {
		display: block;
		width: 180px;
		margin: 0 auto 16px;

		@media (width < 576px) {
			width: 80px;
		}
	}
}

/* ================== Layout ================ */
.layout {
	display: flex;
	height: 100vh;
}

.overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	height: 100vh;

	&.show {
		@media (width < 992px) {
			opacity: 1;
			visibility: visible;
		}
	}
}

.sidebar {
	padding: 30px;
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: var(--white);
	width: 300px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
	flex-shrink: 0;

	@media (width < 992px) {
		position: fixed;
		top: 0;
		&:dir(rtl) {
			right: 0;
			opacity: 0;
			visibility: hidden;
			transform: translateX(100%);
			-webkit-transform: translateX(100%);
			-moz-transform: translateX(100%);
			-ms-transform: translateX(100%);
			-o-transform: translateX(100%);
		}
		&:dir(ltr) {
			left: 0;
			opacity: 0;
			visibility: hidden;
			transform: translateX(-100%);
			-webkit-transform: translateX(-100%);
			-moz-transform: translateX(-100%);
			-ms-transform: translateX(-100%);
			-o-transform: translateX(-100%);
		}
		z-index: 99;
	}

	&.opened {
		@media (width < 992px) {
			&:dir(rtl) {
				opacity: 1;
				visibility: visible;
				transform: translateX(0);
				-webkit-transform: translateX(0);
				-moz-transform: translateX(0);
				-ms-transform: translateX(0);
				-o-transform: translateX(0);
			}
			&:dir(ltr) {
				opacity: 1;
				visibility: visible;
				transform: translateX(0);
				-webkit-transform: translateX(0);
				-moz-transform: translateX(0);
				-ms-transform: translateX(0);
				-o-transform: translateX(0);
			}
		}
	}

	.top {
		flex-grow: 1;
	}

	.sidebar_logo {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 82px;
		margin-bottom: 40px;

		img {
			width: 100%;
		}
	}

	.sidebar_link {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 5px;
		margin-bottom: 25px;

		img {
			flex-shrink: 0;
			width: 24px;
			height: 24px;

			&.black {
				display: block;
			}

			&.green {
				display: none;
			}
		}

		span {
			font-size: var(--fs-lg);
			font-weight: 500;
			color: var(--dark);
		}

		&:hover {
			span {
				color: var(--primary);
			}
		}

		&.active {
			img {
				&.black {
					display: none;
				}

				&.green {
					display: block;
				}
			}

			span {
				color: var(--primary);
			}
		}
	}
}

.close {
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 10px;
	box-shadow: none !important;
	padding: 0;
	display: none;

	@media (width < 992px) {
		display: flex;
	}

	&:dir(rtl) {
		left: 10px;
	}
	&:dir(ltr) {
		right: 10px;
	}

	img {
		width: 100%;
	}
}

.layout_content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	height: 100vh;
	width: calc(100vw - 300px);

	@media (width < 992px) {
		width: 100vw;
	}
}

.main {
	flex-grow: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0 20px;

	.main_content {
		background-color: var(--light-blue);
		min-height: 100%;
		padding: 20px;
		border-start-start-radius: var(--radius-md);
		border-start-end-radius: var(--radius-md);
	}
}

.header {
	padding: 20px;
}

.search_input {
	position: relative;

	img {
		display: block;
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);

		&:dir(rtl) {
			right: 20px;
		}
		&:dir(ltr) {
			left: 20px;
		}
	}

	.srch_input {
		display: block;
		width: 100%;
		padding: 20px;
		-webkit-padding-start: 50px;
		padding-inline-start: 50px;
		border: 0;
		border-radius: var(--radius-md);
		-webkit-border-radius: var(--radius-md);
		-moz-border-radius: var(--radius-md);
		-ms-border-radius: var(--radius-md);
		-o-border-radius: var(--radius-md);
		background-color: var(--light-blue);
	}
}

.header_actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	width: 100%;

	@media (width < 576px) {
		gap: 10px;
	}

	.vr_line {
		height: 38px;
		-webkit-border-start: 1px solid var(--dark);
		border-inline-start: 1px solid var(--dark);
		flex-shrink: 0;
	}

	.btn {
		padding: 2px;
		box-shadow: none !important;
		flex-shrink: 0;
	}

	.notifications_btn {
		width: 33px;
		display: flex;
		align-items: center;
		justify-content: center;

		img {
			width: 100%;
		}
	}

	.lang_btn {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;

		img {
			flex-shrink: 0;
			width: 33px;
			height: 33px;

			&.flag_en {
				display: none;
			}

			&.flag_ar {
				display: block;
			}
		}

		span {
			font-size: var(--fs-sm);
			font-weight: 500;
			color: var(--dark);

			&.en {
				display: none;
			}

			&.ar {
				display: block;
			}
		}

		&.dir_ar {
			img {
				&.flag_en {
					display: block;
				}

				&.flag_ar {
					display: none;
				}
			}

			span {
				&.en {
					display: block;
				}

				&.ar {
					display: none;
				}
			}
		}
	}

	.user_action {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;

		img {
			flex-shrink: 0;
			width: 35px;
			height: 35px;
		}

		.info {
			flex-grow: 1;

			.user_name {
				font-size: var(--fs-sm);
				font-weight: 500;
				color: var(--dark);
				display: block;
				margin-bottom: 1px;
				text-align: start;
			}

			.user_role {
				font-size: var(--fs-xs);
				font-weight: 400;
				color: var(--gray-100);
				display: block;
				text-align: start;
			}
		}
	}
}

.burger_icon {
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	box-shadow: none !important;
	display: none;

	@media (width < 992px) {
		display: flex;
	}

	img {
		width: 100%;

		&:dir(ltr) {
			transform: rotateY(180deg);
			-webkit-transform: rotateY(180deg);
			-moz-transform: rotateY(180deg);
			-ms-transform: rotateY(180deg);
			-o-transform: rotateY(180deg);
		}
	}
}

/* ==================== Home ===================== */
.statistics_box {
	padding: 16px 14px;
	border-radius: var(--radius-md);
	-webkit-border-radius: var(--radius-md);
	-moz-border-radius: var(--radius-md);
	-ms-border-radius: var(--radius-md);
	-o-border-radius: var(--radius-md);

	h3 {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 5px;
		margin-bottom: 20px;

		img {
			flex-shrink: 0;
			max-width: 20px;
		}

		span {
			font-size: 22px;
			font-weight: 400;
			color: var(--white);
		}
	}

	h2 {
		font-size: 22px;
		font-weight: 700;
		color: var(--white);
		margin-bottom: 20px;
	}

	h6 {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 2px;

		img {
			flex-shrink: 0;
			width: 16px;
			height: 16px;
		}

		span {
			font-size: 13px;
			font-weight: 500;
			color: var(--white);
		}
	}
}

.home_data_card {
	padding: 14px 24px;
	background-color: var(--white);
	border-radius: var(--radius-md);
	-webkit-border-radius: var(--radius-md);
	-moz-border-radius: var(--radius-md);
	-ms-border-radius: var(--radius-md);
	-o-border-radius: var(--radius-md);

	h3 {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 5px;
		margin-bottom: 5px;

		img {
			flex-shrink: 0;
			width: 24px;
			height: 24px;
		}

		span {
			font-size: var(--fs-lg);
			font-weight: 600;
			color: var(--primary);
		}
	}

	ul {
		-webkit-padding-start: 16px;
		padding-inline-start: 16px;

		li {
			list-style-type: disc;
			font-size: 18px;
			font-weight: 400;
			color: var(--dark);

			&:not(:last-child) {
				margin-bottom: 6px;
			}
		}
	}
}

.toaster {
	padding: 40px;
	background-color: var(--white);
	border-radius: var(--radius-md);
	-webkit-border-radius: var(--radius-md);
	-moz-border-radius: var(--radius-md);
	-ms-border-radius: var(--radius-md);
	-o-border-radius: var(--radius-md);
	box-shadow: var(--shadow);
	position: fixed;
	bottom: 50px;
	left: 50px;
	max-width: 35%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateX(calc(-100% - 50px));
	-webkit-transform: translateX(calc(-100% - 50px));
	-moz-transform: translateX(calc(-100% - 50px));
	-ms-transform: translateX(calc(-100% - 50px));
	-o-transform: translateX(calc(-100% - 50px));

	@media (width < 1199px) {
		max-width: 60%;
	}

	@media (width < 768px) {
		left: 20px;
		bottom: 20px;
		transform: translateX(calc(-100% - 20px));
		-webkit-transform: translateX(calc(-100% - 20px));
		-moz-transform: translateX(calc(-100% - 20px));
		-ms-transform: translateX(calc(-100% - 20px));
		-o-transform: translateX(calc(-100% - 20px));
		padding: 24px;
	}

	.toast_icon {
		width: 43px;
		height: 43px;
		margin-bottom: 8px;
	}

	.toast_msg {
		font-size: 30px;
		font-weight: 600;
		color: var(--primary);

		@media (width < 768px) {
			font-size: 20px;
		}
	}

	.toast_subMsg {
		font-size: 22px;
		font-weight: 500;
		color: var(--dark);
		margin-top: -15px;

		@media (width < 768px) {
			font-size: 16px;
		}
	}

	.alert {
		font-size: 11px;
		font-weight: 500;
		color: var(--danger);
	}

	&.show {
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
	}
}

/* ============================ Dashboard ============================= */
.dashboard_card {
	padding: 24px 30px;
	border-radius: var(--radius-md);
	-webkit-border-radius: var(--radius-md);
	-moz-border-radius: var(--radius-md);
	-ms-border-radius: var(--radius-md);
	-o-border-radius: var(--radius-md);

	h2 {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 5px;
		margin-bottom: 8px;

		img {
			flex-shrink: 0;
			width: 24px;
			height: 24px;
		}

		span {
			font-size: var(--fs-xl);
			font-weight: 600;
			color: var(--white);

			@media (width < 576px) {
				font-size: var(--fs-lg);
			}
		}
	}

	h6 {
		font-size: var(--fs-xs);
		font-weight: 400;
		color: var(--white);
		margin-bottom: 8px;
	}

	ul {
		-webkit-padding-start: 16px;
		padding-inline-start: 16px;

		li {
			list-style-type: disc;
			font-size: var(--fs-lg);
			font-weight: 500;
			color: var(--white);

			@media (width < 576px) {
				font-size: var(--fs-md);
			}

			&:not(:last-child) {
				margin-bottom: 34px;
			}
		}
	}

	.curr_projects {
		& > [class*="col-"] {
			&:nth-child(1) {
				.curr_pro_info {
					-webkit-padding-after: 20px;
					padding-block-end: 20px;

					@media (width < 576px) {
						-webkit-padding-after: 0;
						padding-block-end: 0;
					}
				}
			}

			&:nth-child(2) {
				-webkit-border-start: 1px solid #fff;
				border-inline-start: 1px solid #fff;

				@media (width < 576px) {
					-webkit-border-start: 0;
					border-inline-start: 0;
				}

				.curr_pro_info {
					-webkit-padding-start: 10px;
					padding-inline-start: 10px;
					-webkit-padding-after: 20px;
					padding-block-end: 20px;

					@media (width < 576px) {
						-webkit-padding-start: 0;
						padding-inline-start: 0;
						-webkit-padding-after: 0;
						padding-block-end: 0;
					}
				}
			}
			&:nth-child(4) {
				-webkit-border-start: 1px solid #fff;
				border-inline-start: 1px solid #fff;
				-webkit-border-before: 1px solid #fff;
				border-block-start: 1px solid #fff;

				@media (width < 576px) {
					-webkit-border-start: 0;
					border-inline-start: 0;
					-webkit-border-before: 0;
					border-block-start: 0;
				}

				.curr_pro_info {
					-webkit-padding-start: 10px;
					padding-inline-start: 10px;
					-webkit-padding-before: 20px;
					padding-block-start: 20px;

					@media (width < 576px) {
						-webkit-padding-start: 0;
						padding-inline-start: 0;
						-webkit-padding-before: 0;
						padding-block-start: 0;
					}
				}
			}

			&:nth-child(3) {
				-webkit-border-before: 1px solid #fff;
				border-block-start: 1px solid #fff;

				@media (width < 576px) {
					-webkit-border-before: 0;
					border-block-start: 0;
				}

				.curr_pro_info {
					-webkit-padding-before: 20px;
					padding-block-start: 20px;

					@media (width < 576px) {
						-webkit-padding-before: 0;
						padding-block-start: 0;
					}
				}
			}
		}
	}

	.curr_pro_info {
		ul {
			margin-bottom: 6px;
		}

		p {
			font-size: 15px;
			font-weight: 400;
			color: var(--white);
			margin-bottom: 6px;
		}
	}
}

.main_title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;

	img {
		flex-shrink: 0;
		width: 36px;
		height: 36px;
	}

	span {
		font-size: 30px;
		font-weight: 500;
		color: var(--primary);

		@media (width < 576px) {
			font-size: var(--fs-xl);
		}
	}
}

.table-responsive {
	padding: 20px;
	background-color: var(--white);
	border-radius: var(--radius-md);
	-webkit-border-radius: var(--radius-md);
	-moz-border-radius: var(--radius-md);
	-ms-border-radius: var(--radius-md);
	-o-border-radius: var(--radius-md);
}

.table {
	margin-bottom: 0;

	thead {
		tr {
			th {
				white-space: nowrap;
				min-width: 150px;
				padding: 16px;
				border-bottom-color: #aeaeae63 !important;
				font-weight: 600;
				vertical-align: middle;
			}
		}
	}

	tbody {
		tr {
			td {
				padding: 16px;
				font-weight: 500;
				vertical-align: middle;
			}

			&:last-child {
				td {
					border-bottom: 0;
				}
			}
		}
	}
}

.mt_40 {
	margin-top: 40px;
}

.card_holder {
	padding: 24px;
	background-color: var(--white);
	border-radius: var(--radius-md);
	-webkit-border-radius: var(--radius-md);
	-moz-border-radius: var(--radius-md);
	-ms-border-radius: var(--radius-md);
	-o-border-radius: var(--radius-md);
}

.radio_input {
	input[type="radio"] {
		display: none;
	}

	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;

	&::before {
		flex-shrink: 0;
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		border-radius: 100%;
		-webkit-border-radius: 100%;
		-moz-border-radius: 100%;
		-ms-border-radius: 100%;
		-o-border-radius: 100%;
		border: 1px solid var(--primary);
		background-color: var(--white);
	}

	span {
		&.lbl {
			font-size: var(--fs-xl);
			font-weight: 400;
			color: var(--dark);
			display: block;

			@media (width < 576px) {
				font-size: var(--fs-lg);
			}
		}

		&.desc {
			font-size: var(--fs-sm);
			font-weight: 400;
			color: var(--dark);
			display: block;
		}
	}

	&:has(input:checked) {
		&::before {
			background-color: var(--primary);
		}
	}
}

.w_fitContent {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.w_50 {
	width: 50%;

	@media (width < 576px) {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}

.modal {
	.modal-dialog {
		@media (width > 768px) {
			min-width: 613px;
		}

		&.expense_details_dialog {
			@media (width > 768px) {
				min-width: 67%;
			}
		}
	}

	.modal-content {
		border-radius: var(--radius-md);
		-webkit-border-radius: var(--radius-md);
		-moz-border-radius: var(--radius-md);
		-ms-border-radius: var(--radius-md);
		-o-border-radius: var(--radius-md);
		box-shadow: var(--shadow);
		border: 1px solid #9f9f9f80;

		.modal-header {
			padding: 24px;
			border-top-left-radius: var(--radius-md);
			border-top-right-radius: var(--radius-md);

			.modal-title {
				display: flex;
				align-items: center;
				justify-content: flex-start;
				gap: 5px;

				img {
					flex-shrink: 0;
					width: 20px;
					height: 20px;
				}

				span {
					font-size: 30px;
					font-weight: 600;
					color: var(--primary);
				}
			}

			p {
				font-size: var(--fs-md);
				font-weight: 400;
				color: var(--dark);
			}
		}

		.modal-body {
			padding: 24px;
		}

		.modal-footer {
			padding: 24px;
			border-bottom-left-radius: var(--radius-md);
			border-bottom-right-radius: var(--radius-md);
			justify-content: center;
			gap: 8px;

			& > * {
				margin: 0;
			}
		}
	}
}

.upload_file {
	input[type="file"] {
		display: none;
	}

	display: flex;
	align-items: center;
	justify-content: flex-start;
	border: 2px solid var(--dark);
	border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	-moz-border-radius: var(--radius-sm);
	-ms-border-radius: var(--radius-sm);
	-o-border-radius: var(--radius-sm);
	padding: 16px;

	span {
		font-size: var(--fs-md);
		font-weight: 400;
		color: var(--dark);
	}
}

.expense_details {
	ul {
		-webkit-padding-start: 16px;
		padding-inline-start: 16px;
		margin-bottom: 30px;

		li {
			list-style-type: disc;
			margin-bottom: 10px;
			font-size: var(--fs-xl);
			font-weight: 500;
			color: var(--dark);
		}
	}

	.table-responsive {
		background-color: var(--light-blue);
	}
}

input[type="date"] {
	font-size: var(--fs-md);
	font-weight: 400;
	color: var(--dark);

	&:dir(rtl) {
		text-align: right;
	}
}

[dir="rtl"] input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	left: 16px; /* نحط الأيقونة يسار */
	right: auto;
	cursor: pointer;
}

.newRequest_list {
	-webkit-padding-start: 16px;
	padding-inline-start: 16px;

	li {
		list-style-type: disc;
		margin-bottom: 16px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 5px;

		span {
			&:first-child {
				font-size: 22px;
				font-weight: 500;
				color: var(--dark);
			}

			&:last-child {
				font-size: var(--fs-md);
				font-weight: 400;
				color: var(--dark);
			}
		}
	}
}

.ul_list {
	-webkit-padding-start: 16px;
	padding-inline-start: 16px;

	li {
		list-style-type: disc;
	}
}

.success_added_report {
	padding: 12px 24px;
	background-color: transparent;
	border: 1px solid #00000080;
	border-radius: var(--radius-md);
	margin-bottom: 14px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.settings_subtitle {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	font-size: 25px;
	font-weight: 600;
	color: var(--dark);

	&::before {
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		border-radius: 100%;
		background-color: var(--dark);
	}
}

.py_20 {
	padding-block: 20px;
}

.dropdown {
	width: 100%;
	border: 2px solid var(--dark);
	cursor: pointer;
	position: relative;
	border-radius: var(--radius-sm);
}
.dropdown dt {
	padding: 8px 14px;
	background: var(--white);
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.dropdown dd {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 3;
	top: calc(100% + 3px);
	left: 0;
	border: 2px solid var(--dark);
	background: white;
	width: 100%;
	border-radius: var(--radius-sm);
	padding: 8px;
	box-shadow: 0 3px 4px 5px #f1f1f1;
}
.dropdown dd div {
	padding: 8px;
	border-radius: var(--radius-sm);
	font-weight: 500;
}
.dropdown dd div:hover {
	background: #eee;
}
.dropdown.open dd {
	display: block;
}
.dropdown dd div.selected {
	background: var(--primary);
	color: white;
}
.dropdown dt img {
	max-width: 24px;
}
.dropdown.open dt img {
	transform: rotate(180deg);
}
