html {
	font-size: 14px;
	color: #323232;
	overflow-x: hidden
}

body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #f5f5f5
}

body::-webkit-scrollbar {
	width: 10px;
	background-color: #f5f5f5
}

body::-webkit-scrollbar-thumb {
	background-color: var(--secondary_color);
	border: 2px solid var(--secondary_color)
}

.thc-scroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #f5f5f5
}

.thc-scroll::-webkit-scrollbar {
	width: 6px;
	background-color: #f5f5f5
}

.thc-scroll::-webkit-scrollbar-thumb {
	background-color: var(--secondary_color);
	border: 2px solid var(--secondary_color)
}

a {
	text-decoration: unset
}

a:hover {
	color: var(--secondary_color);
	text-decoration: none
}

input:focus,select:focus,textarea:focus,button:focus {
	outline: none
}

header {
	width: 100%;
	z-index: 3
}

header .header-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between
}

header .header-wrap .logo {
	z-index: 9;
	position: relative;
	height: 66px;
	width: auto;
	transition: 0.5s
}

header .header-wrap .logo img {
	height: 90%;
	width: 90%;
	object-fit: contain
}

header .header-wrap .top-bar {
	width: 100%;
	background: var(--primary_color);
	padding: 5px 0
}

header .header-wrap .top-bar h1,header .header-wrap .top-bar span {
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 125%;
	color: #fff;
	margin: 0;
	padding: 5px calc(var(--bs-gutter-x) * 0.5);
	padding-left: 0
}

header .header-wrap .main-header {
	width: 100%;
	padding: 15px 0;
	background: #fafafa
}

header .header-wrap .main-header .header-inner .logo-thc-wrap {
	justify-content: space-between;
	position: relative;
	padding-right: 15px;
	padding-left: 0;
	max-width: 270px
}

header .header-wrap .main-header .header-inner .logo-thc-wrap .menu-thc {
	cursor: pointer;
	margin-right: 10px;
	width: 40px;
	height: 40px;
	background: #000;
	border-radius: 5px;
	padding: 5px
}

header .header-wrap .main-header .header-inner .logo-thc-wrap .menu-thc .img-wrap {
	margin-top: -1px
}

header .header-wrap .main-header .header-inner .logo-thc-wrap .menu-thc .img-wrap:hover img {
	transform: unset
}

header .header-wrap .main-header .header-inner .logo-thc-wrap .menu-thc .open {
	display: block
}

header .header-wrap .main-header .header-inner .logo-thc-wrap .menu-thc .close {
	display: none
}

header .header-wrap .main-header .header-inner .logo-thc-wrap .menu-thc.active .open {
	display: none
}

header .header-wrap .main-header .header-inner .logo-thc-wrap .menu-thc.active .close {
	display: block
}

header .header-wrap .main-header .header-inner .logo-thc-wrap .menu-thc.active .menu-header-wrap {
	display: block
}

header .header-wrap .main-header .header-inner .right-wrapper {
	flex: 1;
	display: flex
}

header .header-wrap .main-header .header-inner .right-wrapper .search-form-wrapper {
	flex: 1
}

header .header-wrap .main-header .header-inner .right-wrapper .search-form-wrapper form {
	width: 100%;
	display: flex
}

header .header-wrap .main-header .header-inner .right-wrapper .search-form-wrapper form .search-field {
	flex: 1;
	height: 40px;
	box-sizing: border-box;
	border-radius: 999px 0 0 999px;
	padding: 11px 13px;
	color: #888;
	font-size: 14px;
	letter-spacing: .5px;
	border: 1px solid var(--secondary_color);
	border-right: unset
}

header .header-wrap .main-header .header-inner .right-wrapper .search-form-wrapper form .search-field input:focus {
	outline-width: 0
}

header .header-wrap .main-header .header-inner .right-wrapper .search-form-wrapper form .search-btn {
	width: 50px;
	border: unset;
	border-radius: 0 999px 999px 0;
	border: 1px solid var(--secondary_color);
	border-left: unset;
	height: 40px;
	color: var(--secondary_color);
	font-size: 20px;
	background: #fff
}

header .header-wrap .main-header .header-inner .right-wrapper .search-form-wrapper form .search-btn i {
	font-size: 14px
}

header .header-wrap .main-header .header-inner .right-wrapper .header-support {
	justify-content: space-around;
	width: max-content;
	padding-left: 55px
}

header .header-wrap .main-header .header-inner .right-wrapper .header-support .support_info {
	padding: 0 15px;
	position: relative
}

header .header-wrap .main-header .header-inner .right-wrapper .header-support .support_info .img-wrap {
	height: 23px;
	width: 22px
}

header .header-wrap .main-header .header-inner .right-wrapper .header-support .support_info .img-wrap img {
	object-fit: contain
}

header .header-wrap .main-header .header-inner .right-wrapper .header-support .support_info .amount-cart-item {
	position: absolute;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	text-align: center;
	color: #000;
	background-color: #f9c938;
	top: -9px;
	right: 3px
}

header .header-wrap .main-header .header-inner .right-wrapper .header-support .support_info .info {
	text-align: center
}

header .header-wrap .main-header .header-inner .right-wrapper .header-support .support_info .info .title {
	font-style: normal;
	font-weight: 700;
	font-size: 12px
}

header .header-wrap .main-header .header-inner .right-wrapper .header-support .support_info .info .desc {
	font-size: 14px;
	color: var(--third_color);
	font-weight: 700
}

header .header-wrap .menu-header-wrap {
	z-index: 99;
	width: 100%;
	background: var(--primary_color);
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container {
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header {
	list-style: none;
	display: flex;
	margin-bottom: 0;
	width: 100%;
	padding: 0;
	justify-content: space-between
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header .icon {
	width: 17px;
	flex-shrink: 0;
	margin-right: 10px
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header .icon img {
	object-fit: contain;
	height: 100%;
	width: 100%
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children>a::after {
	content: "";
	font-family: "FontAwesome";
	float: right;
	transition: 0.3s ease-in-out;
	font-weight: 500;
	font-size: 10px;
	margin-left: 10px
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li {
	display: flex;
	align-items: start;
	/* position: relative */
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li > a {
	padding: 5px 15px;
	display: flex;
	color: #fff;
	width: 100%;
	font-size: 15px;
	transition: 0.3s;
	align-items: center;
	text-transform: uppercase;
	font-weight: 600
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li a:hover,
header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li a.active {
	color: var(--secondary_color)
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children .sub-menu {
	display: none;
	position: absolute;
	background: #fff;
	list-style: none;
	padding: 10px;
	font-size: 16px;
	top: 100%;
	left: 0;
	z-index: 1010;
	text-align: left;
	white-space: normal;
	width: 250px;
	box-shadow: 4px 4px 6px 0 rgba(0,0,0,.2);
	flex-direction: column
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children .sub-menu li.is_title_submenu>a {
	font-weight: 700;
	border-bottom: 1px solid #eaeaea;
	color: var(--secondary_color)
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children .sub-menu li {
	display: flex;
	flex-direction: column;
	flex: unset
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children .sub-menu li a {
	padding: 5px;
	font-size: 14px;
	border-radius: 0;
	margin: 0;
	color: var(--secondary_color);
	width: 100%;
	display: flex;
	justify-content: space-between
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children .sub-menu li a:hover {
	color: #fff;
	background: var(--secondary_color)
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu {
	display: flex;
	flex-direction: column;
	position: unset;
	z-index: 1;
	list-style: none;
	min-width: unset;
	box-shadow: unset;
	padding: unset;
	margin-left: unset;
	border-radius: unset;
	columns: 1
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu li:hover>a {
	color: #fafafa;
	background: var(--primary_color)
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children .sub-menu li.menu-item-has-children:hover .sub-menu {
	display: block
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.menu-item-has-children:hover .sub-menu {
	display: flex
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.current-menu-item>a,header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li:hover>a {
	color: var(--secondary_color);
	position: relative;
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.current-menu-item>a::before,header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li:hover>a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--secondary_color)
}

header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li.current-menu-item,header .header-wrap .menu-header-wrap .menu-menu-chinh-container .menu-header > li:hover {
	/* background: #fafafa */
}

header .header-wrap .right-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 70px
}

header .header-wrap .right-menu .phone {
	display: flex
}

header .header-wrap .right-menu .phone i {
	color: var(--primary_color);
	font-size: 20px
}

header .header-wrap .right-menu .phone span {
	margin-left: 8px;
	color: #666
}

header .header-wrap .right-menu .phone span:not(:last-child)::after {
	content: "";
	border-right: 1px solid #666;
	margin-left: 10px
}

header .header-wrap .right-menu .search-box {
	padding: 5px 12px;
	border-radius: 60px;
	background: #fff;
	border: 1px solid #ccc;
	color: #ccc;
	margin: 6px;
	margin-left: 24px;
	flex: 1
}

header .header-wrap .right-menu .search-box form {
	display: flex
}

header .header-wrap .right-menu .search-box form input {
	border: none;
	flex: 1;
	max-width: 100px;
	font-size: 16px;
	line-height: 18px
}

header .header-wrap .right-menu .search-box form input::placeholder {
	font-size: 11px;
	display: flex;
	align-items: center;
	line-height: 18px;
	height: 16px
}

header .header-wrap .right-menu .search-box form textarea:focus,header .header-wrap .right-menu .search-box form input:focus {
	outline: none
}

header .header-wrap .right-menu .search-box form button {
	border: none;
	background: none
}

header .header-wrap .right-menu .search-box form button i {
	font-size: 18px;
	color: #ccc
}

header .header-wrap .mobile-menu-button {
	display: none
}

header .sticky {
	transition: 0.3s;
	border-bottom: 1px solid var(--border_color)
}

.all-product {
	display: flex;
	height: 40px;
	background: var(--secondary_color);
	color: #fff;
	max-width: 270px;
	align-items: center;
	padding: 0 15px;
	position: relative
}

.all-product i {
	font-size: 14px
}

.all-product span {
	font-weight: 700;
	text-transform: uppercase;
	padding: 0 15px
}

.all-product:hover {
	cursor: pointer
}

.sub-menu-product {
	display: flex;
	position: absolute;
	top: 100%;
	left: 0;
	box-shadow: 0 4px 4px rgba(0,0,0,.25);
	width: 100%;
	background: #fff
}

.sub-menu-product .thc-scroll::-webkit-scrollbar {
	width: 4px
}

.sub-menu-product .menu-danh-muc-san-pham-container {
	position: relative;
	width: 100%;
	overflow-y: scroll
}

.sub-menu-product ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.sub-menu-product .menu-item-has-children>.sub-menu {
	display: none
}

.sub-menu-product li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 10px
}

.sub-menu-product li:before {
	content: "";
	font-weight: 500;
	font-family: "FontAwesome";
	color: var(--text_color);
	margin-right: 10px
}

.sub-menu-product li:after {
	content: "";
	position: absolute;
	height: 1px;
	width: calc(100% - 20px);
	bottom: 0;
	left: 10px;
	display: block;
	background: var(--border_color)
}

.sub-menu-product li a {
	color: var(--text_color);
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center
}

.sub-menu-product li.menu-item-has-children {
	display: flex
}

.sub-menu-product li.menu-item-has-children a {
	position: relative
}

.sub-menu-product li.menu-item-has-children a:after {
	content: "";
	font-weight: 500;
	font-family: "FontAwesome";
	color: var(--text_color);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center
}

.sub-menu-product li:hover {
	background: var(--primary_color)
}

.sub-menu-product li:hover:after {
	background: var(--primary_color)
}

.sub-menu-product li:hover:before {
	color: #fff
}

.sub-menu-product li:hover a {
	color: #fff
}

.sub-menu-product li:hover a:after {
	color: #fff
}

.sub-menu-product li.collapse,.sub-menu-product li.view-more {
	font-weight: 700
}

.mega-menu-wrapper {
	background: #fff;
	position: fixed;
	z-index: 99;
	display: none;
	flex-wrap: wrap;
	align-items: start;
	justify-content: start;
	border: 1px solid var(--secondary_color)
}

.mega-menu-wrapper .sub-menu {
	padding: 0;
	width: 100%;
	margin-bottom: 0
}

.mega-menu-wrapper .sub-menu .sub-menu {
	position: absolute;
	top: 0;
	right: -100%;
	background: #fff;
	border: 1px solid var(--secondary_color);
	display: none
}

.mega-menu-wrapper li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 10px;
	width: 100%
}

.mega-menu-wrapper li:before {
	content: "";
	font-weight: 500;
	font-family: "FontAwesome";
	color: var(--text_color);
	margin-right: 10px
}

.mega-menu-wrapper li:after {
	content: "";
	position: absolute;
	height: 1px;
	width: calc(100% - 20px);
	bottom: 0;
	left: 10px;
	display: block;
	background: var(--border_color)
}

.mega-menu-wrapper li a {
	color: var(--text_color);
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center
}

.mega-menu-wrapper li.menu-item-has-children {
	display: flex
}

.mega-menu-wrapper li.menu-item-has-children a {
	position: relative
}

.mega-menu-wrapper li.menu-item-has-children a:after {
	content: "";
	font-weight: 500;
	font-family: "FontAwesome";
	color: var(--text_color);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center
}

.mega-menu-wrapper li.menu-item-has-children:hover .sub-menu {
	display: block
}

.mega-menu-wrapper li:hover {
	background: var(--primary_color)
}

.mega-menu-wrapper li:hover:after {
	background: var(--primary_color)
}

.mega-menu-wrapper li:hover:before {
	color: #fff
}

.mega-menu-wrapper li:hover>a {
	color: #fff
}

.mega-menu-wrapper li:hover>a:after {
	color: #fff
}

.mega-menu-wrapper li.collapse,.mega-menu-wrapper li.view-more {
	font-weight: 700
}

.mega-menu-wrapper.active {
	display: flex
}

footer .top-footer {
	background: var(--border_color)
}

footer .top-footer .wrapper {
	display: flex;
	width: 100%;
	justify-content: space-between
}

footer .top-footer .item-contact-new {
	width: auto
}

footer .top-footer .item-contact {
	position: relative
}

footer .top-footer .item-contact:not(:last-child):after {
	content: "";
	position: absolute;
	height: 50px;
	width: 1px;
	background: #cbcbcb;
	right: 0;
	top: 50%;
	transform: translate(-50%,-50%)
}

footer .top-footer .item-wrapper-footer {
	display: flex;
	align-items: center;
	padding: 15px 0
}

footer .top-footer .item-wrapper-footer .icon {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	flex-shrink: 0
}

footer .top-footer .item-wrapper-footer .info {
	display: flex;
	align-items: center
}

footer .top-footer .item-wrapper-footer .info .title {
	color: var(--primary_color);
	margin-right: 1rem;
	font-size: 1.1rem
}

footer .top-footer .item-wrapper-footer .info .desc a {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--third_color)
}

footer .main-footer {
	background: var(--primary_color);
	color: #fff;
	padding: 30px 0
}

footer .main-footer .column-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: start
}

footer .main-footer .column-wrapper .footer-column {
	max-width: 280px
}

footer .title-footer {
	font-weight: 700;
	line-height: 150%;
	font-size: 16px;
	margin-bottom: 24px;
	text-transform: uppercase;
	position: relative
}

footer .title-footer:after {
	content: "";
	width: 35px;
	height: 2px;
	background: #fff;
	position: absolute;
	bottom: -10px;
	left: 0
}

footer .logo {
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column
}

footer .logo .img-wrap {
	height: 100px;
	margin-bottom: 10px
}

footer .logo .img-wrap img {
	object-fit: contain!important;
	height: 100%
}

footer .dang-ky-bao-gia {
	text-align: left;
	max-width: 344px
}

footer .dang-ky-bao-gia .title-quote {
	font-weight: 700;
	margin: 15px 0
}

footer .dang-ky-bao-gia .form-quote p {
	display: flex
}

footer .dang-ky-bao-gia .form-quote .wpcf7-form-control-wrap {
	margin-right: 10px
}

footer .dang-ky-bao-gia .form-quote .wpcf7-form-control-wrap .phone-quote {
	height: 40px;
	padding: 10px 20px;
	border: 1px solid var(--primary_color);
	width: 100%
}

footer .dang-ky-bao-gia .form-quote input:focus {
	outline: none
}

footer .dang-ky-bao-gia .form-quote .submit-quote {
	height: 40px;
	background: var(--primary_color);
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-weight: 700;
	text-transform: uppercase;
	display: flex;
	align-items: center
}

footer .dang-ky-bao-gia .form-quote .submit-quote i {
	margin-left: 15px
}

footer .contact-wrap ul {
	list-style: none;
	padding: 0
}

footer .contact-wrap ul li {
	display: block
}

footer .contact-wrap ul li .title {
	color: var(--secondary_color);
	margin-right: 10px;
	width: max-content;
	float: left
}

footer .social-wrap {
	display: flex;
	margin-top: 30px
}

footer .social-wrap .social {
	height: 40px;
	width: 40px;
	display: flex;
	text-align: center;
	justify-content: center;
	color: #fff;
	margin-right: 10px;
	border-radius: 5px
}

footer .social-wrap .social i {
	align-items: center;
	display: flex;
	font-size: 18px
}

footer .title-pay {
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 125%;
	text-transform: uppercase;
	padding: 20px 0 15px
}

footer .extra_info {
	display: flex;
	padding: 25px 0
}

footer .extra_info .item {
	max-height: 40px;
	margin-right: 25px
}

footer .extra_info .item img {
	object-fit: contain
}

footer .map iframe {
	height: 272px;
	width: 100%
}

footer a {
	color: inherit
}

footer a:hover {
	color: var(--secondary_color)
}

footer ul {
	padding-left: 15px
}

footer ul li {
	margin-bottom: 8px
}

.end-footer .wrapper {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.end-footer .wrapper>* {
	width: max-content
}

.scrollToTop.btn-show {
	visibility: visible;
	opacity: 1;
	animation-name: fadeInUp;
	-webkit-animation-name: fadeInUp;
	animation-duration: 1s;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both
}

@-webkit-keyframes fadeInUp {
	from {
		transform: translate3d(0,40px,0)
	}

	to {
		transform: translate3d(0,0,0);
		opacity: 1
	}
}

.scrollToTop {
	cursor: pointer;
	width: 40px;
	height: 40px;
	z-index: 147483647;
	border: 1px solid #777;
	border-radius: 65px;
	position: fixed;
	right: 10px;
	bottom: 5%;
	visibility: hidden;
	opacity: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: scale(1);
	-webkit-transform: scale(1);
	transition: 0.2s all ease;
	-webkit-transition: 0.2s all ease
}

.scrollToTop {
	text-decoration: none
}

.scrollToTop i {
	color: #777;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%
}

.scrollToTop:hover {
	background-color: var(--primary_color)
}

.scrollToTop:hover i {
	color: #fff
}

@keyframes rotate360 {
	0% {
		transform: rotateZ(0deg)
	}

	100% {
		transform: rotateZ(360deg)
	}
}

.mid-footer iframe {
	width: 100%;
	height: 150px
}

.entry-content {
	margin-bottom: 20px
}

img {
	height: 100%;
	max-width: 100%;
	width: 100%;
	object-fit: cover
}

.left_arrow {
	cursor: pointer;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 44px;
	border-radius: 100%;
	border: 1px solid var(--primary_color);
	color: var(--primary_color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	z-index: 1;
	left: -50px
}

.right_arrow {
	cursor: pointer;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 44px;
	border-radius: 100%;
	border: 1px solid var(--primary_color);
	color: var(--primary_color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	z-index: 1;
	right: -50px
}

.left_arrow:hover,.right_arrow:hover {
	background: var(--primary_color);
	color: #fff
}

.admin-bar .sticky {
	top: 32px
}

header .sticky {
	transition: 0.3s
}

.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	transition: 0.5s all ease-in-out
}

.pagination {
	justify-content: center;
	padding: 20px 0;
	border-radius: unset
}

.pagination .next span,.pagination .prev span,.page-numbers .next span,.page-numbers .prev span {
	font-size: 12px
}

.pagination a,.pagination span,.page-numbers a,.page-numbers span {
	border: 0;
	line-height: inherit;
	color: var(--primary_color);
	font-size: 16px;
	font-weight: 400;
	position: relative;
	padding: 7px 10px;
	margin: 3px;
	display: flex;
	justify-content: center;
	align-items: center
}

.pagination a,.page-numbers a {
	padding: 7px
}

.pagination .current,.page-numbers .current {
	background: #fff;
	border-radius: 5px;
	color: var(--primary_color);
	padding: 7px
}

.pagination .page-numbers:hover,.page-numbers .page-numbers:hover {
	background: var(--primary_color);
	border-radius: 4px;
	color: #fff;
	padding: 7px
}

.pagination .page-numbers:hover>span,.page-numbers .page-numbers:hover>span {
	color: #fff
}

.pagination a>span,.page-numbers a>span {
	margin: -10px
}

.page-numbers.current:hover,.papage-numbers.current:hover {
	padding: 7px 8px
}

span.page-numbers.current {
	background: var(--primary_color)!important;
	color: white!important
}

.pagination .current,.pagination a.page-numbers,.page-numbers .current,.page-numbers a.page-numbers {
	height: 40px;
	text-decoration: none;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border: 1px solid #949494
}

.current .text-pagi-wrap {
	color: #fff!important;
	padding: 0
}

.page-numbers {
	display: flex;
	list-style: none;
	border-radius: .25rem;
	justify-content: center
}

.share-social ul {
	display: flex;
	list-style: none;
	margin-left: 0!important;
	padding-left: 0
}

.section-social {
	margin: 34px 0
}

.share-social .box-ic {
	font-size: 24px
}

.share-social .box-ic a {
	padding: 10px 24px;
	color: #fff;
	font-size: 12px;
	border-radius: 4px;
	text-decoration: none
}

.box-ic .ic-facebook {
	background: #4769a5;
	border-bottom: 4px solid #344259
}

.box-ic .ic-email {
	background: #ea4335;
	border-bottom: 4px solid #bb362a
}

.box-ic .ic-pinterest {
	background: #cd252b;
	border-bottom: 4px solid #a41e22
}

.box-ic .ic-twitter {
	background: #65ccef;
	border-bottom: 4px solid #51a3bf
}

.box-ic .ic-linkedin {
	background: #2ba3e1;
	border-bottom: 4px solid #2282b4
}

.section-social .share-social {
	margin: 0 auto;
	align-items: center;
	display: flex
}

.section-social .share-social .text {
	font-size: 20px;
	display: none
}

.share-social ul li {
	margin-right: 8px
}

.share-social .box-ic {
	font-size: 20px
}

.product-card-wrapper .product-card {
	text-align: center;
	padding-bottom: 20px
}

.product-card-wrapper .product-card .thumbnail-wrapper {
	padding-bottom: 100%
}

.product-card-wrapper .product-card .thumbnail-wrapper img {
	width: 95%;
	height: 95%;
	top: 2.5%;
	left: 2.5%
}

.product-card-wrapper .product-card .thumbnail-wrapper .onsale {
	position: absolute;
	top: 5%;
	left: 5%;
	background: var(--secondary_color);
	color: #fff;
	z-index: 1;
	padding: 5px 10px;
	border-radius: 2px;
	min-width: auto;
	min-height: auto;
	line-height: 1;
	font-size: 11px;
	font-weight: 400
}

.product-card-wrapper .product-card .img-cover {
	border: 1px solid var(--border_color);
	position: relative;
	overflow: hidden
}

.product-card-wrapper .product-card .img-cover .float-button {
	position: absolute;
	bottom: -100px;
	left: 2.5%;
	background: var(--primary_color);
	color: #fff;
	z-index: 99;
	padding: 5px 10px;
	border-radius: 2px;
	height: auto;
	width: auto;
	line-height: 1;
	font-size: 11px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-in-out;
	border: unset
}

.product-card-wrapper .product-card .img-cover .float-button i {
	color: #fff;
	font-size: 18px
}

.product-card-wrapper .product-card .img-cover .float-button.chat-zalo {
	display: flex;
	flex-direction: column
}

.product-card-wrapper .product-card .img-cover .float-button.chat-zalo img {
	width: 20px;
	height: 20px;
	position: unset;
	margin-bottom: 5px
}

.product-card-wrapper .product-card .woocommerce-loop-product__title {
	font-style: normal;
	font-weight: 600;
	font-size: 15px;
	color: var(--text_color);
	margin: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 18px;
	/*height: 36px;*/
}

.product-card-wrapper .product-card .price {
	display: flex;
	flex-direction: column
}

.product-card-wrapper .product-card .price ins {
	order: 1;
	text-decoration: none
}

.product-card-wrapper .product-card .price .woocommerce-Price-amount bdi {
	font-style: normal;
	font-weight: 600;
	font-size: 15px;
	line-height: 127%;
	color: var(--secondary_color)
}

.product-card-wrapper .product-card .price del {
	order: 2;
	color: #b2b2b2;
	font-size: 12px
}

.product-card-wrapper .product-card .price del .woocommerce-Price-amount bdi {
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 127%;
	color: #b2b2b2
}

.product-card-wrapper .product-card .product-category-link {
	display: none
}

.product-card-wrapper.product-type-variable .price {
	flex-direction: row;
	justify-content: center
}

.product-card-wrapper:hover {
	cursor: pointer
}

.product-card-wrapper:hover .product-card .woocommerce-loop-product__title {
	color: var(--primary_color)
}

.product-card-wrapper:hover .product-card .img-cover {
	border: 1px solid var(--primary_color)
}

.product-card-wrapper:hover .product-card .img-cover .float-button {
	bottom: 3%;
	left: 3%
}

span.woocustom_num_reviews {
	color: var(--primary_color)
}

#comments a.btn-reviews-now {
	background: var(--primary_color)
}

#tuVanModal .modal-header {
	border-bottom: unset
}

/* .thc-center-horizontal-manifest {
	display: none;
} */

.product_category_wrap {
	max-height: 490px;
	overflow-y: auto;
	overflow-x: hidden;
}

.product_category_item > a {
	font-size: 16px;
	font-weight: 700;
	color: var(--text_color);
	list-style: none;
	text-transform: uppercase;
}

.product_category_child li > a {
	font-size: 16px;
	font-weight: 400;
	color: #686565;
	list-style: none;
}

/* .product_category_child li > a:before {
	content: "";
	font-weight: 500;
	font-family: "FontAwesome";
	margin-right: 10px;
	font-size: 0.6rem;
	color: var(--secondary_color);
} */
#menu_item_product a {
	position: relative;
}
#menu_item_product a::after {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 20px;
	background: transparent;
}

.swiper-button-prev-top_categories_carousel, .swiper-button-next-top_categories_carousel {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background: var(--primary_color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	opacity: 0.8;
}

.discount-badge {
	position: absolute;
	top: 5%;
	left: 5%;
	background: var(--secondary_color);
	color: #fff;
	z-index: 1;
	padding: 5px 10px;
	border-radius: 2px;
	min-width: auto;
	min-height: auto;
	line-height: 1;
	font-size: 11px;
	font-weight: 400;
	max-width: fit-content;
	max-height: 21px;
}

.main_price {
	color: var(--secondary_color);
}

.init_main_price, .woocommerce-Price-init {
	color: #b2b2b2;
	text-decoration: line-through;
}