@charset "UTF-8";

:root {
    --main-color: #2c2c2c;
    --second-color: #c2af7a;
    --body-color: #1b1b1b;
    --body-font: 15px;
    --body-mobile-font: 14px;

}
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, ul{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}
ol, ul {
  list-style: none;
}
li.widget_block{list-style: none;}
h5,h6{font-weight: 400;}
a{text-decoration: none;color: var(--body-color);}
a:hover{color: var(--second-color);transition: all 200ms ease-in-out;}
body{
	font-family: 'Mulish', sans-serif;
	font-size: var(--body-font);
	font-weight: 400;
	color: var(--body-color);
	line-height: 135%;
}
img{max-width: 100%;height:auto}
img.ratio4_3-cover{
	aspect-ratio: 4/3;
	object-fit: contain;
}
.ntl-container{max-width: 1100px;margin: 0 auto;padding: 0 10px}
.ntl-center{text-align: center}
.ntl-left{text-align: left}
.ntl-right{text-align: right}
.ntl-bold{font-weight: bold}
.ntl-title-style1{text-align: center;}
.ntl-title-style1 .title {
	position:relative; display: inline-block; font-size:28px; font-weight:700;  letter-spacing:0px; text-transform:uppercase; margin:auto; white-space:nowrap; border:1px solid var(--main-color);padding:5px 11px 3px 11px;
}
.ntl-title-style1 .title:before, .ntl-title-style1 .title:after {
    background-color: var(--second-color);
    position:absolute; 
    content: '';
    height: 7px;
    width: 7px; border-radius:50%;
    bottom: 12px;
}
.ntl-title-style1 .title:before {
   left:-20px;
}
.ntl-title-style1 .title:after {
   right:-20px;
}
.ntl-title-style2{text-align: center;}
.ntl-title-style2 .title {
	position: relative; display: inline-block; font-size:28px; font-weight:700;  letter-spacing:1px; text-transform:uppercase; margin:auto; white-space:nowrap; padding-bottom:13px;
}
.ntl-title-style2 .title:before {
    background-color: var(--second-color);
    content: '';
    display: block;
    height: 2px;
    width: 75px;
    margin-bottom: 5px;
}
.ntl-title-style2 .title:after {
    background-color: var(--second-color);
    content: '';
    display: block;
	position:absolute; right:0; bottom:0;
    height: 2px;
    width: 75px;
    margin-bottom: 0.25em;
}
.ntl-title-style3 .title {
	margin-bottom: 30px;
	padding-bottom: 12px;
    position: relative;
	text-align: center;
	font-size: 28px; font-weight:700;
	text-transform: uppercase;
/*	word-spacing: 1px; letter-spacing:2px;*/
}
.ntl-title-style3 .title:after, .ntl-title-style3 .title:before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 45px;
	height: 3px;
	content: "";
	right: 45px; 
	margin:auto;
	background-color: var(--main-color);
}
.ntl-title-style3 .title:before { 
	background-color:var(--second-color);
	left:45px; width:90px;
}
.align-center{text-align: center;}

.large-block-grid-2{grid-template-columns: repeat(2, 1fr);}
.large-block-grid-3{grid-template-columns: repeat(3, 1fr);}
.large-block-grid-4{grid-template-columns: repeat(4, 1fr);}
.large-block-grid-5{grid-template-columns: repeat(5, 1fr);}
.large-block-grid-6{grid-template-columns: repeat(6, 1fr);}

.msg-error{
	color: red;
}
.msg-completed{
	color: green;
}

.ntl-alert-box {
	position: fixed;
    width: 40%;
    bottom: 50%;
    right: 30%;
    z-index: 999;
	padding: 20px;
	background-color: #f44336;
	color: white;
	opacity: 1;
	transition: opacity 0.6s;
}
.ntl-alert-box.success {background-color: #a88c3d;}
.ntl-alert-box.info {background-color: #2196F3;}
.ntl-alert-box.warning {background-color: #ff9800;}
.ntl-alert-box .closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 30px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}
.ntl-alert-box .closebtn:hover {
  color: black;
}
@media only screen and (max-width: 500px){
	.ntl-alert-box {
		width: 70%;
	    bottom: 50%;
	    right: 15%;
		padding: 10px;
	}
	.ntl-alert-box .closebtn {
		font-size: 20px;
	}
}

/**/
#header{
	background-color: var(--main-color);
	color: #fff;
}
#header a{color: #fff}
#header a:hover{color: var(--second-color);}
#top-header{
	display: grid;
	grid-template-columns: 480px 1fr 1fr;
	justify-items: center;
	padding: 10px 0;
}
#top-header div:first-child{
	justify-self: start;
}
#top-header div:last-child{
	justify-self: end;
}


#top-menu{
	display: grid;
	grid-template-columns: 1fr 40px 30px;
	justify-items: center;
}
#top-menu .user a:last-child{
	margin-left: 10px;
}


#main-header-wrap{
	padding-top: 2px;
	background-color: var(--main-color);
	border-top: 1px solid var(--second-color);
	-webkit-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}
#main-header-wrap.sticky{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
    z-index: 100;
    animation: slideDown 0.45s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
#main-header{
	display: grid;
	grid-template-columns: 120px 1fr 200px;
	align-items: center;
	column-gap: 40px;
}
#logo-header img{
	max-width: 80%;
	height: auto;
	-webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#main-header-wrap.sticky #logo-header img{
	max-width: 70%;
}
#menu-header{
	justify-self: end;
}
#menu-header ul{
	margin: 0;
	padding:0;
}
#menu-header li{
	display: inline-block;
	list-style: none;
	text-transform: uppercase;
}
#menu-header li > a{
	padding: 30px 0.6rem;
	white-space: nowrap;
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
    color: #fff;
    transition: all 300ms ease-in-out;
}
#menu-header li > a:hover{color: #fff}
#menu-header li > a:hover{color: #fff}
#menu-header li > a:hover{
	background-color: var(--second-color);
}

.search-and-cart{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-and-cart .fa-magnifying-glass{
	font-size: 120%;
	padding: 6px 10px;
	cursor: pointer;
}
#search-form{
	position: relative;
   margin-left: 15px;
    transform: translate(-50%, -50%);
}
#search-form.on {
  -webkit-animation-name: in-out;
  animation-name: in-out;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

#search-form input {
	position: absolute;
    top: -5px;
    left: 10px;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 100%;
    background: #393939;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto;
    outline: 0;
    -webkit-transition: width 0.2s ease-in-out, border-radius 0.4s ease-in-out, padding 0.1s;
    transition: width 0.2s ease-in-out, border-radius 0.4s ease-in-out, padding 0.1s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

#search-form .search {
	background: none;
    position: absolute;
    left: 20px;
    height: 40px;
    width: 40px;
    padding: 0;
    border-radius: 100%;
    outline: 0;
    border: 0;
    color: inherit;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

#search-form .search:before {
	content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 6px;
    margin-left: 6px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

#search-form .close {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

#search-form .close:before {
	content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    margin-top: 3px;
    margin-left: -20px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

#search-form .close:after {
	content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin-top: 3px;
    margin-left: -20px;
    cursor: pointer;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#search-form .square {
	top: 2px;
    box-sizing: border-box;
    padding: 0 40px 0 10px;
    width: 350px;
    height: 45px;
    border: 1px solid var(--second-color);
    border-radius: 0;
    background: rgb(44 44 44 / 96%);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    outline: 0;
    -webkit-transition: width 0.2s ease-in-out, border-radius 0.2s ease-in-out, padding 0.1s;
    transition: width 0.2s ease-in-out, border-radius 0.2s ease-in-out, padding 0.1s;
    -webkit-transition-delay: 0.2s, 0s, 0.2s;
    transition-delay: 0.2s, 0s, 0.2s;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}
#cart-header{
	padding: 8px 10px;
    border: 1px solid var(--second-color);
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: all 300ms ease-in-out;
}
#cart-header:hover{
	color: var(--second-color);
	background-color: #3d3d3d;
}

#mobile-bar{
	display: none;
}
#mobile-menu-header{
	display: none;
	transition: all 1500ms ease-in-out;
}


/**/
.homeSwiper {
	width: 100%;
	height: 450px;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-pagination-bullet-active{background-color: var(--second-color);width: 10px;height: 10px}
.swiper-button-next, .swiper-button-prev{color: var(--second-color);}


/**/
.product-cats-wrap{
	margin-top: 60px;
	margin-bottom: 60px;
}
.product-cats{
	display: grid;
	column-gap: 15px;
	row-gap: 15px;
}
.product-card-1{position: relative;}
.product-card-1 h3{
	display: block;
    position: absolute;
    left: 0;
    bottom: 8%;
    width: calc(100% - 1rem);
    padding: 0.5rem;
    color: #fff;
    background-color: rgb(44 44 44 / 80%);
    border-bottom: 2px solid var(--second-color);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    transition: all 200ms ease-out;
}
.product-card-1:hover h3{
	color: var(--second-color);
	border-bottom: 2px solid var(--second-color);
	opacity: 1;
}
.product-card-1 img{
	aspect-ratio: 1/1;
	object-fit: cover;
}



/**/
.why-choose-wrap{
	background-color: #efefef; 
	padding: 60px 0;
}
#why-choose{
	display: grid;
	grid-template-columns: 29% 29% 29%;
	justify-content: center;
	column-gap: 40px;
}
#why-choose .item{
	display: grid;
	grid-template-columns: 50px 1fr;
	align-items: center;
	column-gap: 10px;
}
#why-choose .item svg{
	max-width: 100%;
	font-size: 55px;
}
#why-choose .item h4{text-transform: uppercase;}
#why-choose .item h5{
	margin-top: 5px;
	text-align: justify;
}


/**/
.product-hot-wrap{
	padding: 60px 0;
	background-color: var(--main-color);
}
.product-hot-title{
	color: #fff;
}
.product-hot-wrap .ntl-title-style3 .title:after{
	background-color: #e0e0e0;
}
.product-hot-wrap .product-card-s2 .title{
	color: #fff;
}


/**/
.new-products{
	display: grid;
	column-gap: 15px;
	row-gap: 20px;
}
.product-card-s2{
	padding: 5px;
/* 	height: 100%; */
	text-align: center;
	border: double #b6b6b6;
}
.product-card-s2 img{
	height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.product-card-s2 .title{
	padding: 10px 15px;
	color: var(--main-color);
	font-size: 15px;
	text-transform: capitalize;
}


/**/
.customer-wrap{
	padding: 60px 0;
	background-color: #f3f3f3;
	border-top: 1px solid var(--second-color);
}



/**/
.mySwiper2{
	margin-top: 40px;
}
.mySwiper2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/**/
#footer{
	background-color: var(--main-color);
	padding: 60px 0;
	color: #fff;
	line-height: 28px;
	text-align: justify;
}
.footer-item{
	display: grid;
	grid-template-columns: 40% 1fr 35%;
	column-gap: 30px;
}
.footer-item > div{margin-bottom: 20px}
#footer .title{
	margin-bottom: 15px;
	padding-bottom: 5px;
	font-size: 20px;
	border-bottom: 1px solid #fff;
}
#footer a{color: #fff}
#footer a:hover{color: var(--second-color);}



/**/
.product-modal-wrap {
	display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    bottom: 0;
    left: 0;
    background-color: rgb(44 44 44 / 79%);
    z-index: 99999;
}

#product-modal {
    position: relative;
    width: 60%;
    height: 80vh;
    margin: 10vh auto;
    padding: 0 15px;
    background-color: #f1f1f1;
}
#product-modal .title{margin-top: 0;font-size: 20px}
#product-modal-content{
	padding: 10px;
	height: calc(80vh - 145px);
	background-color: #fff;
	overflow: auto;
	
}
#product-modal .close svg {
    font-size: 150%;
    padding: 6px 10px;
    margin: 6px;
    border: 1px solid #555555;
    cursor: pointer;
}
#product-modal-content ul{margin: 10px}
#product-modal-content ul a{
	display: block;
    padding: 6px 0;
    border-bottom: 1px solid #ececec;
	color: var(--body-font);
}
#product-modal-content .product-card-1 h3{
	text-transform: capitalize;
	font-size: 13px;
}


/**/
.breadcrumb{
	margin: 10px 0 30px;
	font-size: 90%;
}
.breadcrumb li{
	display: inline-block;
}
.breadcrumb a{
	padding: 5px;
	color: var(--body-color);

}
.breadcrumb li:first-child a{padding-left:0px}


/**/
.brand-block-wrap,.child-cat-block-wrap{
	margin-top: 20px;
	padding: 15px;
	border: 1px solid #e2e2e2;
}
.brand-block{
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.brand-block div{
	max-width: 15%;
	border: 1px solid rgb(255 255 255 / 0%);
	transition: all 200ms ease-in-out;
}
.brand-block div:hover{
	border: 1px solid var(--second-color);
}
.brand-block img{
	width: 100%;
    height: 100%;
    object-fit: contain;
}


.child-cat-block{
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.child-cat-block div{
	max-width: 11%;
}
.child-cat-block img{
	aspect-ratio: 1/1;
    object-fit: cover;
}
.child-cat-block a{
	color: var(--body-color);
}
.child-cat-block .title{
	text-transform: capitalize;
}


.content-wrap{
	margin-top: 30px;
	margin-bottom: 60px;
}
.main-content-wrap{
	display: grid;
	grid-template-columns: 22% 1fr;
	column-gap: 40px;
}
.cat-number-title, .widgettitle{
	margin-top:15px; 
	margin-bottom: 15px;
	padding-bottom:6px; 
	text-transform: uppercase;
	font-size: 20px; 
	font-weight: 700; 
	border-bottom:1px solid var(--body-color);
}
.cat-number-title.pas-post-title{
	text-transform: capitalize;
}

.sidebar-block{
	margin-bottom: 30px;
}
.sidebar-brand-block,.sidebar-cat-block{
	display: grid;
	padding: 10px;
	row-gap: 10px;
	column-gap: 10px;
	border: 1px solid #e2e2e2;
}
.sidebar-brand-block div,.sidebar-cat-block div{
	background: #f6f6f6;
	border: 1px solid rgb(255 255 255 / 0%);
	transition: all 200ms ease-in-out;
}
.sidebar-brand-block div:hover{
	border: 1px solid var(--second-color);
}
.sidebar-block-title .arrow-block{
	display: none;
}
.sidebar .most_recent_widget{
	padding: 5px;
	border: 1px solid #e2e2e2;
}
li.widget.widget_ntl_theme_mst_recent_widget{
	line-height: none;
}
.most_recent_widget .pas-rcwg-block{
	display: grid;
	grid-template-columns: 30% 1fr;
	column-gap: 6px;
	row-gap: 6px;
	margin-bottom: 12px;
}
.most_recent_widget .pas-rcwg-block img{
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
}
.pas-rcwg-date{
	font-size: 85%;
    font-style: italic;
    color: #888888;
}


.pas-list-style-post-block{
	display: grid;
	grid-template-columns: 30% 1fr;
	column-gap: 15px;
	row-gap: 20px;
	margin-bottom: 25px;
}
.pas-list-style-post-block .img img{
	aspect-ratio: 4/3;
	object-fit: cover;
}

.navigation.pagination{margin-top:20px;text-align: center}
.navigation.pagination .page-numbers{
	padding: 4px 8px;
    border: 1px solid var(--second-color);
}
.navigation.pagination .page-numbers.current{
	background-color: var(--second-color);
    border: 1px solid var(--second-color);
    color: #fff;
}

.product-detail-block{
	display: grid;
	grid-template-columns: 50% 1fr;
	column-gap: 40px;
	row-gap: 30px;
}
.product-detail .product-info{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	border-bottom: 1px solid #ccc;
}
.catalogue-download{
	margin-top: 30px;
}
.catalogue-download a{
	padding: 10px 20px;
    border: 1px solid var(--second-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.catalogue-download a:hover{
	background-color: var(--body-color);
}
.sharing-social-block{
	margin-top: 30px;
}
.sharing-social-block > div{
	font-size: 16px;
	font-weight: 700;
}
.sharing-social-block ul{margin-top: 6px}
.sharing-social-block li{
	display: inline-block;
	margin-right: 10px;
}
.sharing-social-block svg{
	font-size: 30px;
}
.sharing-social-block .zalo svg{
	width: 30px;
	margin-bottom: -14px;
}
.sharing-social-block .zalo svg:hover g{
	fill:var(--second-color);
}
.product-items{
	margin-top: 50px;
}
.product-item-table .head-table{font-weight: 700}
.product-item-table .head-table, .product-item-table .body-table .row{
	display: grid;
	grid-template-columns: 16% 1fr 130px;
}
.product-item-table .head-table > div:nth-child(even) , .product-item-table .body-table .row > div:nth-child(even){
	background-color: #efefef;
}
.product-item-table .head-table, .product-item-table .body-table .row{
	justify-content: center;
	border-bottom: 1px solid #ccc;
}
.product-item-table .head-table > div, .product-item-table .body-table .row > div{
	display: flex;
	align-items: center;
	padding: 10px;
	justify-content: center;
}
.product-item-table .body-table .row div.des{display: block;}
.product-item-table .add-to-cart .fa-square-plus{
	font-size: 40px;
	color: #b59534;
	cursor: pointer;
}
.product-item-table .add-to-cart .fa-square-plus:hover{
	color: #caa534;
}
.product-item-table .product-sku{
	margin-bottom: 6px;
	font-weight: 600;
	font-style: italic;
	font-size: 90%;
	color: #868686;
}

.add-to-cart .quantity-block{
	display: grid;
	grid-template-columns: 65% 1fr;
	border: 0;
}
.add-to-cart .quantity-block,
.add-to-cart .quantity-block * {
  box-sizing: border-box;
}
div.add-to-cart div.quantity-block div.quantity-step{
	display: grid;
	padding: 0;
	grid-template-columns: 1fr;
	align-items: center;
}
.add-to-cart .quantity-block input[type=number]::-webkit-inner-spin-button,
.add-to-cart .quantity-block input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}
.add-to-cart .quantity-block input[type=number] {
	max-width: 3rem;
	padding: .2rem;
	border: 1px solid #888888;
	border-width: 1px;
	font-size: 1.1rem;
	height: 100%;
	font-weight: bold;
	text-align: center;
	color: #b59534;
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
}
.add-to-cart .quantity-block button {
	display: inline-grid;
	padding:0px 6px;
	outline:none;
	-webkit-appearance: none;
	background-color: transparent;
	border: none;
	cursor: pointer;
	border: 1px solid #888888;
	border-left: none;
	color:var(--second-color);
	font-size: 1.2rem;
}
.add-to-cart .quantity-block button.minus{border-top: none;}
.add-to-cart .quantity-block button:hover{
	color: var(--main-color);
}


.page-numbers li{
	display: inline-block;
}
.page-numbers li .page-numbers{
	padding: 4px 8px;
    border: 1px solid var(--second-color);
}
.page-numbers{
	margin-top: 25px;
	text-align: center
}
.page-numbers li .page-numbers.current{
	background-color: var(--second-color);
    border: 1px solid var(--second-color);
    color: #fff;
}

.related-product{
	margin-top: 40px;
}

/*REGISTER CUSTOMER PAGE*/
.register-block-wrap{
    display: grid;
    grid-template-columns: 40% 1fr;
    column-gap: 80px;
}
#register-form input, #register-form textarea, #register-form button {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
#register-form input, #register-form textarea, #login-form input{
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 0px;
    border: 1px solid var(--body-color);
}
#register-form input.submit, #login-form input.submit{
    color: #fff;
    background-color: var(--body-color);
    cursor: pointer;
}
@media only screen and (max-width: 768px){
    .register-block-wrap{
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
}

/* CART PAGE */
.main-cart-wrap{
	display: grid;
	grid-template-columns: 60% 1fr;
	column-gap: 50px;
	row-gap: 30px;
}
.cart-item-title{
/*	color: var(--second-color);*/
}

/* CART SUCCESS */
.cart-success-page .main-cart-wrap{
	grid-template-columns: 45% 1fr;
	column-gap: 30px;
	row-gap: 30px;
}
.cart-success-block{
	
}
.cart-success-block .title{
	padding: 15px 20px;
    background: var(--second-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
.cart-success-block .content{
	padding: 20px;
    background: #f3f3f3;
}
.cart-success-block .content .info{
	margin-top: 10px;
}
.cart-success-block .content .info li{
	list-style: disc;
    margin-left: 18px;
}


#mobile-cta{
	position: fixed;
    bottom: calc(50vh - 133px);
    left: 0;
    width: 66px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    background: var(--main-color);
    padding-top: 10px;
    padding-bottom: 6px;
    font-size: 70%;
}
#mobile-cta > div{
	padding: 8px 0px;
	text-align: center;
}
#mobile-cta a{
	text-decoration: none;
	color: #fff;
}
#mobile-cta svg{
	margin-bottom: 3px;
	color: #fff;
	font-size: 22px;
}
#mobile-cta .zalo img{
	width: 35px;
}
#mobile-cta .cta-product{cursor: pointer;}

@media only screen and (max-width: 1024px){
	body{margin-bottom: 66px;font-size: var(--body-mobile-font);}
	#top-header{
		grid-template-columns: 1fr;
		row-gap: 8px;
	}
	#top-header div:first-child, #top-header div:last-child{
		justify-self: center;
	}
	#top-menu{
		display: none;
	}


	#main-header{
		grid-template-columns: 1fr 80px 1fr;
		column-gap: 5px;
	}
	.search-and-cart{
		justify-content: flex-end;
	}
	#search-form{
		margin-right: 25px;
	}
	#search-form input {
	    top: -2px;
	    left: 10px;
	    width: 15px;
	    height: 16px;
	}
	#search-form .square {
	    width: 250px;
	}
	#search-form .search:before {
	    width: 6px;
	    height: 2px;
	    margin-top: 7px;
	    margin-left: 8px;
	}
	#search-form .close:before {
	    width: 20px;
	    height: 2px;
	    margin-top: 3px;
	    margin-left: -20px;
	}
	#menu-header,#cart-header span{display: none}
	#cart-header{padding: 10px 0px 10px 5px; border: none; font-size: 20px}
	#mobile-bar{
		display: block;
		font-size: 150%;
	}
	#mobile-menu-header{
		display: none;
		position: fixed;
		top: 0;left: 0;
		width: 50%;
		height: 100vh;
		background-color: var(--main-color);
		box-shadow: rgb(0 0 0 / 65%) 3px 3px 4.8px;
		z-index: 999;
	}
	#mobile-menu-header .close{
		text-align: right;
	}
	#mobile-menu-header .close svg, #product-modal .close svg{
		font-size: 150%;
	    padding: 6px 10px;
	    margin: 6px;
	    border: 1px solid #555555;
	}
	#mobile-menu-header ul{
		margin: 20px 0 0;
		padding: 0;
	}
	#mobile-menu-header li{
		list-style: none;
		padding: 10px 20px;
		text-transform: uppercase;
	}
	#mobile-menu-header li > a{
		display: block;
		white-space: nowrap;
		font-size: 110%;
		font-weight: 600;
		line-height: 2.2em;
		text-decoration: none;
	    color: #fff;
	}
	
	#mobile-cta{
		position: fixed;
	    bottom: 0;
	    left: 0;
	    width: 100%;
	    display: grid;
	    grid-template-columns: repeat(4, 1fr);
	    justify-items: stretch;
	    background: var(--main-color);
	    padding-top: 1px;
	    font-size: 100%;
	    z-index: 888;
	}
	#mobile-cta > div{
		padding: 5px;
		text-align: center;
	}
	#mobile-cta a{
		text-decoration: none;
		color: #fff;
	}
	#mobile-cta svg{
		margin-bottom: 3px;
		color: #fff;
		font-size: 22px;
	}
	#mobile-cta .zalo img{
		width: 40px;
    	margin-bottom: 5px;
	}


	.product-card-1 h3{
	    font-size: 13px;
	    font-weight: 600;
	}



	#why-choose{
		grid-template-columns: 1fr;
		column-gap: 0px;
		row-gap: 30px;
	}
	#why-choose .item svg{
		font-size: 38px;
	}


	.product-modal-wrap{
		position: fixed;
		width: 100%;
		height: 100vh;
		bottom: 0;
		left: 0;
		background-color: rgb(44 44 44 / 79%);
		z-index: 99999;
	}
	#product-modal{
		position: relative;
		width: 88%;
		height: 80vh;
		margin: 10vh auto;
		padding: 0 15px;
		background-color: #f1f1f1;
	}
	#product-modal-content{
		margin-top: 0;
		padding: 8px;
		height: calc(80vh - 155px);
	}
	#product-modal .title{margin-top: 15px}


	.main-content-wrap{
		grid-template-columns: 1fr;
		row-gap: 10px;
	}


	.brand-block div{
		max-width: 19%;
	}

	.sidebar-block-title{position: relative;}
	.sidebar-block-title .arrow-block{
		position: absolute;
		display: flex;
	    top: -6px;
	    right: 0px;
	    width: 40px;
	    height: 36px;
	    justify-content: center;
	    align-items: center;
	    background-color: #eaeaea;
	}
	.sidebar-block-title .fa-arrow-right{
		width: 100%;
	    font-size: 18px;
	}
	.sidebar-block-title .fa-arrow-right.rotate90{
		transform: rotate(90deg);
		padding: 8px 6px;
	}
	.sidebar-brand-block, .sidebar-cat-block{
		display: none;

	}
	
	.main-cart-wrap{
		grid-template-columns: 1fr;
		row-gap: 30px;
	}

	.cart-success-block{
		width: 88%;
	}

}

@media only screen and (min-width: 1025px) and (max-width: 1200px){
	.ntl-container{max-width: 96%}
	#main-header{
		grid-template-columns: 100px 1fr 200px;
		column-gap: 5px;
	}
	#menu-header li > a {
    	padding: 15px 0.5rem;
    	font-size: 16px;
 	}
 	#cart-header{font-size: 16px}

}

@media only screen and (min-width: 481px) and (max-width: 1024px){
	.ntl-container{max-width: 96%}
	.medium-block-grid-1{grid-template-columns: repeat(1, 1fr);}
	.medium-block-grid-2{grid-template-columns: repeat(2, 1fr);}
	.medium-block-grid-3{grid-template-columns: repeat(3, 1fr);}
	.medium-block-grid-4{grid-template-columns: repeat(4, 1fr);}
}

@media only screen and (max-width: 480px){
	.ntl-container{max-width: 96%}
	.small-block-grid-1{grid-template-columns: 1fr;}
	.small-block-grid-2{grid-template-columns: repeat(2, 1fr);}
	.small-block-grid-3{grid-template-columns: repeat(3, 1fr);}

	#mobile-menu-header{
		width: 70%;
	}

	.homeSwiper {
		width: 100%;
		height: 250px;
	}
	.mySwiper2{
		margin-top: 30px;
	}

	.why-choose-wrap,.product-hot-wrap, .customer-wrap, #footer{padding: 30px 0}
	.product-cats-wrap{margin-top: 30px;margin-bottom: 30px}
	.ntl-title-style3 .title, .customer-wrap .customer-title{font-size: 20px}
	.product-cats, .new-products{column-gap: 8px; row-gap: 12px}
	.product-card-s2 .title{padding: 6px 8px;font-size: 14px}
	.ntl-title-style3 .title{
		margin-bottom: 15px;
	}
	

	.brand-block-wrap, .child-cat-block-wrap {
	    padding: 5px;
	}
	.brand-block div{
		max-width: 32%;
	}
	.child-cat-block div{
		max-width: 31%;
	}


	.content-wrap{
		margin-top: 10px;
		margin-bottom: 30px;
	}
	.cat-number-title{
		margin-top: 10px;
		margin-bottom: 10px;
		font-size: 16px;
	}
	.sidebar-block-title .arrow-block{
	    top: -8px;
	    right: 0px;
	    width: 38px;
	    height: 32px;
	}

	.product-item-table .head-table, .product-item-table .body-table .row{
		grid-template-columns: 75px 1fr 85px;
	}
	.product-item-table .body-table .row > div {
	    padding: 5px;
	}
	.product-item-table .product-sku {
	    margin-bottom: 5px;
	}
	/*.product-item-table .head-table > div:nth-child(2), .product-item-table .body-table .row > div:nth-child(2){
		display: none;
	}*/
	/*.product-item-table .head-table div:last-child, .product-item-table .body-table .row div:last-child{
		background-color: #fff;
	}
	.product-item-table .head-table div:nth-child(3), .product-item-table .body-table .row div:nth-child(3){
		background-color: #efefef;
	}*/

	.pas-list-style-post-block{
		column-gap: 8px;
		row-gap: 10px;
		margin-bottom: 15px;
	}

	#product-modal-content {
	    margin-top: 0;
	    padding: 8px;
	    height: calc(80vh - 145px);
	}

}