@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
	--theme-color-main: rgba(253, 140, 8, 1);
	--theme-color-main-t: rgba(253, 140, 8, 0.5);
	--theme-color-2nd: rgb(42, 62, 76);
	--theme-color-3rd: rgb(89, 115, 128);
	--theme-color-4th: rgb(0, 35, 90);
	--theme-color-default: darkblue;
	--theme-color-disabled: gray;
	--background-color: rgb(255, 255, 255);
	--background-color-2nd: rgb(240, 227, 169);
	--color-red: rgb(255, 0, 0);
	--color-red-t: rgb(255, 230, 230);
	--color-green: #27ae60;
	--text-color-main: black;
	--text-color-2nd: white;
	--color-green-t: rgb(226, 240, 217);
	--color-blue: #2980b9;
	--color-blue-t: rgb(218, 227, 243);
	--color-yellow: rgb(255, 192, 0);
	--color-yellow-t: rgb(255, 242, 204);
	--color-black: rgb(0, 0, 0);
	--color-black-t: rgb(190, 190, 190);
	--text-color-main: darkblue;
	--text-color-2nd: #fff;
}


body {
	position: relative;
	z-index: -1;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
	color: #3b3b3b;
	-webkit-font-smoothing: antialiased;
	background: none;
	margin: 0 !important;
	padding: 0 !important;
}

html {
	margin: 0;
	padding: 0;
}

input {
	font-size: inherit;
	margin-left: 2px;
	padding-left: 2px;
}

button {
	padding: 5px 10px;
	font-size: 16px;
	text-transform: capitalize;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	background: #2980b9;
	border: none;
	border-radius: 5px;
	min-width: 60px;
}

/*==========================================================*/
/* navigation panel */
.left-sidebar {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 80;
	background: var(--background-color);
	width: 25%;
	overflow-y: auto;
}

.left-sidebar__container {
	position: absolute;
	top: 0;
	left: 60px;
	right: 0;
	z-index: 81;
	padding: 10px 0px 0px 0px;
}

.left-sidebar__title {
	font-size: larger;
	font-weight: bolder;
	border-bottom: 1px solid var(--theme-color-main-t);
	padding: 0px 10px 10px 10px;
}

.left-sidebar__header {
	padding: 0px 10px 10px 10px;
	border-bottom: 1px solid var(--theme-color-main-t);
}

.left-sidebar__content {
	padding: 0px 0px 0px 0px;
}

.main-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 90;
	background: var(--theme-color-main);
	width: 60px;
	overflow-y: auto;
	overflow-x: hidden;
	text-align: center;
}

#main-avatar {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	border: 2px solid var(--background-color);
	position: relative;
	margin-top: 10px;
}

.main-menu__icon-wrapper {
	position: relative;
	padding: 10px 0 10px 0;
}

.main-menu__icon-note {
	text-transform: capitalize;
	font-size: 12px;
	font-weight: normal;
	visibility: hidden;
	min-width: 70px;
	max-width: 150px;
	background-color: var(--background-color);
	color: black;
	text-align: center;
	border-radius: 5px;
	padding: 5px;

	/* Xác định vị trí */
	position: absolute;
	z-index: 999;
	top: 80%;
	left: 80%;
}

.main-menu__icon-wrapper:hover .main-menu__icon-note {
	visibility: visible;
}

.main-menu__icon--25px {
	color: var(--text-color-2nd);
	font-size: 25px;
}


/* =================================================================*/
/* main page*/
.main-page__container {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 25%;
	z-index: 99;
	width: 50%;
	border-left: 1px solid var(--theme-color-main-t);
	background: var(--background-color);
	overflow-y: auto;
}

/* =================================================================*/
/*right sidebar*/

.right-sidebar {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 99;
	border-left: 1px solid var(--theme-color-main-t);
	background: var(--background-color);
	width: 25%;
	overflow-y: auto;
}

/* =================================================================*/
/* shared */

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

.shared__flex--row {
	display: flex;
	flex-direction: row;
}

.shared__flex--column {
	display: flex;
	flex-direction: column;
}

.shared__flex--column {
	display: flex;
	flex-direction: column;
}