@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('../templates/font-awesome-pro/css/all.min.css');
@import url('../scripts/swiper-8/swiper-bundle.min.css');
@import url('../scripts/fancybox-5/dist/fancybox/fancybox.css');

/************************************************************************************
CSS RESET
*************************************************************************************/

*{margin:0; padding:0;outline:0; box-sizing: border-box;}
html{height:100%;}
h1{font-size:1.4em;}
h2{font-size:1.3em;}
h3{font-size:1.2em;}
h4{font-size:1.1em;}
h5{font-size:1em;}
h6{font-size:.9em;}
a{text-decoration:none;} 
p{padding: 0 0 10px 0;}
img{border:0; border-spacing:0; max-width: 100%;}
img, embed{vertical-align:middle;}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, img, embed {margin: 0; padding: 0; outline: 0;}
:focus {outline: 0;}
ol, ul {list-style: none;}
table {border-collapse: collapse; border-spacing: 0; border: 1px solid #eee}
table td, table th {border: 1px solid #eee; padding: 10px;}
caption, th, td {font-weight: normal;}
blockquote:before, blockquote:after, q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
strong, b, h1, h2, h3, h4, h5, h6 {font-weight:600;}
em {font-style:italic;}
sup {vertical-align: super;}

input[type=text], input[type=password], input[type=file], input[type=submit], input[type=reset], input[type=search], textarea, button {-webkit-appearance: none; -moz-appearance: none; appearance: none;}

input[type=number]::-webkit-inner-spin-button {opacity: 1;}

/************************************************************************************
Reset HTML5 Elements to Block
*************************************************************************************/

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}

/************************************************************************************
CSS WEBSITE
*************************************************************************************/

body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #000;
	line-height: 22px;
	text-rendering: optimizeSpeed;
}
.css_body {
	background: #fff;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	max-width: 1920px;
	margin: 0 auto;
	height: auto;
	min-height: 100%;
}

.min_wrap {
	padding: 0 35px;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.img_hover:hover {opacity: 0.9;}

/************************************************************************************
CSS HEADER
*************************************************************************************/

#header {
	background-color: #292936;
	border-bottom-left-radius: 60px;
	border-bottom-right-radius: 60px;
	color: #fff;
}

.hea1 {
	background-color: #1f1f21;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	height: 60px;
	padding: 0 35px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	min-width: 290px;
}
.logo img {
	display: block;
	width: auto;
	height: 40px;
}

.ul_mn {
	display: flex;
	font-size: 16px;
}
.ul_mn > li {
	position: relative;
	padding: 15px;
	line-height: 30px;
}
.ul_mn > li > a {
	display: block;
	color: rgba(255,255,255,0.75);
	text-transform: capitalize;
	transition: color .3s;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
}
.ul_mn > li.active > a {
	color: #fff;
	font-weight: 600;
}
.ul_mn > li:hover > a, .link_r_hea1 > li:hover > a {
	color: #fff;
}
.ul_mn > li > a i {
	font-size: 12px;
}
.ul_mn > li:hover .ul_mn_child_1 {display: block;}
.ul_mn_child_1 {
	display: none;
	background-color: #fff;
	position: absolute;
	top: 60px; left: 0;
	z-index: 11;
	padding: 0 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.25);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}
.ul_mn_child_1::before {
	border-bottom: 8px solid #fff;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	content: " ";
	cursor: pointer;
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: -8px;
	left: 20px;
}
.ul_mn_child_1 > li {border-bottom: 1px solid #eee;}
.ul_mn_child_1 > li:last-child {border-bottom: 0;}
.ul_mn_child_1 > li > a {
	white-space: nowrap;
	text-transform: capitalize;
	color: #333;
	padding: 8px 0;
	display: block;
}
.ul_mn_child_1 > li > a:hover {color: #0088cc;}

.r_hea1 {
	display: flex;
	justify-content: flex-end;
	min-width: 290px;
}
.link_r_hea1 {
	display: flex;
}
.link_r_hea1 > li {
	position: relative;
	padding: 0 15px;
}
.link_r_hea1 > li::before {
	content: '';
	width: 1px;
	height: 20px;
	background-color: rgba(255,255,255,0.25);
	position: absolute;
	top: 5px;
	right: 0;
}
.link_r_hea1 > li:first-child {
	padding-left: 0;
}
.link_r_hea1 > li:last-child {
	padding-right: 0;
}
.link_r_hea1 > li:last-child::before {
	display: none;
}
.link_r_hea1 > li > a {
	display: block;
	color: rgba(255,255,255,0.75);
	transition: color .3s;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
	text-transform: capitalize;
	line-height: 30px;
}
.link_r_hea1 > li > a i {
	margin-right: 3px;
}
.link_r_hea1 > li.show_user > a {
	color: #0088cc;
}
.link_r_hea1 > li.show_user:hover .sub_show_user {
	display: block;
}
.sub_show_user {
	display: none;
	position: absolute;
	top: 30px;
	right: 0;
	z-index: 11;
	background-color: #fff;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.sub_show_user > ol {
	padding: 5px 0;
}
.sub_show_user > ol > li > a {
	display: block;
	padding: 5px 15px;
	white-space: nowrap;
	color: #333;
}
.sub_show_user > ol > li > a:hover {
	color: #0088cc;
}
.sub_show_user > ol > li > a > i, .t_sub_show_user > i {
	text-align: center;
	width: 14px;
	margin-right: 4px;
}
.t_sub_show_user {
	white-space: nowrap;
	color: #333;
	padding: 10px 15px;
	border-bottom: 1px solid #e9eaec;
}
.t_sub_show_user span {
	color: #f26c4f;
}

.hea2 {
	height: 80px;
	padding: 0 35px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.t_dmsp {
	position: relative;
	font-size: 16px;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	min-width: 290px;
	height: 100%;
}
.t_dmsp i {
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	margin-right: 10px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.search_h {
	flex: 1;
	padding: 0 30px;
	position: relative;
	user-select: none;
}
.ipt_search_h {
	background-color: rgba(255,255,255,0.15);
	color: #fff;
	width: 100%;
	height: 48px;
	border: 0;
	padding: 0 48px 0 30px;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}
.ipt_search_h::placeholder {
	color: rgba(255,255,255,0.7);
}
.but_search_h {
	position: absolute;
	top: 4px;
	right: 34px;
	width: 40px;
	height: 40px;
	border: 0;
	cursor: pointer;
	background-color: #0088cc;
	text-align: center;
	line-height: 40px;
	color: #fff;
	font-size: 18px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.r_hea2 {
	min-width: 290px;
	display: flex;
	justify-content: flex-end;
}
.social_h {
	display: flex;
}
.social_h > li + li {
	margin-left: 10px;
}
.social_h > li > a {
	display: block;
	font-size: 18px;
	color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background-color: rgba(255,255,255,0.25);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
.social_h > li > a:hover {
	background-color: #0088cc;
}

/************************************************************************************
CSS CONTAINER
*************************************************************************************/

#container {
	min-height: calc(100vh - 80px);
	padding: 30px 0 50px 0;
}

.r_ct {
	padding-bottom: 30px;
}

.top_ct {
	display: flex;
}

.list_dmsp {
	width: 290px;
	overflow: auto;
}
.ul_list_dmsp {
	overflow: auto;
}
.ul_list_dmsp > li {
	font-size: 16px;
	position: relative;
	border-bottom: 1px solid #e9eaec;
}
.ul_list_dmsp > li > a {
	text-transform: capitalize;
	color: #000;
	padding: 18px 0 18px 50px;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
.ul_list_dmsp > li > a:hover {
	color: #0088cc;
	padding-left: 55px;
	font-weight: 600;
}
.ul_list_dmsp > li > a img {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -20px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.ul_list_dmsp > li:hover > a img {
	filter: contrast();
	-webkit-filter: contrast();
}

.slide {
	flex: 1;
	padding: 0 30px;
	overflow: hidden;
}
.swiper1 .swiper-slide {
	background-color: #eee;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.swiper1 .swiper-slide a {
	display: block;
	aspect-ratio: 3/2;
}
.swiper1 .swiper-slide img {
	display: block;
	width: 100%; 
	height: 100%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.kqdg {
	width: 290px;
}
.in_kqdg {
	height: 100%;
	border: 2px solid #0088cc;
	padding: 4px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.t_kqdg {
	z-index: 1;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding: 11px;
	background-color: #0088cc;
	border-radius: 18px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
}
.list_kqdg {
	padding: 0 6px;
}
.list_kqdg > li {
	position: relative;
	padding: 10px 0;
	display: flex;
	border-bottom: 1px solid #e9eaec;
}
.list_kqdg > li:last-child {
	border-bottom: 0;
}
.num_list_kqdg {
	width: 30px;
}
.if_list_kqdg {
	flex: 1;
	padding-left: 5px;
}
.if_list_kqdg b {
	font-weight: 400;
	color: #000;
	display: block;
	width: 50%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.if_list_kqdg a {
	color: #0088cc;
}
.if_list_kqdg a:hover {
	text-decoration: underline;
}
.pri_list_kqdg {
	color: #f26c4f;
	padding: 0;
	position: absolute;
	top: 10px;
	right: 0;
}

.adv_ct a {
	display: block;
}
.adv_ct a + a {
	margin-top: 10px;
}
.adv_ct img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.spnb {
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	padding-bottom: 30px;
}
.t_sp {
	padding: 25px 30px;
	position: relative;
	z-index: 2;
	background-color: #fff;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
}
.h_t_sp {
	text-transform: capitalize;
	font-size: 24px;
	line-height: 32px;
	color: #000;
}
.h_t_sp a {
	color: #000;
}
.link_t_sp {
	color: #0088cc;
	position: absolute;
	top: 35px;
	right: 30px;
}
.link_t_sp i {
	margin-left: 3px
}

.swiper2::before {
	content: '';
	width: 1px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: #fff;
	z-index: 11;
}
.swiper2 .swiper-slide {
	padding: 0 30px;
	border-right: 1px solid #e9eaec;
}
.swiper-button-next-2 {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background-color: #fff;
	border: 2px solid #0088cc;
	right: 30px;
	user-select: none;
}
.swiper-button-prev-2 {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background-color: #fff;
	border: 2px solid #0088cc;
	left: auto;
	right: 75px;
	user-select: none;
}
.swiper-button-next-2::after {
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	content: "\f054";
	font-size: 20px;
	color: #0088cc;
}
.swiper-button-prev-2::after {
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	content: "\f053";
	font-size: 20px;
	color: #0088cc;
}

.img_sp {
	aspect-ratio: 1/1;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	overflow: hidden;
}
.img_sp a {
	display: block;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.img_sp img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: transform .3s;
	-webkit-transition: transform .3s;
	-moz-transition: transform .3s;
	-ms-transition: transform .3s;
	-o-transition: transform .3s;
}
.img_sp img:hover {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}
.na_sp {
	padding-top: 15px;
	font-size: 16px;
	color: #000;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.na_sp a {
	color: #000;
}
.na_sp a:hover {
	color: #0088cc;
}
.ts_sp {
	padding: 10px 0 20px 0;
	color: #333;
}
.ts_sp > li {
	position: relative;
	padding-left: 20px;
}
.ts_sp > li a {
	color: #0088cc;
}
.ts_sp > li i {
	position: absolute;
	top: 4px;
	left: 0;
	text-align: center;
	width: 16px;
}
.pri_ts_sp {
	color: #f26c4f;
}

.sp_cata {
	margin-top: 60px;
	position: relative;
}
.sp_cata::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	background-color: #fff;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.sp_cata::after {
	content: "";
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	z-index: 1;
	height: 100px;
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.sp_cata .t_sp {
	padding-bottom: 0;
}
.list_sp_cata {
	position: relative;
	z-index: 2;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
}
.list_sp_cata > li {
	padding: 30px;
	border-right: 1px solid #e9eaec;
	border-bottom: 1px solid #e9eaec;
	width: 25%;
	transition: box-shadow .3s;
	-webkit-transition: box-shadow .3s;
	-moz-transition: box-shadow .3s;
	-ms-transition: box-shadow .3s;
	-o-transition: box-shadow .3s;
}
.list_sp_cata > li:nth-child(4n) {
	border-right: 0;
}
.list_sp_cata > li:nth-last-child(-n + 4):nth-child(4n + 1),
.list_sp_cata > li:nth-last-child(-n + 4):nth-child(4n + 1) ~ li {
	border-bottom: 0;
}
.des_cata {
	position: relative;
	z-index: 2;
	background-color: #fff;
	padding: 15px 30px 30px 30px;
	overflow: hidden;
	height: 100px;
}
.des_cata::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	height: 54px;
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}
.link_des_cata {
	background-color: #fff;
	user-select: none;
	cursor: pointer;
	position: absolute;
	z-index: 2;
	bottom: 35px;
	right: 30px;
	color: #0088cc;
	padding-left: 10px;
}
.link_des_cata::before {
	content: 'Xem thêm';
}
.link_des_cata::after {
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	content: "\f0d7";
	margin-left: 5px;
}
.des_cata.active {
	height: auto;
}
.des_cata.active::before {
	display: none;
}
.des_cata.active .link_des_cata {
	bottom: 32px;
}
.des_cata.active .link_des_cata::before {
	content: 'Đóng lại';
}
.des_cata.active .link_des_cata::after {
	content: "\f0d8";
}

.breadcrumb {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: -15px;
	padding-bottom: 15px;
}
.ul_breacrum {font-size: 14px; color: #666;}
.ul_breacrum > li {display: inline-block;}
.ul_breacrum > li::after {
	font-family: "Font Awesome 6 Pro";
	font-weight: 300; 
	content: "\f105";
	margin: 0 3px;
	position: relative;
	top: 2;
	font-size: 10px;
}
.ul_breacrum > li:last-child::after {display: none;}
.ul_breacrum > li > a {color: #666; text-transform: capitalize;}
.ul_breacrum > li > a:hover {color: #0088cc;}

.share_D {
	display: flex;
	align-items: center;
}
.list_share_D {
	display: flex;
}
.list_share_D > li {
	margin-left: 8px;
}
.list_share_D > li > a {
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	font-size: 14px;
	background-color: #f4f6f8;
	color: #999;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
.list_share_D > li > a:hover {
	color: #fff;
	background-color: #0088cc;
}

.f_cont {
	max-width: 800px;
	margin: 0 auto;
}
.til_D {
	font-size: 30px;
	line-height: 38px;
	color: #000;
	padding-bottom: 15px;
}
.des_D {
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	padding: 15px 0;
}

.maps_ct {
	user-select: none;
	background-color: #e9eaec;
	height: 350px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.maps_ct iframe {
	width: 100% !important;
	height: 350px !important;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.note_ct {
	font-size: 16px;
	color: #666;
	padding: 30px 0;
}
.ul_r_f_contact > li {
	position: relative; 
	padding-bottom: 20px;
}
.ipt_f_contact {
	width: 100%;
	height: 46px;
	border: 1px solid #bbb;
	background-color: #fff;
	padding: 0 54px 0 15px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	font-size: 16px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.icon_r_f_contact {
	position: absolute;
	top: 1px; right: 1px;
	width: 44px; height: 44px;
	text-align: center;
	line-height: 44px;
	border-left: 1px solid #bbb;
	color: #888;
	font-size: 16px;
	z-index: 1;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.txt_f_contact {
	width: 100%; height: 120px;
	min-height: 100px;
	resize: vertical;
	padding: 14px 15px;
	border: 1px solid #bbb;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.slec_r_f_contact {
	width: 100%; height: 46px;
	border: 1px solid #ddd;
	border-radius: 5px !important;
	background: #fff url(../imgs/icon_0.png) no-repeat center right 15px;
	padding: 0 54px 0 15px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.ipt_f_contact:focus,
.ipt_f_contact:focus~.icon_r_f_contact,
.txt_f_contact:focus,
.slec_r_f_contact:focus {
	border-color: #0088cc; 
	color: #0088cc;
}
.cap_f_contact {
	display: inline-block;
	position: absolute;
	top: 3px; right: 3px;
	width: auto; height: 40px;
	z-index: 1;
}
.but_contact {
	display: block;
	user-select: none;
	width: 50%;
	margin: 20px auto 0 auto;
	border: 0;
	cursor: pointer;
	text-align: center;
	border-radius: 4px;
	padding: 14px 30px;
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background-color: #242629;
}
.but_contact:hover, .but_contact:focus, .but_contact:active {background-color: #0088cc;}

.list_news > li {
	display: flex;
	align-items: self-start;
	padding: 30px 0;
	border-bottom: 1px solid #e9eaec;
}
.list_news > li:last-child {
	border-bottom: 0;
}
.img_list_news {
	width: 270px;
	aspect-ratio: 3/2;
}
.img_list_news img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.r_list_news {
	flex: 1;
	overflow: hidden;
	padding-left: 25px;
}
.na_list_news {
	font-size: 24px;
	line-height: 32px;
	padding-bottom: 10px;
}
.na_list_news a {
	color: #000;
}
.na_list_news a:hover {
	color: #0088cc;
}
.ti_list_news {
	padding: 0;
	color: #666;
}
.ti_list_news span {
	display: inline-block;
}
.ti_list_news span::after {
	content: "|";
	margin: 0 5px;
}
.ti_list_news span:last-child:after {
	display: none;
}

.nd_D {
	padding-bottom: 30px;
}

.tags_D {
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 8px 0;
	font-size: 12px;
	color: #333;
}
.tags_D a {
	display: inline;
	color: #888;
}
.tags_D a:hover {
	color: #000;
}
.tags_D a::after {
	content: ',';
}
.tags_D a:last-child::after {
	display: none;
}

.news_other {
	padding-top: 30px;
}
.t_news_other {
	padding-bottom: 15px;
	text-transform: uppercase;
	font-size: 16px;
}
.list_news_other {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}
.list_news_other > li {
	padding: 15px;
	width: 33.33333%;
}
.list_news_other > li .ti_list_news {
	font-size: 12px;
	padding-top: 5px;
}
.img_list_news_other {
	aspect-ratio: 3/2;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.img_list_news_other img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.na_list_news_other {
	font-weight: 400;
	color: #000;
	font-size: 16px;
	line-height: 24px;
	padding-top: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.na_list_news_other:hover {
	color: #0088cc;
}

.f_page .sp_cata {
	margin: 15px 0;
}
.sp_D {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	margin-bottom: 30px;
	display: flex;
}
.slide_sp_D {
	user-select: none;
	width: 40%;
}
.slide_sp_D .swiper1 .swiper-slide a {
	aspect-ratio: 1/1;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	display: block;
	cursor: zoom-in;
}

.tt1_sp_D {
	position: relative;
	width: 60%;
	border-right: 1px solid #e9eaec;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	display: flex;
}
.tt1_sp_D .ts_sp {
	font-size: 16px;
}
.tt1_sp_D .ts_sp > li {
	padding: 5px 0 5px 25px;
}
.tt1_sp_D .ts_sp > li i {
	top: 8px;
}
.t_sp_D {
	font-size: 30px;
	line-height: 38px;
	font-weight: 600;
	color: #000;
}
.pri_sp_D {
	padding: 15px 0 0 0;
}
.pri_sp_D span {
	display: block;
	color: #666;
}
.pri_sp_D strong {
	display: block;
	color: #f26c4f;
	font-size: 30px;
	line-height: 30px;
	font-weight: 600;
}
.l_tt1_sp_D {
	flex: 1;
	padding: 0 10px 0 30px;
}
.r_tt1_sp_D {
	padding: 10px 10px 0 0;
	width: 180px;
}
.qrcode_sp_D {
	position: sticky;
	top: 0;
	padding: 0;
}
.qrcode_sp_D img {
	display: block;
	aspect-ratio: 1/1;
	width: 100%;
}

.t_fsD {
	display: flex;
	user-select: none;
}
.ipt_t_fsD {
	flex: 1;
	height: 46px;
	border: 1px solid #ccc;
	padding: 0 15px;
	font-size: 16px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: 0;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
.ipt_t_fsD:focus {
	color: #0088cc;
	border-color: #0088cc;
}
.but_t_fsD {
	text-align: center;
	width: 25%;
	cursor: pointer;
	color: #fff;
	font-weight: 600;
	background-color: #0088cc;
	border: 0;
	text-transform: uppercase;
	font-size: 14px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.b_fsD {
	padding-top: 10px;
}
.list_fsD {
	height: 256px;
	overflow: auto;
}
.list_fsD > li {
	display: flex;
	padding: 10px 5px;
	border-bottom: 1px dotted #ccc;
}
.list_fsD > li:last-child {
	border-bottom: 0;
}
.list_fsD > li.active {
	padding-left: 10px;
	padding-right: 10px;
	background-color: #DAFFE6;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.list_fsD > li.active b {
	display: block;
	color: #f26c4f;
}

.img_list_fsD {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.img_list_fsD img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.if_list_fsD {
	width: 60%;
	padding: 0 15px;
}
.if_list_fsD strong {
	display: block;
}
.if_list_fsD span {
	display: block;
	color: #666;
	font-size: 12px;
}
.kq_list_fsD {
	flex: 1;
	text-align: right;
}

.sp_other .t_sp {
	margin-top: 30px;
	padding-bottom: 30px !important;
}
.sp_other .swiper2 {
	background-color: #fff;
	z-index: 2;
}

.t_dmsp:hover .sub_dmsp {
	display: block;
}
.sub_dmsp {
	display: none;
	position: absolute;
	top: 80px;
	left: -20px;
	z-index: 11;
	background-color: #fff;
	width: 290px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.25);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	padding: 0 20px;
}
.sub_dmsp::before {
	border-bottom: 8px solid #fff;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	content: " ";
	cursor: pointer;
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: -8px;
	left: 25px;
}

/************************************************************************************
CSS FOOTER
*************************************************************************************/

#footer {
	background-color: #1f1f21;
	border-top-right-radius: 60px;
	border-top-left-radius: 60px;
	color: #ccc;
}
#footer a {
	color: #ccc;
	transition: color .3s;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
}
#footer a:hover {
	color: #fff;
}

.foot1 {
	padding: 35px;
	text-align: center;
}
.logo_foot1 img {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	opacity: .5;
}
.t_foot1 {
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	padding: 20px 0 10px 0;
}

.foot2 {
	padding: 15px 35px;
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.1);
}

/************************************************************************************
CSS PLUS
*************************************************************************************/

.f-detail {line-height: 1.6; font-size: 16px;}
.f-detail img, .f-detail div, .f-detail table, .f-detail h1, .f-detail h2, .f-detail h3, .f-detail h4, .f-detail h5, .f-detail h6, .f-detail p, .f-detail strong, .f-detail span {max-width: 100% !important;}
.f-detail img {
	display: block;
	height: auto; 
	margin: 0 auto;
}
.f-detail a {color: #0088cc;}
.f-detail a:hover {text-decoration: underline;}
.f-detail iframe {max-width: 100% !important;}

.f-detail ul, .f-detail ol {margin-top: 10px; margin-bottom: 10px;}

.f-detail ul li {list-style: disc; margin-left: 40px;}
.f-detail ol li {list-style: decimal; margin-left: 40px;}

.tag {padding: 40px 0 0 0; font-size: 13px; overflow: hidden;}
.tag span {color: #939393; padding: 2px 5px 2px 23px; background: #F1F1F1 url(../imgs/icontag.png) no-repeat 5px 8px; display: block; float: left; margin: 0 3px 3px 0; font-weight: 600;}
.tag a {padding: 2px 5px; color: #656565; background: #F1F1F1; display: block; float: left;	margin: 0 3px 3px 0;}
.tag a:hover {background: #E2E2E2;}

.error-sty {color: #f70000; font-weight: 400; padding: 5px 0px; font-size: 11px;}

.clear {clear:both; height: 0; float: none;}

.img_object_fit {
	object-fit: cover;
	object-position: top center;
}
::-webkit-input-placeholder {opacity: 1;} ::-moz-placeholder {opacity: 1;} :-ms-input-placeholder {opacity: 1;} :-moz-placeholder {opacity: 1;}
.sty_slec {-webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;}
.sty_slec::-ms-expand {display: none;}
.sty_transition {-webkit-transition: ease 0.3s; -moz-transition: ease 0.3s; -o-transition: ease 0.3s; -ms-transition: ease 0.3s; transition: ease 0.3s;}
.hover_img {-webkit-transition: .3s; -o-transition: .3s; transition: .3s;}
.hover_img:hover {-webkit-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.05);}

.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {display: inline-block;}
* html .clearfix {height: 1%;}
.clearfix {display: block;}

select option {font-size: 14px; padding: 0px 5px;}

input, textarea, select, button {font-family: 'Inter', sans-serif;}
button:active {opacity: 0.9;}

html {scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.2) #ddd;}
::-webkit-scrollbar {width: 8px; height: 8px; background: #ddd;}
::-webkit-scrollbar-thumb {width: 8px; background-color: rgba(0,0,0,0.2);}
::-webkit-scrollbar-track {padding: 3px;}

#star img {display: inline-block; width: auto; height: 18px; position: relative; top: -1px;}

.page {
	font-size: 16px; 
	text-transform: uppercase; 
	padding: 30px 0 15px 0px;
	font-weight: 400;
	text-align: center;
}
.PageNum a {
	display: inline-block; 
	color: #4d5154; 
	padding: 3px 7px; 
	margin: 0px 3px 5px 0px; 
	border-radius: 2px;
	border-bottom: 2px solid transparent;
	min-width: 40px;
	text-align: center;
}
.PageNum span {
	border-radius: 2px;
	display: inline-block; 
	color: #4d5154; 
	padding: 3px 7px; 
	margin: 0px 3px 5px 0px;
	border-bottom: 2px solid #0088cc;
	min-width: 20px;
	text-align: center;
}

/************************************************************************************
CSS ACCOUNT
*************************************************************************************/

.f_acc  {
	padding-top: 30px;
}
.f_acc .in_f_acc {
	background-color: #fff;
	width: 800px;
	margin: 0 auto;
	padding: 40px;
	border-top: 3px solid #0088cc;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.til_f_acc {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 25px;
}
.h_til_f_acc {
	font-size: 30px;
	line-height: 40px;
	font-weight: 400;
	color: #045eb5;
}
.r_til_f_acc {color: #666; padding-bottom: 0; font-size: 14px;}
.r_til_f_acc a {color: #0088cc;}
.m_f_acc {
	font-size: 14px;
	line-height: 22px;
	background-color: #fff; 
	border-radius: 2px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
.l_m_f_acc {width: 48%;}
.r_m_f_acc {width: 48%; position: sticky; top: 0;}
.list_f_acc > li {padding-bottom: 20px; position: relative;}
.list_f_acc > li:last-child {padding-bottom: 0;}
.r_list_f_acc {position: relative;}
.lb_f_acc {display: block; padding-bottom: 5px;}
.ipt_f_acc {
	width: 100%;
	height: 44px;
	background-color: #fff;
	border: 1px solid #898e91;
	padding: 0 44px 0 12px;
	font-size: 14px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.ipt_f_acc:focus, .slec_f_acc:focus {
	color: #0088cc;
	border-color: #0088cc;
	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,.1);
	box-shadow: 0 2px 3px rgba(0,0,0,.1);
}
.slec_f_acc {
	width: 100%;
	height: 44px;
	background-color: #fff;
	border: 1px solid #898e91;
	padding: 0 44px 0 8px;
	font-size: 14px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.ico_showpass {
	width: 44px; height: 44px;
	text-align: center;
	line-height: 44px;
	position: absolute;
	top: 0; right: 0;
	z-index: 1;
	cursor: pointer;
	user-select: none;
}
.ico_showpass::before {
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	content: "\f070";
}
.ico_showpass.active::before {content: "\f06e";}
.error_f_acc {padding: 5px 0 0 0; color: #f44336;}
.note_f_acc {
	padding: 0;
	color: #f44336;
}
.link_qmk {color: #0088cc;}
.O_but_f_acc {padding-top: 24px;}
.but_f_acc {
	cursor: pointer;
	border: 0;
	width: 100%;
	height: 44px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background-image: linear-gradient(to bottom right, #045eb5, #0088cc);
	border-radius: 2px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.but_f_acc:focus, .but_f_acc:active {
	background-image: linear-gradient(to bottom right, #0088cc, #045eb5)
}
.text_r_m_f_acc {padding: 10px 0; text-align: center;}
.dn_r_m_f_acc {
	display: block;
	border-radius: 2px;
	padding: 10px;
	text-align: center;
	font-size: 16px;
	background-color: #fff !important;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.dn_r_m_f_acc_1  {
	border: 1px solid #3b5998;
	color: #3b5998;
}
.dn_r_m_f_acc_1:hover {background-color: #3b5998 !important; color: #fff;}
.dn_r_m_f_acc_2 {
	border: 1px solid #d34836;
	color: #d34836;
}
.dn_r_m_f_acc_2:hover {background-color: #d34836 !important; color: #fff;}
.dn_r_m_f_acc + .dn_r_m_f_acc  {margin-top: 8px;}
.dn_r_m_f_acc i {margin-right: 3px;}
.dy_f_acc {
	cursor: pointer;
	display: block;
	padding-bottom: 10px;
}
.dy_f_acc input[type=checkbox] {
	margin-right: 3px;
	position: relative;
	top: 2px;
}
.gt_f_acc {cursor: pointer; margin-right: 15px;}
.gt_f_acc input {position: relative; top: 2px; margin-right: 1px; cursor: pointer;}


.m_f_form {
	min-height: 60vh;
	padding: 15px 0;
	background-color: #fff;
	border-top: 2px solid #f5f5f5;
}
.r_f_form {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 15px;
}
.c1_f_from {
	width: 100%; 
	padding: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.c2_f_from {
	width: 50%; 
	padding: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.c3_f_from {
	width: 33.33333%; 
	padding: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.c4_f_from {
	width: 25%; 
	padding: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.c5_f_from {
	width: 20%; 
	padding: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.tttk {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.l_tttk {width: 49%;}
.r_tttk {width: 49%;}
.avt_tttk {text-align: center; position: sticky; top: 0; padding: 20px;}
.img_avt_tttk {position: relative; width: 100px; margin: auto;}
.avt_tttk img {
	border-radius: 50%; 
	display: block; 
	width: 100px; height: 100px;
	margin: auto;
}
.f-upfile {position:relative;}
.f-upfile span {
	cursor: pointer;
	color: #0088cc;
	width: 30px; height: 30px;
	line-height: 30px;
	text-align: center;
	position: absolute;
	bottom: 0; right: 0;
	z-index: 1;
	font-size: 16px;
	user-select: none;
	background-color: #fff;
	border-radius: 50%;
}
.f-upfile input {
	cursor: pointer;
	width: 30px; height: 30px;
	cursor: pointer;
	opacity: 0;
	position:absolute;
	bottom: 0; right: 0;
	z-index: 1;
	user-select: none;
}
.if_tttk {padding-top: 10px; color: #333;}
.n_if_tttk {
	font-size: 16px; 
	text-transform: capitalize; 
	color: #000; 
	padding-bottom: 5px;
}
.if_tttk p {padding: 0;}

.filter_qldh_1 {
	background: #f5f5f5;
	padding: 5px;
	margin: 5px;
}
.ul_filter_qldh_1 {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.ul_filter_qldh_1 > li {
	width: 25%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px;
}
.slec_filter_qldh_1 {
	background: #fff url(../imgs/ic_slec_1.png) no-repeat center right 12px;
	width: 100%; height: 44px;
	border: 1px solid #ddd;
	padding: 0 44px 0 12px;	
	border-radius: 2px !important;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.slec_filter_qldh_1:focus {
	color: #000;
	border-color: #888;
	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,.1);
	box-shadow: 0 2px 3px rgba(0,0,0,.1);
}

.filter_qldh_2 {
	padding: 15px 5px 20px 5px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.l_filter_qldh_2 strong {color: #ffc425;}
.btn_tk_filter_qldh {
	border: 0;
	cursor: pointer;
	color: #fff;
	font-weight: 500;
	background: #0b74e5;
	padding: 5px 10px;
	font-size: 15px;
	border-radius: 2px;
}

.f-qldh {padding: 0 5px;}
.f-qldh table {
	width: 100%; 
	border: 1px solid #eee;
}
.f-qldh table thead {background: #f9f9f9;}
.f-qldh table thead td {font-weight: 500; text-align: center; text-transform: uppercase;}
.f-qldh table td {padding: 10px; box-sizing: content-box;}
.f-qldh table tbody td {border: 1px solid #eee; text-align: center;}
.td_qldh {text-align: left !important; width: 40%;}
.link_qldh {color: #0b74e5;}
.icon_capnhat img {
    -webkit-transform: rotate(0deg) ;
    -moz-transform: rotate(0deg) ;
    -o-transform: rotate(0deg) ;
    -ms-transform: rotate(0deg) ;
    transform: rotate(0deg) ;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}
.icon_capnhat:hover img {
	-webkit-transform: rotate(360deg) ;
	-moz-transform: rotate(360deg) ;
	-o-transform: rotate(360deg) ;
	-ms-transform: rotate(360deg) ;
	transform: rotate(360deg) ;
}
.nut_upslider {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 3px 8px;
	margin-top: 5px;
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	background: #46c049;
	color: #fff;
}

.button_td {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 3px 8px;
	margin-top: 5px;
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	margin-right: 3px;
	min-width: 55px;
}
.button_td_thuong {background: #f1f1f1; color: #555;}
.button_td_vip {background: #fa8c00; color: #fff;}
.button_td_vipDB {background: #e41b23; color: #fff;}

.f_form .min_wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.l_f_page {
	position: sticky;
	top: 0;
	width: 290px;
	padding: 0 30px 0 50px;
}
.r_f_page {
	flex: 1;
	padding: 0 30px;
}
.b_l_f_page {
	padding: 15px 0;
}
.r1_tida {
    background-color: #fff;
    padding: 15px 0;
}
.o_til_tida {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.til_tida {
    font-size: 20px;
    text-transform: capitalize;
    line-height: 28px;
	color: #0088cc;
}
.t_l_f_page {
    font-size: 16px;
    padding-bottom: 6px;
    text-transform: capitalize;
}
.list_mn_l_f_page > li {
    padding: 4px 0;
	position: relative;
}
.list_mn_l_f_page > li > a {
    color: #0a0a0a;
    font-size: 14px;
    display: block;
    line-height: 22px;
}
.list_mn_l_f_page > li > a i {
	width: 20px;
}
.list_mn_l_f_page > li > a:hover {color: #0088cc;}
.list_mn_l_f_page > li.active > a {
    color: #0088cc;
}

.list_lsht {padding: 30px 150px 0 150px; position: relative;}
.list_lsht::before {
	content: "";
	width: 2px;
	background-color: #ededed;
	position: absolute;
	top: 30px; left: 0; right: 0; bottom: 0;
	margin: auto;
}
.list_lsht > li {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 50px;
	position: relative;
}
.list_lsht > li:nth-child(2n) {flex-direction: row-reverse;}
.list_lsht > li:nth-child(2n) .nd_lsht {text-align: right;}
.list_lsht > li:last-child {padding-bottom: 0;}
.list_lsht > li::before {
	content: "";
	background-color: #ff830e;
	border-radius: 50%;
	width: 11px; height: 11px;
	position: absolute;
	top: 0; left: 0; right: 0;
	margin: auto;
}
.img_lsht {
	width: 390px;
	padding: 5px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,.1);
	box-shadow: 0 0 5px rgba(0,0,0,.1);
}
.img_lsht img {display: block; width: 100%; height: auto; background-color: #eee;}
.img_lsht a {display: block; cursor: zoom-in;}
.nd_lsht {width: 400px;}
.num_nd_lsht {
	margin-bottom: 10px;
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	padding: 10px;
	min-width: 80px;
	text-align: center;
	background-color: #ff830e;
	position: relative;
}
.list_lsht > li:nth-child(2n) .num_nd_lsht::before {
	left: auto;
	right: -8px;
	border-right: 8px solid transparent;
}
.num_nd_lsht::before {
	border-top: 8px solid #ff830e;
    border-left: 8px solid transparent;
    content: " ";
    cursor: pointer;
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 4px; left: -8px;
}
.tit_nd_lsht {text-transform: uppercase; font-size: 16px; padding: 10px 0;}

.filter_f_form {
	padding-bottom: 15px;
}
.filter_f_form form {
	position: relative;
}
.l_filter_f_form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding-right: 65px;
}
.slec_filter_f_form {
	width: 120px;
	height: 30px;
	border: 1px solid #ccc;
	padding: 0 6px;
	border-radius: 2.5px;
	-webkit-border-radius: 2.5px;
	-moz-border-radius: 2.5px;
	-ms-border-radius: 2.5px;
	-o-border-radius: 2.5px;
	cursor: pointer;
}
.ipt_filter_f_form {
	width: 200px;
	height: 30px;
	border: 1px solid #ccc;
	padding: 0 10px;
	border-radius: 2.5px;
	-webkit-border-radius: 2.5px;
	-moz-border-radius: 2.5px;
	-ms-border-radius: 2.5px;
	-o-border-radius: 2.5px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
.slec_filter_f_form:focus,
.ipt_filter_f_form:focus {
	color: #0088cc;
	border-color: #0088cc;
}

.r_filter_f_form {
	display: flex;
	align-items: center;
	gap: 5px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	background-color: #fff;
}
.but_filter_f_form {
	background-color: #0088cc;
	color: #fff;
	width: 30px;
	height: 30px;
	border: 0;
	cursor: pointer;
	border-radius: 2.5px;
	-webkit-border-radius: 2.5px;
	-moz-border-radius: 2.5px;
	-ms-border-radius: 2.5px;
	-o-border-radius: 2.5px;
	font-size: 16px;
	user-select: none;
}

.box_table {
	width: 100%;
}
.box_table a {
	color: #0088cc;
}
.box_table thead {
	background-color: #0088cc;
}
.box_table thead td {
	font-weight: 600;
	color: #fff;
	border-color: #fff;
}
.id_showk {
	cursor: pointer;
}
.id_show_dau_sub {
	position: relative;
	padding-right: 35px;
}
.icon_ghs {
	position: absolute !important;
	top: 50% !important;
	right: 10px !important;
	cursor: pointer;
	margin-top: -11px;
}
.id_show_tc {
	font-size: 18px;
	text-align: center;
	color: #f26c4f;
}
.id_show_tc b {
	font-size: 14px;
	display: block;
}

.box_tong {
	padding-top: 15px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.l_box_tong b {
	color: #f26c4f;
}


.list-content > li > label {
	cursor: pointer;
}
.list-content > li > label > input {
	cursor: pointer;
	position: relative;
	top: 1px;
}

/************************************************************************************
MENU MOBILE
*************************************************************************************/

.icon_menu_mobile {
	display: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	z-index: 1;
	cursor: pointer;
	border-radius: 2px;
	user-select: none;
	color: #fff;
	font-size: 24px;
	text-align: center;
	border-right: 1px dashed rgba(255,255,255,0.25);
	padding-right: 10px;
}
.icon_menu_mobile::before {
	font-family: "Font Awesome 6 Pro";
	font-weight: 100;
	content: "\f0c9";

}
.menu_mobile {
	visibility: hidden;
	background: #fff;
	width: 280px; height: 100vh; 
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	top: 0; left: -280px;
	z-index: 99999;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}
.close_menu_mobile {
	background: rgba(255,255,255,0); 
	position: fixed; 
	top: 0; right: 0; bottom: 0; left: 280px;
	z-index: 7009;
}
.show_menu_mobile {overflow-y: hidden;}
.show_menu_mobile .menu_mobile {left: 0;}
.show_menu_mobile::after {
	content: "";
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 10001;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.menu_accordion {padding: 0 15px;}

.user_mb {
	background-color: #292936;
	padding: 15px;
	margin: 0 -15px;
	color: #fff;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	margin-bottom: 10px;
}
.user_mb_1 {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.user_mb_1 > li > a {
	color: #fff;
}
.user_mb_1 > li > a i {
	color: #0088cc;
	margin-right: 4px;
}
.user_mb_2 {
	display: flex;
}
.user_mb_2 figure {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.user_mb_2 figure img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.r_user_mb_2 {
	flex: 1;
	padding: 0 0 0 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.r_user_mb_2 b {
	display: block;
}
.r_user_mb_2 strong {
	display: block;
	color: #f26c4f;
	font-weight: 400;
}

.ul_ma_1 > li {font-size: 15px; position: relative;}
.ul_ma_1 > li > a {
	white-space: nowrap; 
	text-overflow: ellipsis; 
	overflow: hidden; 
	display: block; 
	color: #000; 
	padding: 10px 38px 10px 10px;
	border-bottom: 1px solid #eee;
}
.ul_ma_1 > li > a:hover, .ul_ma_1 > li.active > a {color: #0088cc; font-weight: 600;}
.ul_ma_1 > li.active {color: #0088cc; background-color: #fff;}
.ul_ma_1 > li.active .ul_ma_2 {display: block;}

.ul_ma_1 > li > a > i {
	font-size: 18px;
	width: 18px;
	text-align: center;
	margin-right: 4px;
	position: relative;
	top: 1px;
}

.ul_ma_2 {display: none;}
.ul_ma_2 > li > a {
	background-color: #f9f9f9;
	border-left: 3px solid #0088cc;
	border-bottom: 1px solid #eee; 
	padding: 10px 0 10px 20px;
	display: block;
	color: #000;
}

.ul_ma_1 > li.active .arrown_menu_accordion {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.arrown_menu_accordion {
	width: 38px; height: 38px;
	text-align: center;
	line-height: 38px;;
	position: absolute;
	top: 1px; right: 0;
	cursor: pointer;
	font-style: normal;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.arrown_menu_accordion::before {
	font-family: "Font Awesome 5 Pro";
	font-weight: 300; 
	content: "\f078";
}

.t_ul_ma_1 {
	font-weight: 600; 
	text-transform: capitalize; 
	padding: 10px 0 5px 0;
	display: inline-block;
	border-bottom: 1px solid #000;
}

.list_social_rwd {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 15px;
}
.list_social_rwd > li + li {margin-left: 10px;}
.list_social_rwd > li > a {
	font-size: 18px;
	border-radius: 50%;
	width: 40px; height: 40px;
	text-align: center;
	line-height: 40px;
	color: #555;
	border: 1px solid #ccc;
	display: block;
}
.list_social_rwd > li > a:active {color: #fff; background-color: #e1251b; border-color: #e1251b;}

/************************************************************************************
RESPOSIVE
*************************************************************************************/


@media only screen and (min-width: 1921px) {
	
}

@media only screen and (min-width: 1367px) {

}

@media only screen and (max-width: 1180px) and (min-width: 769px) {
	.min_wrap {
		padding-left: 30px;
		padding-right: 30px;
	}
	.logo {
		min-width: auto;
	}
	.r_hea1 {
		min-width: auto;
	}
	.slide {
		padding-left: 0;
	}
	.list_fsD {
		height: 150px;
	}
 
	.list_dmsp {
		display: none;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
	.min_wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
	#container {
		padding: 20px 0 40px 0;
	}
	.t_sp {
		padding: 20px;
	}
	.link_t_sp {
		top: 25px;
	}
	.list_sp_cata > li {
		padding: 20px;
	}
	.slide {
		padding-right: 20px;
	}
	.l_tt1_sp_D, .r_list_news {
		padding-left: 20px;
	}
	.r_ct {
		padding-bottom: 20px;
	}
	.des_cata {
		padding: 15px 20px 20px 20px;
	}
	.des_cata .link_des_cata, .des_cata.active .link_des_cata {
		right: 20px;
		bottom: 0;
	}
	.sp_cata {
		margin-top: 40px;
	}
	.sp_D {
		margin-bottom: 20px;
	}
	.list_news_other {
		margin: -10px;
	}
	.list_news_other > li {
		padding: 10px;
	}
	.list_news > li {
		padding: 20px 0;
	}
	.t_sp_D {
		font-size: 24px;
		line-height: 32px;
	}
	.pri_sp_D strong {
		font-size: 24px;
		line-height: 24px;
	}
	.ul_mn > li, .link_r_hea1 > li {
		padding: 0 10px;
		font-size: 15px;
	}
	.ul_mn_child_1 {
		top: 45px;
	}
	.but_t_fsD {
		width: 40%;
	}
	.breadcrumb {
		margin-top: -10px;
	}
}

@media only screen and (max-width: 1023px) {
	html, body {
		-webkit-overflow-scrolling: touch;
		overflow-x: hidden;
	}
	.icon_menu_mobile {display: block;}
	
	.min_wrap {
		padding-left: 2%;
		padding-right: 2%;
	}
	#container {
		padding: 2% 0 4% 0;
	}
	#header {
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	.hea1 {
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	.logo {
		min-width: auto;
		margin-right: auto;
		margin-left: 10px;
	}
	.r_hea1 {
		min-width: auto;
	}
	.search_h {
		padding: 0;
	}
	.but_search_h {
		right: 4px;
	}
	.top_ct {
		display: block;
	}
	.slide {
		padding: 0;
	}
	.kqdg {
		margin-top: 4%;
		width: auto;
	}
	.list_kqdg {
		overflow: auto;
		max-height: 50vw;
	}
	.list_sp_cata > li {
		width: 50%;
		padding: 4%;
	}
	.list_sp_cata > li {
		border-bottom: 1px solid #e9eaec !important;
	}
	.list_sp_cata > li:nth-last-child(-n + 2):nth-child(2n + 1), .list_sp_cata > li:nth-last-child(-n + 2):nth-child(2n + 1) ~ li {
		border-bottom: 0 !important;
	}
	.list_sp_cata > li:nth-child(2n) {
		border-right: 0;
	}
	#footer {
		border-top-right-radius: 20px;
		border-top-left-radius: 20px;
	}
	
	.foot1 {
		padding: 4%;
	}
	.foot2 {
		padding: 2%;
	}
	.swiper2 .swiper-slide {
		padding: 0 4%;
	}
	.r_ct {
		padding-bottom: 4%;
	}
	.sp_cata {
		margin-top: 4%;
	}
	.ts_sp {
		padding-bottom: 0;
	}
	.breadcrumb {
		margin-top: 0;
		position: relative;
	}
	.ul_breacrum {
		padding: 4px 0;
		white-space: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
	}
	.share_D {
		position: absolute;
		top: 0;
		right: 0;
		background-color: #fff;
		padding: 0 2%;
		z-index: 1;
	}

	.slide_sp_D {
		width: 50%;
	}
	.tt1_sp_D {
		display: block;
		width: 50%;
	}
	.l_tt1_sp_D {
		padding: 10px 20px 0 20px;
	}
	.l_tt1_sp_D .ts_sp {
		padding-bottom: 10px;
	}
	.pri_sp_D {
		padding-top: 10px;
	}
	.list_fsD {
		height: auto;
		max-height: 150px;
	}
	.t_sp_D {
		font-size: 24px;
		line-height: 32px;
	}
	.pri_sp_D strong {
		font-size: 24px;
		line-height: 24px;
	}
	.ipt_t_fsD {
		width: 70%;
		font-size: 12px;
		padding: 0 10px;
	}
	.but_t_fsD {
		width: 30%;
		font-size: 12px;
	}
	.if_list_fsD {
		padding: 0 10px;
	}
	.f_cont {
		max-width: 96%;
	}
	.list_news > li {
		padding: 20px 0;
	}
	.r_list_news {
		padding-left: 20px;
	}
	.na_list_news {
		font-size: 20px;
		line-height: 28px;
	}

	.f_acc {
		padding: 2% 0;
	}
	.f_acc .in_f_acc {
		max-width: 90%;
	}
	.l_f_page {
		padding: 0 25px 0 0;
		width: 25%;
	}
	.r_f_page {
		padding: 0;
		flex: none;
		width: 75%;
	}
	.link_r_hea1 > li {
		padding: 0 10px;
		font-size: 12px;
	}

	.nav_mn, .t_dmsp, .r_hea2, .list_dmsp, .r_tt1_sp_D {
		display: none;
	}
}

@media only screen and (max-width: 640px) {
	.tb_f_form {
		overflow-x: auto;
	}
	.box_table {
		width: 800px;
	}

	.l_f_page {
		display: none;
	}
	.r_f_page {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	.min_wrap, .share_D  {
		padding-left: 3%;
		padding-right: 3%;
	}
	#container {
		padding: 3% 0 5% 0;
	}

	.hea2 {
		height: 60px;
	}
	.ipt_search_h {
		height: 40px;
		padding: 0 35px 0 15px;
	}
	.but_search_h {
		height: 32px;
		width: 32px;
		line-height: 32px;
		font-size: 14px;
	}
	.logo img {
		height: 30px;
	}
	.icon_menu_mobile {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 24px;
	}
	.f_page .sp_cata, .sp_cata {
		margin-left: -3%;
		margin-right: -3%;
	}
	.t_sp {
		padding: 20px;
	}
	.link_t_sp {
		top: 25px;
		font-size: 12px;
	}
	.h_t_sp {
		font-size: 20px;
		line-height: 28px;
	}
	.swiper2::before {
		right: 1px;
	} 
	.swiper-button-next-2, .swiper-button-prev-2 {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
	.swiper-button-next-2::after,
	.swiper-button-prev-2::after {
		font-size: 14px;
	}
	.swiper-button-next-2 {
		right: 20px;
	}
	.swiper-button-prev-2 {
		right: 55px;
	}
	.na_sp {
		min-height: 55px;
		font-size: 14px;
		line-height: 20px;
	}
	.ts_sp {
		padding-top: 5px;
		font-size: 12px;
	}
	.des_cata {
		padding: 10px 3% 3% 3%;
	}
	.des_cata .f-detail {
		font-size: 14px;
	}
	.link_des_cata {
		padding: 0 10px;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
	.des_cata.active .link_des_cata {
		display: block;
		position: static;
		bottom: 0;
		padding: 10px;
	}
	.sp_D {
		display: block;
	}
	.slide_sp_D {
		width: auto;
	}
	.tt1_sp_D {
		width: auto;
		border-right: 0;
	}
	.l_tt1_sp_D {
		padding: 20px 0 0 0;
	}
	.list_fsD {
		max-height: 50vw;
	}
	.f_cont {
		max-width: 94%;
	}
	.til_D {
		font-size: 24px;
		line-height: 32px;
	}
	.list_news > li {
		display: block;
	}
	.img_list_news {
		width: 100%;
	}
	.r_list_news {
		padding: 15px 0 0 0;
	}
	.na_list_news {
		font-size: 16px;
		line-height: 24px;
	}
	.list_news_other {
		margin: -10px;
	}
	.list_news_other > li {
		width: 50%;
		padding: 10px;
	}
	.page {
		font-size: 14px;
	}
	.note_ct {
		padding: 20px 0;
	}
	.ul_r_f_contact > li {
		padding-bottom: 10px;	
	}
	.but_contact {
		width: 100%;
	}
	.sp_other .t_sp {
		padding-bottom: 20px !important;
	}

	.foot1 {
		padding: 6% 3%;
	}
	.foot2 {
		padding: 3%;
	}
	.swiper2 .swiper-slide {
		padding: 0 3%;
	}
	.r_ct {
		padding-bottom: 6%;
	}
	.sp_cata {
		margin-top: 6%;
	}

	.f_acc {
		padding: 4% 0;
	}
	.f_acc .in_f_acc {
		padding: 25px;
	}
	.til_f_acc {
		display: block;
		padding-bottom: 20px;
		text-align: center;
	}
	.m_f_acc {
		display: block;
	}
	.l_m_f_acc, .r_m_f_acc {
		width: auto;
	}
	.r_f_page {
		width: auto;
	}
	.h_til_f_acc {
		font-size: 24px;
		line-height: 32px;
	}
	.list_f_acc > li:last-child {
		text-align: center !important;
	}
	.f_form .min_wrap {
		display: block;
	}
	.l_f_page {
		width: auto;
		padding: 0;
	}
	.tttk {
		display: block;
	}
	.l_tttk, .r_tttk {
		width: auto;
	}
	.box_tong {
		display: block;
		text-align: center;
	}
	.l_filter_f_form {
		gap: 5px 2%;
		padding-right: 0;
	}
	.slec_filter_f_form {
		width: 32%;
	}
	.ipt_filter_f_form  {
		width: 100%;
	}
	.r_filter_f_form {
		position: static;
		justify-content: center;
		padding-top: 10px;
	}
}

@media only screen and (max-width: 375px) {
	.link_r_hea1 > li > a i {
		display: none;
	}
}