:root {
	--mainColor: #f1c034;
}

::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--mainColor);
	opacity: .4;
}

::-webkit-scrollbar-thumb:hover {
	opacity: 1;
}

@keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes shake-anim {
	0% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		transform: rotate(0) scale(1) skew(1deg);
	}

	10%, 30% {
		-moz-transform: rotate(-25deg) scale(1) skew(1deg);
	}

	20%, 40% {
		-moz-transform: rotate(25deg) scale(1) skew(1deg);
	}

	100%, 50% {
		-moz-transform: rotate(0) scale(1) skew(1deg);
	}
}

@-webkit-keyframes shake-anim {
	0%, 100%, 50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}

	10%, 30% {
		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}

	20%, 40% {
		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
}

/* Main */
* {
	margin: 0px;
	padding: 0px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 14px;
	line-height: normal;
}

img, iframe {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

a, input, textarea {
	outline: none;
	padding: 0px;
}

a:hover {
	text-decoration: none;
}

dl, ol, ul {
	list-style: inside;
	margin: 0px;
	padding: 0px;
}

p {
	padding: 0px;
	margin: 0px;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.w-clear:after {
	display: block;
	content: "";
	clear: both;
}

.hidden {
	display: none;
}

.clear {
	clear: both;
}

.none {
	display: none;
}

.container {
	max-width: 1200px;
	width: 100%;
	padding: 0px 10px;
	position: relative;
}

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

.hidden-seoh {
	visibility: hidden;
	height: 0px;
	margin: 0px;
	overflow: hidden;
}

.wrap-main, .wrap-content {
	position: relative;
	padding: 20px 0px;
}

.wrap-home {
	max-width: 100%;
	padding: 0px;
}

.wrap-content {
	margin: auto;
}

.mb-30 {
	margin-bottom: 30px;
}

/* Loader */
.loader-wrapper {
	z-index: 99999999;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgb(255, 255, 255, 0.9);
	overflow: hidden;
	text-align: center;
	display: none;
}

.loader-wrapper .loader {
	position: relative;
	top: calc(50% - 30px)
}

.loader-wrapper .loader p {
	font-size: 13px;
	margin-top: 10px;
	color: #444;
	font-family: 'Arial';
}

.loader-wrapper .loader .preloader {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
	-webkit-animation: container-rotate 1568ms linear infinite;
	animation: container-rotate 1568ms linear infinite
}

.loader-wrapper .loader .preloader .spinner-layer {
	position: absolute;
	width: 100%;
	height: 100%;
	border-color: #007bff;
	-ms-opacity: 1;
	opacity: 1;
	-webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
	animation: fill-unfill-rotate 5332ms cubic-bezier(.4, 0, .2, 1) infinite both
}

.loader-wrapper .loader .preloader .spinner-layer .circle-clipper {
	display: inline-block;
	position: relative;
	width: 50%;
	height: 100%;
	overflow: hidden;
	border-color: inherit
}

.loader-wrapper .loader .preloader .spinner-layer .circle-clipper .circle {
	width: 200%;
	height: 100%;
	border-width: 3px;
	border-style: solid;
	border-color: inherit;
	border-bottom-color: transparent !important;
	border-radius: 50%;
	-webkit-animation: none;
	animation: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0
}

.loader-wrapper .loader .preloader .spinner-layer .circle-clipper.float-left .circle {
	left: 0;
	border-right-color: transparent !important;
	-webkit-transform: rotate(129deg);
	transform: rotate(129deg);
	-webkit-animation: left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
	animation: left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both
}

.loader-wrapper .loader .preloader .spinner-layer .circle-clipper.float-right .circle {
	left: -100%;
	border-left-color: transparent !important;
	-webkit-transform: rotate(-129deg);
	transform: rotate(-129deg);
	-webkit-animation: right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
	animation: right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both
}

@-webkit-keyframes container-rotate {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes container-rotate {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-webkit-keyframes fill-unfill-rotate {
	12.5% {
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg)
	}

	25% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg)
	}

	37.5% {
		-webkit-transform: rotate(405deg);
		transform: rotate(405deg)
	}

	50% {
		-webkit-transform: rotate(540deg);
		transform: rotate(540deg)
	}

	62.5% {
		-webkit-transform: rotate(675deg);
		transform: rotate(675deg)
	}

	75% {
		-webkit-transform: rotate(810deg);
		transform: rotate(810deg)
	}

	87.5% {
		-webkit-transform: rotate(945deg);
		transform: rotate(945deg)
	}

	to {
		-webkit-transform: rotate(1080deg);
		transform: rotate(1080deg)
	}
}

@keyframes fill-unfill-rotate {
	12.5% {
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg)
	}

	25% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg)
	}

	37.5% {
		-webkit-transform: rotate(405deg);
		transform: rotate(405deg)
	}

	50% {
		-webkit-transform: rotate(540deg);
		transform: rotate(540deg)
	}

	62.5% {
		-webkit-transform: rotate(675deg);
		transform: rotate(675deg)
	}

	75% {
		-webkit-transform: rotate(810deg);
		transform: rotate(810deg)
	}

	87.5% {
		-webkit-transform: rotate(945deg);
		transform: rotate(945deg)
	}

	to {
		-webkit-transform: rotate(1080deg);
		transform: rotate(1080deg)
	}
}

@-webkit-keyframes left-spin {
	from {
		-webkit-transform: rotate(130deg);
		transform: rotate(130deg)
	}

	50% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(130deg);
		transform: rotate(130deg)
	}
}

@keyframes left-spin {
	from {
		-webkit-transform: rotate(130deg);
		transform: rotate(130deg)
	}

	50% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(130deg);
		transform: rotate(130deg)
	}
}

@-webkit-keyframes right-spin {
	from {
		-webkit-transform: rotate(-130deg);
		transform: rotate(-130deg)
	}

	50% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	to {
		-webkit-transform: rotate(-130deg);
		transform: rotate(-130deg)
	}
}

@keyframes right-spin {
	from {
		-webkit-transform: rotate(-130deg);
		transform: rotate(-130deg)
	}

	50% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	to {
		-webkit-transform: rotate(-130deg);
		transform: rotate(-130deg)
	}
}

#full {
	position: relative;
}

.full_bg {
	background-size: 100% 100%;
}

/* General */
.title-main {
	margin-bottom: 1.5rem;
	text-align: center;
}

.title-main span {
	text-transform: uppercase;
	color: var(--mainColor);
	font-weight: 800;
	font-size: 23px;
}

.time-main {
	margin-bottom: 0.75rem;
	color: #999999;
}

.time-main i {
	vertical-align: top;
	margin: 3px 7px 0px 0px;
}

.time-main span {
	vertical-align: top;
	display: inline-block;
}

.wrap_name {
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.wrap_name .name {
	color: var(--mainColor);
	font-family: 'font1';
	font-size: 30px;
	line-height: normal;
	text-align: center;
	display: inline-block;
	position: relative;
	text-transform: uppercase;
}

.wrap_name .name2 {
	color: #fce700;
}

.wrap_name .name2:before {
	background: url(../imgs/l_name2.png);
}

.wrap_name .name2:after {
	background: url(../imgs/r_name2.png);
}

.wrap_name .name h2 {
	font-size: 30px; margin-bottom: 0px;
	font-weight: normal;
	line-height: normal;
}

.wrap_name .bong_name {
	background: url(../imgs/line_name.png) no-repeat center top;
	height: 9px;
	margin-top: 8px;
}

.wrap_name .bong_name2 {
	background: url(../imgs/line_name2.png) no-repeat center top;
}

.wrap_name .txt_home {
	color: #000;
	font-family: 'font3';
	text-align: center;
	font-size: 15px;
	margin-top: 6px;
}

.wrap_name .txt_home2 {
	color: #fff;
	line-height: 22px;
}

.wrap_name2 {
	margin-bottom: 15px;
}

.wrap_name .name3 {
	background: #fff;
	position: relative;
	padding: 0px 20px;
}

.wrap_name .name3:before {
	content: '';
	background: #ccc;
	height: 1px;
	width: 600px;
	position: absolute;
	left: -600px;
	top: 50%;
	transform: translate(0, -50%);
}

.wrap_name .name3:after {
	content: '';
	background: #ccc;
	height: 1px;
	width: 600px;
	position: absolute;
	right: -600px;
	top: 50%;
	transform: translate(0, -50%);
}

.share {
	padding: 17px 15px 10px 15px;
	line-height: normal;
	background: rgba(128, 128, 128, 0.15);
	margin-top: 15px;
	border-radius: 5px;
}

.share b {
	display: block;
	margin-bottom: 5px;
}

.control-owl {
	position: absolute;
	width: 100%;
	z-index: 2;
	left: 0px;
	top: calc(50% - 45px / 2);
}

.control-owl button {
	opacity: 0.5;
	top: 0px;
	position: absolute;
	outline: none;
	border: 0px;
	padding: 0px;
	margin: 0px;
	display: block;
	cursor: pointer;
	color: #ffffff;
	width: 45px;
	height: 45px;
	text-align: center;
	font-size: 25px;
	margin: 0px;
	background-color: #000000;
	border-radius: 3px;
	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;
}

.control-owl button:hover {
	opacity: 1;
}

.control-owl button.owl-prev {
	left: 20px;
}

.control-owl button.owl-next {
	right: 20px;
}

.form-control, .form-control-plaintext:not(textarea), .custom-select {
	height: calc(1em + 1.25rem + 8px);
}

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

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

.text-sm {
	font-size: 0.875rem !important;
}

/* Lazyload */
img.lazy {
	opacity: 0;
}

img:not(.initial) {
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}

img.initial, img.loaded, img.error {
	opacity: 1;
}

img:not([src]) {
	visibility: hidden;
}

.head_sec {
	background: #ccc;
	min-height: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.head_sec .lang {
	float: right;
	margin-right: 10px;
	margin-top: 9px;
}

.head_sec .lang img {
	margin-right: 5px;
}

.head_sec .search_head {
	float: right;
	position: relative;
}

.head_sec .cart_h {
	float: right;
	margin-right: 10px;
	margin-top: 1px;
}

.head_sec .cart_h a {
	display: inline-block;
	color: #fff;
	font-size: 15px;
	padding: 8px 8px;
	position: relative;
	;
}

.head_sec .cart_h i {
	color: var(--mainColor);
	font-size: 22px;
}

.head_sec .cart_h span {
	position: absolute;
	width: 15px;
	height: 15px;
	top: 2px;
	right: 2px;
	border-radius: 15px;
	line-height: 15px;
	text-align: center;
	background: #215108;
	font-size: 9px;
}

.search_head {
	position: relative;

	height: 40px;
	z-index: 99;

}

.khung_timkiem {
	position: relative;
	height: 40px;
	border: 1px solid #f2f2f2;
}

.timkiem {
	position: relative;
}

.timkiem input.tu_khoa {
	width: calc(100% - 48px);
	height: 40px;
	border: none;
	background: transparent;
	color: #000;
	position: absolute;
	left: 10px;
	line-height: normal;
}

.timkiem input.btn_img {
	position: absolute;
	top: 9px;
	right: 7px;
	border: none;
	width: 21px;
	height: 21px;
	background: url(../imgs/kinh.png) no-repeat center center;
}

.timkiem input::-webkit-input-placeholder {
	/* Chrome 21 */
	color: #000;
}

.timkiem input:-moz-placeholder {
	/* Firefox 17 */
	color: #000;
}

.timkiem input:-ms-input-placeholder {
	/* IE 10 */
	color: #000;
}

#header {
	z-index: 990;
	padding: 6px 7px;
	background: #fff;
	position: sticky;
	top: 0px;
	width: 100%;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=0, Color=#000000)";
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=135, Color=#000000);
}

.logo {
	position: relative;
	float: left;
}

.logo img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	height: 100%;
	max-height: 65px;
}

.menu_desk {
	float: right;
	margin-top: 12px;
}

.menu_desk ul {
	list-style: none;
}

.menu_desk ul li {
	float: left;
	position: relative;
}

.menu_desk ul li.line {
	width: 2px;
	margin-top: 15px;
	height: 15px;
	background: url(images/line_menu.png);
}

.menu_desk ul li.icon_home {
	margin: 0px;
}

.menu_desk ul li a {
	color: #000;
	font-size: 16px;
	text-transform: uppercase;
	display: block;
	font-family: 'font3';
	padding: 10px 23px;
}

.menu_desk>ul>li:hover>a, .menu_desk>ul>li.active>a {
	color: var(--mainColor);
	text-decoration: none;
}

.menu_desk ul ul {
	position: absolute;
	min-width: 170px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 999;
	top: 47px;
	/* left: 0px; */
	margin: 0px;
}

.menu_desk ul li:hover ul {
	opacity: 1;
	;
	visibility: visible;
	transition: 0.3s;
}

.menu_desk ul li:hover ul ul {
	opacity: 0;
	visibility: hidden;
}

.menu_desk ul li:hover ul ul ul {
	opacity: 0;
	visibility: hidden;
}

.menu_desk ul ul li:hover ul {
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}

.menu_desk ul ul ul li:hover ul {
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}

.menu_desk ul ul li {
	width: 100%;
	white-space: nowrap;
	line-height: normal;
	border-bottom: 1px solid #f3f3f3;
	max-height: none;
	margin: 0px;
	position: relative;
}

.menu_desk ul ul li a {
	text-transform: none;
	display: block;
	padding: 14px 15px;
	font-size: 14px;
	color: #000;
	font-family: 'font1';
}

.menu_desk h2, .menu_desk h3 {
	font-size: 14px;
	margin: 0px;
	font-family: 'font2';
	font-weight: normal;
}

.menu_desk ul h2 {
	line-height: 47px;
}

.menu_desk ul ul h2 {
	line-height: normal;
}

.menu_desk ul ul a:hover {
	background: none;
	border-top: none;
	color: var(--mainColor);
}

.menu_desk ul ul ul {
	left: 201px;
	top: 0px;
}

/* Mmenu */
#menu_mb {
	display: none;
}

.menu-res {
	height: 40px;
	z-index: 100;
	position: relative;
	display: none;
}

.menu-bar-res {
	height: 40px;
	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;
}

#hamburger {
	display: block;
	width: 30px;
	height: 23px;
	position: relative;
	color: var(--mainColor);
	font-size: 25px;
	padding-left: 42px;
	line-height: 21px;
	text-decoration: none;
}

#hamburger:before, #hamburger:after, #hamburger span {
	background: var(--mainColor);
	content: "";
	display: block;
	width: 30px;
	height: 3px;
	position: absolute;
	left: 0px;
}

#hamburger:before {
	top: 0px;
}

#hamburger span {
	top: 10px;
}

#hamburger:after {
	top: 20px;
}

#hamburger:before, #hamburger:after, #hamburger span {
	-webkit-transition: none 0.5s ease 0.5s;
	transition: none 0.5s ease 0.5s;
	-webkit-transition-property: transform, top, bottom, left, opacity;
	-webkit-transition-property: top, bottom, left, opacity, -webkit-transform;
	transition-property: top, bottom, left, opacity, -webkit-transform;
	transition-property: transform, top, bottom, left, opacity;
	transition-property: transform, top, bottom, left, opacity, -webkit-transform;
}

.mm-wrapper_opening #hamburger:before, .mm-wrapper_opening #hamburger:after {
	top: 10px;
}

.mm-wrapper_opening #hamburger span {
	left: -50px;
	opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mm-menu_opened {
	display: block !important;
}

.mm-slideout {
	z-index: unset;
}

.menu_mobile {
	float: left;
	position: relative;
	z-index: 33333
}

/* Search Responsive */
.search-pc {
	float: right;
	font-size: 22px;
	color: #a6a5a5;
	margin-top: 18px;
	margin-left: 20px;
	cursor: pointer;
}

/* Slideshow */
#mid_slide {
	background: #f2f3f7;
	padding: 10px 0px;
}

#slider {
	position: relative;
}

#slider .container {
	display: flex;
	gap: 10px;
	padding: 0px;
	height: auto;
}

.slide-l {
	position: relative;
	width: 100%;
	max-width: 796px;
}

.slide-r {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.slide-r .itemSlide a {
	display: block;
}

.slideshow-item {
	display: block;
	cursor: pointer;
}

.slideshow:hover .control-slideshow {
	opacity: 1;
}

.control-slideshow {
	opacity: 0;
}

.info_slide {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	background: rgb(0, 0, 0, 0.2);
	z-index: 10;
	padding: 45px 30px;
	text-align: center;
	width: 100%;
	max-width: 566px;
	left: 7%;
}

.info_slide .r1 {
	color: var(--mainColor);
	font-family: 'font1';
	font-size: 32px;
	margin-bottom: 10px;
}

.info_slide .r2 {
	color: #fff;
	font-family: 'fontt3';
	font-size: 24px;
}

.prev_slide {
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
	width: 45px;
	height: 45px;
	background: url(../imgs/prev.png);
	z-index: 11;
}

.next_slide {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
	width: 45px;
	height: 45px;
	background: url(../imgs/next.png);
	z-index: 11;
}

/* Partner */
.wrap-partner {
	padding: 20px 0px;
}

wrap-partner.partner {
	display: block;
	margin: 0px auto;
}

img.img_dt {
	width: 100%;
	height: auto;
}

/* Breadcrumb */
.breadCrumbs {
	background-color: #f8f8f8;
}

.breadCrumbs .wrap-content {
	padding: 0.75rem 10px;
}

.breadCrumbs .wrap-content .breadcrumb {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	border-radius: 0;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
	color: #212529;
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
	color: #6c757d;
}


/* Product */
.col-pro {
	margin-bottom: 25px;
}

.box_product {
	position: relative;
	background: #fff;
	border: 1px solid #e0e0e0;
	padding: 8px;
}

.box_product .img {
	position: relative;
	overflow: hidden;
}

.box_product .img img {
	transition: transform 0.5s ease;
	transition: 0.5s;
	width: 100%;
	height: auto;
}

.box_product:hover .img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.box_product .info {
	text-align: center;
	padding-top: 15px;
}

.box_product .name {
	margin-bottom: 4px;
}

.box_product .name a {
	color: #000;
	font-family: 'font3';
	display: block;
}

.box_product .name h3 {
	font-size: 16px;
	margin: 0px;
}

.box_product .price {
	font-family: 'font3';
	font-size: 17px;
	color: #262626;
	text-transform: uppercase;
}

.box_product .price span.ban {
	font-family: 'font3';
	font-size: 15px;
}

.box_product .price span.cu {
	color: #afb0b2;
	font-family: 'font3';
	text-decoration: line-through;
	margin-right: 20px;
	font-size: 13px;
}

.box_product .view {
	margin-top: 5px;
	text-align: center;
}

.box_product .view a {
	color: #fff;
	font-family: 'font1';
	display: inline-block;
	background: url(../imgs/xemthem.png) no-repeat 0px 0px;
	height: 51px;
	width: 132px;
	line-height: 47px;
	text-align: center;
}

.box_product .view a:hover {
	color: #000;
}

.box_product:hover {
	border: 1px solid var(--mainColor);
}

.box_product:hover .info .name a {
	color: var(--mainColor);
}

.box_product .des {
	color: #383838;
	font-size: 13px;
}

.box_product .bot_pro {
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
	align-items: center;
	margin-top: 7px;
}

.box_product .reviews {
	display: flex;
}

.box_product .reviews i {
	color: #ffc103;
	font-size: 12px;
	margin-right: 2px;
}

.box_product .icon a.type1 {
	display: inline-block;
	background: var(--mainColor) url(../imgs/icon_cart.png) no-repeat 10px center;
	color: #fff;
	font-family: 'font3';
	padding: 9px 10px 9px 37px
}

.box_product .icon a.type2 {
	display: none;
}

.box_product2 {
	position: relative;
}

.box_product2 .img {
	position: relative;
	border-radius: 50%;
	border-left: 15px solid #fff;
}

.box_product2 .img img {
	border-radius: 50%;
}

.box_product2 .icon_sp {
	position: absolute;
	left: 50%;
	bottom: -24px;
	transform: translate(-50%, 0);
	width: 62px;
	height: 54px;
	background: url(../imgs/icon_list.png);
}

.box_product2 .name {
	margin-top: 40px;
	text-align: center;
}

.box_product2 .name a {
	display: block;
	color: #fff;
	font-family: 'font1';
}

.box_product2 .name h3 {
	font-size: 16px;
}

.box_product2:hover .name a {
	color: #ffcc16;
}

.box_product3 .name h3 {
	font-size: 15px;
}

.box_product3 .price span.ban {
	color: var(--mainColor);
	font-family: 'font1';
	font-size: 13px;
}

.box_product3 .price span.cu {
	color: #afb0b2;
	font-family: 'font3';
	text-decoration: line-through;
	margin-right: 15px;
	font-size: 12px;
}

.box_product3 .reviews {
	width: 100%;
	margin-bottom: 10px;
}

.box_product3 .reviews i {
	font-size: 10px;
}

.box_product3 .icon {
	width: 100%;
}

.box_product3 .icon a.type1 {
	background: var(--mainColor) url(../imgs/icon_cart.png) no-repeat 6px center;
	padding: 6px 8px 6px 30px;
	font-size: 12px;
}

.wrap_sp {
	-ms-flex: 0 0 16.667%;
	flex: 0 0 16.667%;
	max-width: 16.667%;
	margin-bottom: 30px;
	padding: 0px 5px;
}

.sanpham {
	position: relative;
	width: 100%;
	margin: auto;
	text-align: center;
}

.sanpham .img {
	overflow: hidden;
	position: relative;
	text-align: center;
	border-radius: 6px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=0, Color=#000000)";
	/*IE 8*/
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	/*FF 3.5+*/
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	/*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=135, Color=#000000);
	/*IE 5.5-7*/
}

.sanpham .img .saleoff {
	position: absolute;
	top: 5px;
	left: 5px;
	font-weight: bold;
	color: #fff;
	padding: 3px 6px;
	background: #f20;
	font-size: 11px;
	-webkit-border-radius: 4px;
	/*Safari, Chrome*/
	-moz-border-radius: 4px;
	/*Firefox*/
	border-radius: 4px;
}

.sanpham .img img {
	-webkit-transition: -webkit-transform 0.5s ease;
	-moz-transition: -moz-transform 0.5s ease;
	transition: transform 0.5s ease;
	transition: 0.5s;
}

.sanpham .overlay_info {
	position: absolute;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	text-align: left;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 5px 10px 10px 10px;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
}

.sanpham .overlay_info a {
	color: #fff;
}

.sanpham .overlay_info ul {
	list-style: none;
}

.sanpham .overlay_info .name_overlay {
	font-family: 'font3';
	font-size: 15px;
	margin-bottom: 5px;
}

.sanpham .img:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.sanpham:hover .overlay_info {
	visibility: visible;
	opacity: 1;
	transition: 0.5s;
}

/*.sanpham .img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}*/

.sanpham .pro_info {
	padding: 12px 5px 0px;
	border-top: none;
}

.sanpham .name {
	text-align: center;
	margin-bottom: 3px;
	/*margin: 17px 0px 2px 0px;*/
}

.sanpham .name a {
	font-family: 'font3';
	color: #000;
}

.spjcau .name a {
	color: #4a4a4a;
}

.sanpham .name h3 {
	font-size: 13px;
}

.sanpham .price {
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: end;
	margin-top: 4px;
}

.sanpham .price span:not(.price_old) {
	color: #ff0000;
	font-weight: bold;
	font-size: 15px;
}

.sanpham .price span.price_old {
	text-decoration: line-through;
	font-size: 12px;
	text-align: center;
	color: #acacac;
}

.sanpham .des {
	text-align: justify;
	line-height: 20px;
}

.sanpham:hover .name a {
	color: var(--mainColor);
	text-decoration: none;
}


/* Product Detail */
.grid-pro-detail {
	padding: 10px 0px 30px;
}

.left-pro-detail {
	position: relative;
	text-align: center;
	padding-left: 0px;
}

.left-pro-detail .MagicZoom {
	background-color: #ffffff;
}

.right-pro-detail {
	padding-right: 0px;
}

.gallery-thumb-pro {
	position: relative;
	margin-top: 10px;
}

.owl-pro-detail {
	padding: 0px 30px;
}

.control-pro-detail button {
	background-color: transparent;
	color: #222222;
	opacity: 1;
	width: 25px;
	font-size: 23px;
}

.control-pro-detail button:hover {
	opacity: 0.7;
}

.control-pro-detail button.owl-prev {
	left: 0px;
}

.control-pro-detail button.owl-next {
	right: 0px;
}

.thumb-pro-detail {
	display: block !important;
	border: 1px solid #eee;
	padding: 5px;
	border-radius: 3px;
	cursor: pointer;
	background-color: #ffffff;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
	border-color: #cecfd2;
}

.thumb-pro-detail img {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	-webkit-filter: brightness(100%) !important;
	filter: brightness(100%) !important;
	border-bottom: 0px !important;
	padding-bottom: 0px !important;
}

.title-pro-detail {
	text-transform: capitalize;
	font-size: 20px;
	display: block;
	font-family: 'font1';
	color: #000;
}

.comment-pro-detail {
	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-plugin-pro-detail {
	margin-bottom: 1rem;
	margin-top: 0px !important;
}

.title_pro_detail {
	display: block;
	margin-bottom: 10px;
	font-family: 'font1';
	font-size: 18px;
}

.desc-pro-detail {
	padding: 18px 0px;
	line-height: 22px;
}
.desc-pro-detail p {
	margin-bottom: 10px;
}

.attr-pro-detail {
	list-style: none;
	padding: 0px;
}

.attr-pro-detail li {
	padding: 12px 0px;
	font-size: 15px;
	border-top: 1px solid #f3f3f3;
}

.attr-label-pro-detail {
	margin: 0px 5px 0px 0px;
	font-family: 'font1';
}

.attr-label-pro-detail.d-block {
	display: block;
	margin: 0px 0px 5px 0px;
}

.attr-content-pro-detail {
	display: inline-block;
	margin-bottom: 0px;
}

.price-new-pro-detail {
	font-weight: 700;
	font-size: 20px;
	color: #fe0000;
}

.price-old-pro-detail {
	font-weight: 500;
	color: #6c757d;
	text-decoration: line-through;
	padding-left: 10px;
}

.color-pro-detail {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: 35px;
	height: 30px;
	margin: 0px 0px 3px 0px;
	border: 1px solid transparent;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.size-pro-detail {
	cursor: pointer;
	border: 1px solid #ccc;
	padding: 3px 10px 4px 10px;
	display: inline-block;
	position: relative;
}

.size-pro-detail.active {
	border-color: var(--mainColor);
	color: var(--mainColor);
}

.color-pro-detail.active {
	border-color: var(--mainColor);
	color: var(--mainColor);
}

.size-pro-detail.active:after {
	content: "";
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 13px;
	height: 13px;
	background-repeat: no-repeat;
	background-image: url(../images/check-cart.png);
}

.color-pro-detail.active:after {
	content: "";
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 13px;
	height: 13px;
	background-repeat: no-repeat;
	background-image: url(../images/check-cart.png);
}

.color-pro-detail input[type="radio"] {
	display: none;
}

.size-pro-detail input[type="radio"] {
	display: none;
}

.quantity-pro-detail {
	width: 100%;
	max-width: 110px;
	line-height: normal;
	text-align: center;
	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;
	position: relative;
	margin-right: 20px;
}

.quantity-pro-detail label {
	position: absolute;
	right: -34px;
	bottom: -7px;
	margin-right: 0px;
	font-family: 'font3';
}

.quantity-pro-detail span {
	line-height: 34px;
	padding: 0px;
	width: 35px;
	height: 40px;
	color: #5f5f5f;
	cursor: pointer;
	font-size: 24px;
	border: 1px solid #cccccc;
	background-color: #f8f9fa;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
	border-left: 0px;
	border-radius: 0px 5px 5px 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
	border-right: 0px;
	border-radius: 5px 0px 0px 5px;
}

.quantity-pro-detail input {
	height: 40px;
	border: 1px solid #cccccc;
	width: calc(100% - 60px);
	text-align: center;
	font-size: 14px;
	padding: 5px;
	border-radius: 0px;
}

.cart-pro-detail {
	margin-bottom: 1rem;
	display: flex;
	margin-top: 1rem;
}

.cart-pro-detail a {
	font-size: 14px;
	color: #fff;
	display: inline-block;
	color: #fff;
	border-radius: 5px;
	border: 1px solid var(--mainColor);
	padding: 7px 10px;
	margin-right: 10px;
	border-radius: 5px;
}

.cart-pro-detail a:last-child {
	margin-right: 0px;
	color: var(--mainColor);
}

.cart-pro-detail a:hover {
	background: var(--mainColor);
	color: #fff;
}

.cart-pro-detail2 a {
	font-size: 11px;
	padding: 6px 7px 4px;
}

@media only screen and (max-width:767px) {
	/* .cart-pro-detail a { width: 100%; }
  .cart-pro-detail a:first-child { margin-right: 0px; margin-bottom: 0.5rem; }
  .cart-pro-detail a i { display: none; } */
}

.tags-pro-detail {
	margin-bottom: 1rem;
}

.tags-pro-detail a {
	float: left; border: none;
	font-size: 14px;
	padding-bottom: 0.375rem;
	margin: 0px 8px 8px 0px;
	background: #f2f2f2;
	color: #333;
}

.tags-pro-detail a i {
	font-size: 13px; color: red;
	margin: 5px 5px 0px 0px;
}

.wrap-tabs ul.nav-tabs{
	border-bottom: none; position: relative; z-index: 2;
}
.wrap-tabs ul.nav-tabs li a{
	padding: 10px 15px; border: #f2f2f2 1px solid; border-bottom: none; border-radius: 5px 5px 0px 0px;
	display: block; color: #000;; background-color: #f2f2f2; font-weight: bold; text-transform: capitalize;
}
.wrap-tabs ul.nav-tabs li > a.active{
	background: #fff; color: var(--mainColor); border: 1px solid var(--mainColor); border-bottom: 1px solid #fff; 
}
.wrap-tabs .tab-content{
	border: 1px solid var(--mainColor); border-radius: 0px 5px 5px 5px;
	padding: 20px 10px 10px; position: relative; top: -1px; z-index: 1;
}

.tab-content img, .tab-content table {
	max-width: 100%;
	height: auto;
}

.tab-content iframe {
	max-width: 100%;
}

.tab-content p{
	margin-bottom: 1rem;
}

.flex_product_detail {
	background: #fff;
}

.flex_product_detail .col-l-pro {
	width: calc(100% - 320px);
	padding: 45px 20px 30px 20px;
	float: left;
}

.flex_product_detail .col-l-pro .row {
	margin: 0px
}

.flex_product_detail .col-r-pro {
	width: 320px;
	padding: 45px 20px 30px 20px;
	float: right;
	position: sticky;
	top: 20px;
}

.sticky {
	background: #fff;
	z-index: 99;
}

.content_product_lq {
	background: #f0f1f6;
	padding: 10px 0px 40px;
}

.attr-pro-detail .row_price_product_detail {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.flex_qty_product {
	display: flex;
	align-items: center;
	margin-top: 1rem;
}

.flex_qty_product label.attr-label-pro-detail {
	width: 85px;
	display: inline-block;
	color: #858383;
}

.flex_qty_product a {
	display: inline-block;
	border-radius: 5px;
	background: var(--mainColor);
	color: #fff;
}

.flex_qty_product a:hover {
	color: #fff;
	background: #262626;
}

.flex_qty_product2 {
	justify-content: center;
}

.flex_qty_product2 a {
	border-radius: 50px;
	font-size: 14px;
	padding: 5px 22px;
}

.title-main-other {
	text-align: center;
	margin-bottom: 35px;
}

.title-main-other span {
	display: inline-block;
	font-size: 15px;
	font-family: 'font1';
	text-transform: uppercase;
	color: #fff;
	position: relative;
	padding: 13px 27px;
	background: var(--mainColor);
}

.title-main-other span:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: var(--mainColor);
	border-width: 5px;
	margin-left: -5px;
}

.row_option_product {
	display: flex;
	align-items: flex-start;
}

.row_option_product .txt {
	width: 85px;
	padding-top: 3px;
	color: #858383;
}

.row_option_product .options_pro {
	flex: 1;
	text-align: left;
}

.row_option_product .options_pro span {
	display: inline-block;
	color: var(--mainColor);
	border: 1px solid var(--mainColor);
	padding: 4px 10px;
	font-size: 13px;
	margin-right: 4px;
	margin-bottom: 5px;
	cursor: pointer;
}

.row_option_product .options_pro span:hover, .row_option_product .options_pro span.active {
	background: var(--mainColor);
	color: #fff;
}

.block {
	margin-bottom: 20px;
}

.name_block {
	text-align: left;
	color: #fff;
	background: var(--mainColor);
	text-transform: capitalize;
	font-size: 18px;
	font-family: 'font1';
	padding-left: 20px;
	height: 40px;
	line-height: 45px;
}

.content_block {
	font-family: 'font3';
	border: 1px solid #eee;
}

.content_block ul {
	list-style: none;
}

.content_block ul li a {
	display: block;
	color: #000;
	font-size: 15px;
	font-family: 'font3';
	padding: 14px 10px 10px 15px;
	border-bottom: 1px solid #eee;
}

.content_block ul li i {
	margin-right: 10px;
}

.content_block ul li:last-child a {
	border-bottom: none;
}

.content_block ul li a:hover {
	color: var(--mainColor);
}

.flex_qr {
	display: flex;
	align-items: center;
}

.flex_qr .img {
	width: 70px;
	padding: 2px;
	border: 1px solid #eee;
}

.flex_qr .txt {
	flex: 1;
	padding-left: 18px;
	font-style: italic;
	font-family: 'font3';
}

.txt_khohang {
	font-family: 'font1';
	text-transform: uppercase;
	font-size: 15px;
	margin-bottom: 15px;
	color: #000;
}

.list_khohang ul {
	padding-left: 10px;
	color: #858383;
	margin-bottom: 15px;
}

.list_khohang ul li {
	margin-top: 8px;
	font-size: 13px;
}

/* News */
.news {
	margin-bottom: 2rem;
}

.news-slide {
	position: relative;
	width: 100%;
	margin: auto;
	text-align: left;
	border: 1px solid #ddd;
	background: #fff;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=0, Direction=135, Color=#757575)";
	-moz-box-shadow: 4px 4px 0 rgba(117, 117, 117, 0.1);
	-webkit-box-shadow: 4px 4px 0 rgba(117, 117, 117, 0.1);
	box-shadow: 4px 4px 0 rgba(117, 117, 117, 0.1);
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=0, Direction=135, Color=#757575);
}

.news-slide .news-info {
	padding: 15px 10px;
	box-sizing: border-box;
}

/*Post*/
.wrap-post {
	padding: 40px 0;
	width: 100%;
}

.box-content-news {
	margin-top: 20px;
}

.slick-post {
	width: 100%
}

.news-post-index {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 10px;
}

.news-post-index-image {
	max-width: 160px;
}

.news-post-index-content {
	width: calc(100% - 175px);
}

.news-post-index-content .news-name, .popup-content .news-name {
	font-family: 'font1';
	font-size: 16px;
	height: 20px;
	margin-bottom: 0
}

.news-post-index-content .news-name a {
	text-decoration: none;
	color: #333;
	-webkit-line-clamp: 1;
}

.news-post-index-content .news-name:hover a {
	text-decoration: none;
	color: var(--mainColor);
}

.news-post-index-content .news-desc {
	height: 42px;
	margin-top: 5px;
	-webkit-line-clamp: 2;
}

.news-post-l-images {
	position: relative;
}

.news-post-l-images:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, #000000a8 20%, transparent 80%);
}

.popup-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 20px;
	box-sizing: border-box;
	color: #fff;
	z-index: 1;
	padding-bottom: 20px;
}

.popup-content .news-name a {
	text-decoration: none;
	color: #fff;
	-webkit-line-clamp: 1;
}

.popup-content .news-name:hover a {
	text-decoration: none;
	color: #ff0;
}

.popup-content .name {
	margin-bottom: 10px;
}

.popup-content .news-desc {
	margin-top: 5px;
}

.news-post-l-images:hover img {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.popup-content .news-name {
	margin-bottom: 10px;
}


@media only screen and (max-width:575px) {
	.news .news-image {
		margin-bottom: 1rem;
	}

	.wrap-post {
		padding-bottom: 20px;
	}
}

.news .news-name {
	margin-bottom: 0.5rem;
}

.news .news-name a {
	color: #333;
	font-size: 16px;
}

.news .news-name a.text-split {
	-webkit-line-clamp: 2;
}

.news .news-name a:hover {
	color: var(--mainColor);
}

.news .news-time {
	color: #84878a;
	margin-bottom: 0.25rem;
}

.news .news-desc {
	color: #333333;
	margin-top: 5px;
	line-height: 22px;
}

.othernews b {
	margin-bottom: 10px;
}

.list-news-other {
	padding-left: 17px;
	list-style: square;
}

.list-news-other li {
	margin-bottom: 2px;
}

.list-news-other li a {
	text-transform: none;
	color: #333333;
}

.list-news-other li a:hover {
	color: var(--mainColor);
}

/* Contact */
.contact-text {
	margin-bottom: 3rem;
}

.contact-article {
	position: relative;
}

.contact-input {
	position: relative;
	margin-bottom: 15px;
}

.contact-input textarea {
	resize: none;
	height: 150px;
}

.contact-input .custom-file-label::after {
	content: attr(title);
}

.contact-map {
	position: relative;
	height: 500px;
}

.contact-map iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100% !important;
	height: 100% !important;
}

/* Footer */
#footer {
	position: relative;
	padding: 30px 0px 10px;
	border-top: 1px solid #f2f2f2;
}

.content_foot {
	font-size: 14px;
	line-height: 24px;
	font-family: 'font3';
}

.title_foot {
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-family: 'font1';
}

.title_foot2 {
	margin-bottom: 2px;
}

/*.line_foot{width: 32px; height: 2px; background: #fff; margin-bottom: 20px;}*/
.name_company {
	text-align: left;
	margin-bottom: 15px;
	font-family: 'font2';
	text-transform: uppercase;
	color: #000;
	font-size: 24px;
}

.foot_info {
	font-size: 15px;
	padding-left: 40px;
	margin-bottom: 10px;
	color: #000;
	min-height: 30px;
	font-family: 'font3';
	padding-top: 4px;
}

.text_company {
	text-align: left;
	color: #fb6901;
	font-family: 'font4';
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 5px;
}

.foot_name {
	font-family: 'font1';
	color: #fb6901;
	font-size: 36px;
	text-align: left;
	margin-bottom: 15px;
}

.foot1 {
	background: url(../imgs/foot1.png) no-repeat 0px 0px;
}

.foot2 {
	background: url(../imgs/foot2.png) no-repeat 0px 0px;
}

.foot3 {
	background: url(../imgs/foot3.png) no-repeat 0px 0px;
}

.foot4 {
	background: url(../imgs/foot4.png) no-repeat 0px 0px;
}

.flex_f {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.col-foot {
	margin-bottom: 20px;
	color: #333;
	font-size: 15px;
}

.col-foot-1 {
	width: 400px;
}

.col-foot-2 {
	width: 300px;
}

.col-foot-3 {
	width: 250px;
}

.ul_kenh img {
	display: inline-block;
	margin-right: 10px
}

.ul_kenh li {
	margin-bottom: 7px;
}

.ul_kenh li a {
	color: #000;
	font-family: 'font2';
	display: block;
}

.ul_kenh li a:hover {
	color: var(--mainColor);
}

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

ul.ul_foot li {
	position: relative;
	margin-bottom: 12px;
}

ul.ul_foot li a {
	color: #000;
	display: block;
	font-size: 14px;
	font-family: 'font3';
}

ul.ul_foot li a:hover {
	color: var(--mainColor);
}

.r_foot {
	display: flex;
	flex-flow: row wrap;
}

.link_map a {
	display: inline-block;
	color: var(--mainColor);
	background: url(../imgs/map.png) no-repeat 0px 0px;
	padding-left: 60px;
	min-height: 56px;
	text-decoration: underline;
	font-family: 'font3';
	font-size: 15px;
	padding-top: 19px;
}

.mxh_f {
	text-align: left;
	margin-top: 20px;
	padding-top: 25px;
	border-top: 1px solid #fff;
}

.mxh_f span {
	display: block;
	color: #fff;
	font-family: 'font3';
	font-size: 15px;
	margin-bottom: 10px;
}

.mxh_f a {
	display: inline-block;
	margin-left: 5px;
}

.tags_home {
	margin-top: 30px;
}

.tags_home span {
	display: block;
	color: #fff;
	font-family: 'font1';
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 15px;
	background: url(../imgs/share.png) no-repeat 0px 0px;
	min-height: 25px;
	padding-left: 35px;
	padding-top: 2px;
}

.tags_home a {
	display: inline-block;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 10px 18px;
	margin-right: 7px;
	margin-bottom: 7px;
	font-size: 15px;
}

.tags_home a:hover {
	color: #fff;
	background: #fb6901;
	border: 1px solid #fb6901;
}

#nav-bottom {
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 100;
	background: #fff;
	border-radius: 10px 10px 0px 0px;
	height: 60px;
	display: none;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=0, Color=#000000)";
	/*IE 8*/
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	/*FF 3.5+*/
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	/*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=135, Color=#000000);
	/*IE 5.5-7*/
}

#nav-bottom ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	padding: 0px 5px;
	margin: 0;
}

#nav-bottom ul li {
	width: 20%;
}

#nav-bottom ul li a {
	display: block;
	text-align: center;
	color: #333;
	padding: 10px 5px;
}

#nav-bottom ul li i {
	font-size: 22px;
}

#nav-bottom ul li span {
	font-size: 10px;
	width: 100%;
	display: block;
	margin-top: 6px;
}

#nav-bottom ul li a.active {
	color: var(--mainColor);
}

#bottom {
	border-top: 1px solid #f2f2f2;
	color: #4e4e4e;
	font-family: 'font3';
	font-size: 14px;
	position: relative;
}

#bottom .container {
	padding: 18px 0px;
}

.copyright {
	text-align: center;
	letter-spacing: 1px;
}

.copyright i {
	color: #eb3e32;
}

.thongke {
	float: right;
	text-align: right;
	font-size: 13px;
}

.thongke span {
	margin: 0px 10px;
}

#map_home {
	position: relative;
}

#map_home iframe {
	width: 100%;
	height: 265px;
}

.logo_f {
	text-align: center;
	margin-bottom: 30px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;
  height: 0;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Like Share */
.social-plugin {
	margin-top: 10px;
	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;
}

.social-plugin .at-share-btn {
	margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
	margin-left: 2px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
	color: #000;
	font-size: 0.875rem;
	background: #e5e5e5;
}

.pagination-home .pagination .page-item.active .page-link {
	color: #fff;
	background-color: #0f75ea;
	border-color: #0f75ea;
}

.pagination li {
	margin: 5px;
}

div.pagination {
	font-family: 'font3';
	margin: 0px;
	margin-top: 20px;
	text-align: center;
	width: 100%;
	font-size: 14px;
	justify-content: center;
}

div.pagination b {
	padding: 7px 12px 4px;
	display: inline-block;
	border: 1px solid #0f75ea;
	background: #0f75ea;
	color: #fff;
}

div.pagination a {
	margin: 0px 2px;
	display: inline-block;
	padding: 7px 12px 4px;
	background: #e5e5e5;
	border: 1px solid #e5e5e5;
	text-decoration: none;
	color: #000;
}

/* Paging Ajax */
.pagination-ajax {
	text-align: center;
}

.pagination-ajax a {
	display: inline-block;
	vertical-align: top;
	margin: 0px 3px 3px 3px;
	width: 35px;
	height: 35px;
	line-height: 33px;
	color: #666 !important;
	border: 1px solid #e6e6e6;
	font-size: 13px;
	cursor: pointer;
	text-decoration: none !important;
	background-color: #ffffff;
}

.pagination-ajax a.current, .pagination-ajax a:hover {
	color: #ffffff !important;
	border-color: var(--mainColor);
	background-color: var(--mainColor);
}

.pagination-ajax a.first, .pagination-ajax a.last, .pagination-ajax a.prev, .pagination-ajax a.next {
	text-indent: -9999px;
	position: relative;
	background-color: #ffffff !important;
}

.pagination-ajax a.first:before, .pagination-ajax a.last:before, .pagination-ajax a.prev:before, .pagination-ajax a.next:before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
}

.pagination-ajax a.first:before {
	background-image: url(../images/page-first.png);
}

.pagination-ajax a.last:before {
	background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev:before {
	background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next:before {
	background-image: url(../images/page-next.png);
}


/* Cart */
#popup-cart .modal-title {
	text-transform: uppercase;
}

#popup-cart .modal-body .wrap-cart {
	padding: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0px;
}

#popup-cart .modal-footer {
	padding: 0.75rem 0 0 0;
	border-top: 0px;
	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;
}

.buymore-cart {
	color: var(--mainColor);
	cursor: pointer;
	margin: 0px;
}

.buymore-cart i {
	margin-right: 2px;
	margin-top: 5px;
	vertical-align: top;
	font-size: 12px;
}

.wrap-cart {
	padding: 20px 15px;
	font-size: 15px;
	font-family: 'font3';
	background: #ffffff;
	border: 1px solid #d8d8d8;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.top-cart {
	border-right: 1px solid #eee;
}

@media only screen and (max-width: 991px) {
	.top-cart {
		margin-bottom: 2rem;
	}
}

.procart {
	padding: 20px 10px;
	border: 1px solid #eee;
	border-top: 0px;
}

.pic-procart {
	text-align: center;
}

.pic-procart img {
	max-height: 100px;
	height: inherit;
}

.pic-procart .del-procart {
	color: #999;
	font-size: 12px;
	display: block;
	margin-top: 5px;
	cursor: pointer;
}

.pic-procart .del-procart:hover {
	color: red;
}

.name-procart a {
	font-size: 15px;
	color: #000;
	display: block;
}

@media only screen and (max-width: 575px) {
	.wrap-cart {
		padding: 0px;
		box-shadow: none;
		-webkit-box-shadow: none;
		border: none;
	}

	.unit-price {
		font-size: 13px;
	}
}

.name-procart a:hover {
	color: var(--mainColor);
}

.properties-procart {
	display: block;
}

.properties-procart p {
	display: inline-block;
	margin-bottom: 0px;
}

.properties-procart p:first-child {
	margin-right: 10px;
}

.properties-procart p strong {
	font-weight: 600;
}

@media only screen and (max-width: 767px) {
	.quantity-procart {
		text-align: right;
	}

	.news-post-l {
		margin-bottom: 20px;
	}
}

.quantity-procart p {
	margin-bottom: 0px;
}

.quantity-counter-procart {
	border: 1px solid #dfdfdf;
	width: 100%;
	height: 30px;
	line-height: normal;
	text-align: center;
	border-radius: 3px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.counter-procart {
	background-color: #f8f9fa;
	border: 0px;
	width: 30%;
	color: #333;
	outline: none;
	cursor: pointer;
	font-size: 23px;
}

.counter-procart:hover, .counter-procart:focus {
	color: var(--mainColor);
}

.counter-procart:disabled {
	color: #ccc;
	cursor: not-allowed;
}

.counter-procart:disabled:hover {
	color: #ccc;
	cursor: not-allowed;
}

.counter-procart-minus {
	line-height: 26px;
}

.counter-procart-plus {
	line-height: 24px;
}

.quantity-counter-procart .quantity-procart {
	width: 40%;
	border-radius: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 0px;
	border-right: 1px solid #dfdfdf;
	border-left: 1px solid #dfdfdf;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0px;
	color: #333;
	text-align: center;
}

.price-procart {
	width: 20%;
	text-align: right;
}

@media only screen and (max-width: 767px) {
	.price-procart {
		display: none;
	}
}

.price-procart-rp {
	display: none;
	width: 100%;
	margin-bottom: 10px;
	font-size: 13.5px;
}

@media only screen and (max-width: 767px) {
	.price-procart-rp {
		display: block;
	}
}

.price-new-cart {
	color: var(--mainColor);
	margin-bottom: 0px;
}

.price-old-cart {
	color: #999;
	text-decoration: line-through;
}

.procart-label {
	border: 0px;
	background: #eee;
	padding: 10px;
	margin: 0px;
	text-transform: capitalize;
}

@media only screen and (max-width: 575px) {
	.procart-label {
		font-size: 13px;
	}
}

@media only screen and (min-width: 768px) {
	.procart-label .quantity-procart p:first-child {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.procart-label .quantity-procart p:first-child {
		display: none;
	}
}

@media only screen and (min-width: 768px) {
	.procart-label .quantity-procart p:last-child {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.procart-label .quantity-procart p:last-child {
		display: block;
	}
}

.money-procart {
	margin-top: 15px;
}

.total-procart {
	background: #eee;
	padding: 7px 10px;
	border: 1px solid #dddfe2;
	margin-bottom: -1px;
	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;
}

.total-procart p {
	margin-bottom: 0px;
	font-size: 15px;
}

.total-procart p:last-child {
	color: var(--mainColor);
}

.section-cart {
	position: -webkit-sticky;
	position: sticky;
	top: 15px;
}

.title-cart {
	font-size: 16px;
	font-family: 'font1';
	text-transform: uppercase;
	color: var(--mainColor);
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
	margin-bottom: 15px;
}

.information-cart {
	margin-bottom: 1.5rem;
}

.input-cart {
	margin-bottom: 0.5rem;
	position: relative;
}

.input-cart textarea {
	resize: none;
	height: 100px;
}

.input-cart select {
	cursor: pointer;
}

.payments-cart {
	text-align: left;
	margin-bottom: 5px;
	min-height: auto;
}

.payments-cart:last-child {
	margin-bottom: 0px;
}

.payments-cart input {
	top: calc(50% - 1.25rem / 2);
}

.payments-label {
	cursor: pointer;
	background: #eee;
	display: block;
	padding: 10px 15px;
	border-radius: 3px;
	margin-bottom: 0px;
	color: #313131 !important;
}

.payments-label::before, .payments-label::after {
	top: calc(50% - 1rem / 2);
}

.payments-label.active {
	background: var(--mainColor);
	color: #ffffff !important;
}

.payments-info {
	opacity: 0;
	visibility: hidden;
	height: 0px;
	overflow: hidden;
	background: #f5efef;
	border-radius: 5px;
}

.payments-info p {
	margin-bottom: 1em;
}

.payments-info.active {
	padding: 10px 15px;
	margin-top: 5px;
	opacity: 1;
	visibility: visible;
	height: auto;
}

.btn-cart {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
	font-size: 14px;
	text-transform: uppercase;
	background: #fd6e1d;
	background: -o-linear-gradient(top, #f59000, #fd6e1d);
	font-size: 18px;
	padding: 12px 0px;
	position: relative;
	z-index: 100;
	margin-top: 15px;
}

.btn-cart:hover {
	background: var(--mainColor);
}

.empty-cart {
	padding: 25px 30px;
	display: block;
	text-align: center;
	color: #23527c !important;
	width: 100%;
}

.empty-cart i {
	color: red;
	font-size: 70px;
}

.empty-cart p {
	margin: 15px 0px;
	color: #333;
	font-size: 18px;
}

.empty-cart span {
	display: inline-block;
	border: 1px solid #2e9ef2;
	border-radius: 3px;
	padding: 10px;
	font-size: 16px;
	text-transform: uppercase;
	width: 100%;
	max-width: 325px;
}

.unit-price {
	margin-top: 10px;
	font-size: 14px;
	color: #999;
}

.unit-price span {
	color: var(--mainColor);
}



/* Popup */
#popup .modal-body {
	padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
	display: none !important;
	width: 0px !important;
	height: 0px !important;
	visibility: hidden !important;
	overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
	display: none;
}

/* Scroll Top */
.scrollToTop {
	width: 41px;
	height: 41px;
	text-align: center;
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position: fixed;
	bottom: 70px;
	right: 10px;
	display: none;
	z-index: 10;
	cursor: pointer;
}

/* Text Hide */
.text-split {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
}

/* Transition All */
.transition, .control-owl button, .carousel-comment-media .carousel-control a span, .menu ul li a.has-child:after, .menu ul li ul, .menu ul li:hover>ul, .scale-img img, .scale-img:hover>img, .btn-frame .kenit-alo-circle-fill, .support-online .kenit-alo-circle-fill {
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}

/* Scale IMG */
.scale-img {
	overflow: hidden;
	display: block;
}

.scale-img img {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.scale-img:hover>img {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
	-webkit-animation-name: blink;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-name: blink;
	-moz-animation-duration: 1s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;
	animation-name: blink;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

/* Button Frame */
.btn-frame {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	z-index: 10;
	cursor: pointer;
}

.btn-frame i {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #1182fc;
	position: relative;
	z-index: 1;
	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-frame i img {
	vertical-align: middle;
	width: 70%;
}

.btn-frame .animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
	width: 60px;
	height: 60px;
	top: -5px;
	right: -5px;
	position: absolute;
	background-color: transparent;
	border-radius: 100%;
	border: 2px solid rgba(7, 41, 103, 0.8);
	opacity: 0.1;
	border-color: #1182fc;
	opacity: 0.5;
}

.btn-frame .zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

.btn-frame .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
	width: 70px;
	height: 70px;
	top: -10px;
	right: -10px;
	position: absolute;
	border-radius: 100%;
	border: 2px solid transparent;
	background-color: rgba(7, 41, 103, 0.35);
	opacity: 0.4;
}

.btn-frame .pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

/* Zalo */
.btn-zalo {
	bottom: 315px;
}

/* Phone */
.btn-phone {
	bottom: 230px;
}

/* Toolbar */
.toolbar {
	background: var(--mainColor);
	width: 100%;
	padding: 3vw;
	bottom: 0px;
	position: fixed;
	z-index: 500;
	height: auto;
	left: 0px;
	display: none;
}

.toolbar ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	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;
}

.toolbar ul li {
	text-align: center;
	width: 33.33%;
}

.toolbar ul li a {
	display: block;
	width: 100%;
	cursor: pointer;
}

.toolbar ul li a img {
	height: 6vw;
	width: auto;
}

.toolbar ul li a span {
	font-weight: 400;
	color: #ffffff;
	font-size: 3.5vw;
	display: none;
}


#wrap-phone {
	position: fixed;
	bottom: 0px;
	z-index: 999;
	height: 50px;
	width: 100%;
	background: #005aac;
}

#wrap-phone a {
	color: #fff;
	text-decoration: none;
}

#wrap-phone img {
	width: 30%;
	max-width: 35px;
	vertical-align: middle;
}

.blink_me {
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-name: blinker;
	-moz-animation-duration: 1s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;
	animation-name: blinker;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.4;
	}

	100% {
		opacity: 1.0;
	}
}

@-webkit-keyframes blinker {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.4;
	}

	100% {
		opacity: 1.0;
	}
}

@keyframes blinker {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.4;
	}

	100% {
		opacity: 1.0;
	}
}


ul#itemContainer_spnbm {
	list-style: none;
}

#back-to-top {
	position: fixed;
	right: 10px;
	bottom: 50px;
	z-index: 99;
	cursor: pointer;
	background: url(images/top.png);
	width: 50px;
	height: 50px;
	display: none;
}

.attr-pro-detail li a {
	color: #fff;
	font-size: 14px;
	display: inline-flex;
	gap: 5px;
	padding: 8px 8px;
	line-height: normal;
	align-items: center;
	border-radius: 6px;
}

.attr-pro-detail li:last-child {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 5px;
}

.attr-pro-detail li:last-child i {
	font-size: 15px;
}

.attr-pro-detail li:last-child span {
	font-size: 13px;
}

.attr-pro-detail li a.zalo_chat {
	background: #005ee6;
	padding: 6.2px 8px;
}

.zalo_chat img {
	height: 20px;
	width: auto;
}

.zalo_chat:hover {
	opacity: 0.8;
}

.mess_chat {
	background: #0866ff;
}

.mess_chat:hover {
	opacity: 0.8;
}

.call_now {
	background: #25d366;
}

.call_now:hover {
	opacity: 0.8;
}


.onlineservice-fixed-left {
	left: 0 !important;
	right: auto !important
}

div.onlineservice-fixed-styleRight {
	left: auto !important;
	right: 0 !important
}

.sitewidget-onlineService.onlineservice-fixed-style ul li i.font-icon {
	display: inline
}

.onlineservice-fixed-style.onlineservice-fixed-left .bglist {
	overflow: hidden
}

.onlineservice-fixed-style * {
	direction: ltr !important;
	text-align: center !important
}

.onlineservice-fixed-style.onlineservice-fixed-left .bglist .ico_f {
	color: #fff;
	background: rgba(74, 74, 74, .3)
}

.onlineservice-fixed-style.onlineservice-fixed-left .bglist .ico_t {
	background: #fff
}

.onlineservice-fixed-style ul li a i.block-iconyouxiang {
	font-size: 20px
}

.onlineservice-fixed-style ul li a i.block-iconerweima {
	font-size: 22px
}

.onlineservice-fixed-style ul li a i.block-iconvkcopy {
	font-size: 20px
}

.onlineservice-fixed-left .onlineservice-fixed-blocks-list {
	background-color: transparent
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items {
	width: auto;
	width: 60px;
	height: 60px;
	position: relative;
	margin-bottom: 2px
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgb(249 77 87 / 39%);
	color: #fff;
	border: 0;
	box-sizing: border-box;
	border-bottom: 0
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a .icon {
	margin-top: 10px
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a .word {
	display: block;
	margin: 0;
	font-size: 12px;
	text-align: center;
	line-height: 18px;
	padding: 0 4px 4px
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a i.fa {
	background-image: none;
	line-height: 60px;
	font-size: 26px;
	display: block;
	margin: 0 auto
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a .terminal {
	display: block;
	width: 0;
	height: 1px
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a.onlineService_t_icon i {
	background-position: 0 -56px
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips .triangle {
	position: absolute;
	background: 0;
	color: #fff;
	font-size: 22px;
	top: 19px;
	left: 0;
	width: auto;
	height: auto
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips>li {
	width: auto;
	height: auto
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips>li a {
	display: block;
	min-width: 30px;
	min-height: 22px;
	text-align: center;
	line-height: 60px;
	color: #fff;
	font-size: 14px
}

.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips>li a img {
	max-width: 240px
}

.onlineservice-fixed-left.onlineservice-fixed-style-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips {
	left: 58px;
	right: auto;
	-webkit-transform: translateX(-250%);
	transform: translateX(-250%)
}

.onlineservice-fixed-left.onlineservice-fixed-style-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips:after {
	right: auto;
	left: -6px;
	border-color: #ccc transparent transparent #ccc;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

@media(min-width:769px) {
	.onlineservice-fixed-style.onlineservice-fixed-left .listHover {
		transform: translateX(-60px)
	}

	.onlineservice-fixed-style.onlineservice-fixed-left .bgicon {
		position: relative;
		padding: 0;
		border: 0;
		border-radius: 0;
		width: 120px;
		height: 60px;
		transition: all .2s
	}

	.onlineservice-fixed-style.onlineservice-fixed-left .bglist .ico_all {
		width: 60px;
		height: 60px;
		padding: 0;
		border: 0;
		border-radius: 0;
		position: relative;
		float: left
	}

	.onlineservice-fixed-style.onlineservice-fixed-left .bglist .zalo-contact {
		align-items: center;
		justify-content: center;
		display: flex;
		font-family: 'font1';
	}

	.onlineservice-fixed-style.onlineservice-fixed-left {
		top: 50%;
		transform: translateY(-50%)
	}

	.onlineservice-fixed-style ul li i.font-icon {
		background-image: none;
		line-height: 60px;
		font-size: 26px
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips.centerPad {
		padding: 15px
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items:hover .onlineservice-fixed-blocks-tips {
		background: #bd1a23;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips {
		background-color: #fff;
		border-radius: 0;
		position: absolute;
		left: 60px;
		top: 0;
		-webkit-transform: translateX(-300%);
		transform: translateX(-300%);
		-webkit-transition: all .1s;
		transition: all .1s;
		z-index: -1;
		padding: 0 15px;
		min-height: 60px
	}

	div.sitewidget-onlineService.onlineservice-fixed-styleRight .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips {
		background-color: #fff;
		border-radius: 0;
		position: absolute;
		left: auto;
		right: 60px;
		top: 0;
		-webkit-transform: translateX(300%);
		transform: translateX(300%);
		-webkit-transition: all .1s;
		transition: all .1s;
		z-index: -1;
		padding: 0 15px;
		min-height: 60px
	}

	div.sitewidget-onlineService.onlineservice-fixed-styleRight .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips .fa-caret-left {
		left: auto;
		right: 0;
		width: auto;
		height: auto
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .triangleMb {
		display: none
	}
}

@media(max-width:768px) {
	.onlineservice-fixed-style.onlineservice-fixed-left .bgicon.bgcl {
		transform: translateY(-60px)
	}

	.onlineservice-fixed-style.onlineservice-fixed-left .bgicon {
		position: relative;
		padding: 0;
		border: 0;
		border-radius: 0;
		width: 100%;
		height: 100%;
		transition: all .2s
	}

	.onlineservice-fixed-style.onlineservice-fixed-left .bglist .ico_all {
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
		position: relative
	}

	.onlineservice-fixed-style ul li i.font-icon {
		background-image: none;
		line-height: 60px;
		font-size: 26px
	}

	.sitewidget-onlineService.onlineservice-fixed-left {
		position: fixed;
		width: 100%;
		left: 0 !important;
		bottom: 0;
		height: 56px;
		z-index: 99
	}

	.sitewidget-onlineService.onlineservice-fixed-left .sitewidget-bd {
		height: 100%
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list {
		height: 100%;
		display: -webkit-box;
		display: -moz-box;
		display: box;
		border-top: 1px solid #d3d3d3;
		border-bottom: 1px solid #d3d3d3;
		width: 100%
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list li.onlineservice-fixed-blocks-items {
		height: 60px;
		margin: 0;
		-moz-box-flex: 1;
		-webkit-box-flex: 1;
		box-flex: 1;
		position: relative;
		border-left: 1px solid #d3d3d3
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items+.onlineservice-fixed-blocks-items {
		margin: 0
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a {
		height: 60px;
		box-sizing: border-box;
		display: block;
		line-height: 60px;
		position: relative;
		text-align: center;
		white-space: nowrap;
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		border-radius: 0
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a:hover {
		opacity: 1
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a .word {
		display: none;
		background-image: none;
		margin: 0;
		height: 26px;
		line-height: 26px;
		text-align: center;
		width: 100%
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips {
		background-color: #fff;
		border-radius: 0;
		position: absolute;
		left: 0;
		bottom: 60px;
		-webkit-transform: translateY(300%);
		transform: translateY(300%);
		-webkit-transition: all .1s;
		transition: all .1s;
		z-index: -1;
		min-height: 60px;
		display: block
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips.floatRight {
		right: 0;
		left: auto
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .triangleMb {
		position: absolute;
		background: 0;
		transform: rotate(-90deg);
		top: -21px;
		left: 50%;
		margin-left: -4px;
		font-size: 22px;
		color: #fff;
		text-align: center;
		width: auto;
		height: auto;
		display: none
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .triangleMb.triangleMbShow {
		display: block
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips.showtitle {
		background: rgba(74, 74, 74, .3);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		width: auto;
		display: block !important
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips .triangle {
		display: none
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips:after {
		display: none
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips>li a {
		line-height: 60px;
		height: auto;
		padding: 0 5px
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips>li a img, .sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips>li a br {
		display: none
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips .for_qq {
		background-position: 0 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips .for_skype {
		background-position: 0 -180px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips .for_email {
		background-position: 0 -120px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips .for_tel {
		background-position: 0 -60px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.sitewidget-onlineService.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-tips .for_sms {
		background-position: 0 -240px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineservice-fixed-blocks-items>a:before {
		content: '';
		position: absolute;
		height: 30px;
		width: 30px;
		top: 0;
		left: 50%;
		margin-left: -15px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .sitewidget-onlineService-togglebtn i {
		height: 4px;
		width: 6px;
		background-position: right bottom;
		position: absolute;
		bottom: 4px;
		right: 4px;
		transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg)
	}

	.onlineservice-fixed-left .sideShowArrow {
		display: none !important
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_q:before {
		background-position: 0 0
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_q:hover:before {
		background-position: -30px -30px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_t_icon:before {
		background-position: 0 -60px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_t_icon:hover:before {
		background-position: -30px -90px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_e:before {
		background-position: 0 -120px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_e:hover:before {
		background-position: -30px -150px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_s:before {
		background-position: 0 -180px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_s:hover:before {
		background-position: -30px -210px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_fb:before {
		background-position: 0 -240px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_fb:hover:before {
		background-position: -30px -270px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_sms:before {
		background-position: 0 -240px
	}

	.onlineservice-fixed-left .onlineservice-fixed-blocks-list .onlineService_sms:hover:before {
		background-position: -30px -270px
	}
}

.onlineservice-fixed-style {
	position: fixed;
	z-index: 99
}

.onlineservice-fixed-style ul {
	background-color: #000;
	fliter: alpha(opacity=30);
	background-color: rgba(0, 0, 0, 0.3);
	list-style: none;
}

.onlineservice-fixed-style .onlineservice-fixed-list a {
	color: #fff;
	line-height: 28px;
	display: block;
	text-decoration: none
}

.onlineservice-fixed-style .onlineservice-fixed-list a:hover {
	text-decoration: none
}

.onlineservice-fixed-style ul li i {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAEqCAYAAAAGWTCQAAAACXBIWXMAAAsTAAALEwEAmpwYAAAG22lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowYTU1OTQ2OS1iZWMwLWI1NDQtODFhMC1iNzg3M2E4ZTYwMmUiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDo5ZTdmMzcyMS1iY2MzLTBhNGItODFjMC1jYmVjMDFkZDM0NDciIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6M2RmNTZkNDgtNDhiNi00YWUwLWFkYTctNWU2NDI1MDY2MGUzIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE4LTA4LTI0VDA5OjIwOjIxKzA4OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOC0wOC0yNFQwOToyNTozMiswODowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wOC0yNFQwOToyNTozMiswODowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmE1ZmY0NTg3LTdjZDQtZjI0Yi04YzQ5LTBmYmIzMTRmNjhlMiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowYTU1OTQ2OS1iZWMwLWI1NDQtODFhMC1iNzg3M2E4ZTYwMmUiLz4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NGU1ZDFlZTEtZGE4Zi00Y2NmLTlkYjAtNGMzMWMzNDdkYWNjIiBzdEV2dDp3aGVuPSIyMDE4LTA4LTI0VDA5OjI1OjMyKzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6M2RmNTZkNDgtNDhiNi00YWUwLWFkYTctNWU2NDI1MDY2MGUzIiBzdEV2dDp3aGVuPSIyMDE4LTA4LTI0VDA5OjI1OjMyKzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/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);
	background-repeat: no-repeat
}

.onlineservice-fixed-style ul .onlineService_q i {
	background-position: 0 0
}

.onlineservice-fixed-style ul .onlineService_t i {
	background-position: 0 -56px
}

.onlineservice-fixed-style ul .onlineService_e i {
	background-position: 0 -111px
}

.onlineservice-fixed-style ul .onlineService_s i {
	background-position: 0 -28px
}

.onlineservice-fixed-style ul .onlineService_whatsApp i {
	background-position: 0 -139px
}

.onlineservice-fixed-style ul .onlineService_qr i {
	background-position: 0 -203px
}

.onlineservice-fixed-style ul .onlineService_wechat i {
	background-position: 0 -266px
}

.onlineservice-fixed-style ul .onlineService_aliww i {
	background-position: 0 -170px
}

.onlineservice-fixed-style ul .onlineService_sms i, .onlineservice-fixed-style ul .onlineService_other i {
	background-position: 0 -84px
}

@media(min-width:769px) {
	.onlineservice-fixed-style {
		right: 0;
		top: 30%
	}

	.onlineservice-fixed-style ul {
		border-radius: 10px 0 0 10px
	}

	.sitewidget-onlineService.onlineservice-fixed-style ul li {
		line-height: 28px;
		position: relative;
		white-space: nowrap;
		height: 48px;
		width: 54px
	}

	.onlineservice-fixed-style ul li div {
		position: absolute;
		padding: 12px 13px;
		top: 0;
		right: 0;
		border-radius: 10px 0 0 10px;
		width: 28px;
		transition: width .3s ease-in
	}

	.onlineservice-fixed-style ul li div:hover {
		background-color: #000;
		width: 120px;
		fliter: alpha(opacity=60);
		background-color: rgba(0, 0, 0, 0.6)
	}

	.onlineservice-fixed-style ul li:hover div.ico_f:not(.zalo-contact) {
		color: red !important;
		background: #fff !important;
	}

	.onlineservice-fixed-style ul li:hover div.zalo-contact {
		background: var(--mainColor) !important;
	}

	.onlineservice-fixed-style ul li span {
		margin: 0 10px 0 14px
	}

	.onlineservice-fixed-style ul li i {
		display: inline-block;
		width: 28px;
		height: 28px
	}

	.onlineservice-fixed-style-left {
		left: 0;
		right: auto
	}

	.onlineservice-fixed-style-left ul {
		border-radius: 0 10px 10px 0
	}

	.onlineservice-fixed-style-left ul li div {
		border-radius: 0 10px 10px 0;
		left: 0;
		right: auto
	}

	.onlineservice-fixed-style-left .onlineservice-fixed-list a {
		text-align: right;
		position: relative
	}

	.onlineservice-fixed-style-left ul li span {
		display: none
	}

	.onlineservice-fixed-style-left ul li div:hover span {
		display: inline
	}
}

@media(max-width:768px) {
	.sitewidget-bd {
		display: none;
	}

	.onlineservice-fixed-style {
		bottom: 0;
		width: 100%;
		left: 0
	}

	.onlineservice-fixed-style ul {
		display: -webkit-box;
		display: -moz-box;
		display: box;
		width: 100%;
		fliter: alpha(opacity=80);
		background-color: rgba(0, 0, 0, 0.8)
	}

	.onlineservice-fixed-style ul li {
		-moz-box-flex: 1;
		-webkit-box-flex: 1;
		box-flex: 1
	}

	.onlineservice-fixed-style ul li a {
		line-height: 28px;
		text-align: center
	}

	.sitewidget-onlineService.onlineservice-fixed-style ul li span {
		line-height: 20px;
		display: block;
		text-align: center;
		text-align: center;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.sitewidget-onlineService.onlineservice-fixed-style ul li i {
		line-height: 20px;
		font-size: 20px;
		width: 28px;
		height: 28px;
		display: block;
		margin: 0 auto
	}
}

#slider_bds .container {
    display: flex;
    gap: 15px;
    padding: 0px;
    height: auto;
	align-items: start;
}
.content_header_bds img{
	width: 100%; height: auto;
}
.content_header_bds p{
	margin-bottom: 8px;
}
.mxh_header{
	text-align: left;
	margin-top: 25px; padding: 0px;
}
.mxh_header img{width: auto;}

.mxh_foot {
	margin-top: 25px;
	padding: 0px;
}

.mxh_foot a {
	display: inline-block;
	margin-bottom: 5px;
	margin-right: 5px;
}

.mxh_foot span {
	font-family: 'font1';
	font-size: 14px;
}

.mxh_foot i {
	font-size: 18px;
}

.mxh_foot .r1>a:nth-child(1):hover {
	background: #3b5998;
	transition: all 0.2s;
	transform: scale(1.1);
}

.mxh_foot .r1>a:nth-child(2):hover {
	background: #f33;
	transition: all 0.2s;
	transform: scale(1.1);
}

.mxh_foot .r1>a:nth-child(3):hover {
	background: #3cf;
	transition: all 0.2s;
	transform: scale(1.1);
}

.mxh_foot .r2>a:nth-child(1):hover {
	background: #0091ff;
	transition: all 0.2s;
	transform: scale(1.1);
}

.mxh_foot .r2>a:nth-child(2):hover {
	background: #4875b4;
	transition: all 0.2s;
	transform: scale(1.1);
}

.mxh_foot .r2>a:nth-child(3):hover {
	background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
	transition: all 0.2s;
	transform: scale(1.1);
}

#bds-nb{padding: 40px 0px 20px;}

#products_home {
	padding: 10px 0px;
}

#products_home.pagin .container {
	padding: 0px;
}

#product_home {
	margin-top: 20px;
	padding: 10px 0px;
}

#product_home .container {
	display: grid;
	gap: 10px;
	padding: 0px 1px 8px 0px;
	grid-template-rows: auto auto;
	grid-auto-flow: column;
	overflow-x: hidden;
	overflow-y: hidden;
}

#wrap_bds_home {
}

#wrap_bds_home .block_home {
	padding: 20px 0px;
}

.itemCategory {
	border-radius: 8px;
	padding: 20px 10px 15px;
	width: 120px;
	display: flex;
	justify-content: center;
	text-align: center;
	transition: all .5s ease 0s;
}

.itemCategory img {
	margin: 0px auto 20px;
	transition: all .8s ease 0s;
}

.itemCategory h3 {
	color: #333;
	text-align: center;
	font-size: 14px;
	margin-bottom: 0;
	position: relative;
	padding-top: 10px;
}

.itemCategory h3:before {
	background-color: #ff6565;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translate(-50%);
	-webkit-transform: translate(-50%);
	-moz-transform: translate(-50%);
	-ms-transform: translate(-50%);
	-o-transform: translate(-50%);
	width: 25px;
}

.itemCategory:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.itemCategory:hover img {
	transform: rotateY(1turn);
}

.dsCategory {
	margin-bottom: 20px;
}

.dsCategory .item {
	border-radius: 8px;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	transition: all .3s ease 0s;
}

.dsCategory .item:last-child {
	margin-right: 0px;
}

.dsCategory .item a {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	gap: 8px;
	padding: 5px 7px;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	color: #000;
}

.dsCategory .item a.active {
	color: #333;
	background: #f1c03433;
}

.dsCategory .item img {
	border-radius: 8px;
}

.dsCategory .item h3 {
	font-size: 14px;
	margin: 0px;
	font-family: 'font2';
	font-weight: normal;
}

.dsCategory .item:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.name_dt {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--mainColor);
	color: var(--mainColor);
	text-transform: uppercase;
	font-size: 18px;
	font-family: 'font3';
	text-align: left;
	padding: 10px 0px 5px 0px;
	margin-bottom: 5px;
}

.name_dt h2 {
	font-size: inherit;
}

.block_home {
	padding: 10px 0px;
}

.title_home {
	position: relative;
	z-index: 9;
}

.title_home h2 {
	font-size: inherit;
	margin: 0px;
}

.title_home .line {
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0px;
	top: 50%;
	z-index: 1;
}

.title_home span {
	z-index: 2;
	position: relative;
	float: left;
	display: inline-block;
	font-family: 'font1';
	font-size: 20px;
	border-radius: 7px 7px 0px 0px;
	padding: 12px 16px 12px 55px;
}

.title_home span a {
	color: #333;
}

.title_home .view {
	float: right;
	margin-top: 13px;
	position: relative;
	z-index: 2;
}

.title_home .view a {
	color: #777;
	font-family: 'font3';
	font-size: 13px;
	background: #fff;
	padding-left: 12px;
}

.title_home .view a:hover {
	text-decoration: underline;
}
.title_home_bds{margin-bottom: 10px;}

.wrap_owl {
	position: relative;
}

.wrap_owl .owl-carousel .owl-stage-outer {
	padding: 20px 2px 5px;
}

.wrap_owl .owl-theme .owl-nav {
	height: 0px;
}

.prev_owl, .next_owl {
	position: absolute;
	z-index: 99;
	cursor: pointer;
	background-size: 100% 100%;
	width: 36px;
	height: 36px;
	transition: all 0.4s;
	opacity: 0;
	visibility: hidden;
}

.wrap_owl:hover .prev_owl, .wrap_owl:hover .next_owl {
	transition: all 0.4s;
	visibility: visible;
	opacity: 1;
}

.prev_spnb {
	top: 50%;
	left: -45px;
	transform: translate(0, -50%);
	background: url(../imgs/prev_yk.png) no-repeat center center;
}

.next_spnb {
	top: 50%;
	right: -45px;
	transform: translate(0, -50%);
	background: url(../imgs/next_yk.png) no-repeat center center;
}

.col-bds{
	margin-bottom: 20px;
}
.item_bds{
	display: flex; justify-content: space-between; align-items: start; gap: 15px;
	border: 1px solid #f5f5f5; border-radius: 6px; padding: 5px;
}
.item_bds .img{width: 150px; background: #f5f5f5; border-radius: 6px;}
.item_bds .img img{width: 100%; height: auto; border-radius: 6px;}
.item_bds .info{flex: 1; text-align: left;}
.item_bds .info h3{
	font-size: 15px; font-weight: 700; margin: 0px; color: #111; line-height: 20px;
}
.item_bds .name{margin-bottom: 5px;}
.item_bds .name a{
	color: #111; display: block;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}
.item_bds .desc{color: #8c8c8c; font-size: 13px;}
.item_bds .price{
	color: #111; font-size: 14px; margin-top: 7px;
}
.item_bds .price span{color: red; font-size: 15px; font-weight: 700;}
.item_bds .name a:hover{color: var(--mainColor);}

.two-line-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

#zaloshareinlineclient_app iframe {
	max-width: auto;
}

.content-main {
	color: #555;
}

.content-main h1 {
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	color: #d61d32;
	font-weight: bold;
	margin-bottom: 0.5em;
}

.content-main h2 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	color: var(--mainColor);
	margin-top: 20px;
	font-weight: bold;
	margin-bottom: 0.5em;
}

.content-main h3 {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: #FF9386;
	margin-top: 20px;
	margin-bottom: 0.5em;
}

.content-main h4 {
	font-size: clamp(0.7rem, 1.2vw, 1rem);
	margin-bottom: 0.4em;
}

.content-main a {
	text-decoration: none;
	color: #1874f4;
}

.content-main a:hover {
	color: #6ca4f3;
}

.content-main p {
	margin-bottom: 10px;
}

.content-main ul, .content-main ol {
	padding: 15px 0px 15px 15px;
	list-style: inside;
}

.content-main ul li, .content-main ol li {
	margin-bottom: 5px;
}

ul.pagination{
	list-style: none;
}

@media (min-width: 1200px) {
	.content-main {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
	.content-main {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.content-main {
		font-size: 14px;
	}
}