:root {
	--color-1: #fff;
	--color-2: #09adf0;
	--color-3: #363435;
	--color-4: #00afef;
	--box-shadow-1: 0px 3px 6px rgba(0, 0, 0, 0.16);
	--box-shadow-2: 0px 3px 6px rgba(21, 18, 18, 0.16);
}

body{
	font-size: 14px;
	line-height: 20px;
	font-family: "Open Sans", sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	color: var(--primary-color);
	font-weight: 400;
	background: var(--white);
}

a,
button,
.btn,
header .navTop .searchForm .form-control,
footer .footer-widget ul li a::before,
.shop-widget ul.product-categories li a::before,
.products > .product,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
ul.ui-menu li,
.owl-carousel .owl-controls .owl-nav .owl-prev::before, 
.owl-carousel .owl-controls .owl-nav .owl-next::before,
a::before,
a::after{
	-webkit-transition: all ease .3s;
	-moz-transition: all ease .3s;
	-ms-transition: all ease .3s;
	-o-transition: all ease .3s;
	transition: all ease .3s;
}

.thumb,
.thumb a,
.thumb img,
.lastArticleSlider a.imgLink img{
	-webkit-transition: all ease .7s;
	-moz-transition: all ease .7s;
	-ms-transition: all ease .7s;
	-o-transition: all ease .7s;
	transition: all ease .7s;
}

ul.mainmenu li a{
	-webkit-transition: color ease .3s;
    -moz-transition: color ease .3s;
    -ms-transition: color ease .3s;
    -o-transition: color ease .3s;
    transition: color ease .3s;
}

button:focus, .btn:focus,
button:active, .btn:active{
	outline: none;
	box-shadow: none;
}
.custom-file-input:focus~.custom-file-label{
	border: none;
    box-shadow: none;
}
a{
	text-decoration: none !important;
}
.lastArticleSlider .articleInfo a.title:hover,
ul.categories li a.titleCat:hover,
a:hover{
	color: var(--color-1);
}

/* header */
header{
    background: var(--color-4);
	position: fixed;
	width: 100%;
	z-index: 99;
	top: 0px;
}
.admin-bar header{
	top: 32px;
}
header .navTop{
	font-size: 14px;
	padding: 10px 0px;
	background: var(--white);
}
header .navTop .phone i{
	width: 20px;
	height: 20px;
	display: inline-flex;
	background: var(--color-4);
	border-radius: 100%;
	color: var(--white);
	justify-content: center;
	align-items: center;
	font-size: 10px;
	margin-right: 15px;
}
header .navTop .phone a{
	color: var(--color-3);
	text-decoration: none;
}
header .navTop .phone a:hover{
	font-weight: bold;
}
header .navTop .phone a::after,
footer .footerInformation li.phone a::after{
	display: inline-block;
	content: '-';
	margin: 0 5px;
}
header .navTop .phone a:last-child::after,
footer .footerInformation li.phone a:last-child::after{
	display: none;
}
header .navTop .phone a:hover::after{
	color: var(--color-3);
}
header .navTop .searchForm,
header .navTop a.iconCart{
	position: relative;
}
header .navTop .searchForm .not-loading{
	position: absolute;
	right: 0px;
	color: var(--color-1);
}
header .navTop .searchForm.loading a.searchIcon{
	opacity: 0;
}
header .navTop a.searchIcon,
header .navTop a.iconCart,
header .navTop .socials a{
	color: var(--color-4);
	font-size: 16px;
	position: relative;
	z-index: 1;
	margin-left: 10px;
}
header .navTop a.searchIcon:hover,
header .navTop a.iconCart:hover,
header .navTop .socials a:hover{
	color: var(--color-3);
}
header .navTop .searchForm .form-control{
	position: absolute;
    top: -9px;
    right: -5px;
    padding-right: 30px;
    width: 0px;
    opacity: 0;
    height: 37px;
}
header .navTop .searchForm.active .form-control{
	opacity: 1;
	width: 200px;
}
header .navTop a.iconCart span{
	position: absolute;
	top: 0px;
	right: 0px;
	color: var(--color-3);
	font-size: 12px;
	line-height: 12px;
	font-weight: bold;
}
header .navbar{
	padding: 0px;
}
header .container{
	padding-top: 5px;
	padding-bottom: 5px;
}
ul.mainmenu{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
ul.mainmenu > li{
	position: relative;
}
ul.mainmenu > li > a{
	text-transform: uppercase;
	position: relative;
	padding: 5px 0px;
	font-weight: 700;
}
ul.mainmenu li a{
	font-size: 14px;
	color: var(--color-3);
}
ul.mainmenu > li > a{
	color: var(--color-1);
	&::after{
		content: '';
		border-bottom: 2px solid var(--color-1);
		display: block;
		width: 0px;
	}
}
ul.mainmenu > li:last-child > a{
	padding-right: 0px;
}
ul.mainmenu > li:first-child > a{
	padding-left: 0px;
}
ul.mainmenu li a:hover,
ul.mainmenu > li.current-menu-item > a,
ul.mainmenu > li.current-page-ancestor > a,
ul.mainmenu > li.current_page_parent > a{
	color: var(--color-1);
	&::after{
		width: 100%;
	}
}
ul.mainmenu .sub-menu{
	display: block;
	min-width: 260px;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transform: rotateX(-90deg);
	-ms-transform: rotateX(-90deg);
	-o-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	position: absolute;
	border-radius: 0!important;
	-webkit-border-radius: 0!important;
	-moz-border-radius: 0!important;
	padding: 15px;
	list-style: none;
	left: -40px;
	z-index: 999;
	top: calc(100% + 35px);
	box-shadow: var(--box-shadow-1);
}
ul.mainmenu .sub-menu .sub-menu{
	top: 0;
    left: calc(100% + 5px);
}
ul.mainmenu .sub-menu a{
	padding-bottom: 10px;
	display: block;
	position: relative;
	font-weight: 700;
}
ul.mainmenu .sub-menu li:last-child a{
	padding-bottom: 0px;
}
ul.mainmenu li:hover > .sub-menu{
	visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
	& a{
		-webkit-transition: all ease .3s;
		-moz-transition: all ease .3s;
		-ms-transition: all ease .3s;
		-o-transition: all ease .3s;
		transition: all ease .3s;
		color: var(--black);
		transform: translateX(0px);
		&:hover{
			transform: translateX(10px);
		}
	}
}
ul.mainmenu .sub-menu li:hover .sub-menu{
	visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
a.logo{
	display: inline-flex;
	align-items: center;
	background: #fff;
	border-radius: 100%;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
	& img{
		max-width: 80px;
	}
}

/* footer */
footer{
	padding: 15px 0px;
	font-size: 14px;
	background: var(--color-4);
	color: var(--color-1);
}
footer a.logo_footer{
	display: inline-flex;
	align-items: center;
	background: #fff;
	border-radius: 100%;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
	margin-right: 10px
}
footer .footerInformation,
footer .footerInformationEnd,
.vcContactInformation .footerInformation{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
footer .footerInformation a,
footer .footerInformationEnd a{
	color: var(--bs-black);
	font-weight: bold;
}
footer .footerInformation a:hover,
footer .footerInformationEnd a:hover{
	color: var(--color-1);
}
footer .footerInformation li,
footer .footerInformationEnd li,
.vcContactInformation .footerInformation li{
	display: block;
	margin-bottom: 10px;
}
footer .footerInformation li.socials{
	text-align: center;
}
footer .footerInformation li i,
footer .footerInformationEnd li i,
.vcContactInformation .footerInformation li i{
	display: inline-flex;
	width: 20px;
	height: 20px;
	background: var(--color-1);
	color: #000;
	border-radius: 100%;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	margin-right: 10px;
}
footer .footerInformationEnd{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
}
footer .footerInformation li.acf-map{
	height: 200px;
}
footer .widget-title{
	text-transform: uppercase;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 20px;
}
footer .footer-widget ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
footer .footer-widget ul li{
	margin-bottom: 5px;
}
footer .footer-widget ul li a,
.shop-widget ul.product-categories li a{
	color: var(--bs-black);
	position: relative;
	overflow: hidden;
	display: block;
}
footer .footer-widget ul li a::before,
.shop-widget ul.product-categories li a::before{
	font-family: 'Font Awesome 5 Solid';
	font-weight: 900;
	content: "\f054";
	font-size: 10px;
	position: absolute;
	left: -10px;
	top: 0px;
}
footer .footer-widget ul li a:hover,
.shop-widget ul.product-categories li a:hover{
	color: var(--color-1);
	padding-left: 10px;
}
footer .footer-widget ul li a:hover::before,
.shop-widget ul.product-categories li a:hover:before{
	left: 0px;
}
.iconZalo{
	width: 50px;
	height: 50px;
	background: url(../img/zalo.png) no-repeat center;
	background-size: 50px 50px;
	position: fixed;
	bottom: 10%;
	right: 10px;
	border-radius: 100%;
}
/* content */
#mainContent{
	margin-top: 152px;
}
.breadcrumb{
	background: none;
	font-size: 12px;
	line-height: 14px;
	border-bottom: 1px solid rgb(54 52 53 / 27%);
	border-radius: 0px;
	padding: 0px 0px 10px 0px;
}
.breadcrumb a{
	color: var(--color-3);
}
.breadcrumb-item.active{
	color: var(--color-1);
}
.vcTitle, .shop-widget .widget-title, .wsp-pages-title, .wsp-posts-title, .wsp-products-title, .wsp-product_cats-title{
	font-size: 20px;
	line-height: 28px;
	color: var(--dark-color);
	font-weight: bold;
	margin-bottom: 30px;
	position: relative;
}
.wsp-pages-title, .wsp-posts-title, .wsp-products-title, .wsp-product_cats-title{
	margin-bottom: 15px;
}
.vcTitle span::after{
	display: block;
	width: 80%;
	border-bottom: 2px solid var(--color-1);
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0px;
}
.text-md-center .vcTitle span::after,
.vcTitle.text-md-center span::after{
    left: 10%;
}
.vcProducts .vcTitle span{
	position: relative;
	display: inline-block;
}
.products > .product:hover{
	transform: translateY(-10px);
}
.productDetail{
	padding: 15px;
}
.productTitle{
	color: var(--color-3);
	font-size: 15px;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: 15px;
	min-height: 50px;
	display: block;
}
.productDetail .price{
	font-size: 14px;
	display: flex;
	justify-content: space-between;
    margin-bottom: 15px;
}
.productDetail .price del{
	font-size: 12px;
}
.productDetail .price ins{
	text-decoration: none;
	color: var(--color-1);
	font-weight: bold;
}
.shop-widget{
	padding: 15px;
	margin-bottom: 30px;
}
.shop-widget ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.shop-widget ul.product-categories li a{
	color: var(--color-3);
	font-weight: bold;
}
.shop-widget .widget-title{
	margin-bottom: 15px;
}
.woocommerce ul.product_list_widget li{
	border-bottom: 1px solid var(--color-3);
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.woocommerce ul.product_list_widget li:last-child{
	border: none;
	margin: 0px;
	padding: 0px;
}
.woocommerce ul.product_list_widget li a{
	display: flex;
	margin-bottom: 15px;
	align-items: center;
	justify-content: space-between;
	color: var(--color-3);
}
.woocommerce ul.product_list_widget li img{
	float: none;
	width: 20%;
	margin-bottom: 10px;
}
.woocommerce ul.product_list_widget li del,
.woocommerce ul.product_list_widget li ins{
	color: var(--color-1);
	font-size: 16px;
	font-weight: bold;
	
}
.woocommerce ul.product_list_widget li del{
	font-size: 12px;
	color: var(--color-3);
}
.woocommerce ul.product_list_widget li ins{
	text-decoration: none;
}
.blockBlog .item{
	background: var(--white);
	box-shadow: var(--box-shadow-2);
	border-radius: 10px;
	padding: 15px;
	color: var(--color-3);
	margin-bottom: 30px;
}
.blockBlog .item a,
.articleItemContent ul.categories a{
	color: var(--color-3);
}
.blockBlog .item a:hover,
.articleItemContent ul.categories a:hover{
	color: var(--color-1);
}
.blockBlog .item .title{
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 22px;
	margin-bottom: 10px;
}
.blockBlog .item ul,
.articleItemContent ul.categories{
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	margin-bottom: 10px;
	font-weight: bold;
}
.blockBlog .item ul li::after,
.articleItemContent ul.categories li::after{
	content: '-';
	margin: 1px;
}
.blockBlog .item ul li:last-child::after,
.articleItemContent ul.categories li:last-child::after{
	display: none;
}
.blockBlog .item .btn{
	color: var(--white);
	height: 30px;
	border-radius: 20px;
	text-transform: none;
}
span.lblSale{
	width: 45px;
    height: 45px;
    position: absolute;
    top: 15px;
    left: 30px;
    color: var(--white);
    background: var(--color-1);
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.vcTextIcon{
	padding: 15px;
	color: var(--white);
	text-align: center;
}
.vcTextIcon .icon{
	font-size: 35px;
	margin-bottom: 15px;
}
.vcTextIcon .blockContent{
	margin-top: 15px;
}
.vcTextIcon .blockContent a{
	font-weight: bold;
	color: var(--white);
}
.vcLogos .owl-carousel .owl-item a {
    display: flex;
    justify-content: center;
}
.vcLogos .owl-carousel .owl-item img{
    width: auto;
}
.wpb_text_column a{
    font-weight: bold;
    color: var(--primary-color);
}
.wpb_text_column a:hover{
    color: var(--color-1);
}
/* woocommerce */
.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li{
	border: none;
	background: none;
}
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a{
	color: var(--color-3);
	font-weight: bold;
	border: 1px solid var(--color-3);
	margin: 0 2px;
	background: none;
}
.woocommerce nav.woocommerce-pagination ul li:hover a,
.woocommerce nav.woocommerce-pagination ul li span.current{
    color: var(--color-1);
    border-color: var(--color-1);
}
.woocommerce .woocommerce-result-count{
	font-size: 14px;
	color: var(--color-3);
}
.woocommerce div.product p.price, .woocommerce div.product span.price{
	color: var(--color-1);
	font-size: 16px;
	display: flex;
	justify-content: space-between;
}
.woocommerce div.product p.price del, .woocommerce div.product span.price del{
	opacity: 1;
}
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins{
	text-decoration: none;
	font-size: 20px;
}
.woocommerce div.product .product-description,
#productSpecificationBasic{
	margin-top: 30px;
}
.woocommerce div.product .product-description > h3,
#productSpecificationBasic > h3{
	font-size: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs{
	display: flex;
	justify-content: center;
	border-bottom: 1px solid var(--color-3);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
	border: none;
	font-size: 20px;
	position: relative;
	background: none;
	border-radius: 0px;
	margin: 0px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before{
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 0;
	border: none;
	border-radius: 0px;
	height: 2px;
	background: var(--color-1);
	box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover::before{
	width: 100%;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after{
	display: none !important;
}
.woocommerce-product-gallery .flex-viewport,
.woocommerce-product-gallery > figure{
	border: 1px solid var(--color-3);
	box-shadow: var(--box-shadow-2);
	margin-bottom: 30px;
}
.woocommerce div.product div.images .flex-control-thumbs li{
	border: 1px solid var(--color-3);
	margin-right: 2px;
	width: calc(25% - 2px);
}
.woocommerce span.onsale{
	background: var(--color-2);
	top: 15px;
	left: 15px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger{
	background: var(--color-2);
	color: var(--white);
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before{
	border-color: var(--white);
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after{
	background: var(--white)
}
.woocommerce-message{
	border-color: var(--color-2);
}
.woocommerce-message::before{
	color: var(--color-2);
}
.woocommerce table.shop_table td.product-name a{
	color: var(--color-3);
	font-weight: bold;
}
.woocommerce table.shop_table td.product-name a:hover{
	color: var(--color-1);
}
ul.ui-menu{
	background: var(--white);
	box-shadow: var(--box-shadow-1);
	max-width: 200px;
	list-style: none;
	z-index: 999;
	padding: 15px;
}
ul.ui-menu li{
	font-size: 12px;
	margin-bottom: 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	cursor: pointer;
}
ul.ui-menu li:hover{
	color: var(--color-1);
}
.vcContactInformation .footerInformation li a{
	color: var(--color-3);
}
.vcContactInformation .footerInformation li a:hover{
	color: var(--color-1);
}
.vcContactInformation .footerInformation .acf-map{
	height: 335px;
	margin-top: 30px;
}
.wsp-container ul{
	margin: 0px 15px 15px 15px;
	padding: 0px;
	list-style: none;
}
.wsp-container ul li{
	display: block;
}
.wsp-container ul li a{
	color: var(--primary-color);
}
.wsp-container ul li a:hover{
	color: var(--color-1);
}
.owl-carousel .owl-controls .owl-nav .owl-prev, 
.owl-carousel .owl-controls .owl-nav .owl-next{
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-1);
	border-radius: 100%;
	position: absolute;
	top: calc(50% - 15px);
	left: 15px;
}
.owl-carousel .owl-controls .owl-nav .owl-next{
	left: auto;
	right: 15px;
}
.owl-carousel .owl-controls .owl-nav .owl-prev i, 
.owl-carousel .owl-controls .owl-nav .owl-next i{
	position: relative;
}
.owl-carousel .owl-controls .owl-nav .owl-prev::before, 
.owl-carousel .owl-controls .owl-nav .owl-next::before{
	width: 0px;
	height: 0px;
	border-radius: 100%;
	position: absolute;
	content: '';
	background: var(--color-2);
	top: 50%;
	left: 50%;
}
.owl-carousel .owl-controls .owl-nav .owl-prev:hover::before, 
.owl-carousel .owl-controls .owl-nav .owl-next:hover::before{
	width: 28px;
	height: 28px;
	top: 0px;
	left: 0px;
}
.woocommerce div.product div.images .flex-control-thumbs.owl-loaded li{
	width: auto;
	float: none;
}
.wpb_text_column h2,
.wpb_text_column h3,
.wpb_text_column h4,
.wpb_text_column h5,
.wpb_text_column h6{
	line-height: 22px;
	margin-bottom: 15px;
}
/* effect */
@keyframes effect-arrow{
    0%,60% {
        opacity: 0;
		top: 80%;
    }
    100% {
        opacity: 1;
        top: calc(100% - 3px);
    }
}
@keyframes effect-stick-menu {
	0%,50% {
		top: -100px;
	}
	100% {
		top: 0px;
		background: var(--color-1) !important;
	}
}
@keyframes effect-stick-adminbar-menu {
	0%,50% {
		top: -100px;
	}
	100% {
		top: 32px;
		background: var(--color-1) !important;
	}
}

/* common */
.btn,
.woocommerce a.button,
.woocommerce .woocommerce-checkout-payment button{
	height: 40px;
	display: inline-flex;
	align-items: center;
	padding: 0px 15px;
	position: relative;
	background: var(--color-1);
	color: var(--white);
	border: 3px solid var(--color-1);
	font-size: 14px;
	justify-content: center;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-webkit-box-shadow: 0 0 0 2em var(--color-1) inset;
    box-shadow: 0 0 0 2em var(--color-1) inset;
}
.btn.active, .btn:hover, .btn.btnLink, .woocommerce a.button:hover, .woocommerce .woocommerce-checkout-payment button:hover{
	color: var(--color-1) !important;
	background: var(--white-color) !important;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.btn.btnLink:hover, .btn.active:hover{
	-webkit-box-shadow: 0 0 0 2em var(--color-1) inset;
    box-shadow: 0 0 0 2em var(--color-1) inset;
    color: var(--white-color) !important;
}
.btn > span:not(.not-loading){
	position: relative;
	z-index: 1;
}
.btn.icon i{
	margin-top: -2px;
	margin-right: 5px;
}
.form-control,
.select2-container .select2-selection--single{
	height: 40px;
	background: var(--white-color);
	border-color: var(--white-color);
	color: var(--dark-color);
	font-weight: 400;
	font-size: 14px;
	box-shadow: var(--box-shadow-2)!important;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}
.select2-container .select2-selection--single{
	display: inline-flex;
	align-items: center;
	width: 100%;
}
.select2-container .select2-selection--single span{
	color: var(--color-4) !important;
}
.select2-container .select2-selection--single .select2-selection__arrow,
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input{
	top: calc(50% - 10px) !important;
	right: 10px;
}
.form-control.error{
	border-color: #a00;
}
.form-control::-moz-placeholder{
	
}
.form-control:-ms-input-placeholder{
	
}
.form-control::-webkit-input-placeholder{
	
}
label.form-label{
	font-weight: bold;
	margin: 0px;
}
.vcBlock{
	margin-bottom: 30px;
}
.vcBlock.marginNone, .marginNone{
	margin: 0px;
}
span[itemprop="ratingValue"]{
	display: none;
}
.not-loading{
	display: none;
}
.not-loading.loading{
	display: inline-block;
}
.thumb,
.thumb a,
.lastArticleSlider a.imgLink{
	overflow: hidden;
	display: block;
}
.vcLogos .thumb,
.vcLogos .thumb a{
	overflow: inherit;
}
.thumb:hover img,
.thumb a:hover img,
.lastArticleSlider a.imgLink:hover img{
	transform: scale(1.1);
}

input.inputFile,
.wpcf7-acceptance input{
	position: absolute;
	visibility: hidden;
	opacity: 0;
}
.wpcf7-acceptance label{
	position: relative;
	padding-left: 20px;
}
.wpcf7-acceptance label span::before{
	content: '';
	display: block;
	position: absolute;
	left: -14px;
}
.custom-control-label::before,
.wpcf7-acceptance label span::before{
	width: 20px;
	height: 20px;
	background: none;
	top: 5px;
	box-shadow: none!important;
}
.custom-control-input:checked~.custom-control-label::before{
	background: none;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.wpcf7-acceptance label input:checked~span.wpcf7-list-item-label::before{
	
}
.custom-control-label::after,
.wpcf7-acceptance label span::after{
	width: 10px;
	height: 10px;
	top: 5px;
	left: -19px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
}
.wpcf7-acceptance label span::after{
	position: absolute;
	content: '';
	left: -9px;
}
.custom-checkbox .custom-control-label::after{
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	font-family: 'Font Awesome 5 Light';
	font-weight: 300;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after,
.wpcf7-acceptance label input:checked~span.wpcf7-list-item-label::after{
	background: var(--color-1);
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
	background: none;
	content: "\f00c";
	top: 0;
}
.custom-control-label{
	padding-left: 5px;
	cursor: pointer;
	font-size: 14px;
}
.custom-file .custom-file-label{
	border: none;
	text-align: center;
	display: flex;
}
.custom-file .custom-file-label span{
	width: 50%;
	text-align: right;
}
.custom-file .custom-file-label::after{
	display: none;
}
.custom-file .custom-file-label span:last-child{
	margin-left: 10px;	
	text-align: left;
	cursor: pointer;
}
.custom-file .custom-file-label span:last-child::before{
	content: '';
	border-top: 2.5px solid transparent;
	border-left: 5px solid var(--color-3);
	border-bottom: 2.5px solid transparent;
	height: 0px;
	width: 0px;
	margin-right: 4px;
	display: inline-block
}
.whiteColor,
.whiteColor .vcTitle{
	color: var(--white);
}
.wpcf7 .ajax-loader{
	position: absolute;
}
.widget-title.titleToggle{
	position: relative;
}
.widget-title.titleToggle::after{
	font-family: 'Font Awesome 5 Light';
    font-weight: 300;
    content: "\f067";
    right: 0px;
    position: absolute;
}
.widget-title.titleToggle.active::after{
	content: "\f068";
}
.boxRound,
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment,
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register,
.shop-widget{
	background: #ffffff;
	box-shadow: var(--box-shadow-1);
	border-radius: 15px;
}


.boxRound .vcBlock{
	margin-bottom: 0px;
}
blockquote {
	padding: 0 0px 0px 15px;
	position: relative;
	font-style: italic;
}

blockquote > * {
	margin-top: 15px;
	margin-bottom: 15px;
}

blockquote > *:first-child {
	margin-top: 0;
}

blockquote > *:last-child {
	margin-bottom: 0;
}

blockquote cite,
blockquote footer {
	font-weight: normal;
}

blockquote.alignleft,
blockquote.alignright {
	padding-left: inherit;
}

blockquote.alignleft p,
blockquote.alignright p {
	max-width: inherit;
	width: inherit;
}

blockquote:before {
	content: "";
	position: absolute;
	height: 100%;
	top: 0px;
	left: 0px;
}
.maskBackground::before{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.63);
	left: 0px;
	top: 0px;
}
.textThrough{
	text-decoration: line-through;
}
.mtn90{
	margin-top: -90px;
}
.font14{
	font-size: 14px;
	line-height: 16px;
}
.font14 strong{
	font-size: 17px;
	line-height: 19px;
}
.vc_sep_width_100{
	max-width: 90%;
}
.boxContact{
	padding: 0px 30px;
}
.contactFormPopup .row > label{
	font-weight: bold;
	font-size: 15px;
}
.contactFormPopup .description{
	font-size: 12px;
	line-height: 18px;
}
img.aligncenter{
	margin-left: auto;
	margin-right: auto;
	display: block;
}
@media (min-width: 1200px){
	
}
@media (min-width: 768px){
	header.sticky{
		top: 0px;
		animation: effect-stick-menu 0.6s;
	}
	.admin-bar header.sticky{
		top: 32px;
		animation: effect-stick-adminbar-menu 0.6s;
	}
    .vc_row.d-md-flex .vc_column_container > .vc_column-inner,
    .vc_row.d-md-flex .vc_column_container > .vc_column-inner > .wpb_wrapper,
    .vcTextIcon{
        height: 100%;
    }
}
@media (max-width: 767px){
	header{
		position: static;
	}
	a.logo span{
		color: var(--color-3);
		font-weight: bold;
		font-size: 16px;
		margin-left: 10px;
	}
	#mainContent{
		margin-top: 15px;
	}
	.btnMenu{
		position: absolute;
		top: calc(50% - 21px);
		left: 5px;
	}
	.btnMenu button{
		background: var(--white);
		padding: 10px;
	}
	ul.mainmenu{
		display: block;
		padding-bottom: 15px;
	}
	ul.mainmenu > li{
		position: relative;
	}
	ul.mainmenu > li.menu-item-has-children::after{
		font-family: 'Font Awesome 5 Light';
        font-weight: 300;
        content: "\f067";
        position: absolute;
        right: 0px;
		top: 0px;
	}
	ul.mainmenu > li.menu-item-has-children.active::after{
		content: "\f068";
	}
	ul.mainmenu > li > a{
		padding: 0px;
	}
	ul.mainmenu .sub-menu{
		visibility: visible;
		opacity: 1;
		filter: alpha(opacity=100);
		position: static;
		background: none;
		box-shadow: none;
		padding-top: 0px;
		padding-bottom: 0px;
		height: 0px;
		-webkit-transform: rotateX(0deg);
		-ms-transform: rotateX(0deg);
		-o-transform: rotateX(0deg);
		transform: rotateX(0deg);
		overflow: hidden;
	}
	ul.mainmenu > li.menu-item-has-children.active .sub-menu{
		height: auto;
		padding-top: 5px;
		margin-bottom: 5px;
	}
	.productDetail .price{
		display:block;
	}
	.productListing{
		flex-flow: column-reverse;
	}
}

@media (max-width: 600px){
	body,
	.h4, .h5, .h6, h4, h5, h6{
		font-size: 16px;
		line-height: 30px;
	}
	.h4, .h5, .h6, h4, h5, h6{
		font-size: 100%;
	}
	.breadcrumb{
		font-size: 14px;
		line-height: 22px;
	}
	form.cart .form-control,
	form.cart .quantity,
	form.cart .btn{
		width: 100%;
		margin-top: 15px;
	}
}

@media print {
	
}

@media all and (-webkit-min-device-pixel-ratio: 1.5) {
	
}