@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --font-body: "Roboto", sans-serif;
	--color-primary: #0058a0;
	--color-primary2: #2a81d0;
    --font-heading: "Roboto Condensed", sans-serif;
    --bg-primary: #0058a0
}
body{
	font-size: 16px;
	font-family: "Roboto", sans-serif;
	background: #e3f1fc
}
h2{
	font-size: 23px;
}
h3{
	font-size: 21px;
}
h4{
	font-size: 16px;
}
a:hover, a:focus {
    text-decoration: none;
    color: #2a81d0;
}
a, a:link, a:active, a:visited {
    color: #0058a0;
}
a:hover, a:focus {
    color: #2a81d0;
    text-decoration: none;
}
header{
	position: sticky;
	top: 0;
	padding: 15px 0;
	border-bottom: 1px solid #ddd;
	box-shadow: 0 10px 20px #2832640d;
	z-index: 99;
	background: #fff;
	margin-bottom: 30px
}
.row {
    margin-left: -10px;
    margin-right: -10px;
}
[class*=" col-"], [class^=col-] {
    padding-left: 10px;
    padding-right: 10px;
}
.header-top{
	display: flex;
	font-family: var(--font-heading);
	justify-content: flex-end;
	background: var(--bg-primary);
	color: #fff;
	padding: 15px 0;
}

.header-top .row{
	display: flex;
	align-items: center
}
.header-top, .header-top a{

	color: #fff;
}
.header-top .ulul{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	gap: 20px;
}

.header-top
.logo img{
	width: 100%;
	height: auto;
}
.header-bottom-box.container.row{
	display: flex;
	align-items: center;
	justify-content: space-between
	
}
.heading-footer{
	font-family: var(--font-heading);
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 15px;

}
.menu-footer{
	padding: 0;
	margin: 0;
}
.menu-footer li{
	margin-bottom: 10px;
}
.menu-footer li:last-child{
	margin-bottom: 0;
}
footer {
	margin-top: 20px;
    padding: 30px 0 0 0;
    background: #0f2f55;
    color: #243d14;
	color: #fff;
}
footer a{
	color: #fff !important
}
.main-menu{
	display: flex;
	position: relative;
	padding: 0;
	margin: 0;
	align-items: center;
	justify-content: space-between;
}
.main-menu>li>a{
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	
	color: #000;
}
.main-menu>li{
	padding: 10px 0;
}
.main-menu>li:after{
	content: '';
	width: 0%;
	height: 3px;
	background: var(--bg-primary);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: .25s
}
.main-menu>li:hover:after{
	width: 100%;
	transition: .25s
}
.main-menu>li>a>.fa{
	margin-left: 1px
}
.main-menu a{
	display: block;
	white-space: nowrap;
	transition: .25s;
	color: #000
}
.main-menu a:hover{
	
}
.main-menu li{
	position: relative;
}
.main-menu li.blue1 a{
	background: #fff;
	border: 1px solid var(--color-primary);
	padding: 3px 10px;
	border-radius: 5px;
}
.main-menu li.blue1 a:hover{
	color: #fff;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
}
.main-menu li.blue2 a{
	color: #fff;
	background: var(--color-primary);
	padding: 3px 10px;
	border-radius: 5px;
	border: 1px solid var(--color-primary);
}
.main-menu li.blue2 a:hover{
	color: var(--color-primary);
	background: #fff;
}
.main-menu li.blue1:hover:after, .main-menu li.blue2:hover:after{
	display: none
}
.main-menu .sub-menu{
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
	padding: 0;
	margin: 0;
	min-width: 250px;
	z-index: 99;
}
.main-menu .sub-menu2{
	min-width: 250px;
	position: absolute;
	display: none;
	top: 0;
	left: 100%;
	background: #fff;
	border: 1px solid #ddd;
	    box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
	padding: 0;
	margin: 0;
	z-index: 100
}
.main-menu .sub-menu a, .main-menu .sub-menu2 a{
	padding: 7px 13px;
}
.main-menu .sub-menu .fa, .main-menu .sub-menu2 .fa{
	position: absolute;
	top: 50%;
	right: 13px;
	transform: translate(0, -50%);
}
.main-menu .sub-menu a:hover, .main-menu .sub-menu2 a:hover{
	background: #eee;
	transition: .25s
}
.main-menu>li:hover .sub-menu{
	display: block;
}
.main-menu .sub-menu>li:hover .sub-menu2{
	display: block;
}
.main-menu .mega{
	position: static
}
.main-menu .mega .sub-menu{
	left: 0;
	right: 0;
	padding: 20px;
	display: none
}
.main-menu .mega .sub-menu .sub-mega{
	display: flex;
	margin: 0 -15px;
}
.main-menu .mega .sub-menu .sub-mega .fa{
	display: none
}
.main-menu .mega .sub-menu .sub-mega>li{
	width: 33.33333%;
	border-right: 1px solid #ddd;
	padding: 0 15px;
}
.main-menu .mega .sub-menu .sub-mega>li>a{
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-heading);
	padding: 0;
}

.main-menu .mega .sub-menu .sub-mega .sub-menu2{
	display: block !important;
    position: relative;
    left: 0;
    border: none;
    box-shadow: none;
    list-style: disc;
	padding-left: 15px;
}
.main-menu .mega .sub-menu .sub-mega .sub-menu2 li{
	width: 100%;
	margin-top: 10px;
}
.main-menu .mega .sub-menu .sub-mega .sub-menu2 a{
	padding: 0;
}
.main-menu .mega .sub-menu .sub-mega a:hover{
	background: none;
	color: #307300
}
.main-menu .mega .sub-menu .sub-mega .sub-menu2 .sub-menu2{
	display: none !important
}
.img-square, .img-21-9, .img-4-3 {
    position: relative;
    display: block;
    overflow: hidden;
}
.img-square img, .img-21-9 img, .img-4-3 img{
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}
.img-21-9 {
    padding-top: 42.25%;
}
.img-square {
    padding-top: 100%;
}
.img-4-3 {
    padding-top: 75%;
}
.block-box{
	margin-bottom: 30px;
}
.heading-sss {
    border-bottom: 2px solid var(--color-primary);
    background: #efefef;
    border-radius: 5px;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 0 15px 0 0;
    margin-bottom: 10px;
}
.heading-sss span {
    display: flex;
    align-items: center;
    gap: 20px;
}
.heading-sss h2 {
    margin-right: 15px;
    height: 36px;
    line-height: 36px;
    font-size: 20px;
    background: var(--bg-primary);
    color: #fff !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    position: relative;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.heading-sss h2 a {
    color: #fff !important;
}
.heading-sss h2:after {
    border: 18px solid transparent;
    border-left-color: var(--color-primary);
    position: absolute;
    top: 0;
    left: 100%;
    content: "";
}
.heading-sss .sub-cat {
    padding: 0;
    margin: 0;
}
.heading-sss .sub-cat li {
    display: inline-block;
    margin-right: 10px;
}
.readmore {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-grid {
	background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}
.product-grid .info {
    margin-top: 10px;
}
.product-grid .cata {
    font-size: 13px;
    opacity: .7;
    margin-bottom: 3px;
    text-transform: uppercase;
    font-weight: 300;
}
.product-grid .info h3 {
    height: 48px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px;
    margin-bottom: 5px;
}
.product-grid .add-status {
    display: flex;
    align-items: center;
	display: none
}
.product-grid .info .discounts_money {
	font-size: 13px;
	text-decoration: line-through;
	margin-right: 10px;
}
.product-grid .info .money {
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    color: red;
}
.owl-news .owl-nav {
    position: absolute;
    top: 25%;
    width: 100%;
    font-size: 50px;
    opacity: 0;
    transition: .25s;
}
.owl-news .owl-next, .owl-news .owl-prev {
    background: rgba(210, 210, 210, 0.655);
    padding: 10px 5px;
    color: #fff;
}
.owl-news .owl-prev {
    position: absolute;
    left: -20px;
    transition: .25s;
}
.owl-news:hover .owl-prev {
    left: 0;
    transition: .25s;
}
.owl-news .owl-next {
    position: absolute;
    right: -20px;
    transition: .25s;
}
.owl-news:hover .owl-next {
    right: 0;
    transition: .25s;
}
#gom-all-in-one {
	position: fixed;
	bottom: 10%;
	right: 0;
	z-index: 9999;
}

#gom-all-in-one .button-contact {
	transition: 1.6s all;
	-moz-transition: 1.6s all;
	-webkit-transition: 1.6s all;
	position: relative;
	margin-top: -5px;
}

#button-contact-vr .button-contact .phone-vr {
	position: relative;
	visibility: visible;
	background-color: #fff0;
	width: 90px;
	height: 90px;
	cursor: pointer;
	z-index: 11;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transition: visibility .5s;
	left: 0;
	bottom: 0;
	display: block;
}

.phone-vr-circle-fill {
	width: 65px;
	height: 65px;
	top: 12px;
	left: 12px;
	position: absolute;
	box-shadow: 0 0 0 0 #c31d1d;
	background-color: rgb(230 8 8 / .7);
	border-radius: 50%;
	border: 2px solid #fff0;
	-webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
	animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animuiion: zoom 1.3s infinite;
	animation: zoom 1.3s infinite
}

.phone-vr-img-circle {
	background-color: #e60808;
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 25px;
	left: 25px;
	position: absolute;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	-webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
	animation: phone-vr-circle-fill 1s infinite ease-in-out
}

.phone-vr-img-circle a {
	display: block;
	line-height: 37px
}

.phone-vr-img-circle img {
	max-height: 25px;
	max-width: 27px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%)
}

.phone-vr {
	position: relative;
	visibility: visible;
	background-color: #fff0;
	width: 90px;
	height: 90px;
	cursor: pointer;
	z-index: 11;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transition: visibility .5s;
	left: 0;
	bottom: 0;
	display: block;
}

#zalo-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 #2196F3;
	background-color: rgb(33 150 243 / .7);
}

#zalo-vr .phone-vr-img-circle {
	background-color: #2196F3;
}

.readmore {
	display: flex;
	align-items: center;
	gap: 10px;
}

@-webkit-keyframes phone-vr-circle-fill {
	0% {
		-webkit-transform: rotate(0) scale(1) skew(1deg)
	}

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

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

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

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

	50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg)
	}

	100% {
		-webkit-transform: rotate(0) scale(1) skew(1deg)
	}
}

@-webkit-keyframes zoom {
	0% {
		transform: scale(.9)
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 15px #fff0
	}

	100% {
		transform: scale(.9);
		box-shadow: 0 0 0 0 #fff0
	}
}

@keyframes zoom {
	0% {
		transform: scale(.9)
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 15px #fff0
	}

	100% {
		transform: scale(.9);
		box-shadow: 0 0 0 0 #fff0
	}
}

.h1-pro {
    color: #000;
    margin-bottom: 15px;
	font-family: var(--font-heading)
}
.product-info .info-price {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.product-info .info-price label, .product-info .pro-order-num label {
    margin-bottom: 0;
    margin-right: 10px;
}
.product-info .money {
    font-size: 35px;
    font-weight: 700;
    color: #F44336;
	font-family: var(--font-heading)
}
.product-info .pro-order-num {
margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.info-price .discounts_money{
	text-decoration: line-through;
	margin-right: 15px
}
.pnum-box {
    display: flex;
	background: #fff
}
.pnum-box #pnum{
	width: 120px;
}
.filter_product{
	margin-bottom: 10px
}
.itemsgroup{
	padding: 10px;
	border-radius: 8px;
	background: #f9f9f9
}
.btn-add-cart {
    background: red;
    border: none;
    color: #fff;
    padding: 6px 20px;
    font-size: 16px;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
	justify-content: space-between;
	font-weight: 700;
	font-family: var(--font-heading)
}
.btn-contact .zalo, .btn-contact .hotline {
    background: #03A9F4;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    padding: 6px 15px;
	width: 100%;
	align-items: center
}
.btn-contact .zalo {
    background: #03A9F4;
}
.btn-contact .hotline {
    background: #b20000;
}
.btn-contact a .fa {
    margin-right: 5px;
}
.nav-tabs {
    border-bottom: none;
    background: none;
    font-weight: 500;
	border-bottom: 1px solid var(--bg-primary);
	margin-bottom: 15px;
	font-family: var(--font-heading);
	font-size: 18px;
}
.nav-tabs li{
	position: relative;
	margin-right: 10px;
}
.nav-tabs li a{
	padding: 7px 0;
}
.nav-tabs>li>a{
	margin-right: 0;
	text-transform: uppercase
}
.nav-tabs li.active a{
	color: #ccc
}
.nav-tabs li.active:after{
    content: '';
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-primary);
    display: inline-block;
    height:3px;
    position: absolute;
        bottom: -1px;
}
#content, #content1 {
    overflow: hidden;
    height: 200px;
    position: relative;
    transition: height 0.5s ease-in-out;
    padding: 20px 20px 60px 20px;
    background: #f1f4f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
}
#content:after, #content1:after {
content: '';
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgb(241 244 249 / 85%) 0%, rgb(241 244 249) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.btn {
    transition: transform .3s, border .3s, background .3s, box-shadow .3s, opacity .3s, color .3s;
    font-size: 16px;
    padding: 6px 20px;
}
.btn-primary {
    color: #fff !important;
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
}
.toggle-btn:after {
    content: '\f107';
	display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	margin-left: 5px
}
.toggle-btn.expanded:after {
    content: '\f106';
	display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	margin-left: 5px
}
.toggle-btn{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	z-index: 123
}
#pnum {
    width: 65px;
    border-radius: 0;
    display: inline-block;
    vertical-align: middle;
    border-left: none;
    border-right: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 32px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
}
.pnum-box #pnum {
    height: 34px;
}
.giamsl, .tangsl {
    border-radius: 0;
    background: #fff;
    border: 1px solid #ccc;
    display: inline-block;
    width: 26px;
    vertical-align: middle;
    height: 32px;
    width: 25px;
}
.pnum-box .giamsl, .pnum-box .tangsl {
    height: 34px;
}
.heading-ss {
    border-bottom: 2px solid var(--color-primary);
    background: #efefef;
    border-radius: 5px;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 10px;
}
.heading-ss h2 {
    margin-right: 15px;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
    font-size: 20px;
    color: var(--color-primary);
    padding: 4px 0;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    color: #000;
    background: none;
    border: none;
    border-bottom-color: transparent;
    cursor: default;
    border-bottom: none;
}
.tab-pane {
    padding: 20px 0;
}
.expanded {
    height: auto !important;
}
#content.expanded:after,#content1.expanded:after{
	display: none
}
.news-bodyhtml table, #content table {
	border: 2px solid var(--blue4);
	margin: 10px 0
}
.news-bodyhtml h1, .news-bodyhtml h2, .news-bodyhtml h3{
	margin-bottom: 10px;
}
.news-bodyhtml{
	line-height: 1.7
}
.is-sticky {
    position: sticky;
    top: 105px;
}
.fr-contact-2 {
    background-color: rgba(233, 233, 233, 0.581);
    padding: 20px;
    border-radius: 5px;
}
.fr-contact-2 h3 .fa {
    margin-right: 5px;
}
.fr-contact-2 h3 {
    margin-bottom: 15px;
    font-size: 20px;
    padding: 4px 15px;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}
.fr-contact-2 ul {
    list-style: square;
    padding-left: 20px;
}
.block-border {
    padding: 10px;
    border: 1px solid #ddd;
}
.heading-s2 {
    color: #fff;
    background: var(--color-primary);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 6px 12px;
}
.metismenu.metis-lr .sidebar-nav ul a {
    padding: 0;
}
.metismenu.metis-lr .sidebar-nav ul li:last-child a {
    border-bottom: none;
}
.metis-lr a{
	font-family: var(--font-heading)
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    z-index: 3;
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    cursor: default;
}
.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
    z-index: 2;
    color: var(--color-primary);
    background-color: #eee;
    border-color: #ddd;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: var(--color-primary);
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}
.news-grid {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px -2px rgb(0 0 0 / 6%), 0 1px 2px rgb(0 0 0 / 12%);
}
.news-grid .content {
    background: #fff;
    padding: 15px;

}
.news-grid h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 54px;
    position: relative;
    margin-bottom: 0px;
    font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}
.news-grid h3 a{
	color: #000;
}
.news-grid .des {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 46px;
}
.title-center {
    text-align: center;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}
h1 {
    font-size: 30px;
    font-weight: 500;
}
.danh-sach {
	border: 2px solid #000;
	padding: 10px;
	background: #f3f3f3;
	margin-bottom: 20px;
	border-radius: 6px;

}

.danh-sach .fa {
	margin-right: 10px;
}

.head-danh-sach {
	background: none;
	border: none;
	width: 100%;
	font-weight: 700;
	text-transform: uppercase;
	text-align: left;
	font-size: 16px;
	padding: 5px 0;
}

.js-toc {
	margin-bottom: 10px;
	max-height: 400px;
	overflow-y: auto;
}

ol.toc-list {
	padding-left: 20px;
	list-style-type: decimal;
	margin-bottom: 0;
	margin-bottom: 5px;
}

ol.toc-list:last-child {
	margin-bottom: 0
}

ol.toc-list>li:last-child {
	margin-bottom: 0
}

ol.toc-list a {
	width: 100%;
	background: linear-gradient(to right, #ddd 50%, #f3f3f3 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all.25s ease;
	padding: 3px;
	display: inline-block;
}

ol.toc-list .is-active-link {
	background-position: left bottom;
}

ol.toc-list>li>a {
	font-weight: 700;
	color: #000
}

ol.toc-list>li>ol.toc-list>li>a {
	font-weight: 400
}

.is-position-fixed {
	position: fixed !important;
	top: 50px;
	z-index: 999
}

.is-position-fixed .js-toc {
	height: auto !important;
	width: 200px !important;
	visibility: visible !important;
	transition: .25s;
	visibility: hidden;
}

.picaso {
	transition: .25s;
}

.transition--300 {
	transition: all 300ms ease-in-out;
}

.btn-danh-sach-close {
	border: none;
	background: none;
	position: absolute;
	top: 13px;
	right: 0;
	width: 40px;
	padding: 0;
	display: none;
}

.btn-danh-sach-show {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	border: 2px solid #000;
	padding: 10px;
	background: #f3f3f3;
	line-height: 1;
	border-radius: 7px;
	z-index: 9;
	display: none;
	opacity: .7;
	transform: .25s
}

.btn-danh-sach-show:hover {
	opacity: 1;
	transform: .25s
}

.is-position-fixed .btn-danh-sach-close,
.is-position-fixed .btn-danh-sach-show {
	display: block;
}
.news-detail .hometext{
	margin-bottom: 20px;
}
.news-bodyhtml h1, .news-bodyhtml h2, .news-bodyhtml h3, .news-bodyhtml h4, .news-bodyhtml h5{
	font-family: var(--font-heading);
	color: var(--color-primary)
}
.news-bodyhtml h1:before, .news-bodyhtml h2:before, .news-bodyhtml h3:before, .news-bodyhtml h4:before, .news-bodyhtml h5:before, .news-bodyhtml h6:before {
    display: block;
    content: " ";
    height: 85px;
    margin-top: -85px;
    visibility: hidden;
}
.news-bodyhtml h1{
	font-size: 22px;
}
.news-bodyhtml h2{
	font-size: 20px;
}
.news-bodyhtml h3{
	font-size: 18px;
}
#search_form_shops{
	display: flex;
	align-items: center
}
#search_form_shops{
	border: 1px solid #fff;
	border-radius: 5px;
	width: 350px;
	overflow: hidden
}
#search_form_shops input{
	background: #fff;
	border: none;
	width: 100%;
	color: #000;
	padding: 6px 15px;
}
#search_form_shops button{
	padding: 6px 15px;
	border: none;
	background: var(--bg-primary)
}
.search-box.active-mobile:before{
content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    background: #00000094;
    left: 0;
    top: 0;
    z-index: 999;
}
.mini-cart {
	position: relative;
}

.cart-num {
    width: 17px;
    height: 17px;
    background: #FF9800;
    border-radius: 50%;
    position: absolute;
    text-align: center;
    color: #fff;
    top: -5px;
    left: 10px;
    box-shadow: 1px 1px 3px 0 rgb(0 0 0 / 30%);
    font-size: 11px;
}
.d-flex-center{
	display: flex;
	align-items: center
}
.cart-content {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	padding: 0;
	text-align: left;
	-webkit-box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
	box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
	z-index: 10000;
	min-width: 320px;
	border: 2px solid #ddd;
	display: none;
	color: #000;
	padding: 20px
}
.mini-products-list{
	padding: 0;
	margin: 0;
}
.cart-content:before {
	content: '';
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #ddd;
	border-left: 6px solid transparent;
	position: absolute;
	left: 50%;
	top: -13px;
	transform: translateX(-50%)
}

.cart-content:after {
	content: '';
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 4px solid #fff;
	border-left: 4px solid transparent;
	position: absolute;
	left: 50%;
	top: -9px;
	transform: translateX(-50%)
}

.mini-cart:hover .cart-content {
	display: block;
}

.mini-cart .fa {
	font-size: 16px;
	margin-right: 10px;
}
.mini-cart .a-cart {
	color: #fff !important;
}
.cart-content .btn {
	width: 100%;
	color: #fff
}
.wrap_total {
	text-align: center;
}

.top-subtotal {
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.mini-products-list img {
	width: 40px;
	height: 40px
}

.mini-products-list .remove-cart-block {
	position: absolute;
	right: -5px;
	top: 0px;
	padding: 5px;
	color: #000;
	margin: 0;
}

.mini-products-list .remove-cart-block:hover {
	color: #000
}

.mini-products-list .number-sidebar {
	width: calc(100% - 80px);
	height: 20px;
	line-height: 20px;
	vertical-align: top;
	border: 1px solid #ddd;
	border-left: none;
	border-right: none;
}

.mini-products-list .giamsl,
.mini-products-list .tangsl {
	height: 20px !important;
}
.slider-box{
	margin-bottom: 20px;
}
.slider{
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
}
.news-detail{
	box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
	border-radius: 10px;
	padding: 20px 15px;
	background: #fff;
	margin-bottom: 20px;
}
.block-box-b{
	box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
	border-radius: 10px;
	padding: 20px 15px;
	background: #fff;
	margin-bottom: 20px;
}
.block-heading-default{
	text-align: center;
	margin-bottom: 20px;
	font-size: 25px;
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: uppercase
}
.content-table{
	border: 1px solid #ddd;
}
.content-table p{
	margin-bottom: 0
}
.menu-grid-1{
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 10px;
	background: #fff;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	color: #000 !important;
	display: block;
	font-family: var(--font-heading);
	margin-bottom: 20px;
}
.menu-grid-1 .img-21-9{
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 10px;
}
.btn{
	border-radius: 6px;
}
.btn-white{
	background: #fff;
	padding: 6px 12px;
}
.btn-orange{
	background: #FF9800;
	padding: 6px 12px;
	color: #fff !important;

}
.btn-orange:hover{
	    background: #e58800;
}
.group-btn{
	display: flex;
	align-items: center;
	gap: 10px;
	
}
.group-btn .btn{
	width: 100%;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500
}
.cam-hung-mau{
	padding: 15% 20px;
	background: url(../images/chm.jpg) no-repeat;
	background-size: cover;
	margin-bottom: 20px;
	border-radius: 20px;
	overflow: hidden;
	color: #fff;
	position: relative
}
.cam-hung-mau:before{
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	background: linear-gradient(90deg,rgba(0, 0, 0, .6) 0%, rgba(255, 255, 255, 0) 100%);
	display: inline-block
}
.cam-hung-mau .group-btn{
	margin-top: 20px;
}
.cam-hung-mau h2{
	font-size: 40px;
	font-family: var(--font-heading);
	text-transform: uppercase;

}
.tool-calc, .ss-son{
	background: var(--bg-primary);
	padding: 15px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	width: 100%;
}
.tool-calc h2, .ss-son h2{
	font-size: 27px;
	text-transform: uppercase;
	font-family: var(--font-heading);
	color: #fff;
	margin-bottom: 15px;
	text-align: center;
}
.form-control{
	padding: 7px 13px;
	height: auto;
	box-shadow: none;
	font-size: 15px;
	height: 38px;
}
.tool-calc .btn{
	text-transform: uppercase;
	font-weight: 600;
	width: 100%
}
.tool-calc .form-control{
	margin-bottom: 15px;
}
.mrg-t-10{
	margin-top: 10px;
}
.d-flex{
	display: flex
}
.f-stretch{
	align-items: stretch;
}
.f-stretch .col-md-12{
	display: flex
}
.contain img{
	object-fit: contain
}
.img-banner{
	background: var(--bg-primary);
	border-radius: 10px;
	overflow: hidden;
	padding: 10px;
	margin-bottom: 20px;
}
.img-banner .contain{
	border-radius: 10px;
	overflow: hidden;
}
.menu-grid-2{
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 10px;
	box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
	margin-bottom: 20px;
}
.menu-grid-2 h3{
	margin-top: 10px;
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 23px;
}
.menu-grid-2 img{
	height: 60px;
	width: auto;
	max-width: 100%;
}
.menu-grid-2 a{
	display: block
}
.sub-menu-grid-2{
	list-style: square;
	margin-top: 15px;
}
.bg-white{
	padding: 30px 0;
	background: #fff;
	margin-bottom: 40px;
}

.bg-white .block-box-b{
	box-shadow: none;
	padding: 0;
}
.owl-news .owl-nav {
    position: absolute;
    top: 25%;
    width: 100%;
    font-size: 50px;
    opacity: 0;
    transition: .25s;
}
.owl-news .owl-next, .owl-news .owl-prev {
    background: var(--bg-primary) !important;
    padding: 10px 5px !important;
    color: #fff !important;
}
.owl-news .owl-prev {
    position: absolute;
    left: -20px;
    transition: .25s;
}
.owl-news .owl-next {
    position: absolute;
    right: -20px;
    transition: .25s;
}
.owl-dots {
    margin-top: 10px;
    text-align: center;
}
.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    margin: 0 5px;
    display: inline-block;
}
.owl-dot.active {
    background: var(--bg-primary);
}
.owl-news:hover .owl-nav {
    opacity: 1;
}
.mrg-b--20{
	margin-bottom: -20px
}
.tsctvc{
	text-align: center;
}
.tsctvc .img-s{
	height: 100px;
	margin-bottom: 10px;
	display: inline-block
}
.tsctvc .img-s img{
	width: auto;
    height: 100%;
}
.tsctvc h3{
	font-family: var(--font-heading);

	font-size: 18px;
	text-transform: uppercase
}
.box-dknt{
	background: url(../images/bg11.jpg) no-repeat;
	background-size: cover;
	position: relative;
	border-radius: 10px;
	z-index: 234;
	overflow: hidden;
	padding: 20px;
	text-align: center;
}
.box-dknt:before{
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background: #0058a08c;
}
.box-dknt .block-heading-default{
	color: #fff;
}
.relative{
	position: relative;
}
.box-dknt .des{
	text-align: center;
	font-size: 20px;
	color: #fff;
}
.box-dknt form{
	width: 400px;
	border-radius: 6px;
	overflow: hidden;
	margin: 0 auto;
    display: flex;
	background: #fff;
	margin-top: 10px;
}
.box-dknt input{
	border: none;
	padding: 6px 20px;
	width: 100%;
}
.box-dknt .btn{
	border-radius: 0 6px 6px 0;
	font-weight: 600;
	text-transform: uppercase
}
.sociall{
	font-size: 24px;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.sociall li{
	margin-bottom: 0
}
.sociall a{
	height: 35px;
	width: 35px;
	border-radius: 50%;
	background: #fff;
	color: #000 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sociall img{
	height: 27px;
	width: 27px;
}
.copyright-box{
	background: #0d2544;
	padding: 15px 0;
}
.footer-bottom{
	border-top: 1px solid #2b4d76;
	margin-top: 10px;
	padding: 15px 0;
}
.copyright{
	text-align: center
}
.img-pay{
	display: flex;
	align-items: center;
	gap: 20px;
}
.img-pay img{
	height: 32px;
	border-radius: 4px;
	width: auto;
}
footer .logo{
	margin-bottom: 15px;
	display: inline-block
}
footer .logo img{
	height: 65px;
	width: auto;
}
.sub-footer{
	margin-bottom: 40px;
	font-size: 20px;
}
footer ul{
	padding: 0;
	margin: 0;

}
footer ul li {
    margin-bottom: 10px;
}
footer ul li:last-child {
    margin-bottom: 0
}
.pdd-lr-0{
	padding-left: 0;
	padding-right: 0;
}
#sort-by{
	display: flex;
	align-items: center
}
#sort-by label{
	margin-bottom: 0;
	margin-right: 6px;
	 white-space: nowrap;
}
.heading-sort{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.heading-style-3{
	font-size: 28px;
	font-family: var(--font-heading);

}
.select-sort .dropdown-menu{
	font-size: 15px;
	right: 0;
	left: auto;
}
.sp-filter{
	background: var(--bg-primary);
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
	padding: 15px;
}
.sp-filter h2{
	text-transform: uppercase;
	font-family: var(--font-heading);
	display: block;

}
.sp-filter .divider{
	left: 0;
	right: 0;
	width: 100%;
	display: inline-block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #0c71c5
}
.sp-filter h3{
	font-family: var(--font-heading);
	font-weight: 500;
	margin-bottom: 10px;
}
.sp-filter label{
    font-weight: 400;
    display: flex;
    gap: 5px;
	align-items: center;
}
.sp-filter input{
	margin: 0
}
input[type='radio']{
	background: #fff;
	box-shadow: none
}
.sp-filter input[type='radio']{
	border-radius: 2px;
	position: relative
}
.sp-filter input[type='radio']:checked:before{
    content: '✔';
    background: none;
    text-indent: 0;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 16px;
    line-height: 0;
    transform: translate(-50%, -50%);
    margin: 0;
    width: auto;
    height: auto;
}
.sp-filter input[type="range"]{
	padding: 0;
	margin-bottom: 20px;
}
.sp-filter input[type="range"]:focus{
	outline: none;
	box-shadow: none;
	
}
.price-slider {
    position: relative;
    height: 30px;
}

.price-slider input[type=range] {
    position: absolute;
    width: 100%;
    height: 35px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.price-slider input::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ff9800;
    cursor: pointer;
    margin-top: -6px;
}

.price-slider input::-moz-range-thumb {
    pointer-events: auto;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #b1e0f6;
    cursor: pointer;
}

.slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background: #ff9800;
    border-radius: 2px;
}

.slider-range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: #b1e0f6;
    border-radius: 2px;
}
.price-range-wrapper .btn{
	margin-top: 10px;
	width: 100%;
}
.calc{
background: #0058A0;
background: linear-gradient(90deg,rgba(0, 88, 160, 1) 0%, rgba(3, 126, 196, 0.5) 100%);
	padding: 30px 0;
	
	margin-bottom: 20px;
	color: #fff;
}
.calcc, .calcc div{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.calcc div{
	gap: 20px;
}
.calc h2{
	font-family: var(--font-heading);
	font-size: 30px;
}
.calc img{
	height: 100px;
	width: auto
}
.calc .btn{
	font-size: 20px;
	font-weight: 600;
	font-family: var(--font-heading);
	height: auto;
	text-transform: uppercase
}
.btn-order-box{
	display: flex;
	gap: 15px;
	justify-content: space-between
}
.btn-zalo, .btn-buy-now {
	font-family: var(--font-heading);
	font-weight: 600;
	color: #fff !important;
	padding: 7px 14px;
	border-radius: 20px;
	overflow: hidden;
	text-transform: uppercase;
	width: 100%;
}
.btn-zalo{
	background: var(--bg-primary);
}
.btn-buy-now {
   background: #FF5722;
}
.tsctvc2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 20px;
}
.tsctvc2 img{
	height: 20px;
	width: auto;
	margin-right: 5px;
}
.product-info{
	background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.info-weight{
	margin-bottom: 10px;
}

.ddab{
	display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.search-box {
    display: flex;
}
.search-mobile{
	background: none;
	border:none;
	font-size: 25px;
	display: none
}

.mobile-menu-bg {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: none;
}

.mobile-menu-wrap {
	width: 280px;
	position: fixed;
	top: 0;
	left: 0;
	width: 280px;
	height: 100%;
	background: var(--bg-primary);
	z-index: 9999;
	visibility: hidden;
	transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
}

.mobile-menu-wrap.animate {
	transition: all 0.25s ease;
}

.mobile-menu-wrap .logo {
	text-align: center;
	padding: 10px;
}

.mobile-menu-wrap .logo img {
	height: 40px;
	width: auto;
}

.mobile-menu-wrap .menu {

	height: calc(100vh - 170px);
	overflow: auto;
}

.mobile-menu-wrap .mfooter {
	background-color: #fff;
	height: 30px;
	padding: 10px;
	text-align: center;
	color: #777;
}

.mobile-menu-toggle-btn {
	cursor: pointer;
	background: none;

	text-align: center;
	font-size: 30px;
	display: none;
	color: #fff;
	z-index: 999;

	border-radius: 4px;
}

.mobile-menu-toggle-btn:hover {
	background: none;
}


@media (max-width: 767.98px) {
	.mobile-menu-toggle-btn {
		display: inline-block;
		vertical-align: middle;
	}

	.open-menu .mobile-menu-bg {
		display: block;
	}

	.open-menu .mobile-menu-wrap {
		visibility: visible;
		transform: translateX(0px);
		-webkit-transform: translateX(0px);
		-moz-transform: translateX(0px);
		-ms-transform: translateX(0px);
		-o-transform: translateX(0px);
	}
}
.grid-bg{
	border: 1px solid #ddd;
	background: #fff;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 23px #0a0a0a14;
    -moz-box-shadow: 0 0 23px #0a0a0a14;
    -webkit-box-shadow: 0 0 23px #0a0a0a14;
}
.grid-bg a{
	display: block;
	color: #000 !important
}
.grid-bg img {
    height: 60px;
    width: auto;
    max-width: 100%;
}
.grid-bg h3{
	margin: 10px 0;
	font-family: var(--font-heading)
}
.bgson-bnn{
	margin-bottom: 20px;
    color: #fff;
    background: url(../images/bnndulux.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
    padding: 70px;
	text-align: center;
		border-radius: 10px;
	margin: 20px 0;
	z-index: 2;
	overflow: hidden
}
.bgson-bnn:before{
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background: linear-gradient(90deg, rgb(0, 88, 160) 0%, rgba(3, 126, 196, 0.5) 100%);
	z-index: -1
}
.bgson-bnn h2{
	text-transform: uppercase;
	font-family: var(--font-heading);
	margin-bottom: 10px;
}
.btn img{
	height: 25px;
	width: auto;
	margin-right: 5px;
}
.bgson-bnn .group-btn{
	justify-content: center;

}
.bgson-bnn .group-btn .btn{
	width: auto
}
.mini-products-list {
    padding: 0;
    margin: 0;
    font-size: 13px;
    display: block !important;
}
.mini-products-list li {
    position: relative;
    padding: 5px 15px 5px 50px !important;
    border-bottom: 1px solid #ddd;
}
.mini-products-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.mini-products-list li:first-child {
    padding-top: 0;
}
.mini-products-list li .product-image {
    position: absolute;
    top: 10px;
    left: 0;
}
.mini-products-list .remove-cart-block {
    position: absolute;
    right: -5px;
    top: 0px;
    padding: 5px;
    color: #000;
    margin: 0;
}
.mini-cart .fa {
    font-size: 16px;
}
.mini-products-list .product-name {
    color: #000;
    display: block;
    font-size: 14px;
}
.cart-content .group {
    font-size: 13px;
    font-weight: 300;
    color: #555;
}
.mini-products-list .price {
    margin-bottom: 5px;
}
.mini-products-list .discounts_money{
	text-decoration: line-through;
	margin-right: 6px;
	color: #555
}
.mini-products-list .giamsl, .mini-products-list .tangsl {
    height: 25px !important;
}
.top-subtotal {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
#total {
    color: #ff0000;
    font-weight: bold;
    font-size: 15px;
}
.wrap_total .row{
	display: block
}
.mini-products-list .price{
	 color: #ff0000;
    font-weight: bold;
    font-size: 15px;
}
.pnum-box input{
	border: 1px solid #ddd;
	border-left: none;
	border-right: none
}
.ket-qua{
	color: #fff;
	font-size: 20px;
}