/* =============== Dựng base */
:root {
	--color-1: #0c3500;
	--color-2: #0b4b05;
	--color-3: #76ab4a;
	--color-4: #017312;

	--font-1: "Poppins", sans-serif;
	--font-2: "Oswald", sans-serif;
}

@font-face {
	font-family: "Poppins";
	src: url(../assets/fonts/Poppins-Regular.ttf) format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Oswald";
	src: url(../assets/fonts/Oswald-VariableFont_wght.ttf) format("truetype");
	font-weight: 100 900;
	font-style: normal;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	font-size: 1.6rem;
	font-family: var(--font-1);
	line-height: normal;
	width: 100vw;
	height: 100vh;
	background: var(--color-1);
}

/* ==================================== Header */

header .contain {
	width: 100vw;
	background: var(--color-4);
	display: flex;
	align-items: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	z-index: 1;
	position: fixed;
}

/* ================================= logo */
.logo {
	margin: 2px 0 2px 10vw;
}

.logo .logo_img {
	width: 100px;
	height: auto;
}

.logo .cn__name {
	font-size: 1.2rem;
	text-align: center;
	color: var(--color-3);
	margin-top: -8px;
	letter-spacing: 2px;
}

/* ============================= title */

.title h1 {
	font-family: var(--font-2);
	font-weight: 600;
	margin-left: 9vw;
	font-size: 2vw;
	justify-content: center;
	color: var(--color-3);
	white-space: nowrap;
}

/* ============================= department */
.department {
	display: flex;
	flex-flow: row;
	margin-left: 40px;
}

.department .dpm_text {
	color: var(--color-3);
}

.department .dpm_form {
	margin-left: 10px;
}

.department .dpm_select {
	cursor: pointer;
	background: none;
	width: 100px;
	border: 1px solid #fff;
	outline: none;
	color: var(--color-3);
	font-size: 16px;
	font-family: var(--font-1);
	font-weight: bold;
}

/* ============================= Search */
.lookup {
	margin-left: 8vw;
	position: relative;
}

.lookup_input {
	padding-left: 10px;
	padding-right: 40px;
	height: 30px;
	width: 220px;
	border-radius: 5px;
	border: none;
	outline: 0;
	color: var(--color-1);
	font-family: var(--font-1);
}

.lookup_input::placeholder {
	font-family: var(--font-1);
}

.lookup_submit {
	/* margin-left: -35px; */
	/* color: var(--color-1); */
	/* font-size: 17px; */
	background: none;
	border: none;
	cursor: pointer;
	position: absolute;
	top: 5px;
	right: 5px;
}

.lookup_icon {
	color: var(--color-1);
	width: 16px;
}
/* ========================== Login */
.login {
	margin-left: 1.5vw;
	/* cursor: pointer; */
	/* background: none;
	border: none; */
	/* margin: 0; */
}

.login_icon {
	color: var(--color-3);
	width: 40px;
	vertical-align: middle;
}

/* ============================ Toggle*/
.toggle {
	margin-left: 20px;
	width: 15px;
	height: 40px;
	background: var(--color-3);
	border-radius: 999px;
	position: relative;
}

.toggle_cb {
	position: absolute;
	top: -2px;
	left: -3px;
	/* visibility: hidden; */
}
.toggle_cb::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	background: var(--color-1);
	border-radius: 50%;
	cursor: pointer;
}

/* ======================== Side bar */
.sidebar {
	/* margin-top: 40px; */
	width: 27vw;
	height: 100vh;
	background: var(--color-3);
	position: fixed;
}

/* ====================== side bar top */
.sb_top {
	display: flex;
	align-items: center;
	flex-flow: column;
	width: 100%;
}

.sb_top-contain {
	margin-top: 6vw;
	width: 18vw;
	height: 18vw;
	border-radius: 10px;
	overflow: hidden;
	background-image: url(../assets/img/0.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.sb_top-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.sb_top-img:hover {
	scale: 1.1;
}

.sb_top-name {
	margin-top: 20px;
	font-weight: 600;
	font-size: 20px;
	color: var(--color-1);
}

.sb_top-department {
	color: var(--color-2);
	font-size: 14px;
}

.sb_top-line {
	margin-top: 20px;
	width: 70%;
	height: 1px;
	background: #fff;
}

/* ======================= news */
.sb_news {
	margin-top: 1.5vw;
	margin-left: 20px;
}

.sb_news-title {
	font-size: 1.7vw;
	color: var(--color-1);
}

.sb_news-list li {
	margin-top: 0.4vw;
}

.sb_news-list li a {
	color: #fff;
	font-size: 1.1vw;
}

/* ========================== copyright */

.copyright {
	width: 100%;
	text-align: center;
	color: var(--color-2);
	font-size: 14px;
	position: absolute;
	bottom: 15px;
}
.cpr_line {
	width: 100%;
	height: 1px;
	background: #fff;
	margin-bottom: 15px;
}

/* ================ container */
.container {
	width: 100vw;
	/* height: 100vh; */
	display: flex;
	justify-content: space-between;
}

.content {
	width: 73vw;
	/* height: 100vh; */
	/* background: var(--color-3); */
	padding: 80px;
}

#contactTable {
	color: #fff;
	border-collapse: collapse;
	width: 100%;
	/* height: 90vh; */
}

#contactTable th,
#contactTable td {
	border: 1px solid #fff;
	padding: 2px 8px;
	text-align: center;
	font-size: 1vw;
	cursor: pointer;
	white-space: nowrap !important;
}

#contactTable th {
	background: #fff;
	color: var(--color-1);
	text-transform: uppercase;

	border: 1px solid var(--color-1);
}

#contactTable .td_left {
	text-align: left;
}

#contactTable .td_left-name {
	color: #fff;
	/* font-size: 1vw; */
	text-decoration: none;
	cursor: pointer;
}

#contactTable .td_right {
	text-align: right;
}

#contactTable tr:hover {
	background: rgba(255, 255, 255, 0.4);
}

.highlight {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--color-3);
}

.highlight .td_left-name {
	color: var(--color-3) !important;
}
