:root {
	/* #2e8ccb  #2879b0*/
	--blue-color: #02528E;
	--blue-hover: #01365d;
	--blue-new: #02528E;
	--blue-nav: rgba(46, 140, 203, 0.07);
	--orange-color: #f89d20;
	--orange-hover: #dc872e;
	--red-color: #E02831;
	--red-background: #c7242c;
	--bgbody: #EFF3F6;
	--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

body {
	background-color: var(--bgbody);
	font-family: 'Roboto', sans-serif;
	font-size: 0.9rem;
}

.fs-inherit {
	font-size: inherit !important;
	line-height: 1.5;
}

[class*=col-] {
	word-break: break-word;
}

/* defince class */
.customScroll::-webkit-scrollbar {
	width: 5px;
}

.customScroll::-webkit-scrollbar-track {
	background: #fff;
}

.customScroll::-webkit-scrollbar-thumb {
	background: #acacac;
}

.customScroll::-webkit-scrollbar-thumb:hover {
	background: #7b7b7b;
}

/* loader */
.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ring div {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid var(--blue-color);
	border-radius: 50%;
	-webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: var(--blue-color) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
	-webkit-animation-delay: -0.45s;
	animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
	-webkit-animation-delay: -0.3s;
	animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
	-webkit-animation-delay: -0.15s;
	animation-delay: -0.15s;
}

@-webkit-keyframes lds-ring {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes lds-ring {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/*
 *   Custom Bootstrap
 */
@media (min-width: 768px) {
	.container {
		max-width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

a,
a:hover,
a:focus,
a:visited,
a:active,
a.active {
	text-decoration: none !important;
}

.row.row-5 {
	margin-left: -5px;
	margin-right: -5px;
}

.row.row-5 > [class*=col-] {
	padding-left: 5px;
	padding-right: 5px;
}

.row.row-10 {
	margin-left: -10px;
	margin-right: -10px;
}

.row.row-10 > [class*=col-] {
	padding-left: 10px;
	padding-right: 10px;
}

.row.row-col-10 {
	margin-left: -10px;
	margin-right: -10px;
}

.row.row-col-10 > [class*=col-] {
	padding-left: 10px;
	padding-right: 10px;
}

.row.row-all-5 {
	margin-left: -5px;
	margin-right: -5px;
	margin-top: -5px;
}

.row.row-all-5 > [class*=col-] {
	padding: 5px;
}

.col-md-20 {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

.card-10 .card-header,
.card-10 .card-body,
.card-10 .card-footer {
	padding: 10px;
}

.tooltip.show {
	opacity: 1;
}

.tooltip-inner {
	max-width: 768px;
	width: 100%;
	opacity: 1;
}

.tooltip-inner p {
	margin-bottom: 0;
}

.tooltip-inner p:last-child {
	margin-bottom: 0;
}

.modal.modal-static .modal-dialog {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/*
 *   End Custom Bootstrap
 */
/*
 * Text - Font - Color - Background - Button - Display - Layout - Transition - Box Shadow
 */
.size-105rem {
	font-size: 1.05rem !important;
}

.size-1rem {
	font-size: 1rem !important;
}

.size-095rem {
	font-size: .95rem !important;
}

.size-09rem {
	font-size: .9rem !important;
}

.size-085rem {
	font-size: .85rem !important;
}

.size-08rem {
	font-size: .8rem !important;
}

.size-075rem {
	font-size: .75rem !important;
}

.size-07rem {
	font-size: .7rem !important;
}

.size-06rem {
	font-size: .6rem !important;
}

.fw-700 {
	font-weight: 700 !important;
}

.fw-600 {
	font-weight: 600 !important;
}

.fw-500 {
	font-weight: 500 !important;
}

.fw-400 {
	font-weight: 400 !important;
}

.fw-300 {
	font-weight: 300 !important;
}

.text-size-normal {
	font-size: 90% !important;
}

.text-gray {
	color: #888;
}

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

.text-1-line {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
}

.text-ellipsis {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	max-width: 100%;
}

.vertical-middle {
	vertical-align: middle !important;
}

.vertical-top {
	vertical-align: top !important;
}

.flex-xy-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.middle-xy {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.middle-x {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.middle-y {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.transition-03 {
	-webkit-transition: .3s all ease-out;
	-o-transition: .3s all ease-out;
	transition: .3s all ease-out;
}

.shadow-box {
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.red-color {
	color: #d9151b !important;
}

.blue-color {
	color: var(--blue-color) !important;
}

.blue-color:hover {
	color: var(--blue-hover) !important;
}

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

.blue-new-color {
	color: var(--blue-new) !important;
}

.blue-new-background {
	background-color: var(--blue-new) !important;
}

.orange-color {
	color: var(--orange-color) !important;
}

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

.bg-orange {
	background-color: #f89d20 !important;
	color: #fff !important;
	background-clip: initial;
}

a.bg-orange:hover, a.bg-orange:focus,
button.bg-orange:hover,
button.bg-orange:focus {
	background-color: #dc872e !important;
	color: #fff !important;
}

.hover-blue:hover {
	background: var(--blue-color) !important;
}

.button-theme {
	border: 1px solid #c4c4c4;
	color: #1f2d3d;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	text-decoration: none !important;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	padding: 10px 15px;
	font-size: .9rem;
}

.button-theme.btn-sm {
	padding: 7px 10px;
	font-size: .8rem;
}

.button-theme.btn-small {
	padding: 5px 10px;
	font-size: .825rem;
}

.btn-noBorder {
	border-color: transparent !important;
}

.button-theme i {
	margin-right: .15rem;
}

.button-basic:hover {
	color: var(--blue-color) !important;
	border-color: var(--blue-color) !important;
}

.button-blue {
	border-color: var(--blue-color) !important;
	background: var(--blue-color) !important;
	color: #fff !important;
}

.button-blue:hover {
	background: var(--blue-hover) !important;
	border-color: var(--blue-hover) !important;
}

.button-orange {
	border-color: var(--orange-color) !important;
	background: var(--orange-color) !important;
	color: #fff !important;
}

.button-orange:hover {
	background: var(--orange-hover) !important;
	border-color: var(--orange-hover) !important;
}

.bg-gradient {
	background-image: var(--bs-gradient) !important;
}

.btn-light2 {
	color: #232323;
	background-color: #e3e3e3;
}

.btn-light3 {
	color: #232323;
	background-color: #f3f3f3;
}

.pagination-wrapper .pagination li {
	margin-left: 0;
	margin-right: 0;
}

.pagination-wrapper .pagination li a {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0 !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	color: #333;
	height: 35px;
	min-width: 35px;
	padding-bottom: 10px;
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
	font-size: .9rem;
	cursor: pointer;
}

.pagination-wrapper .pagination li.pageactive a {
	background-color: var(--blue-color);
	color: #fff;
	border: 0;
}

.heading-style {
	border-bottom: 1px solid #cececa;
	margin-bottom: 1rem;
	position: relative;
}

.heading-style span {
	font-weight: 600;
	font-size: 1.15rem;
	color: #232323;
	padding-bottom: .5rem;
	display: inline-block;
}

.heading-style:after {
	position: absolute;
	content: "";
	left: 0;
	width: 100%;
	height: 2.5px;
	background: var(--blue-color);
	bottom: -1.25px;
	max-width: 25%;
}

.heading-style2 {
	font-weight: 700;
	font-size: 1.4rem;
	color: #232323;
	padding-bottom: 0.1rem;
	display: inline-block;
	margin: 0 auto;
	border-bottom: 2px solid #232323;
}

.pl-1px {
	padding-left: 1px;
}

.top-0 {
	top: 0;
}

.top-1px {
	top: 1px;
}

/*
 * End Text - Font - Color - Background - Display - Layout - Transition - Box Shadow
 */
/*
 * Header
 */
.navbar-main {
	position: relative;
	z-index: 30;
}

.navbar-top {
	padding: 5px 0 !important;
	height: 100%;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	background: #182641;
}

.navbar-top .navbar-nav {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navbar-top .nav-item_link {
	padding-left: .75rem;
	padding-right: .75rem;
	transition: .3s all ease;
}

.navbar-top .nav-item_link__icon {
	font-size: 95%;
}

.navbar-top a:not([class*=btn]):hover,
.navbar-top .nav-item_link:hover {
	color: rgba(255, 255, 255, .8) !important;
}

.navbar-top .navbar-nav .button-ntd .button-theme {
	padding: 7px 15px;
}

.navbar-bottom {
	padding: 0;
}

.navbar-bottom .logo {
	padding: 0;
	height: 55px;
}

.navbar-bottom .logo img {
	height: 100%;
	vertical-align: middle;
	width: auto;
}

.navbar-bottom ul.nav > li > a {
	padding: 1.26rem;
	border-bottom: 2px solid transparent;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.dropdownTheme.show > a,
.navbar-bottom ul.nav > li > a:hover {
	background: var(--blue-nav) !important;
	border-color: var(--blue-color);
}

.navbar-bottom ul.nav > li.show > a:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dropdownTheme .dropdown-toggle::after {
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	margin-left: .255em;
	vertical-align: unset;
	border: 0;
	font-weight: 900;
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	content: "\f107";
	margin-top: 2px;
}

.dropdownTheme .dropdown-menu {
	padding: 0;
	margin-bottom: 0;
	border-radius: 0;
	top: 96%;
	right: -1.5px;
	left: unset;
	border-color: #d1d1d1;
}

.dropdownTheme .dropdown-menu:before,
.dropdownTheme .dropdown-menu:after {
	font-size: 1.4em;
	display: block;
	width: 0;
	height: 0;
	content: "";
	pointer-events: none;
	position: absolute;
	top: -10px;
	right: 30px;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
}

.dropdownTheme .dropdown-menu:before {
	border-bottom: 10px solid #a9a9a9;
}

.dropdownTheme .dropdown-menu:after {
	border-bottom: 10px solid #fff;
}

.dropdownTheme .dropdown-menu.dropdown-menu-left:before,
.dropdownTheme .dropdown-menu.dropdown-menu-left:after {
	right: unset;
	left: 30px;
}

.dropdownTheme .dropdown-menu > a {
	font-size: .85rem;
	padding: 0.4rem 1rem;
}

.dropdownAccount .dropdown-menu > a {
	padding: .5rem 1rem;
	color: #222 !important;
	border-bottom: 1px dotted #d1d1d1;
}

.dropdownTheme .dropdown-menu > a:hover,
.dropdownTheme .dropdown-menu .dropdown-item.active,
.dropdownTheme .dropdown-menu .dropdown-item:active {
	background-color: #f8f9fa;
	color: #222 !important;
}

.dropdownTheme .dropdown-menu > a:last-of-type {
	border-bottom: 0;
}

.dropdownTheme.dropdownTheme-filter.show > a {
	background-color: transparent !important;
}

.dropdownAccount.show > a {
	background: var(--blue-hover);
}

.dropdownAccount > a {
	padding: .75rem 1.2rem;
	color: #fff;
	font-size: .75rem;
}

.dropdownTheme.dropdownThemeTable .dropdown-menu:before,
.dropdownTheme.dropdownThemeTable .dropdown-menu:after {
	font-size: 1.4em;
	display: block;
	width: 0;
	height: 0;
	content: "";
	pointer-events: none;
	position: absolute;
	top: -10px;
	right: 5px;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
}

.dropdownTheme.dropdownThemeTable .dropdown-menu {
	width: auto;
	left: unset !important;
	transform: unset !important;
	top: 105% !important;
}

.dropdown-employer {
	padding: 10px 10px 0;
	font-size: 14px;
}

.dropdown-employer .dropdown-employer_header {
	margin-bottom: 10px;
}

.dropdown-employer .dropdown-employer_header .dropdown-employer_title {
	padding-left: 19px;
}

.dropdown-employer .dropdown-employer_header .dropdown-employer_title > a:hover {
	color: var(--blue-color) !important;
}

.dropdown-employer .dropdown-employer_inner .dropdown-title {
	gap: 8px;
	outline: none;
	box-shadow: none;
}

.dropdown-employer .dropdown-employer_inner .dropdown-title > i {
	font-size: 1.3em;
	transition: .3s transform ease-in-out;
	width: 11px;
}

.dropdown-employer .dropdown-employer_inner .dropdown-title[aria-expanded=false] > i {
	transform: rotate(180deg);
}

.dropdown-employer .dropdown-employer_body {
	gap: 5px;
}

.dropdown-employer .dropdown-employer_inner .dropdown-employer_list .dropdown-employer_list__child {
	padding: 8px 15px 8px 19px;
	background-color: transparent;
	gap: 8px;
	display: flex;
	align-items: center;
	color: #333334;
	font-weight: 500;
	transition: .3s all ease-in-out;
	border-radius: 4px;
	border: 0;
	outline: none;
	box-shadow: none;
}

.dropdown-employer .dropdown-employer_inner .dropdown-employer_list .dropdown-employer_list__child svg {
	width: 16px;
	flex-shrink: 0;
}

.dropdown-employer .dropdown-employer_inner .dropdown-employer_list .dropdown-employer_list__child:hover {
	background-color: rgb(160 214 255 / 15%);
	color: #333334 !important;
}

.dropdown-employer .dropdown-employer_inner .dropdown-employer_list .dropdown-employer_list__child.active {
	background-color: rgb(160 214 255 / 40%);
	color: #333334 !important;
}

.navbar-top .dropdownAccount > a {
	padding-top: 0;
	padding-bottom: 0;
}

.dropdownAccount .dropdown-menu {
	top: 95%;
	width: 15em;
}

.dropdownAccount .dropdown-menu > .dropdown-item {
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.dropdownAccount .dropdown-menu > a i {
	width: 20px;
	padding-right: 5px;
}

.navbar-top .dropdownNoti a i {
	font-size: 100%;
	margin-top: 0;
}

.navbar-bottom ul.nav > li.nav-hidden {
	height: 0;
	width: 0;
	opacity: 0;
	overflow: hidden;
}

.isFixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #dee2e6 !important;
	-webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.pageDangKy .isFixed {
	background: var(--blue-color);
	border-bottom: 0 !important;
	-webkit-box-shadow: 0 .155rem .4rem rgba(0, 0, 0, .375) !important;
	box-shadow: 0 .155rem .4rem rgba(0, 0, 0, .375) !important;
}

.isFixed .logo {
	height: 45px;
}

.isFixed.navbar-bottom ul.nav > li > a {
	padding: 0 0.75rem;
	line-height: 45px;
}

.isFixed.navbar-bottom ul.nav > li.nav-hidden {
	height: 47px;
	width: auto;
	opacity: 1;
	overflow: visible;
}

/*
 * End header
 */
/*
 * Search
 */
.search-bar {
	background: var(--blue-new);
}

.search-bar .search-inner {
	padding: .75rem 0;
}

.search-bar .search-inner .form-group {
	margin-bottom: 0;
	background: #fff;
}

.search-bar .search-inner .form-group > input,
.search-bar .search-inner .form-group > select {
	font-size: .95rem;
	padding-left: 35px;
	color: #222;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.search-bar .search-inner .form-group > input::-webkit-input-placeholder {
	font-size: .95rem;
	color: #999;
}

.search-bar .search-inner .form-group > input::-webkit-input-placeholder,
.search-bar .search-inner .form-group > input::-moz-placeholder,
.search-bar .search-inner .form-group > input::-ms-input-placeholder,
.search-bar .search-inner .form-group > input::placeholder {
	font-size: .95rem;
	color: #999;
}

.search-bar .search-inner .form-group.tieude:before,
.search-bar .search-inner .form-group.noidung:before,
.search-bar .search-inner .form-group.nganhnghe:before,
.search-bar .search-inner .form-group.diadiem:before,
.search-bar .search-inner .form-group.time:before,
.search-bar .search-inner .form-group.type:before,
.search-bar .search-inner .form-group.experience:before,
.search-bar .search-inner .form-group.trinhdo:before,
.search-bar .search-inner .form-group.salary:before,
.search-bar .search-inner .form-group.ranks:before {
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	margin-left: .255em;
	vertical-align: unset;
	border: 0;
	font-weight: 300;
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	position: absolute;
	top: calc(50% - 1px);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 5px;
	color: #444;
	font-size: .95rem;
}

.search-bar .search-inner .form-group.tieude:before {
	content: "\f11c";
}

.search-bar .search-inner .form-group.noidung:before {
	content: "\f0b1";
}

.search-bar .search-inner .form-group.nganhnghe:before {
	content: "\f19d";
}

.search-bar .search-inner .form-group.diadiem:before {
	content: "\f3c5";
}

.search-bar .search-inner .form-group.time:before {
	content: "\f017";
}

.search-bar .search-inner .form-group.type:before {
	content: "\f017";
}

.search-bar .search-inner .form-group.experience:before {
	content: "\f38a";
}

.search-bar .search-inner .form-group.trinhdo:before {
	content: "\f38a";
}

.search-bar .search-inner .form-group.ranks:before {
	content: "\f406";
}

.search-bar .search-inner .form-group.salary:before {
	content: "\f2e8";
}

.search-bar .search-inner .form-group select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	background: #fff url(../images/icon-select.png) no-repeat right 10px center;
	padding-right: 25px;
}

.search-bar .btn:not([class*=btn-light]) {
	font-size: .95rem;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border-color: var(--orange-color);
}

.search-bar .btn:not([class*=btn-light]):hover,
.search-bar .btn:not([class*=btn-light]):focus {
	border-color: var(--orange-hover);
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.search-bar .btn i {
	margin-right: 3px;
	font-size: .9rem;
}

.search-bar .btn-sm {
	font-size: .9em;
	outline: none;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	padding-top: 2px;
	padding-bottom: 2px;
}

.search-bar .search-desc {
	color: #fff;
}

.search-bar .search-desc b {
	font-size: 0.95rem;
}

.search-bar .search-action a {
	color: #fff;
}

.search-bar .search-action a i {
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
	margin-right: 2px;
}

.search-bar .search-action a[aria-expanded="true"] i {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

/*
 * End Search
 */
/*
 * Plugin Swiper
 */
.swiper-lazy-preloader {
	-webkit-animation: unset;
	animation: unset;
	border: 0;
	background-image: url("../images/loading.gif");
	background-size: cover;
}

.swiper-banner [class*=swiper-button] {
	z-index: 2;
	background: rgba(0, 0, 0, 0.3);
	font-size: 36px;
	width: 30px;
	height: 50%;
	min-height: 60px;
	max-height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.swiper-banner [class*=swiper-button]:after {
	display: none;
}

.swiper-banner .swiper-button-prev {
	left: -30px;
}

.swiper-banner .swiper-button-next {
	right: -30px;
}

.swiper-banner:hover .swiper-button-prev {
	left: 0;
}

.swiper-banner:hover .swiper-button-next {
	right: 0;
}

.swiper-banner [class*=swiper-button]:hover,
.swiper-banner [class*=swiper-button]:focus {
	background: rgba(0, 0, 0, .8);
}

.swiper-pagination {
	position: relative;
	bottom: 0;
}

.swiper-pagination-bullet {
	height: 14px;
	width: 14px;
	margin: 0 5px;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*
 * End plugin Swiper
 */
/* Banner card */
.wrapperBanner-info {
	/*padding-bottom: 40px;*/
}

.wrapperBanner-info .swiper-slide .card {
	max-width: 85%;
	margin: -100px auto 0;
	background-color: rgba(255, 255, 255, .9);
	border-radius: .45rem;
	padding: 15px;
}

.wrapperBanner-info .swiper-slide .card .card-logo {
	display: flex;
	align-items: center;
	height: 100%;
}

.wrapperBanner-info .swiper-slide .card .card-logo img {
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #ddd;
	background-color: #fff;
}

.wrapperBanner-info .swiper-slide .card .card-body {
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 0;
}

.wrapperBanner-info .swiper-slide .card .card-body .card-title {
	margin-bottom: 0;
	color: var(--orange-color);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.6em;
	transition: .2s all ease;
	text-align: center;
}

.wrapperBanner-info .swiper-slide .card .card-body .card-text {
	text-align: center;
	font-size: 1.05em;
}

.wrapperBanner-info .swiper-slide .card .card-body .card-list a {
	font-weight: 700;
	font-size: 1.05em;
	color: var(--blue-color);
	display: inline-block;
	padding: 2px 0;
	transition: .2s all ease;
	text-transform: capitalize;
}

.wrapperBanner-info .swiper-slide .card .card-body .card-title:hover {
	color: var(--orange-hover);
}

.wrapperBanner-info .swiper-slide .card .card-body .card-list a:hover {
	color: var(--blue-hover);
}

.wrapperBanner-info .swiper-container .swiper-pagination {
	bottom: -10px;
}

.wrapperBanner-info .swiper-container .swiper-pagination .swiper-pagination-bullet {
	margin: 0 6px;
}

.wrapperBanner-info .swiper-banner [class*=swiper-button] {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	min-height: auto;
	max-width: 100%;
	background-color: rgba(143, 143, 143, 0.4);
}

.wrapperBanner-info .swiper-banner .swiper-button-prev {
	left: -52px;
}

.wrapperBanner-info .swiper-banner .swiper-button-next {
	right: -52px;
}

.wrapperBanner-info .swiper-banner:hover .swiper-button-prev {
	left: 5px;
}

.wrapperBanner-info .swiper-banner:hover .swiper-button-next {
	right: 5px;
}

.wrapperBanner-info .swiper-banner [class*=swiper-button]:hover {
	background-color: rgba(143, 143, 143, .7);
}

.wrapperBanner-info .background-cover {
	background: #fff center center/cover no-repeat;
	width: 100%;
	padding-top: 25%;
	border-radius: .45rem;
	display: block;
}

/* End banner card */
/*
 * 4 Box chưa đăng nhập
 */
.wrapperNoLogin .card {
	border-color: #eee;
	border-radius: 0;
}

.wrapperNoLogin .card .card-body .card-icon {
	color: var(--blue-color);
	font-size: 3rem;
}

.wrapperNoLogin .card .card-body .card-title {
	color: var(--blue-color);
}

.wrapperNoLogin .card .card-body .card-text {
	color: #888;
}

.hover-blue:hover .blue-color,
.hover-blue:hover .card-text {
	color: #fff !important;
}

/*
 * End 4 Box chưa đăng nhập
 */
/*
 * Nhà tuyển dụng - Trang chủ
 */
.image-employer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	flex-direction: column;
	height: auto;
	width: 100%;
	background: #fff;
	margin: 10px auto;
	box-shadow: 0px 0px 2px 0.25px #1D1B2112, 0px 1.5px 10px 0px #1D1B2114;
	border-radius: .5rem;
	border: 1px solid transparent !important;
	transition: .3s all ease;
	padding: 5px 15px !important;
}

.image-employer:hover {
	border-color: var(--blue-color) !important;
}

.image-employer img {
	max-height: 100%;
	max-width: 100%;
}

.image-employer .image-employer_desc {
	margin-top: 5px;
	text-align: center;
	color: #414045;
	font-size: .8rem;
}

/*
 * End nhà tuyển dụng - trang chủ
 */
/*
 * Card
 */
.card-item .card-header {
	background-color: var(--blue-color);
	border-color: var(--blue-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 12px;
	padding-bottom: 12px;
}

.card-item .card-header .card-header-title {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}

.card-item .card-header .card-header-title > span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.2rem;
}

.card-item .card-header .card-header-readmore a {
	text-decoration: none;
	color: #fff;
	font-size: .9rem;
	-webkit-transition: .3s all ease-in;
	-o-transition: .3s all ease-in;
	transition: .3s all ease-in;
}

.card-item .card-header .card-header-readmore a:hover {
	color: var(--orange-color);
}

/*
 * Card việc làm tuyển gấp
 */
.card-item .boxItem {
	border-bottom: 4px solid rgba(0, 0, 0, .125);
	font-size: 14px;
}

.card-item .boxItem .boxItemHeader {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 10px;
	background: rgba(0, 146, 255, 0.08);
}

.card-item .boxItem .boxItemHeader .boxItemAvatar {
	width: 70px;
	height: 70px;
	overflow: hidden;
}

.card-item .boxItem .boxItemHeader .boxItemAvatar a {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.card-item .boxItem .boxItemHeader .boxItemContent {
	padding-left: 1rem;
	width: calc(100% - 70px);
}

.card-item .boxItem .boxItemHeader .boxItemContent .boxItemTitle a {
	color: var(--orange-color);
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	vertical-align: top;
	text-transform: uppercase;
	line-height: 26px;
	font-size: 1.2em;
}

.card-item .boxItem .boxItemHeader .boxItemContent .boxItemTitle a:hover {
	color: var(--blue-color);
}

.card-item .boxItem .boxItemHeader .boxItemContent .boxItemAddress {
	line-height: 24px;
	font-size: 1.03em;
}

.card-item .boxItem .boxItemHeader .boxItemContent .boxItemInfo {
	color: #353535;
	line-height: 23px;
	font-size: 1em;
}

.card-item .boxItem .boxItemHeader .boxItemContent .boxItemInfo .boxItemInfo-item i {
	width: 20px;
}

.card-item .boxItem .boxItemList {
	position: relative;
}

.card-item .boxItem .boxItemList:not(:first-of-type):before {
	position: absolute;
	content: "";
	display: block;
	top: 0;
	left: 15px;
	width: calc(100% - 30px);
	border-bottom: 1px dotted #d1d1d1;
}

.card-item .boxItem .boxItemList a {
	color: var(--blue-color);
	text-transform: capitalize;
}

/*
 * Card box hồ sơ ứng viên
 */
.wrapperUngVien .card-item .card-body {
	background-color: #f9f9f9;
	padding: .5rem;
}

.ungVienItem {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: .5rem;
	border: 1px solid #d1d1d1;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .1);
	box-shadow: 0 0 2px rgba(0, 0, 0, .1);
	background-color: #fff;
	margin-bottom: 10px;
}


/* Nâng cấp hồ sơ ứng viên */
.ungVienItem .ungVienAvatar {
	width: 80px;
}

.ungVienItem .ungVienAvatar .ungVienAvatar-inner {
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 100%;
	border: 1px solid #d1d1d1;
	background-color: #fff;
	padding: .15rem;
}

.ungVienItem .ungVienAvatar .boxItemBackground {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 100%;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}


.ungVienItem .ungVienAvatar .ungVienAvatar-rating {
	display: flex;
	margin-top: 5px;
}

.ungVienItem .ungVienAvatar .ungVienAvatar-rating .rating__icon {
	pointer-events: none;
}

.ungVienItem .ungVienAvatar .ungVienAvatar-rating .rating__label {
	cursor: pointer;
	padding: 0 0.1em;
	font-size: .8em;
	margin-bottom: 0;
}

.ungVienItem .ungVienAvatar .ungVienAvatar-rating .rating__icon--star {
	color: var(--orange-color);
}

.ungVienItem .ungVienAvatar .ungVienAvatar-rating .rating__label.rating__checked ~ .rating__label .rating__icon--star {
	color: #ddd;
}

.ungVienItem .ungVienAvatar .ungVienAvatar-rating .rating__label--half {
	padding-right: 0;
	margin-right: -14.12px;
	z-index: 2;
}

/* End nâng cấp hồ sơ ứng viên*/

.ungVienItem .ungVienContent {
	width: calc(100% - 80px);
	padding-left: .5rem;
}

.ungVienItem .ungVienContent .ungVienJob {
	height: 24px;
	line-height: 24px;
}

.ungVienItem .ungVienContent .ungVienJob a {
	color: var(--blue-color);
	font-weight: bold;
	text-decoration: none;
	margin: .15rem 0;
	display: inline-block;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	text-transform: capitalize;
}

.ungVienItem .ungVienContent .ungVienName a {
	color: #353535;
	text-decoration: none;
	margin: .15rem 0;
	display: inline-block;
	text-transform: capitalize;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	text-transform: capitalize;
}

.ungVienItem .ungVienContent .ungVienName *:nth-last-child(2) {
	max-width: calc(100% - 18px);
}

.ungVienItem .ungVienContent .ungVienInfo i {
	color: var(--blue-color);
	width: 18px;
}

.ungVienItem .ungVienContent .ungVienInfo .ungVienInfoItem {
	color: #353535;
	vertical-align: middle;
}

.wrapperUngVien .card.card-item {
	border: 0;
}

.wrapperUngVien .card-item .card-body {
	padding: 0;
	padding-top: 10px;
	background: var(--bgbody);
}

.wrapperUngVien .card-item .card-body .ungVienContent .ungVienJob a:hover,
.wrapperUngVien .card-item .card-body .ungVienContent .ungVienName a:hover {
	color: var(--blue-color);
}

/*
 * Card box việc làm
 */
/*
 * Có avatar
 */
.card-body > ul.card-overflow-image {
	padding: 0 1rem;
	min-height: calc(91.41px * 5 - 1px);
	overflow-y: scroll;
}

.card-body > ul.card-image > li {
	padding-left: 0;
	padding-right: 0;
}

.card-body > ul.card-image > li > .boxItemContent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.card-body > ul.card-image > li > .boxItemContent .boxItemAvatar {
	width: 50px;
	height: 50px;
	overflow: hidden;
	background-color: #fff;
}

.card-body > ul.card-image > li > .boxItemContent .boxItemAvatar a {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	padding-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.card-body > ul.card-image > li > .boxItemContent .boxItemInfo {
	width: calc(100% - 50px);
	padding-left: 1rem;
}

.card-body > ul.card-image > li > .boxItemContent .boxItemInfo .boxItemName {
	line-height: 1.4;
}

.card-body > ul.card-image > li > .boxItemContent .boxItemInfo .boxItemName a {
	text-decoration: none;
	color: #444;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	vertical-align: top;
	text-transform: capitalize;
}

.card-body > ul.card-image > li > .boxItemContent .boxItemInfo .boxItemName a:hover {
	color: var(--blue-color);
}

.card-body > ul.card-image > li > .boxItemContent .boxItemInfo .boxItemName label {
	padding: 0 .4rem;
	border-radius: 2px;
	background-color: #D9534F;
	color: #fff;
	font-size: .68rem;
	font-weight: 400;
	margin-bottom: 0;
	margin-right: .2rem;
	display: inline-block;
}

.card-body > ul.card-image > li > .boxItemContent .boxItemInfo .boxItemAddress {
	text-transform: uppercase;
	vertical-align: middle;
}

.card-body > ul.card-image > li > .boxItemContent .boxItemInfo .boxItemDesc .boxItemDescChild i {
	width: 18px;
	padding-left: 1px;
}

/*
 * Không có avatar
 */
.card-item .card-body > ul.card-noImage > li {
	padding: .54rem 0;
	border-bottom: 1px dotted #d1d1d1;
}

.card-item .card-body > ul.card-noImage > li > a {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-decoration: none;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
}

.card-item .card-body > ul.card-noImage > li > a:hover {
	color: var(--blue-color);
}

.card-body > ul.card-overflow-noImage {
	padding: 0 1rem;
	max-height: calc(39.95px * 10 - 1px);
	overflow-y: scroll;
}

/*
 * End card
 */
/*
 * Footer
 */
.footer-main {
	font-size: 18px;
}

.footer-inner ul li {
	margin-bottom: .15rem;
}

.icon-footer > i {
	font-size: 110% !important;
}

.img-store > div {
	width: 100px;
	height: 34px;
	display: block;
}

.img-store > div.store-chplay {
	background: url('../images/store-app.png') 0 top no-repeat;
	background-size: cover;
}

.img-store > div.store-appstore {
	background: url('../images/store-app.png') 0 bottom no-repeat;
	background-size: cover;
}

.img-bct:first-of-type {
	margin-right: 10px;
}

.img-bct img {
	max-height: 50px;
	width: auto;
}

.img-dmca img {
	max-height: 40px;
	width: auto;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-social .footer-social_item {
	border-radius: 8px;
	height: 32px;
	width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-color);
	background: var(--white);
	font-size: 1.075rem;
}

.footer-social .footer-social_item svg path {
	fill: var(--blue-color);
}

/*
 * End Footer
 */
/*
 * Start Trang tìm kiếm
 */
.page-search .search-inner .search-item {
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
}

.page-search .search-inner .search-item:hover {
	/*background: #f5fff4*/
}

.page-search .search-inner .search-item .search-avatar {
	overflow: hidden;
	margin: 0 auto;
}

.page-search .search-inner .search-item .search-avatar .boxItemBackground {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	padding-top: 75px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.page-search .search-inner .search-item:not(:first-of-type) {
	border-top: 1px solid #dee2e6 !important;
	padding-top: 15px;
	margin-top: 15px;
}

.page-search .search-inner .search-item .search-review a i {
	color: #888;
}

.page-search .search-inner .search-item .search-review a i.selected {
	color: #f5db4b;
}

.page-search .search-inner .search-item .search-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.page-search .search-inner .search-item .search-content .search-name {
	position: relative;
}

.page-search .search-inner .search-item .search-content .search-name a {
	vertical-align: top;
	color: #444;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	text-transform: capitalize;
}

.page-search .search-inner .search-item .search-content .search-name[class*=is] {
	padding-right: 30px;
	max-width: 100%;
	width: max-content;
}

.page-search .search-inner .search-item .search-content .search-name.is-vip a {
	color: var(--orange-color) !important;
}

.page-search .search-inner .search-item .search-content .search-name[class*=is]::before {
	position: absolute;
	right: 0;
	top: 2px;
	width: 23px;
	height: 13px;
	content: "";
	display: block;
}

.page-search .search-inner .search-item .search-content .search-name.is-vip::before {
	/*background: url('/public/upload/icon/vip.jpg') center center/cover no-repeat !important;*/
}

.page-search .search-inner .search-item .search-content .search-name.is-new::before {
	background: url('/public/upload/icon/new.gif') center center/cover no-repeat;
}

.page-search .search-inner .search-item .search-content .search-name a label {
	padding: 0 .4rem;
	border-radius: 2px;
	background-color: #D9534F !important;
	color: #fff;
	font-size: .7rem;
	font-weight: 400;
	margin-bottom: 0;
	margin-right: .2rem;
	display: inline-block;
	position: relative;
	top: -2px;
}

.page-search .search-inner .search-item .search-content .search-name:hover {
	color: var(--blue-color);
}

.page-search .search-inner .search-item .search-content .search-desc .search-desc-item i {
	padding-left: 1px;
}

.page-search .search-inner .search-item .search-save {
	width: 70px;
	flex-shrink: 0;
	white-space: nowrap;
}

.page-search .search-inner .search-item .search-save a {
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
}

.page-search .search-inner .search-item .search-save a:hover {
	color: var(--blue-color);
}

.page-search .search-inner .search-item .search-address {
	display: flex;
	align-content: center;
	justify-content: space-between;
}

.page-search .search-inner .search-item .search-address > a {
	width: auto;
}

.page-search .search-inner .search-item .search-address > a .icon-pro {
	background: linear-gradient(117.75deg, #e88a1e 4.51%, #fff4de 91.6%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 19px;
	padding: 1px;
	width: 35px;
	border-radius: 111px;
	position: relative;
	color: #513101;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	margin-right: 5px;
	flex-shrink: 0;
}

.page-search .search-inner .search-item .search-address > a .icon-pro + * {
	color: #f5ba0a;
}

.page-search .search-inner .search-item .search-meta {
	margin-top: 2px;
}

.page-search .search-inner .search-item .search-meta .search-meta_content {
	position: relative;
}

.page-search .search-inner .search-item .search-meta .search-meta_content > span {
	position: absolute;
	left: 54px;
	top: calc(50% + 0.5px);
	transform: translateY(-50%);
	font-size: 13px;
	color: #EF4444;
	font-weight: 500;
	display: block;
	line-height: 1;
}

.filter-title {
	background-color: #f5fff4;
}

.filter-title a {
	display: inline-block;
	width: 30px;
	height: 21px;
	text-align: right;
	color: #343434;
	font-size: .85rem;
}

.filter-title a i {
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
}

.filter-title a[aria-expanded="false"] i {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.filter-list ul li a {
	padding-right: 20px;
	position: relative;
}

.filter-list ul li input[type=radio] + label a:after {
	content: "\f00d";
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 1.05em;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: none;
	cursor: pointer;
	color: #c50c0c;
}

.btn-group-search .btn-group button {
	box-shadow: none;
}

.btn-group-search .btn-group .filter-tab:not(.btn-primary){
	color: #fff;
	background-color: #b3cde4;
	border-color: #b3cde4;
}

.btn-group-search .btn-group a.btn-secondary {
	color: #fff;
	background-color: #b3cde4 !important;
	border-color: #b3cde4 !important;
	outline: none !important;
	box-shadow: none !important;
}

.filter-list ul li input[type=radio]:checked + label a:after {
	display: inline-block;
}

.filter-list .form-control {
	border-radius: 0;
	font-size: 1em;
	padding-left: 5px;
}

.vieclam-select2 + .select2-container {
	padding-left: 35px;
	width: 100% !important;
}

.vieclam-select2 + .select2-container .select2-selection {
	border-radius: 0;
	height: 37px;
	border-color: #ced4da;
	font-size: .95rem;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	width: 100%;
}

.vieclam-select2 + .select2-container .select2-selection--multiple .select2-selection__rendered {
	height: 37px;
	line-height: 37px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow-y: hidden;
	overflow-x: auto;
}

.vieclam-select2 + .select2-container .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar {
	height: 4px;
}

.vieclam-select2 + .select2-container .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-track {
	background: #fff;
}

.vieclam-select2 + .select2-container .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-thumb {
	background: #acacac;
}

.vieclam-select2 + .select2-container .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-thumb:hover {
	background: #7b7b7b;
}

.vieclam-select2 + .select2-container--default .select2-selection--multiple .select2-selection__choice {
	margin-top: 0;
	line-height: 1;
	padding: 5px;
}

.vieclam-select2 + .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search--inline {
	width: 100%;
}

.vieclam-select2 + .select2-container .select2-search--inline .select2-search__field {
	margin-top: 0;
	width: 100% !important;
}

.vieclam-select2 + .select2-container .select2-search--inline .select2-search__field::placeholder {
	color: #222;
}

.vieclam-select2 + .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 39px;
	padding-left: 0;
}

.vieclam-select2 + .select2-container .select2-selection--single .select2-selection__arrow {
	top: 6px;
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
}

.select2-search--dropdown .select2-search__field {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.select2-results > .select2-results__options::-webkit-scrollbar {
	width: 5px;
}

.select2-results > .select2-results__options::-webkit-scrollbar-track {
	background: #fff;
}

.select2-results > .select2-results__options::-webkit-scrollbar-thumb {
	background: #8b8b8b;
}

.select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
	background: #7b7b7b;
}

/*
 * End Trang tìm kiếm
 */
/*
 * Start Breadcrumb
 */
ol.breadcrumb {
	margin-bottom: 0;
	padding: 0;
	background-color: transparent;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.breadcrumb-item + .breadcrumb-item::before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-family: "Font Awesome 5 Pro";
	font-weight: 500;
	content: "\f105";
	color: #222;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 12px;
}

ol.breadcrumb .breadcrumb-item a {
	text-decoration: none;
	color: var(--blue-color);
	font-size: .9rem;
}

ol.breadcrumb .breadcrumb-item.active {
	overflow: hidden;
}

ol.breadcrumb .breadcrumb-item span {
	color: #121212;
	font-size: .9rem;
}

.breadcrumbInner {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .125);
	padding: .75rem;
}

.recruitment-header .card {
	padding: 10px;
	border-radius: 0;
}

.recruitment-header .card .card-body {
	padding: 0 15px;
	width: calc(100% - 180px);
	position: relative;
	z-index: 2;
}

.recruitment-header .card .card-body.card-lock {
	padding: 0 15px;
	width: 100%;
	text-align: center;
}

.recruitment-header .card .card-body.card-lock .card-title {
	margin-bottom: 0;
	color: red;
	padding: 15px 0;
}

.recruitment-header .card-avatar {
	width: 180px;
}

.recruitment-header .card-avatar .card-image {
	width: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.recruitment-header .card-body .card-title {
	color: var(--blue-color);
	font-size: 1.15rem;
	margin-bottom: .4rem;
	line-height: 1.4;
	font-weight: 700;
}

.recruitment-header .card-body .card-text {
	font-weight: 700;
	color: #232323;
	margin-bottom: .4rem;
	font-size: 1rem;
}

.recruitment-header .card-body .card-text a {
	font-size: inherit;
	color: inherit;
	text-decoration: none;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	text-transform: uppercase;
}

.recruitment-header .card-body .card-text a:hover {
	color: var(--blue-color);
}

.recruitment-header .card-body .card-subtext {
	font-size: .9rem;
	color: #888;
	margin-bottom: .4rem;
}

.recruitment-header .card-body .card-list {
	border-bottom: 0;
	padding: 0;
	font-size: .95rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-right: 30px;
}

.recruitment-header .card-body .card-list p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0;
}

.recruitment-header .card-body .card-list p span {
	font-weight: 600;
}

.recruitment-header .card-body .card-list p:last-of-type {
	padding-left: 30px;
}

.recruitment-header .card-body .card-list b {
	margin-right: .3rem;
}

.recruitment-header .card-list-button .card-list-item + .card-list-item {
	margin-top: .5rem !important;
}

.recruitment-body .recruitment-tab ul li {
	margin-right: 3rem;
	padding-bottom: .5rem;
	border-bottom: 2px solid transparent;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
}

.recruitment-body .recruitment-tab ul li a {
	font-size: .95rem;
	text-transform: uppercase;
	color: #232323;
	text-decoration: none;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
}

.recruitment-body .recruitment-tab ul li.active,
.recruitment-body .recruitment-tab ul li:hover {
	border-bottom-color: var(--blue-color);
}

.recruitment-body .recruitment-tab ul li.active a,
.recruitment-body .recruitment-tab ul li:hover a {
	font-weight: 700;
	color: var(--blue-color);
}

.recruitment-body .recruitment-content .recruitment-info {
	font-size: .95rem;
	line-height: 1.4;
	position: relative;
}

.recruitment-body .recruitment-content .recruitment-info span:first-of-type {
	color: var(--blue-color);
	margin-right: 5px;
	font-size: 1rem;
	width: 18px;
	display: inline-block;
}

.recruitment-body .recruitment-content .recruitment-info span:last-of-type {
	color: #3b3b3b;
}

.recruitment-body .recruitment-content .recruitment-info a {
	text-decoration: underline;
}

.recruitment-header .img-xacthuc {
	position: absolute;
	top: 0;
	right: 50px;
	width: 125px;
	z-index: 1;
}

.recruitment-body .recruitment-content .recruitment-benefit ul li {
	width: 32%;
	margin-bottom: .5rem;
	font-size: .85rem;
	line-height: 1.4;
}

.recruitment-body .recruitment-content .recruitment-benefit ul li span {
	color: var(--blue-color);
	margin-right: 5px;
	font-size: 1rem;
	width: 18px;
	display: inline-block;
}

.recruitment-body .recruitment-content .recruitment-benefit ul li span i {
	position: relative;
	top: 1px;
}

.recruitment-body .recruitment-apply .apply-inner {
	padding: 10px;
	border: 1px solid var(--orange-color);
	border-left-width: 8px;
	overflow: hidden;
	font-size: .9rem;
}

.recruitment-body .recruitment-apply .apply-inner a {
	margin-left: .5rem;
	max-width: 150px;
	display: inline-block;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	color: #fff;
	padding: 7px 20px;
	font-size: .85rem;
	text-align: center;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	text-decoration: none !important;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.recruitment-body .recruitment-apply .apply-contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	font-size: .9rem;
}

.recruitment-body .recruitment-apply .apply-contact a, .recruitment-body .recruitment-apply .apply-contact span {
	font-weight: 700;
	font-size: .95rem;
	text-decoration: none;
}

.recruitment-body .recruitment-apply .apply-contact span {
	color: #E02831
}

.recruitment-body .recruitment-share {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	align-content: center;
}

.recruitment-body .recruitment-share p {
	margin-bottom: 0;
	margin-right: 1.25rem;
}

.recruitment-body .recruitment-share ul li {
	margin: 0 6px;
	font-size: 1rem;
	position: relative;
}

.recruitment-body .recruitment-share ul li a {
	display: inline-block;
	color: #7d7c7c;
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
}

.recruitment-body .recruitment-share ul li > a {
	display: inline-block;
	line-height: 1;
}

.recruitment-body .recruitment-share ul li iframe {
	display: none;
}

.recruitment-body .recruitment-share ul li.share-facebook:hover a {
	color: #139EF8;
}

.recruitment-body .recruitment-share ul li.share-linkedin:hover a {
	color: #0272B1;
}

.recruitment-body .recruitment-share ul li.copy-link:hover a {
	color: #232323;
}

.recruitment-body .recruitment-share ul li.copy-link input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	visibility: hidden;
}

.recruitment-body .recruitment-share ul li.share-google:hover a {
	color: #EA4335;
}


.recruitment-body .recruitment-layer {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .8);
	z-index: 2;
	text-align: center;
}

.recruitment-body .recruitment-layer p {
	color: red;
	font-size: 1.5rem;
	margin-top: 40px;
	line-height: 1.4;
	font-weight: 700;
	padding-top: 60px;
	-webkit-transform: rotate(-15deg);
	-ms-transform: rotate(-15deg);
	transform: rotate(-15deg);
}

.recruitment-list .list-item:not(:last-of-type) {
	margin-bottom: 10px;
}

.recruitment-list .list-item .list-item-content .list-item-name {
	height: 22px;
	line-height: 22px;
}

.recruitment-list .list-item .list-item-content .list-item-name a {
	vertical-align: top;
	color: var(--blue-color);
	text-transform: capitalize;
}

.recruitment-list .list-item .list-item-content .list-item-name a label {
	padding: 0 .4rem;
	border-radius: 2px;
	background-color: #D9534F;
	color: #fff;
	font-size: .68rem;
	font-weight: 400;
	margin-bottom: 0;
	margin-right: .2rem;
	display: inline-block;
	vertical-align: middle;
}

.recruitment-list .list-item .list-item-content .list-item-address a label {
	padding: 0 .4rem;
	border-radius: 2px;
	background-color: #454545 !important;
	color: #fff;
	font-size: .7rem;
	font-weight: 400;
	margin-bottom: 0;
	margin-left: .4rem;
	display: inline-block;
	position: relative;
	top: -2px;
}

.recruitment-list .list-item .list-item-content .list-item-desc .list-item-desc-item i {
	padding-left: 1px;
	width: 16px;
}

.recruitment-list .list-item:not(:first-of-type) {
	border-top: 1px solid #dee2e6 !important;
	margin-top: 1rem;
	padding-top: 1rem;
}

.recruitment-list .list-item .red-color {
	padding-left: .1rem;
}

.recruitment-list .recruiment-loading {
	position: relative;
	background-color: #fff;
	padding: 30px 15px;
}

.recruitment-list .recruiment-loading .loading {
	left: 50%;
	position: absolute;
	top: 50%;
	width: 64px;
	height: 32px;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.recruitment-list .recruiment-loading .loading div {
	position: absolute;
	top: calc(50% - 4px);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1790d4b0;
	-webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.recruitment-list .recruiment-loading .loading div:nth-child(1) {
	left: 6px;
	-webkit-animation: modalFull-loading1 0.6s infinite;
	animation: modalFull-loading1 0.6s infinite;
}

.recruitment-list .recruiment-loading .loading div:nth-child(2) {
	left: 6px;
	-webkit-animation: modalFull-loading2 0.6s infinite;
	animation: modalFull-loading2 0.6s infinite;
}

.recruitment-list .recruiment-loading .loading div:nth-child(3) {
	left: 26px;
	-webkit-animation: modalFull-loading2 0.6s infinite;
	animation: modalFull-loading2 0.6s infinite;
}

.recruitment-list .recruiment-loading .loading div:nth-child(4) {
	left: 45px;
	-webkit-animation: modalFull-loading3 0.6s infinite;
	animation: modalFull-loading3 0.6s infinite;
}

@-webkit-keyframes modalFull-loading1 {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes modalFull-loading1 {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes modalFull-loading3 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

@keyframes modalFull-loading3 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

@-webkit-keyframes modalFull-loading2 {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(19px, 0);
		transform: translate(19px, 0);
	}
}

@keyframes modalFull-loading2 {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(19px, 0);
		transform: translate(19px, 0);
	}
}

.recruitment-sidebar .list-item:first-of-type {
	padding-top: 1rem;
}

.recruitment-sidebar .list-item:last-of-type {
	padding-bottom: 1rem;
}

.recruiment-sidebar-title {
	text-align: center;
	font-weight: 700;
	color: #232323;
	font-size: 1rem;
	padding: .75rem 0;
	border-bottom: 1px solid #d1d1d1;
	text-transform: uppercase;
	line-height: 1.5;
}

.recruitment-sidebar-map iframe,
.recruitment-sidebar-map .map {
	width: 100%;
	height: 200px;
	vertical-align: middle;
	border: 0;
}

.recruitment-sidebar-address span {
	word-break: break-word;
}

.recruitment-sidebar-address span i {
	width: 18px;
}

.recruitment-sidebar-address a {
	overflow-wrap: anywhere;
}

.recruitment-sidebar-address a,
.recruitment-sidebar-address div {
	line-height: 1.7;
}

/*
 * End Trang tuyển dụng
 */
/*
 * Start trang công ty
 */
.company-header {
	position: relative;
}

.company-header .company-lock {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: rgba(255, 255, 255, .9);
}

.company-header .company-lock .lock-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-15deg);
	-ms-transform: translate(-50%, -50%) rotate(-15deg);
	transform: translate(-50%, -50%) rotate(-15deg);
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.company-header .company-lock .lock-inner span {
	width: 120px;
	height: 120px;
	background: #fff;
	border-radius: 50%;
	color: #e32e0e;
	border: 2px solid #e32e0e;
	font-size: 4em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.company-header .company-lock .lock-inner p {
	margin-left: 10px;
	margin-bottom: 0;
	font-size: 2.5em;
	color: #e32e0e;
	font-weight: 600;
}

.company-header .company-banner {
	position: relative;
}

.company-header .company-banner .backdrop {
	position: absolute;
	width: 100%;
	z-index: 1;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	filter: blur(1.5px);
}

.company-header .company-banner a {
	display: block;
	z-index: 2;
	position: relative;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	padding-top: 25%;
}

.company-header .company-info .company-info-inner {
	position: relative;
}

.company-header .company-info .company-info-inner .img-xacthuc {
	position: absolute;
	top: 85px;
	right: 0;
	width: 125px;
	z-index: 1;
}

.company-header .company-info .company-avatar {
	width: 180px;
}

.company-header .company-info .company-avatar a {
	width: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.company-header .company-info .company-content {
	width: calc(100% - 180px);
	padding-left: 30px;
	position: relative;
	z-index: 2;
}

.company-header .company-info .company-content .company-address,
.company-header .company-info .company-content .company-mst,
.company-header .company-info .company-content .company-phone,
.company-header .company-info .company-content .company-website,
.company-header .company-info .company-content .company-quimo,
.company-header .company-info .company-content .company-loaihinh,
.company-header .company-info .company-content .company-linhvuc {
	font-size: .95rem;
	color: #777;
	margin-bottom: .3rem;
}

.company-header .company-info .company-content .company-address span,
.company-header .company-info .company-content .company-mst span,
.company-header .company-info .company-content .company-phone span,
.company-header .company-info .company-content .company-website span,
.company-header .company-info .company-content .company-quimo span,
.company-header .company-info .company-content .company-loaihinh span,
.company-header .company-info .company-content .company-linhvuc span {
	padding-right: .2rem;
}

.company-header .company-info .company-content .company-website > a {
	overflow-wrap: anywhere;
}

.company-header .company-info .company-content .company-phone label {
	margin-bottom: 0;
	padding: 4px 6px;
}

.company-header .company-info .company-content .w-20 {
	width: 20px;
}

.company-header .company-info .company-follow-button .btn button-theme {
	width: auto;
	padding: 10px 55px;
	font-size: 1.1rem;
	font-weight: 600;
}

.company-header .company-info .company-follow-social ul li a {
	display: inline-block;
	margin: 0 5px;
	width: 34px;
	height: 34px;
	border: 1px solid var(--blue-hover);
	color: var(--blue-hover);
	background-color: #fff;
	line-height: 34px;
	font-size: .9rem;
	border-radius: 100%;
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
}

.company-header .company-info .company-follow-social ul li.social-facebook:hover a {
	background: #139EF8;
	border-color: #139EF8;
	color: #fff;
}

.company-header .company-info .company-follow-social ul li.social-linkedin:hover a {
	background: #0272B1;
	border-color: #0272B1;
	color: #fff;
}

.company-header .company-info .company-follow-social ul li.social-youtube:hover a {
	background: #EA4335;
	border-color: #EA4335;
	color: #fff;
}

.company-header .company-info .company-content .company-info-bottom {
	padding-top: .6rem;
	margin-top: .6rem;
	border-top: 1px solid #d1d1d1;
}

.company-header .company-info .company-content .company-info-bottom .company-info-list ul li {
	line-height: 1.4;
}

.company-header .company-info .company-content .company-info-bottom .company-info-list ul li i {
	width: 18px;
}

.company-job .company-job-list .list-item .list-item-content .list-item-name {
	height: 22px;
	line-height: 22px;
}

.company-job .company-job-list .list-item .list-item-content .list-item-name a {
	vertical-align: top;
	color: var(--blue-color);
	text-transform: capitalize;
}

.company-job .company-job-list .list-item .list-item-content .list-item-name a label {
	padding: 0 .5rem;
	border-radius: 2px;
	background-color: #D9534F !important;
	color: #fff;
	font-size: .7rem;
	font-weight: 400;
	margin-bottom: 0;
	margin-right: .2rem;
	display: inline-block;
	position: relative;
	top: -1px;
}

.company-job .company-job-list .list-item:not(:first-of-type) {
	border-top: 1px solid #dee2e6 !important;
	margin-top: 1rem;
	padding-top: 1rem;
}

.company-job .company-job-list .list-item .list-item-content .list-item-desc .list-item-desc-item i {
	padding-left: 1px;
}

.company-job .company-job-list .list-item .list-item-content .list-item-address a label {
	padding: 0 .4rem;
	border-radius: 2px;
	background-color: #454545 !important;
	color: #fff;
	font-size: .7rem;
	font-weight: 400;
	margin-bottom: 0;
	margin-left: .4rem;
	display: inline-block;
	position: relative;
	top: -2px;
}

.company-aboutus .aboutus-inner .aboutus-content {
	line-height: 1.55;
	max-height: 533px;
	overflow-y: scroll;
	padding-right: 5px;
}

.aboutus-sidebar .aboutus-sidebar-title {
	text-align: center;
	font-weight: 700;
	color: #232323;
	font-size: 1rem;
	padding: .75rem 0;
	border-bottom: 1px solid #d1d1d1;
	text-transform: uppercase;
}

.aboutus-sidebar .aboutus-sidebar-map {
	padding-top: 0 !important;
}

.aboutus-sidebar .aboutus-sidebar-map iframe,
.aboutus-sidebar .aboutus-sidebar-map .map {
	width: 100%;
	height: 200px;
	vertical-align: middle;
	border: 0;
}

.aboutus-sidebar .aboutus-sidebar-video iframe {
	width: 100%;
	height: 100%;
	vertical-align: middle;
	border: 0;
}

.company-image .image-inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.company-image .image-inner a {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	padding-top: 50%;
	display: block;
}

/*
 * End Công ty
 */
/*
 * Start modal
 */
.modalOveride .modal-content {
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .7);
	box-shadow: 0 0 20px rgba(0, 0, 0, .7);
	background-clip: unset;
}

.modalOveride .modal-content .modal-header {
	position: relative;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: var(--blue-hover);
	color: var(--white);
	border-radius: 0;
}

.modalOveride .modal-content .modal-header .modal-title {
	letter-spacing: .5px;
	font-size: 1.1rem;
	text-transform: uppercase;
}

.modalOveride .modal-content .modal-header .close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
	height: 100%;
	width: 50px;
	background: #276fa6;
	color: #fff;
	text-shadow: none;
	font-size: 1.2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: .9;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
}

.modalOveride .modal-content .modal-header .close:hover {
	opacity: 1;
}

#modal_register .modal-content .modal-body,
#modal_login .modal-content .modal-body {
	background: #eee;
}

.modalOveride .modal-content .modal-body .bodyTitle {
	font-size: 1rem;
	color: #232323;
	font-weight: 500;
}

.modalOveride .modal-content .modal-body .modalOverideInner {
	background: #fff;
	border: 1px solid #d1d1d1;
	padding: 1rem 1rem;
	overflow: hidden;
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
}

#modal_forgot .modal-content .modal-body .modalOverideInner,
#modal_doiDiem .modal-content .modal-body .modalOverideInner {
	background: transparent;
	border: 0;
	padding: 0;
	overflow: hidden;
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
}

.modalOveride .modal-content .modal-body .modalOverideInner .modalOverideContent {
	z-index: 2;
	padding-bottom: 55px;
}

.modalOveride .modal-content .modal-body .modalOverideInner .modalOverideContent .modalOverideList ul li {
	margin-bottom: .5rem;
	color: #565656;
}

.modalOveride .modal-content .modal-body .modalOverideInner .modalOverideButton {
	bottom: 1rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 3;
}

.modalOveride .modal-content .modal-body .modalOverideInner .modalOverideButton .button-theme {
	border-radius: 0;
}

.modalOveride .modal-content .modal-body .modalOverideInner .modalOverideButton .button-theme.hide-button {
	visibility: hidden;
	opacity: 0;
}

.modalOveride .modal-content .modal-body .modalOverideInner .modalOverideIcon {
	padding-top: 30%;
	color: #f1f1f1;
	top: calc(50% - 22.5px);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 30%;
}

.modalOverideForm .form-input-animation {
	position: relative;
	height: 44px;
	overflow: hidden;
	font-size: 16px;
	margin-bottom: 1rem;
}

.modalOverideForm .form-input-animation input {
	height: 100%;
	width: 100%;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border: none;
	padding-top: 15px;
	color: #1f2d3d;
	font-size: 1em;
	padding-bottom: 1px;
	margin-top: 0;
}

.modalOverideForm .form-textarea-animation {
	position: relative;
	height: 66px !important;
	overflow: hidden;
	font-size: 16px;
	margin-bottom: 1rem;
}

.modalOverideForm .form-textarea-animation textarea {
	height: 44px;
	margin-top: 18px;
	width: 100%;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border: none;
	padding: 0;
	color: #1f2d3d;
	font-size: 16px;
}

.modalOverideForm .form-input-animation input[type='file'] {
	opacity: 0;
	visibility: hidden;
	height: 0;
	display: none;
}

.modalOverideForm .form-input-animation input.form-pass {
	padding-right: 20px;
}

.modalOverideForm .form-input-animation label {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-bottom: 1px solid #bdbdbf;
	pointer-events: none;
	margin-bottom: 0;
}

.modalOverideForm .form-input-animation label::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	border-bottom: 2px solid var(--blue-color);
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	width: 100%;
	height: 100%;
	-webkit-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.modalOverideForm .form-input-animation label span {
	position: absolute;
	bottom: 2px;
	left: 2px;
	color: #1f2d3d;
	-webkit-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.modalOverideForm .form-input-animation label span i {
	padding-right: 5px;
	font-size: .85em;
}

.modalOverideForm .form-input-animation input:focus + label::after,
.modalOverideForm .form-input-animation input.valid + label::after,
.modalOverideForm .form-textarea-animation textarea:focus + label::after,
.modalOverideForm .form-textarea-animation textarea.valid + label::after {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.modalOverideForm .form-input-animation input:focus + label span,
.modalOverideForm .form-input-animation input.valid + label span,
.modalOverideForm .form-textarea-animation textarea:focus + label span,
.modalOverideForm .form-textarea-animation textarea.valid + label span {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	font-size: 14px;
	color: #888;
}

.modalOverideForm .form-textarea-animation textarea:focus + label span,
.modalOverideForm .form-textarea-animation textarea.valid + label span {
	-webkit-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
}

.modalOverideForm .form-input-animation .view-password {
	position: absolute;
	bottom: 5px;
	right: 5px;
	color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 14px;
}

.modalOverideForm .form-input-animation .tooltip-info {
	position: absolute;
	bottom: 5px;
	right: 5px;
	color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 14px;
}

.modalOverideForm .custom-control {
	margin-bottom: .5rem;
	font-size: .9rem;
}

.modalOverideForm .custom-control .custom-control-label::before {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border-radius: 0;
	top: 0.2rem;
}

.modalOverideForm .custom-control .custom-control-label::after {
	top: 0.2rem;
}

.modalOveride .modalOverideSubmit .button-theme {
	border-radius: 0;
	min-width: 200px;
	font-weight: 500;
}

.modalOverideForm .login-tuyendung,
.modalOverideForm .login-ungvien {
	display: none;
}

.modalOverideAction {
	padding-top: 30px;
}

.modalOverideForm.fade .modal-dialog {
	-webkit-transition: -webkit-transform .1s ease-in;
	transition: -webkit-transform .1s ease-in;
	-o-transition: transform .1s ease-in;
	transition: transform .1s ease-in;
}

.modalOverideForm.fade .modal-dialog.modal-dialog-zoom {
	-webkit-transform: translate(0, 0) scale(.9);
	-ms-transform: translate(0, 0) scale(.9);
	transform: translate(0, 0) scale(.9);
}

.modalOverideForm.show .modal-dialog.modal-dialog-zoom {
	-webkit-transform: translate(0, 0) scale(1);
	-ms-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
}

.modalOveride .dropzone {
	border: 1px solid #d1d1d1;
	background: #f9f8f9;
	min-height: 80px;
}

.modalOveride .dropzone .dz-message {
	margin: 0;
}

.modalOveride .dropzone #dropzoneDesc img {
	width: 50px;
}

.modalOveride .dropzone #dropzoneDesc .dropzoneContent {
	margin-top: .5rem;
	color: #545454;
	margin-bottom: 0;
}

/* loading */
.lds-ellipsis {
	display: block;
	position: relative;
	width: 64px;
	height: 32px;
	margin: 0 auto;
}

.lds-ellipsis div {
	position: absolute;
	top: calc(50% - 4px);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1790d4b0;
	-webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
	left: 6px;
	-webkit-animation: lds-ellipsis1 0.6s infinite;
	animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
	left: 6px;
	-webkit-animation: lds-ellipsis2 0.6s infinite;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
	left: 26px;
	-webkit-animation: lds-ellipsis2 0.6s infinite;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
	left: 45px;
	-webkit-animation: lds-ellipsis3 0.6s infinite;
	animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes lds-ellipsis1 {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes lds-ellipsis3 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

@keyframes lds-ellipsis3 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

@-webkit-keyframes lds-ellipsis2 {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(19px, 0);
		transform: translate(19px, 0);
	}
}

@keyframes lds-ellipsis2 {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(19px, 0);
		transform: translate(19px, 0);
	}
}

.modal-comment .modal-content {
	border-radius: 12px;
	overflow: hidden;
}

.modal-comment .modal-body {
	padding: 24px;
}

.modal-comment .modal-body .modal-title {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: space-between;
	padding-right: 50px;
	font-size: 1.3rem;
	color: #141414;
	font-weight: 500;
	position: relative;
}

.modal-comment .modal-body .modal-title .modal-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f2f4f5;
	height: 32px;
	width: 32px;
	color: #b3b8bd;
	font-size: 20px;
	border-radius: 50%;
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	padding: 0;
}

.modal-comment .modal-body .modal-desc {
	font-size: 15px;
	margin-top: 15px;
}

.modal-comment .modal-body .modal-form {
	margin-top: 24px;
}

.modal-comment .modal-body .modal-form .form-item .form-label {
	font-size: 15px;
	font-weight: 500;
	color: #262626;
	margin-bottom: 4px;
}

.modal-comment .modal-body .modal-form .form-item .form-control {
	font-size: 15px;
	color: #262626;
	outline: none !important;
	box-shadow: none !important;
}

.modal-comment .modal-body .modal-form .form-item .form-control::placeholder {
	opacity: .7;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox .form-checkbox_item {
	position: relative;
	overflow: hidden;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox .form-checkbox_item input {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	width: 0;
	height: 0;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox .form-checkbox_item label {
	display: flex;
	align-items: center;
	background: #edeff1;
	border-radius: 35px;
	color: #262626;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .01em;
	line-height: 22px;
	margin-bottom: 0;
	padding: 5px 16px;
	text-align: left;
	transition: .3s all ease;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox .form-checkbox_item label:hover {
	background: #e0e3e5;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox .form-checkbox_item input:checked + label {
	background: var(--blue-color);
	color: var(--white);
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox.form-checkbox_images {
	justify-content: center;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox.form-checkbox_images .form-checkbox_item label {
	width: 100px;
	border-radius: 8px;
	border: 1px solid transparent;
	background: var(--white);
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 500;
	padding: 4px;
	color: #adadad;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox.form-checkbox_images .form-checkbox_item .form-checkbox_item__image {
	max-width: 100%;
	width: 48px;
	height: 48px;
	display: block;
	position: relative;
	background: var(--image) center center/48px no-repeat;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: .3s all ease;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox.form-checkbox_images .form-checkbox_item input:checked + label {
	border-color: var(--blue-color);
	background: var(--white);
	color: #545454;
}

.modal-comment .modal-body .modal-form .form-item .form-checkbox.form-checkbox_images .form-checkbox_item input:checked + label .form-checkbox_item__image {
	filter: grayscale(0);
	opacity: 1;
}

.modal-comment .modal-body .modal-form .form-item + .form-item,
.modal-comment .modal-body .modal-form .form-grids + .form-item {
	margin-top: 24px;
}

.modal-comment .modal-body .modal-form .form-grids {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 24px;
}

.modal-comment .modal-body .modal-form .form-grids .form-item {
	width: calc(50% - 9px);
	flex-shrink: 0;
}

.modal-comment .modal-body .modal-form .form-grids .form-item + .form-item {
	margin-top: 0;
}

.modal-comment .modal-body .modal-form .form-buttons {
	margin: 24px -24px -24px;
	padding: 16px 24px;
	width: calc(100% + 48px);
	background: #EFF3F6;
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.modal-comment .modal-body .modal-form .form-buttons .button-theme {
	font-weight: 700;
	font-size: 15px;
	min-width: 120px;
}

/*
 * Single Blog
 */
.pageBlog .blogInner {
	overflow: hidden;
}

.pageBlog .blogInner .card,
.pageBlog .blogInner .card .card-header,
.pageBlog .blogInner .card .card-footer {
	border-radius: 0;
}

.pageBlog .blogInner .card .card-header {
	background: #fff;
	border-bottom: 0;
}

.pageBlog .blogInner .card .card-footer {
	background: #fff;
	border-top: 0;
}

.pageBlog .blogInner .card .card-header .heading-style span {
	font-size: 1.2rem;
}

.pageBlog .blogInner .card .card-header .blogMeta {
	color: #555;
}

.pageBlog .blogInner .card .card-header .blogMeta ul li span {
	font-weight: 600;
}

.pageBlog .blogInner .card .card-header .blogSocial {
	padding-left: .3rem;
}

.pageBlog .blogInner .card .card-header .blogSocial > div {
	top: -2px;
}

.pageBlog .blogInner .card .blogDesc {
	margin-bottom: 1rem;
}

.pageBlog .blogInner .card .blogDesc blockquote {
	padding: 15px;
	background-color: var(--blue-nav);
	border-left: 4px solid var(--blue-color);
	margin-bottom: 0;
}

.card-blog {
	border-radius: 0;
	margin-bottom: 1rem;
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .1);
	box-shadow: 0 0 1px rgba(0, 0, 0, .1);
}

/*.card-blog:last-of-type {*/
/*    margin-bottom: 0;*/
/*}*/

.card-blog .card-image {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
	min-height: 160px;
}

.card-blog .card-body .card-title {
	color: #222;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
}

.card-blog .card-body .card-text {
	color: #454545;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	margin-bottom: 0;
}

.blog-related .headline {
	border: 0;
}

.blog-related ul li {
	position: relative;
	padding-left: 30px;
	line-height: 1;
	padding-top: 5px;
	padding-bottom: 5px;
}

.blog-related ul li:before {
	border-radius: 50%;
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 20px;
	height: 5px;
	width: 5px;
	background-color: #454545;
}

.blog-related ul li a {
	display: inline-block;
	padding-left: 10px;
}

.blog-related ul li a h5 {
	margin-bottom: 0;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	max-width: 100%;
	color: #454545;
	-webkit-transition: .2s all linear;
	-o-transition: .2s all linear;
	transition: .2s all linear;
	font-weight: 400;
	font-size: 1rem;
}

.blog-related ul li a:hover h5 {
	color: var(--blue-color);
}

/*
 * End page Danh mục bài viết
 */
/*
 * Start đăng ký ứng viên / nhà tuyển dụng
 */
.pageDangKy {
	background: #529ed8;
}

.pageDangKy .navbar-main {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	background: transparent !important;
	border-bottom: 1px solid #d1d1d1 !important;
}

.pageDangKy .navbar-top {
	background: transparent !important;
}

.pageDangKy .navbar-bottom ul.nav > li > a {
	color: #fff !important;
}

.pageDangKy .footer-main {
	border-top: 1px solid #d1d1d1;
	background: transparent !important;
}

.pageRegister {
	border-radius: 0;
	border: 0;
}

.pageRegister .registerTitle {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 1rem;
	color: #fff !important;
}

.pageRegister .card-registerSocial .registerTitle {
	color: #222 !important
}

.pageRegister .registerCard .registerItem {
	background: #fff;
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2);
	box-shadow: 0 0 1px rgba(0, 0, 0, .2);
	padding: 15px;
	margin-bottom: 1.5rem;
	position: relative;
}

.pageRegister .registerCard .registerItem:last-of-type {
	margin-bottom: 0;
}

.pageRegister .registerCard .registerItem .form-input-animation {
	font-size: 14px;
}

.pageRegister .registerCard .registerItem .custom-checkbox .custom-control-label::before {
	border-radius: 0;
}

.pageRegister .registerCard .registerItem .custom-checkbox .custom-control-label::before,
.pageRegister .registerCard .registerItem .custom-checkbox .custom-control-label::after {
	top: 0.15rem;
}

.pageRegister .register-heading {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 1.2rem;
}

.pageRegister .registerSubTitle {
	margin-top: .05rem;
	margin-bottom: .5rem;
	font-size: .850rem;
	color: #777;
}

.pageRegister .registerInner .custom-control-input:focus ~ .custom-control-label::before {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.registerDesc {
	padding: 15px;
}

.registerDesc .registerTitle {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 1rem;
}

.registerDesc ul li {
	margin-bottom: .5rem;
	color: #fff;
}

.registerDesc ul li i {
	color: #fff !important;
}

.registerDesc .registerDescInner {
	position: relative;
	z-index: 2;
}

.registerDesc .registerIcon {
	padding-top: 25%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 25%;
	opacity: .5;
	display: none;
}

.card-registerSocial {
	border-radius: 0;
	border: 0;
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2);
	box-shadow: 0 0 1px rgba(0, 0, 0, .2);
}

.btn-facebook {
	background: #337ab7;
	color: #fff !important;
	font-size: .95rem;
	border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 0;
	height: 40px;
	border: 0;
	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
}

.btn-facebook i {
	width: 40px;
	height: 100%;
	background: #2c699e;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.btn-facebook span {
	width: calc(100% - 40px);
}

.btn-zalo {
	background: #0896FF;
	color: #fff !important;
	font-size: .95rem;
	border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 0;
	height: 40px;
	border: 0;
	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
}

.btn-zalo span:first-of-type {
	width: 40px;
	height: 100%;
	background: #088ef1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.btn-zalo span:first-of-type img {
	width: 30px;
}

.btn-zalo span:last-of-type {
	width: calc(100% - 40px);
}

.btn-facebook:hover {
	background: #2c699e;
}

.btn-google {
	background: #c9302c;
	color: #fff !important;
	font-size: .95rem;
	border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 0;
	height: 40px;
	border: 0;
	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
}

.btn-google i {
	width: 40px;
	height: 100%;
	background: #b12a27;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.btn-google:hover {
	background: #b12a27;
}

.btn-google span {
	width: calc(100% - 40px);
}

/*
 * End đăng ký ứng viên / nhà tuyển dụng
 */
/*
 * Page hồ sơ ứng viên
 */


.cardUngVien .card-body {
	padding: 15px;
}

.titlePanelDetails {
	font-size: 15px;
	font-weight: 500;
}

.cardUngVien .select2-container--default .select2-selection--single {
	height: 34px;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border-radius: 0;
}

.cardUngVien .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 35px;
	line-height: 34px;
	font-size: 14px;
}

.cardUngVien .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 32px;
}

.cardUngVien .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	position: absolute;
	left: 0;
	top: calc(50% - 8px);
	width: 35px;
	text-align: center;
	font: normal normal normal 14px 'Font Awesome\ 5 Pro';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
}

.cardUngVien .nganhnghe .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f0b1";
}

.cardUngVien .diadiem .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f3c5";
}

.cardUngVien .kinhnghiem .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f017";
}

.cardUngVien .capbac .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f406";
}

.cardUngVien .trinhdo .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f19d";
}

.cardUngVien .mucluong .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f2e8";
}

.cardUngVien .gioitinh .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f228";
}

.cardUngVien .ngonngu .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f1ab";
}

.cardUngVien .thietke .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f53f";
}

.cardUngVien .ngoaingu .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f1ab";
}

.cardUngVien .fontfamily .select2-container--default .select2-selection--single .select2-selection__rendered:before {
	content: "\f866";
}

.cardUngVien .filter-radio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.cardUngVien .filter-radio .label-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	width: 50%;
	position: relative;
	padding: 0 5px;
	margin-top: 5px;
}

.cardUngVien .filter-radio .label-item > input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	visibility: visible;
}

.cardUngVien .filter-radio .label-item label {
	text-align: center;
	width: 100%;
	margin-bottom: 0;
	display: inline-block;
	padding: 10px 8px;
	background: var(--bgbody);
	border: 1px solid #c9c9c9;
	border-radius: 4px;
	color: var(--dark);
	-webkit-transition: .2s all linear;
	-o-transition: .2s all linear;
	transition: .2s all linear;
	line-height: 1;
	overflow: hidden;
	position: relative;
}

.cardUngVien .filter-radio .label-item label > span {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	-webkit-transition: .2s all linear;
	-o-transition: .2s all linear;
	transition: .2s all linear;
	top: -1px;
	right: -1px;
	width: 0;
	height: 0;
	border-style: solid;
	color: #fff;
	border-width: 0 25px 25px 0;
	border-color: transparent var(--blue-color) transparent transparent;
}

.cardUngVien .filter-radio .label-item label > span > i {
	position: absolute;
	top: 3px;
	font-size: .8em;
	right: -23px;
}

.cardUngVien .filter-radio .label-item > input:checked ~ label {
	border-color: var(--blue-color);
	background: #f3f9fd;
}

.cardUngVien .filter-radio .label-item > input:checked ~ label span {
	opacity: 1;
	visibility: visible;
}

.cardUngVien .hsItem {
	background: #f8f9f9;
	clear: both;
	display: inline-block;
	width: 100%;
	line-height: 25px;
}

.cardUngVien .hsItem.hslq {
	line-height: 18px;
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.hsItem .hsItemImg {
	width: 25%;
	display: block !important;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hsItemContent {
	width: 75%;
	height: 100%;
	padding: 4px 5px;
}

.hsItem .hsItemTitle {
	width: 100%;
	font-size: 13px !important;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.hsItem .hsItemTitle a {
	color: var(--blue-color);
	text-transform: capitalize;
}

#cvContent .imgUV {
	position: relative;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#cvContent .imgUV:before {
	content: "";
	display: block;
	padding-top: 100%;
}

.w-15 {
	width: 15px;
}

.w-18 {
	width: 18px;
}

.w-20 {
	width: 20px;
}

.card-resetPass {
	margin: 0 0 15px;
	font-size: 16px;
	border-radius: 0;
}

.card-resetPass .card-header .card-title {
	margin-bottom: 0;
	text-align: center;
	font-size: 1.05em;
	font-weight: 700;
}

.card-resetPass .card-body .form-group {
	margin-bottom: 30px;
}

.card-resetPass .card-body .form-group > label {
	color: #676767;
	font-size: .95em;
	margin-bottom: 5px;
}

.card-resetPass .card-body .form-group:last-of-type {
	margin-bottom: 0;
}

.card-resetPass .card-body .form-group button,
.card-resetPass .card-body .form-group input {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.card-resetPass .card-body .form-group button.btn-primary {
	border: 0;
	color: #fff;
	-webkit-transition: .1s all ease-in;
	-o-transition: .1s all ease-in;
	transition: .1s all ease-in;
	text-decoration: none !important;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	padding: 10px 30px;
	font-size: .9rem;
	border-radius: 0;
}

.recruitment-content {
	padding: 0 10px;
}

.headline {
	font-size: 1.1em;
	position: relative;
	padding: 8px 0 8px 13px;
	text-transform: uppercase;
	border: 1px solid rgba(0, 0, 0, .125);
	background: #fff;
	margin-bottom: 10px;
	font-weight: 500;
}

.headline::before {
	width: 5px;
	height: 100%;
	background: var(--blue-color);
	position: absolute;
	display: block;
	content: "";
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.floatButton {
	position: fixed;
	bottom: 74px;
	left: 15px;
	z-index: 1040;
	font-size: 14px;
}

.floatButton.iconMess {
	bottom: 15px;
}

.floatButton > .float-inner {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	overflow: hidden;
	width: 44px;
	padding: 4px 2px;
	height: 44px;
	border-radius: 40px;
	background: var(--blue-color);
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	font-size: 1em;
	color: #fff;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 12px 28px 0, rgba(0, 0, 0, 0.1) 0 2px 4px 0, rgba(255, 255, 255, 0.05) 0 0 0 1px inset;
	box-shadow: rgba(0, 0, 0, 0.2) 0 12px 28px 0, rgba(0, 0, 0, 0.1) 0 2px 4px 0, rgba(255, 255, 255, 0.05) 0 0 0 1px inset;
}

.floatButton.iconMess > .float-inner {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.floatButton > .float-inner:hover {
	background: var(--blue-hover);
	width: 140px;
}

.floatButton.iconMess > .float-inner:hover {
	width: 210px;
}

.floatButton > .float-inner > .float-icon {
	width: 40px;
	height: 40px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: rgba(0, 0, 0, .2);
	border-radius: 50%;
	font-size: 1.25em;
}

.floatButton > .float-inner > .float-icon > i {
	-webkit-animation: ring-ring-icon 1s infinite ease-in-out;
	animation: ring-ring-icon 1s infinite ease-in-out;
}

.floatButton > .float-inner > .float-icon img {
	width: 20px;
	vertical-align: middle;
}

.floatButton > .float-inner > .float-text {
	height: 100%;
	width: calc(100% - 40px);
	line-height: 40px;
}

.floatButton > .float-inner > .float-text > a {
	display: inline-block;
	color: #fff;
	height: 100%;
	width: 100%;
	padding-left: 10px;
}

@-webkit-keyframes ring-ring-icon {
	0% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		transform: rotate(0) scale(1) skew(1deg);
	}
	10% {
		-webkit-transform: rotate(-15deg) scale(1) skew(1deg);
		transform: rotate(-15deg) scale(1) skew(1deg);
	}
	20% {
		-webkit-transform: rotate(15deg) scale(1) skew(1deg);
		transform: rotate(15deg) scale(1) skew(1deg);
	}
	30% {
		-webkit-transform: rotate(-15deg) scale(1) skew(1deg);
		transform: rotate(-15deg) scale(1) skew(1deg);
	}
	40% {
		-webkit-transform: rotate(15deg) scale(1) skew(1deg);
		transform: rotate(15deg) scale(1) skew(1deg);
	}
	50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		transform: rotate(0) scale(1) skew(1deg);
	}
	100% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		transform: rotate(0) scale(1) skew(1deg);
	}
}

@keyframes ring-ring-icon {
	0% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		transform: rotate(0) scale(1) skew(1deg);
	}
	10% {
		-webkit-transform: rotate(-15deg) scale(1) skew(1deg);
		transform: rotate(-15deg) scale(1) skew(1deg);
	}
	20% {
		-webkit-transform: rotate(15deg) scale(1) skew(1deg);
		transform: rotate(15deg) scale(1) skew(1deg);
	}
	30% {
		-webkit-transform: rotate(-15deg) scale(1) skew(1deg);
		transform: rotate(-15deg) scale(1) skew(1deg);
	}
	40% {
		-webkit-transform: rotate(15deg) scale(1) skew(1deg);
		transform: rotate(15deg) scale(1) skew(1deg);
	}
	50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		transform: rotate(0) scale(1) skew(1deg);
	}
	100% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		transform: rotate(0) scale(1) skew(1deg);
	}
}

.disabledFireBase {
	cursor: not-allowed !important;
	pointer-events: none !important;
	opacity: .5;
}

.dropdown-share > a:after {
	display: none;
}

.dropdown-share > .dropdown-menu {
	padding: 0;
	margin-bottom: 0;
	border-radius: 0;
	margin-top: 10px;
	top: 96%;
	left: unset;
	border-color: #d1d1d1;
}

.dropdown-share > .dropdown-menu:after,
.dropdown-share > .dropdown-menu:before {
	font-size: 1.4em;
	display: block;
	width: 0;
	height: 0;
	content: "";
	pointer-events: none;
	position: absolute;
	top: -10px;
}

.dropdown-share > .dropdown-menu:before {
	right: 30px;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #a9a9a9;
	border-left: 10px solid transparent;
}

.dropdown-share > .dropdown-menu:after {
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
	border-left: 10px solid transparent;
	right: 30px;
}

.dropdown-share > .dropdown-menu > .dropdown-item {
	font-size: .85rem;
	padding: 0.4rem 1rem;
}

.dropdown-share > .dropdown-menu > .dropdown-item:last-of-type {
	border-bottom: 0;
}

.dropdown-share > .dropdown-menu > .dropdown-item img,
.dropdown-share > .dropdown-menu > .dropdown-item > i {
	width: 18px;
	margin-right: 4px;
}

.dropdown-share > .dropdown-menu > .dropdown-item > iframe {
	display: none;
}

.dropdown-share > .dropdown-menu > .dropdown-item > i.fa-facebook-f {
	color: #088de3;
}

.modal-backdrop {
	z-index: 1049;
}

.padding-h8 {
	padding-top: 8px;
	padding-bottom: 8px;
}

.padding-h12 {
	padding-top: 12px;
	padding-bottom: 12px;
}

.padding-h4 {
	padding-top: 4px;
	padding-bottom: 4px;
}

.marginbottom-h15 {
	margin-bottom: 15px;
}

.card-max-height .card-body > ul.card-overflow-image {
	min-height: unset;
	height: calc(83.91px * 6 - 1px);
}

.social-share {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.social-share li {
	margin: 0 6px;
}

.social-share li a {
	display: inline-block;
	-webkit-transition: .2s all ease-in;
	-o-transition: .2s all ease-in;
	transition: .2s all ease-in;
	color: var(--gray);
	font-size: 1.2em;
}

.social-share li a img {
	height: 18px;
	vertical-align: middle;
	margin-top: -4px;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.social-share li a iframe {
	display: none;
}


.social-share li.share-facebook:hover a,
.social-share li.share-facebook:focus a {
	color: #139EF8;
}

.social-share li.share-linkedin:hover a,
.social-share li.share-linkedin:focus a {
	color: #0272B1;
}

.social-share li.share-google:hover a,
.social-share li.share-google:focus a {
	color: #EA4335;
}

.page-contact {
	font-size: 14px;
}

.page-contact .contact-info {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
	padding: 40px 0 80px;
}

.page-contact .contact-info .contact-info--inner {
	border: 1px solid #e9e9e9;
	background-color: #fff;
}

.page-contact .contact-info .contact-info--left {
	background: rgb(230 244 255);
	border-right: 1px solid #e9e9e9;
}

.page-contact .contact-info .contact-info--left .info-content {
	padding: 40px;
}

.page-contact .contact-info .info-title {
	font-size: 1.5em;
	color: var(--blue-color);
	font-weight: 700;
	margin-bottom: 15px;
}

.page-contact .contact-info .contact-info--left .info-content .info-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--title {
	font-size: 1.1em;
	color: #8a8a8a;
	width: 150px;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}

.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--title i {
	width: 20px;
	display: inline-block;
	color: var(--blue-color);
	margin-right: 4px;
	font-size: 1.1em;
}

.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--link {
	font-size: 1.1em;
	margin-left: 10px;
	display: inline-block;
	width: 100%;
	color: #232323;
}

.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--link a {
	color: #232323;
}

.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--social .info-item--social__item {
	border-radius: 8px;
	height: 32px;
	width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-color);
	background: var(--white);
	font-size: 1.075rem;
}

.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--social .info-item--social__item svg path {
	fill: var(--blue-color);
}

.page-contact .contact-info .contact-info--left .info-map iframe {
	vertical-align: middle;
}

.page-contact .contact-info .contact-info--right {
	padding: 30px;
}

.page-contact .contact-info .contact-info--right .modalOverideForm textarea,
.page-contact .contact-info .contact-info--right .modalOverideForm input {
	padding-left: 0 !important;
}

.page-contact .contact-info .contact-info--right .modalOverideForm .form-input-animation label span {
	color: #8a8a8a;
}

.page-contact .contact-info .contact-info--right .form-group .btn {
	font-size: 1.3em;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 40px;
	width: 100%;
	text-align: center;
	border-radius: 0;
}

.page-contact .contact-headline {
	font-size: 2.5em;
	color: var(--blue-color);
	margin-bottom: 30px;
	font-weight: 700;
	text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.page-contact .contact-info .contact-info--left .info-content {
		padding: 20px;
	}

	.page-contact .contact-info .contact-info--left .info-content .info-title {
		font-size: 1.3em;
	}

	.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--title,
	.page-contact .contact-info .contact-info--left .info-content .info-item .info-item--link {
		font-size: 1em;
	}
}

.grecaptcha-badge {
	visibility: hidden;
}

.btnSaveTD {
	cursor: pointer;
}

.company-header .company-info .company-style--new .company-avatar {
	width: 100%;
}

.company-header .company-info .company-style--new .company-content {
	width: 100%;
	padding-left: 15px;
}

.company-header .company-info .company-info-inner.company-style--new .img-xacthuc {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.expanded-button {
	font-size: 85%;
	padding: 5px;
}

.page-search-sort > h1 {
	line-height: 1.5;
}

.page-search-sort .label-item {
	position: relative;
}

.page-search-sort .label-item label {
	margin-bottom: 0;
	color: #a4a9ae;
	font-size: 1.05em;
	transition: .3s all ease;
	cursor: pointer;
}

.page-search-sort .label-item input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	visibility: visible;
}

.page-search-sort .label-item input:checked ~ label {
	color: var(--blue-color);
	font-weight: 500;
}

.page-search-sort .label-item:not(:last-child) {
	padding-right: 20px;
}

.expaned-item {
	padding-left: 10px;
	padding-right: 10px;
}

.expanded-divider {
	display: block;
	position: relative;
}

.expanded-divider > span {
	display: block;
	position: relative;
	text-align: center;
	border-bottom: 1px solid #e9e9e9;
	width: 100%;
}

.expanded-divider > span > i {
	height: 28px;
	width: 28px;
	font-size: 1.2em;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-color);
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.expanded-divider > p {
	font-size: 1.1em;
}

.select2-results__option[aria-selected] {
	position: relative;
}

.select2-container--default .select2-results__option[aria-selected=true] {
	padding-right: 18px;
}

.select2-container--default .select2-results__option[aria-selected=true]::before {
	content: "\f057";
	position: absolute;
	right: 5px;
	color: red;
	font-family: "Font Awesome 5 Pro";
	bottom: 5px;
}

.cvTool {
	position: sticky;
	position: -webkit-sticky;
	bottom: 0;
	z-index: 5;
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, .125);
	box-shadow: 0 -5px 5px -5px #d8c0c0;
	padding: 5px;
}

.cvTool button {
	margin-right: 10px;
}

.cvTool button:last-child {
	margin-right: 0;
}

.popup-images {
	position: fixed;
	z-index: 1051;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	background: rgba(0, 0, 0, .5);
}

.popup-image {
	display: none;
	width: 100%;
	position: relative;
	max-height: 90%;
}

.popup-image .popup-image_close {
	position: absolute;
	display: block;
	background: #006a63;
	width: 32px;
	height: 32px;
	border: 2px solid #fff;
	border-radius: 50%;
	top: -16px;
	right: calc(5% - 16px);
	cursor: pointer;
}

.popup-image .popup-image_close .popup-close {
	border: 0;
	background: transparent;
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 1.1em;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-top: 2px;
	cursor: pointer;
}

.popup-image > a {
	display: block;
}

.popup-image > a > img {
	display: block;
	margin: 0 auto;
	vertical-align: middle;
	width: 90%;
	height: auto;
}

.popup-images.is-show,
.popup-images.is-show .popup-image.is-show {
	display: block;
}

.template-card_tab .nav-tabs {
	border: 0;
}

.template-card_tab .nav-tabs .nav-item {
	margin-bottom: 0;
}

.template-card_tab .nav-tabs .nav-item.dropdownTheme .dropdown-menu-left:before,
.template-card_tab .nav-tabs .nav-item.dropdownTheme .dropdown-menu-left:after {
	left: 15px;
}

.template-card_tab .nav-tabs .nav-item:first-child .nav-link:not(.active) {
	border-radius: 8px 0 0 8px;
	overflow: hidden;
}

.template-card_tab .nav-tabs .nav-item:last-child .nav-link:not(.active) {
	border-radius: 0 0 8px 0;
	overflow: hidden;
}

.template-card_tab .nav-tabs .nav-item .nav-link {
	padding: 11px 15px 10px;
	border-radius: 0;
	border: 0;
	border-bottom: 2px solid transparent;
	margin: 0;
	font-size: 1.05em;
	font-weight: 600;
	color: #0009;
	background: var(--white);
	outline: none !important;
	box-shadow: none !important;
	transition: .3s all ease;
	cursor: pointer;
}

.template-card_tab .nav-tabs .nav-item .nav-link:hover,
.template-card_tab .nav-tabs .nav-item .nav-link:active,
.template-card_tab .nav-tabs .nav-item .nav-link[aria-expanded=true] {
	background: #f7f7f7;
}

.template-card_tab .nav-tabs .nav-item .nav-link.active {
	border-bottom-color: var(--blue-color);
	color: var(--blue-color);
}

.lazy {
	background-size: 75% !important;
}

img[src=""],
img:not([src]) {
	opacity: 0;
}

.section-landing {
	background-color: #F8FAFC;
}

.section-gap {
	padding: 40px 0;
}

.swiper-button_custom {
	font-size: 4rem;
	color: var(--gray);
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.swiper-button_custom.swiper-button-prev {
	left: -50px;
}

.swiper-button_custom.swiper-button-next {
	right: -50px;
}

.swiper-button_custom:hover {
	color: var(--blue-color);
}

.swiper-button_custom.swiper-button-disabled {
	display: none;
}

.section-heading {
	padding-bottom: 35px;
}

.section-heading .section-heading_title {
	margin-bottom: 16px;
	padding: 30px 0 20px;
	color: var(--blue-color);
	font-size: 1.5rem;
	background: url(/public/upload/icon/ntd/bg_line.png) center bottom no-repeat;
}

.section-heading .section-heading_desc {
	margin-bottom: 1rem;
	font-size: 1.05rem;
}

.float-info {
	background-color: rgba(255, 255, 255, .9);
	left: 0;
	z-index: 5;
	padding: 50px 30px;
	max-width: 350px;
}

.float-info .desc {
	margin-top: 15px;
	font-size: .875rem;
	opacity: .9;
}

.float-info .desc p {
	margin-bottom: 8px;
}

.float-info .desc p:last-child {
	margin-bottom: 0;
}

.section-banner .swiper-pagination {
	bottom: 50px;
	position: absolute;
}

.section-banner .swiper-pagination .swiper-pagination-bullet {
	margin: 5px;
	height: 0;
	width: 30px;
	-webkit-transition: .3s all linear;
	-o-transition: .3s all linear;
	transition: .3s all linear;
	border: 3px solid #fff;
	border-radius: 0;
	opacity: 1;
}

.section-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	border-color: var(--blue-color);
	-webkit-transform: rotate(180deg) !important;
	-ms-transform: rotate(180deg) !important;
	transform: rotate(180deg) !important;
}

.section-why {
	background: url(/public/upload/icon/ntd/bg-why.svg) center center no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
}

.why-inner_image {
	top: 62%;
	z-index: 1;
}

.why-inner_image img {
	animation: circleRotate 7s infinite;
	-webkit-animation: circleRotate 7s infinite;
	-webkit-animation-duration: 7s;
	animation-duration: 7s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes circleRotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes circleRotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.why-inner_flex {
	margin: 0 -15px;
	position: relative;
	z-index: 2;
}

.why-inner_flex .why-flex_left,
.why-inner_flex .why-flex_right {
	width: calc((100% - 270px) / 2);
	padding: 35px 15px;
}

.why-box {
	padding-top: 60px;
}

.why-box .head .title {
	font-size: 1.3rem;
	line-height: 1.4;
}

.why-box .head .icon {
	width: 70px;
	height: 70px;
	font-size: 2rem;
	margin-left: 20px;
}

.why-box .body {
	padding-top: 15px;
	color: #626266;
	min-height: 87px;
}

.why-inner_flex .why-flex_right .why-box .head .icon {
	margin-right: 20px;
	margin-left: 0;
}

.why-flex_middle {
	width: 270px;
	height: 540px;
	background: url(/public/upload/icon/ntd/bg_mobile.png) center center no-repeat;
	padding: 15px;
}

.why-flex_middle .why-middle_box {
	margin-top: 16px;
	margin-bottom: 16px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 240px;
	border-radius: 20px;
}

.service-item {
	-webkit-box-shadow: 0 10px 30px -5px rgb(0 0 0 / 10%);
	box-shadow: 0 10px 30px -5px rgb(0 0 0 / 12%);
	padding: 15px 30px;
	border-radius: 5px;
}

.service-item .service-item_title {
	font-size: 1.5rem;
	margin-top: 20px;
	margin-bottom: 10px;
	color: #000000;
}

.service-item .service-item_desc {
	font-size: .95rem;
}

.service-item .service-item_desc img {
	display: inline;
	margin-right: 5px;
	margin-top: -2px;
}

.service-item .service-item_desc + .service-item_desc {
	margin-top: 8px;
}

.service-item .service-item_button {
	margin-top: 20px;
}

.service-item .service-item_button .button-theme {
	border-radius: 100px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 25px;
}

.service-item + .service-item {
	margin-top: 25px;
}

.partner-item {
	border-radius: 8px;
	padding: 1rem 2rem;
	height: 100px;
}

.partner-item .partner-item_image {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.partner-item:hover .partner-item_image {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: grayscale(0);
}

.article-inner .swiper {
	margin: 0 -5px;
}

.article-inner .swiper .swiper-container {
	padding: 5px;
}

.article-card {
	-webkit-box-shadow: 0 0 14px 1px rgb(0 0 0 / 10%);
	box-shadow: 0 0 14px 1px rgb(0 0 0 / 10%);
	height: calc(50% - 10px);
}

.article-card .card-header .card-img-top {
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.article-card:hover .card-header .card-img-top {
	opacity: .8;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.article-card .card-body {
	padding: 1rem;
}

.article-card .card-body .card-title .card-title_link {
	display: block;
	color: #343434;
	font-size: 1.05rem;
	line-height: 1.25;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.article-card .card-body .card-title .card-title_link:hover {
	color: var(--blue-color);
}

.article-card .card-body .card-text {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.article-card + .article-card {
	margin-top: 20px;
}

.section-price .price-inner {
	border-radius: 15px;
	overflow: hidden;
	font-size: 14px;
	background-color: #F7F7F7;
	height: 100%;
	border: 1px solid #d0d0d0;
}

.section-price .price-inner ul {
	list-style: none;
	margin-bottom: 0;
	padding: 15px;
}

.section-price .price-inner ul li.price-title {
	font-weight: 700;
	color: var(--blue-color);
	font-size: 1.4em;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #a9a9a9;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.section-price .price-inner ul li.price-title > a {
	display: inline;
	height: 22px;
	width: 22px;
	line-height: 22px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	font-size: 0.7rem;
	background: #c6c6c6;
	margin-left: 10px;
	position: relative;
	top: -4px;
}

.section-price .price-inner ul li.price-title span {
	color: #ff0000;
	font-size: .7em;
	display: inline-block;
	position: relative;
	top: -4px;
	margin-left: 4px;
}

.section-price .price-inner ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #d9d9d9;
}

.section-price .price-inner ul li:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.section-price .price-inner ul li input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 0;
	visibility: hidden;
}

.section-price .price-inner ul li label {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #666;
	font-size: 1.1em;
	font-weight: 400;
	position: relative;
	padding-left: 30px;
	margin-bottom: 0;
	cursor: pointer;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.section-price .price-inner ul li label i {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	height: 16px;
	width: 16px;
	background: #fff;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
	border: 1px solid #a5a5a5;
}

.section-price .price-inner ul li label i:before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	-ms-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	height: 9px;
	width: 9px;
	background: var(--blue-color);
	border-radius: 50%;
	overflow: hidden;
	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
}

.section-price .price-inner ul li input:checked + label,
.section-price .price-inner ul li input:not(:disabled) + label:hover {
	color: var(--blue-color);
}

.section-price .price-inner ul li input:checked + label i:before {
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.section-price .price-inner ul li input:checked + label i {
	background: #fff;
	border-color: var(--blue-color);
}

.section-price .price-inner ul li input:disabled + label {
	cursor: not-allowed;
	opacity: .8;
}

.section-price .price-inner .price-bottom {
	background-color: var(--blue-color);
	padding: 15px 0 50px;
	margin-top: 15px;
	border-top: 1px dotted #a9a9a9;
	position: relative;
}

.section-price .price-inner .btn {
	min-width: 150px;
	display: block;
	margin: 0 auto;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 1.05em;
	border: 1px solid #aaa;
}

.section-price .price-inner .btn-primary {
	background: var(--blue-color);
}

.section-price .price-inner .btn-primary:hover {
	background: #0069d9;
}

.section-price .price-inner .btn-secondary {
	cursor: not-allowed !important;
	background: transparent;
}

.section-price .price-inner .price-notification {
	font-size: 0.9em;
	color: #ddd;
	font-style: italic;
	text-align: center;
	margin-top: 10px;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 80%;
}

.section-price .button-theme {
	border-radius: 100px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 25px;
}

.table-compare .table-column {
	width: 25%;
	-webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 45%);
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 45%);
}

.table-compare .table-column:first-child {
	border-radius: 20px 0 0 20px;
}

.table-compare .table-column:last-child {
	border-radius: 0 20px 20px 0;
}

.table-compare .table-column .table-header {
	height: 100px;
	padding: 15px;
	background-color: var(--blue-color);
}

.table-compare .table-column .table-header .title {
	font-size: 1.3rem;
}

.table-compare .table-column .table-header .title > a {
	display: inline-block;
	height: 22px;
	width: 22px;
	line-height: 22px;
	border-radius: 50%;
	color: var(--blue-color);
	text-align: center;
	font-size: 0.7rem;
	background: #cdcdcd;
	margin-left: 5px;
	position: relative;
	top: -4px;
}

.table-compare .table-column .table-header .sub {
	font-size: .925rem;
	color: #e2e2e5;
}

.table-compare .table-column .table-body .table-body_item {
	background-color: var(--white);
	padding: 15px;
	color: #52525B;
	font-size: .925rem;
	line-height: 1.3;
	min-height: 70px;
}

.table-compare .table-column .table-body .table-body_item .table-image {
	margin-right: 15px;
	width: 30px;
	height: auto;
}

.table-compare .table-column .table-body .table-body_item .table-text {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.table-compare .table-column:not(:first-child) .table-body .table-body_item .table-text {
	width: calc(100% + 20px);
	margin-left: -10px;
	margin-right: -10px;
}

.table-compare .table-column .table-body .table-body_item .button-theme {
	border-radius: 4px;
	-webkit-box-shadow: rgb(0 0 0 / 16%) 0 2px 5px 0, rgb(0 0 0 / 12%) 0 2px 10px 0;
	box-shadow: rgb(0 0 0 / 16%) 0 2px 5px 0, rgb(0 0 0 / 12%) 0 2px 10px 0;
	font-size: .95rem;
	padding: 7px 20px;
}

.table-compare .table-body .table-body_item:nth-child(even) {
	background-color: #E7E9F5;
}

.section-information {
	margin-top: 50px;
	padding-bottom: 40px;
}

.section-information .information-heading {
	position: relative;
	padding-bottom: 80px;
}

.section-information .information-heading .title {
	position: absolute;
	z-index: 2;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	display: inline-block;
	background-color: var(--blue-color);
	color: var(--white);
	font-size: 1.15rem;
	font-weight: 700;
	padding: 5px 35px;
	border-radius: 20px;
}

.section-information .information-main .information-title {
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.section-information .information-main .information-contact {
	margin-bottom: 30px;
}

.section-information .information-main .information-contact .information-contact_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.section-information .information-main .information-contact .information-contact_item + .information-contact_item {
	margin-top: 10px;
}

.section-information .information-main .information-contact .information-contact_item .information-contact_item__desc {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 15px;
	color: #888;
	width: 140px;
}

.section-information .information-main .information-contact .information-contact_item .information-contact_item__desc i {
	color: var(--blue-new);
	font-size: 1rem;
	width: 18px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 5px;
}

.section-information .information-main .information-contact .information-contact_item .information-contact_item__text {
	color: #343434;
}

.section-information .information-main .information-contact .information-contact_item .information-contact_item__text > a {
	color: inherit;
}

.section-information .information-main .information-contact .information-contact_item .information-contact_item__text > a:hover {
	color: var(--blue-color);
}

.section-information .information-main .information-sub {
	font-size: 1rem;
	margin-bottom: 5px;
}

.section-information .information-main .information-time .information-time_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.section-information .information-main .information-time .information-time_item .information-time_item__day {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 15px;
	color: #343434;
	width: 70px;
}

.section-information .information-main .information-time .information-time_item .information-time_item__time {
	color: #707070;
}

.section-information .information-main .information-time .information-time_item + .information-time_item {
	margin-top: 10px;
}

.section-information .information-main .information-divider {
	margin-top: 40px;
	margin-bottom: 40px;
	height: 2px;
	width: 100%;
	display: block;
	content: "";
	background-color: #e9e9e9;
}

.section-information .information-line {
	border-left: 2px solid var(--blue-new);
	padding-left: 90px;
}

.section-information .information-social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.section-information .information-social a {
	display: inline-block;
	font-size: 1.2rem;
	color: var(--blue-color);
	line-height: 1;
}

.section-information .information-social a + a {
	margin-left: 10px;
}

.swal2-icon {
	width: 4em;
	height: 4em;
}

.swal2-icon .swal2-icon-content {
	font-size: 2.75em;
}

.card-company {
	-webkit-box-shadow: 2px 2px 10px 1px rgb(0 0 0 / 15%);
	box-shadow: 2px 2px 10px 1px rgb(0 0 0 / 8%);
	height: 100%;
}

.card-company .card-header .card-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 0.25rem;
}

.card-company .card-header .card-image:before {
	padding-top: 35%;
	display: block;
	content: "";
}

.card-company .card-header .card-image > img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.card-company .card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.card-company .card-body .card-top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.card-company .card-body .card-avatar {
	position: absolute;
	background: var(--white);
	border-radius: .25rem;
	filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 2px);
	padding: 10px;
	width: 80px;
	height: 80px;
	top: calc(-40px - .25rem);
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-company .card-body .card-follow {
	color: var(--gray);
	font-size: .85em;
}

.card-company .card-body .card-title {
	padding-top: calc(30px - .25rem);
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	color: var(--dark);
	font-size: .925rem;
	font-weight: 500;
	margin-bottom: 4px;
	line-height: 1.4;
}

.card-company .card-body .card-title > a {
	color: inherit;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	height: 43px;
	display: block;
}

.card-company .card-body .card-title > a:hover {
	color: var(--blue-color);
}

.card-company .card-body .card-text .card-text_item {
	color: var(--gray);
	font-size: 1em;
}

.card-company .card-body .card-text .card-text_item > i {
	width: 16px;
	display: inline;
	margin-right: 6px;
}

.card-company .card-body .card-text .card-text_item + .card-text_item {
	margin-top: 2px;
}

.card-company .card-body .card-button {
	margin-top: auto;
	padding-top: 15px;
}

.btn-group_radios {
	gap: 30px;
}

.btn-group_radios .btn-group_radio {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	position: relative;
}

.btn-group_radios .btn-group_radio > input {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	display: none;
}

.btn-group_radios .btn-group_radio > span {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 25px;
	cursor: pointer;
	transition: .3s all ease;
}

.btn-group_radios .btn-group_radio > span:before {
	height: 20px;
	width: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	border-radius: 50%;
	border: 1px solid #adb5bd;
	display: block;
	content: "";
	transition: .3s all ease;
}

.btn-group_radios .btn-group_radio > span:after {
	height: 10px;
	width: 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5px;
	border-radius: 50%;
	background: var(--orange-color);
	display: block;
	content: "";
	transition: .3s all ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.btn-group_radios .btn-group_radio input:checked + span {
	color: var(--orange-color);
}

.btn-group_radios .btn-group_radio input:checked + span:before {
	border-color: var(--orange-color);
}

.btn-group_radios .btn-group_radio input:checked + span:after {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.section-search {
	background: url('../../../../public/upload/file/bg_header2.webp') center center/cover no-repeat;
	position: relative;
}

.section-search .search-top {
	padding: 30px 0;
	background: rgba(0, 0, 0, .25);
	color: #fff;
}

.section-search .search-top .search-title h1 {
	font-size: 1.75rem;
	color: #00aef0;
	letter-spacing: .025em;
}

.section-search .search-top .search-title h2 {
	font-size: 1.15rem;
	letter-spacing: .025em;
}

.section-search .search-top .search-description {
	font-size: 1.075em;
}

.section-search .search-top .search-description .section-description_top .section-description_title svg {
	transform: rotateY(180deg);
	width: 32px;
	height: 32px;
	margin-right: 5px;
}

.section-search .search-top .search-description .section-description_value {
	color: #00aef0;
}

.section-search .search-top .search-description .section-description_divider {
	height: 14px;
	width: 2px;
	background: #00aef0;
}

.section-search.search-bar .search-inner {
	padding: 30px 0;
}

.section-search.search-bar .search-inner .search-group {
	display: flex;
	align-items: center;
	position: relative;
}

.section-search.search-bar .search-inner .search-group .form-group,
.section-search.search-bar .search-inner .search-group .form-group {
	border-radius: 6px;
	width: 100%;
}

.section-search.search-bar .search-inner .search-group .form-group > input,
.section-search.search-bar .search-inner .search-group .form-group > select {
	height: 42px;
	border-radius: 6px !important;
	width: 100%;
}

.section-search.search-bar .search-inner .search-group .form-group:before {
	top: 50% !important;
}

.section-search.search-bar .search-inner .search-group .form-group > input {
	box-shadow: none !important;
	outline: none !important;
	border: unset !important;
}

.section-search.search-bar .search-inner .search-group.search-group_float .search-group_float__item {
	padding-right: calc(38% + 10px);
}

.section-search.search-bar .search-inner .search-group.search-group_float .search-group_float__item .form-group > input {
	border-radius: 6px 0 0 6px !important;
}

.section-search.search-bar .search-inner .search-group.search-group_float .search-group_float__select:after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	display: block;
	content: "";
	left: -10px;
	height: 12px;
	background: #dee0e2;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item {
	width: 100%;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .vieclam-select2 + .select2-container .select2-selection {
	border-radius: 0 6px 6px 0;
	padding-top: 3px;
	height: 42px;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .vieclam-select2 + .select2-container .select2-selection--multiple .select2-selection__rendered {
	padding-top: 1px;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .vieclam-select2 + .select2-container .selection .select2-selection {
	position: relative;
	padding-right: 25px;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .vieclam-select2 + .select2-container .selection .select2-selection:after {
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: "Font Awesome 5 Pro";
	content: "\f107";
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 1.15rem;
	color: #726f6f;
	transition: .3s all ease;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .vieclam-select2 + .select2-container .selection .select2-selection .select2-selection__arrow {
	display: none;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .vieclam-select2 + .select2-container.select2-container--open .selection .select2-selection:after {
	transform: translateY(-50%) rotate(180deg);
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container {
	top: calc(100% + 5px) !important;
	bottom: unset;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown {
	border-radius: 6px;
	border: transparent;
	overflow: hidden;
	box-shadow: 0 1px 16px rgba(0, 0, 0, .06);
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-search--dropdown .select2-search__field {
	height: 38px;
	border-radius: 6px !important;
	width: 100%;
	padding: 0 12px;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__option {
	background: transparent;
	padding: 10px 15px;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__option.select2-results__option--highlighted {
	background: #ececec;
	color: #121212;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__option[aria-selected=true],
.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__option.select2-results__option--highlighted[aria-selected=true] {
	color: #00aef0 !important;
	background: transparent !important;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__option[aria-selected=true]::before,
.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__option.select2-results__option--highlighted[aria-selected=true]::before {
	color: #00aef0 !important;
	bottom: 10px !important;
	content: "\f00c" !important;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__options {
	max-height: 220px;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar {
	border-radius: 10px !important;
	width: 8px
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar-track {
	background: #fff
}

.section-search.search-bar .search-inner .search-group .search-group_float__item .select2-container + .select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
	background: rgba(33, 47, 63, .25);
	border-radius: 10px !important
}

.section-search.search-bar .search-inner .search-group .btn:not([class*=btn-light]) {
	height: 42px;
	border-radius: 6px !important;
	background: #00aef0 !important;
	border-color: #00aef0 !important;
}

.section-search.search-bar .search-inner .search-group .btn:not([class*=btn-light]):hover,
.section-search.search-bar .search-inner .search-group .btn:not([class*=btn-light]):focus {
	background: #009fdc !important;
	border-color: #009fdc !important;
}

.section-search.search-bar .search-inner .search-group .search-group_float__item.search-group_float__select {
	position: absolute !important;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 38%;
	z-index: 2;
	height: 100%;
	padding-right: 0;
}

.section-search.search-bar .search-inner .search-group .search-group_float__select .vieclam-select2 + .select2-container .select2-selection {
	border-radius: 0 6px 6px 0;
	padding-top: 3px;
}

.section-search.search-bar .search-inner .search-group .search-group_float__select .vieclam-select2 + .select2-container .select2-selection--multiple .select2-selection__rendered {
	padding-top: 1px;
}

.section-search.search-bar .search-desc {
	display: flex;
	align-items: center;
	gap: 15px;
}

.section-search.search-bar .search-desc .search-desc_item {
	background: rgba(0, 174, 240, .2);
	border-radius: 8px;
	gap: 8px;
	height: 36px;
	padding: 8px 14px;
	color: #fff;
}

.section-search.search-bar .search-desc .search-desc_item > span {
	color: #00aef0;
	font-weight: 700;
}

.section-search.search-bar .search-action a {
	align-items: center;
	display: flex;
	background: #00aef0;
	border: 1px solid #00aef0;
	border-radius: 8px;
	gap: 3px;
	height: 36px;
	padding: 8px 14px;
	color: #fff;
}

.section-search.search-bar .search-action a svg {
	height: 18px;
	width: 18px;
}

.section-search.search-bar .search-action a i {
	margin-right: 0;
	margin-left: 4px;
	font-size: 1.15rem;
}

.section-search.search-bar .search-action a[aria-expanded=true] {
	background: rgba(0, 174, 240, .2);
}

.search-collapse {
	border-radius: 6px;
	padding: 16px;
	background: rgba(0, 174, 240, .2);
}

.filter-header {
	background: #e7e9ea;
	border: 1px solid var(--white);
	border-bottom: 0;
}

.page-employer {
	padding: 5px 0 15px;
}

.sidebar-employer {
	padding: 10px;
	font-size: 14px;
}

.sidebar-employer .sidebar-employer_header {
	margin-bottom: 10px;
}

.sidebar-employer .sidebar-employer_header .sidebar-employer_title {
	border: 1px solid #e9e9e9;
	padding-left: 15px;
	padding-right: 15px;
}

.sidebar-employer .sidebar-item .sidebar-title {
	gap: 15px;
	outline: none;
	box-shadow: none;
	margin-bottom: 5px;
}

.sidebar-employer .sidebar-item .sidebar-title > i {
	font-size: 1.45em;
	transition: .3s transform ease-in-out;
	width: 11px;
}

.sidebar-employer .sidebar-item .sidebar-title[aria-expanded=false] > i {
	transform: rotate(180deg);
}

.sidebar-employer .sidebar-employer_body {
	gap: 5px;
}

.sidebar-employer .sidebar-item .sidebar-item_list .sidebar-item_list__child {
	padding: 8px 15px 8px 26px;
	background-color: transparent;
	gap: 8px;
	display: flex;
	align-items: center;
	color: #333334;
	font-weight: 500;
	transition: .3s all ease-in-out;
	border-radius: 4px;
	border: 0;
	outline: none;
	box-shadow: none;
}

.sidebar-employer .sidebar-item .sidebar-item_list .sidebar-item_list__child svg {
	width: 16px;
	flex-shrink: 0;
}

.sidebar-employer .sidebar-item .sidebar-item_list .sidebar-item_list__child:hover {
	background-color: rgb(160 214 255 / 15%)
}

.sidebar-employer .sidebar-item .sidebar-item_list .sidebar-item_list__child.active {
	background-color: rgb(160 214 255 / 40%)
}

.employer-card {
	padding: 15px;
	border-radius: .375rem;
	background-color: rgb(160 214 255 / 15%);
	border: 1px solid rgb(160 214 255 / 40%);
}

.employer-card .employer-card_header {
	border-bottom: 1px solid rgb(160 214 255 / 40%);
	gap: 10px;
	padding-bottom: 15px;
}

.employer-card .employer-card_header .employer-card_icon img {
	height: 48px;
	width: 48px;
	flex-shrink: 0;
}

.employer-card .employer-card_header .employer-card_content {
	line-height: 1.4;
}

.employer-card .employer-card_header .employer-card_content .employer-card_title {
	font-weight: 700;
	font-size: 1.15em;
	color: #000;
}

.employer-card .employer-card_header .employer-card_content .employer-card_sub {
	color: #939295;
}

.employer-card .employer-card_header .employer-card_button {
	flex-shrink: 0;
	white-space: nowrap;
}

.employer-card .employer-card_body {
	padding-top: 15px;
}

.employer-card .employer-card_body .employer-card_description {
	gap: 10px;
}

.employer-card .employer-card_body .employer-card_description .employer-card_description__icon {
	color: var(--blue-color);
	font-size: 1em;
}

.employer-card .employer-card_body .employer-card_description .employer-card_description__content {
	color: #757475;
}

.employer-card .employer-card_body .employer-card_description .employer-card_description__content p:last-child,
.employer-card .employer-card_body .employer-card_description .employer-card_description__content ol:last-child,
.employer-card .employer-card_body .employer-card_description .employer-card_description__content ul:last-child {
	margin-bottom: 0;
}

.employer-info {
	margin: -1rem -1rem 0;
	padding: 1rem;
}

.employer-info .employer-info_header {
	position: relative;
	padding-right: 100px;
	padding-bottom: 10px;
}

.employer-info .employer-info_header .employer-info_title {
	font-size: 1.3em;
	color: #000;
	font-weight: 700;
	transition: .3s all ease;
}

.employer-info .employer-info_header .employer-info_title > span {
	color: var(--primary);
	font-weight: 400;
	margin-left: 3px;
	display: inline-flex;
	transform: translateY(-1px);
	font-size: 0.925em;
	transition: .3s all ease;
}

.employer-info .employer-info_header .employer-info_title:hover {
	color: var(--blue-color);
}

.employer-info .employer-info_header .employer-info_title:hover > span,
.employer-info .employer-info_header .employer-info_title > span:hover {
	color: var(--blue-color);
}

.employer-info .employer-info_header .employer-info_button {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.employer-info .employer-info_body {
	margin-bottom: 1rem;
}

.employer-info .employer-info_body .employer-info_text i {
	color: var(--blue-color);
	margin-right: 2px;
	font-size: 1.075em;
}

.employer-info .employer-info_body .employer-info_text {
	color: #5a5a5b;
}

.employer-info .employer-info_body .employer-info_text > a {
	color: inherit;
	transition: .3s all ease;
}

.employer-info .employer-info_body .employer-info_text:hover > a {
	color: var(--blue-color);
}

.employer-info .employer-info_body .employer-info_list {
	margin-top: 4px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.employer-info .employer-info_footer {
	margin: 0 -1rem;
	padding: 0.75rem 1rem;
	color: #000;
	background-color: #FAEBCF;
}

.employer-info .employer-info_footer p:last-child,
.employer-info .employer-info_footer ul:last-child,
.employer-info .employer-info_footer ol:last-child {
	margin: 0
}

.employer-authentic .employer-authentic_header {
	border-radius: 6px;
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 15px;
	background-color: rgb(160 214 255 / 15%);
	border: 1px solid rgb(160 214 255 / 40%);
}

.employer-authentic .employer-authentic_header .employer-authentic_icon {
	flex-shrink: 0;
	width: 78px;
}

.employer-authentic .employer-authentic_header .employer-authentic_content .employer-authentic_title {
	font-size: 1.15em;
	color: var(--blue-color);
	font-weight: 700;
	margin-bottom: 5px;
}

.employer-authentic .employer-authentic_header .employer-authentic_content .employer-authentic_desc ul {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0;
}

.employer-authentic .employer-authentic_header .employer-authentic_content .employer-authentic_desc ul li + li {
	margin-top: 4px;
}

.employer-authentic .employer-authentic_header .employer-authentic_content .employer-authentic_desc ul li i {
	display: inline-block;
	color: var(--success);
	font-size: 1.075em;
}

.employer-authentic .employer-authentic_body {
	padding: 1rem;
}

.employer-authentic .employer-authentic_body .employer-authentic_text p {
	margin-bottom: 8px;
	color: #5e6368;
}

.employer-authentic .employer-authentic_body .employer-authentic_text p > span {
	font-weight: 700;
	color: var(--success);
}

.employer-authentic .employer-authentic_body .employer-authentic_text p:last-child {
	margin-bottom: 0;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress {
	margin-top: 24px;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__line {
	margin-bottom: 24px;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__line .progress-line_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	font-weight: 700;
	color: #000;
	font-size: 1.15em;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__line .progress-line_title > span {
	color: #494848;
	font-size: 14px;
	font-weight: 400;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__line .progress-line_bar {
	margin-top: 12px;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__line .progress-line_bar .progress {
	height: 6px
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__line .progress-line_bar .progress .progress-bar {
	background-color: var(--success);
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item {
	padding: 8px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	transition: .3s all ease;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item .progress-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background-color: var(--white);
	border: 1px solid #d3d3d3;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s all ease;
	border-radius: 50%;
	font-size: 0.85em;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item .progress-icon > i {
	opacity: 0;
	visibility: hidden;
	transition: .3s all ease;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item .progress-text {
	padding-right: 30px;
	font-weight: 500;
	color: #000;
	font-size: 1.075em;
	width: 100%;
	transition: .3s all ease;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item .progress-arrow {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	background-color: rgb(160 214 255 / 15%);
	color: var(--blue-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s all ease;
	border-radius: 50%;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item:hover {
	background-color: rgb(160 214 255 / 15%);
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item:hover .progress-arrow {
	background-color: var(--success);
	color: #fff;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item.is-done .progress-icon {
	background-color: var(--success);
	color: #fff;
	border-color: transparent;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item.is-done .progress-icon > i {
	opacity: 1;
	visibility: visible;
}

.employer-authentic .employer-authentic_body .employer-authentic_progress .employer-authentic_progress__list .progress-item.is-done .progress-text {
	color: #7a7a7a;
}

.floating-notification {
	position: fixed;
	left: 15px;
	bottom: 15px;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	padding: 7px 12px 7px 16px;
	border-radius: 30px;
	background-color: #182641;
	font-weight: 600;
	color: #fff;
	font-size: 0.75rem;
	transition: .3s all ease;
}

.floating-notification .floating-notification_value {
	color: var(--orange-color);
}

.floating-notification .floating-notification_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--orange-color);
	color: #fff;
	height: 22px;
	width: 22px;
	border-radius: 50%;
	font-size: 0.675rem;
}

.floating-notification:hover {
	background-color: #213459;
	color: #fff;
}

.overlay-block {
	opacity: .4;
}

.question-sidebar {
	position: sticky;
	top: 63px;
	background: #fff;
	border-radius: 10px;
}

.question-sidebar .question-sidebar_title {
	font-size: 1.225rem;
	color: var(--blue-color);
	font-weight: 500;
	padding: 16px 24px;
}

.question-sidebar .question-sidebar_list {
	display: flex;
	flex-direction: column;
}

.question-sidebar .question-sidebar_list .question-sidebar_list__item {
	border-left: 4px solid transparent;
	color: #263a4d;
	font-size: 1rem;
	padding: 16px 24px;
	display: block;
	transition: .3s all ease;
	background-color: transparent;
	font-weight: 500;
}

.question-sidebar .question-sidebar_list .question-sidebar_list__item:hover {
	background-color: #f4f5f5;
}

.question-sidebar .question-sidebar_list .question-sidebar_list__item.active {
	background-color: rgba(0, 174, 240, .075);
	border-left-color: var(--blue-color);
	color: var(--blue-color);
}

.question-content .question-content_title {
	font-size: 1.45rem;
	color: #232323;
	font-weight: 500;
	margin-bottom: 12px;
}

.question-content .question-content_item {
	background-color: #fff;
	padding: 16px 24px;
	border-radius: 8px;
}

.question-content .question-content_item .question-content_button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	background-color: transparent;
	border: 0;
	outline: none;
	box-shadow: none;
	font-size: 1rem;
	font-weight: 500;
	color: #263a4d;
	padding: 0;
	transition: .3s all ease-in-out;
}

.question-content .question-content_item .question-content_button .question-content_button__icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #b3b8bd;
	color: #b3b8bd;
	border-radius: 50%;
	font-size: 14px;
	transition: .3s all ease-in-out;
}

.question-content .question-content_item .question-content_button.active .question-content_button__icon {
	background-color: var(--blue-color);
	border-color: var(--blue-color);
	color: var(--white);
	transform: rotate(180deg);
}

.question-content .question-content_item .question-content_button.active {
	color: #121212;
}

.question-content .question-content_item .question-content_inner {
	padding-top: 16px;
	color: #263a4d;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}

.question-content .question-content_item .question-content_inner p:last-of-type,
.question-content .question-content_item .question-content_inner ul:last-of-type,
.question-content .question-content_item .question-content_inner ol:last-of-type {
	margin-bottom: 0;
}

.question-content .question-content_item .question-content_inner img {
	margin-bottom: 1rem;
}

.question-content .question-content_item + .question-content_item {
	margin-top: 16px;
}

.modal.show ~ .modal.show {
	z-index: 1052;
}

.modal-backdrop.show + .modal-backdrop.show {
	z-index: 1051;
}