@font-face{
	font-family: 'Lato';
	src: url('./font/Lato-Regular-subfont.ttf');
}

@font-face{
	font-family: 'Unna-Bold';
	src: url('./font/Unna-Bold-subfont.ttf');
}
@font-face{
	font-family: 'Unna';
	src: url('./font/Unna-Regular-subfont.ttf');
}
@font-face{
	font-family: 'Unna-Italic';
	src: url('./font/Unna-Italic.ttf');
}

*{
	font-family: "Lato", sans-serif;
}
*::-webkit-scrollbar {
    display: none;
}
h1,h2,h3,h4,h5,h6{
	font-family: "Unna-Bold" !important;
	font-weight: unset !important;
}
ul,li{
	margin: 0;
	padding: 0;
	list-style: none;
}
body.archive.tax-product_cat h1.lll_category_title,
body.archive.tax-product_cat .shop-container > .term-description{
	display: none;
}
.product .box-text.box-text-products .price-wrapper .price{
	padding-top: 5px;
}
.off-canvas-right .mfp-content, .off-canvas-left .mfp-content{
	width: 100%;
}
.product .box-text.box-text-products{
	display: flex;
	flex-direction: column;
}
.product .title-wrapper{
	order: 1;
}
.product .price-wrapper{
	order: 2;
}
@media screen and (max-width: 850px){
	.wpfMainWrapper{
		margin-top: 30px;
	}
	.wpfMainWrapper::before{
		content: 'Filter';
		display: block;
		font-weight: bold;
	}
}

.lll-loading{
	position: relative;
}
.lll-loading::before{
	content: ' ';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.lll-loading::after{
	position: absolute;
	content: "\e63c";
	font-family: "napiconfont";
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	animation: lll_loading 1s linear infinite;
	z-index: 11;
	width: 100%;
	height: 100%;
	top: 0;
}
@keyframes lll_loading{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}