@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100;300;400;500;600;700;800;900&display=swap');
  
*{
	margin:0;
	padding:0;
	outline:0 none;
	font-family: inherit;
	box-sizing: border-box;
}

::after,::before{
	box-sizing: border-box;
}

meta{
	display: none;
}

:root{
	--color-1:#222;
	--color-2:#127749;
	--color-3:#e91118;
	--l-color-1:#222;
	--l-color-2:#127749;
	--l-color-3:#e91118;
	--light-font-color:#222;
	--dark-font-color:#ddd;
	--font-1:'Onest',sans-serif;
	--font-2:'Onest',sans-serif;
}

html{
	font-size:14px;
	font-family:var(--font-1);
	font-weight:400;
	line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body{
	display: flex;
	flex-direction: column;
	min-height:100vh;
	height: 100%; /* 1, 3 */
	max-width:100%;
	width:100%;
	overflow-x: hidden;
}

body.grey-theme{
	background: #ffffff;
}

body.dark-theme{
	background-color:var(--dark-bg-color);
}

a{
	text-decoration:none!important;
	outline:0 none!important
}

img{
	outline:0 none!important
}

.wrap {
	width:100%;
	flex:1;
}

.wrapper{
	width:100%;
	display:flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap:wrap
}

.container{
	width:1428px;
	padding:0 15px;
	display:flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap:wrap
}

.flex-center{
	display: flex;
	align-items: center;
	justify-content: center;
}

.default-pointer{
    cursor: default!important;
}

.inside .container{
	width: 100%;
}

/*--------------
	SUB
---------------*/

.sub-wrapper{
	background:var(--color-2);
}

.sub{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:10px 0;
}

.sub-left{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.sub-contacts{
	display: flex;
}

.sub-contact-link{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color:#fff;
	font-size:14px;
	margin-right:15px
}

.listing-page .sub-contact-link{
	color:#212121
}

.sub-contact-link i{
	margin-right:10px
}

.sub-right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.sub-list{
	display: flex;
	align-items:center;
	justify-content: flex-end;
	list-style-type: none
}

.sub-list li{
	display: inline-block;
	margin-right:15px;
}

.sub-list li a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size:14px;
	color:#fff;
}

.sub-list li a:hover{
	text-decoration: underline!important
}

.sub-social{
	display: flex;
	justify-content: flex-end;
}

.sub-social-link{
	color:#fff;
	margin-left:10px;
	font-size:24px
}

.sub-langs{
	display: flex;
	align-items: center;
	margin-left:15px;
	gap:0 10px
}

/*-------
HEADER
--------*/

.all-header-wrapper{
	position: relative;
	top:0;
	left:0;
	width: 100%;
	z-index:6000;
}

.listing-page .all-header-wrapper{
	position: relative;
}

.header{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.header-wrapper{
	background: #fff;
	box-shadow: 0 6px 24px 0 rgba(0,0,0,0.2);
}

.menu-area{
	width: 100%;
	padding:15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.menu-wrapper{
	display: flex;
	flex:1;
	align-items: center;
	justify-content: flex-end;
}

.menu {
	display: flex;
	width: 100%;
}

.menu-list{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-end;
	list-style-type: none
}

.menu-li{
	margin-left:45px;
}

.menu-link{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:14px;
	font-weight: 500;
	letter-spacing: .9px;
	color:#212121;
	position: relative;
	z-index: 100;
}

.menu-li:hover .menu-link,
.menu-li.active .menu-link{
	color:var(--color-2)
}

.brands-backdrop{
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0,0,0,0.6);
	top:0;
	left:0;
	z-index: -1;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: all 400ms ease 0s;
}

.brands-area-trigger:hover ~ .brands-backdrop{
	opacity: 1;
	visibility: visible;
}

.brands-area-wrapper{
	width: 100%;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top:0;
	left:0;
	transition: all 400ms ease 0s;
	position: absolute;
	pointer-events: none;
}

.brands-area-trigger:hover > .brands-area-wrapper{
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.brands-area-wrapper.active{
	opacity: 1;
	visibility: visible;
	top:0
}

.brands-area{
	width: 100%;
	display: block;
	margin-top:96px;
}

.brands-list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	background: #fff;
	border-top:1px solid #f1f1f1;
}

.brands-list li{
	display: flex;
	width: 10%;
}

.brands-list li a{
	width: 100%;
	height: 100px;
	background: #fff;;
	border-bottom:1px solid #f1f1f1;
	border-right:1px solid #f1f1f1;
	padding:30px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: all;
}

.brands-list li a img{
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.brands-list li a:hover{
	background: #f1f1f1;
}

.open-search{
	display: inline-block;
	margin-left:15px;
	font-size:20px;
	color:var(--color-2)
}

.sub-li{
	position: relative;
}

.menu-sub{
	position: absolute;
	top:0;
	left:-15px;
	min-width: 300px;
	z-index:20;
	display: none;
}

.sub-menu{
	margin-top:56px;
	background: var(--color-2);
	list-style: none;
	display: block;
}

.sub-menu > li {
	width: 100%;
	display: block;
}

.sub-menu > li > a{
	width: 100%;
	display: block;
	padding:15px 15px;
	text-align: left;
	color:#fff;
	font-size:14px;
	font-weight: 400;
}

.sub-menu li:hover > a{
	background: #089454;
	color:#fff
}

.sub-menu li ul{
	width: 100%;
	position: absolute;
	left:100%;
	right:0;
	top:0;
	margin-top:0
}

.sub-menu li ul.sub-menu{
	margin-top:0
}

.menu li:hover > .menu-sub{
	display: block
}

/*----------
CATEGORIES
-----------*/
.category-stage{
	position: relative;
	overflow:hidden
}

.category-stage-image{
	height:300px;
	position: relative;
	display: block;
}

.category-stage-image img{
	height:100%;
	min-height: auto;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.category-breadcrumbs{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.category-bread-list{
	display: inline;
	padding: 16px 0;
	margin: 0 56px 0 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: normal;
	list-style: none;
	white-space: nowrap;
	word-wrap: normal;
}

.category-bread-list li{
	padding-left:12px;
	position: relative;
	display: inline;
	margin-right:4px
}

.category-bread-list li:first-of-type{
	padding-left:0
}

.category-bread-list li:before{
	content: "/";
	color: #7a7a7a;
	position: absolute;
	line-height: 20px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.category-bread-list li:first-of-type:before{
	display: none;
}

.category-bread-link{
	font-size: 14px;
	letter-spacing: .4px;
	line-height: 20px;
	font-weight: 400;
	color:#7a7a7a;
	transition:color .2s ease-in;
}

.category-bread-link:hover{
	color:#222
}

.category-page-header{
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top:32px;
}

.category-page-heading{
	display: flex;
	flex:1 1 auto;
	flex-wrap: wrap;
	margin-bottom:16px
}

.category-page-heading-top{
	display: flex;
	align-items: flex-end;
}

.category-page-title{
	display: block;
	font-size:40px;
	letter-spacing: 2px;
	line-height: 1;
	font-weight: 500;
	margin-right:8px
}

.category-page-sub-title{
	font-size:16px;
	letter-spacing: .4px;
	line-height: 24px;
	font-weight: 400;
}


.category-page-count{
	width: 100%;
	display: block;
	font-size:12px;
	color:#7a7a7a;
	margin-top:8px;
}

.category-page-actions{
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	position: relative;
}

/*----------
PRODUCTS
-----------*/

.products-page{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top:30px
}

.products-left{
	width: 260px;
	display: flex;
	flex-wrap: wrap
}

.products-select-menu{
	width: 100%;
	height: 46px;
	padding:0 15px;
	display: none;
	background: #fff;
	border:1px solid #f1f1f1
}

.products-brands-menu{
	width: 100%;
	display: block;
	list-style: none;
}

.products-brands-menu li{
	width: 100%;
	display: block;
	margin-bottom:5px;
}

.products-brands-menu li a{
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: flex-start;
	font-size:18px;
	color:#222;
	font-weight: 500;
	letter-spacing: 1px;
	border-top:1px solid transparent;
	border-bottom:1px solid transparent;
	padding: 15px 0;
}

.products-brands-menu li a:hover,
.products-brands-menu li a.active{
	border-top-color: var(--color-2);
	border-bottom-color: var(--color-2);
}

.products-list-wrapper{
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	padding-left:30px;
	padding-bottom:60px
}

.products-list{
	width: 100%;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.products-list-column{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
}

.product-wrapper{
	width: 33.33%;
	display: flex;
	overflow: hidden;
	position: relative;
	padding:0 15px;
	margin-bottom:30px
}

.product{
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	position: relative;
	padding:15px;
	border:1px solid #f1f1f1;
}

.product-image{
	width: 100%;
	height:320px;
	overflow: hidden;
	display: block;
	text-align: center;
}

.product-image{
	height: 320px;
}

.product-image img{
	max-width: 100%;
	max-height: 100%;
	height: auto;
	display: block;
	margin:0 auto;
	transition: all .2s ease-in-out 0s;
}

.product-content-wrapper{
	flex:1;
	position: relative;
	width: 100%;
	z-index: 200;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	padding:0
}

.product-content{
	width: 100%;
	flex:1;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-end;
	position: relative;
	transition: transform .2s ease-in-out,top .2s ease-in-out
}

.product-content-header{
	width: 100%;
	display: flex;
	flex-direction: column;
	transition: all 500ms ease 0s;
	flex:1;
	margin-top:10px;
}

.product-title{
	width: 100%;
	display: block;
	font-size:16px;
	line-height: 26px;
	font-weight: 400;
	letter-spacing: 1px;
	color:var(--color-1)
}

.product-summary{
	width: 100%;
	transition: all 500ms ease 0s;
	font-size:16px;
	line-height: 28px;
	margin-top:0;
	color:var(--color-2)
}

.product-text{
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.product-links{
	display: flex;
	width: 100%;
	text-align: left;
	align-items: center;
	justify-content: flex-start;
	margin-top:26px;
}

.product-link {
	font-size: 12px;
	letter-spacing: 1.5px;
	line-height: 24px;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	margin-right: 16px;
	cursor: pointer;
	border: none;
	text-transform: uppercase;
	color:#aaa
}

.products-buttons{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin:15px 0
}

.product:hover{
	border-color:#ccc
}

.more-products-button{
	display: inline-block;
	padding:9px 24px;
	font-size:16px;
	letter-spacing: 1.8px;
	font-weight: 400;
	color:var(--l-color-1);
	border:1px solid #ccc;
	background: transparent;
	cursor: pointer;
}

.more-products-button:hover{
	border-color:#7a7a7a
}

.category-filter-reset-button{
	opacity: 0;
	visibility: hidden;
}

/*----------
PRODUCT DETAIL
-----------*/
.product-stage{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom:64px;
}

.product-slides{
	width: 50%;
	display: flex;
}

.gallery-container {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}

.gallery-main {
	width: 85%;
	height: 600px;
	border:1px solid #f1f1f1;
	position: relative;
	overflow: hidden;
}

.center-item{
	width: 100%;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.center-item img{
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.gallery-main-nav{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	z-index: 5000;
}

.gallery-main .swiper-button-prev, .gallery-main .swiper-button-next {
	height: 40px;
	width: 40px;
	background: #f9f9f9;
	color: #1e1e1e;
}

.gallery-main .swiper-button-prev::after, .gallery-main .swiper-button-next::after {
	font-size: 12px;
}

.gallery-thumbs {
	order: -1;
	width: 15%;
	height: 300px;
	padding-right: 15px;
	overflow: hidden;
}

.thumb-item{
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thumb-item img{
	max-width: 100%;
	max-height: 100%;
	display: block;
	cursor: pointer;
	border:3px solid transparent
}

.gallery-thumbs .swiper-slide-thumb-active img{
	border-color: var(--color-2);
  }


@-webkit-keyframes slide-in {
from {
	opacity: 0;
	right: -50%;
}
}

@keyframes slide-in {
from {
	opacity: 0;
	right: -50%;
}
}

.product-info-wrapper{
	display: flex;
	flex-flow: row nowrap;
	flex: 0 0 auto;
	width: 50%;
	justify-content: center;
}

.product-info{
	padding: 0 0 48px 48px;
	flex-grow: 1;
}

.product-info-header{
	display: flex;
	margin-bottom:8px;
	align-items: center;
	justify-content: space-between;
}

.product-info-heading{
	flex:1 1 auto;
	width: 0;
	margin:0;
	padding-right:30px
}

.product-info-title,.product-info-sub-title {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-info-title {
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 40px;
	font-weight: 500;
	text-transform: uppercase;
	color:var(--color-2)
}

.product-info-sub-title{
	font-size: 28px;
	letter-spacing: 2px;
	line-height: 40px;
	font-weight: 300;
}

.product-info-description{
	font-size: 16px;
	letter-spacing: .5px;
	line-height: 26px;
	font-weight: 400;
	display: block;
	width: 100%;
	margin-bottom:24px;
	margin-top:30px
}

.product-buttons-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top:60px;
	gap:0 15px
}

.product-button{
	display: flex;
	align-items: center;
	justify-content: center;
	gap:0 8px;
	padding:15px 15px;
	border:1px solid var(--color-2);
	color:var(--color-2);
	flex:auto
}

.product-button i{
	font-size:20px
}

.product-button:hover{
	background: var(--color-2);
	color:#fff
}

.product-overview-wrapper{
	padding:120px 0
}

.product-overview{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.product-overview-content{
	width: 60%;
	display: block;
}

.product-overview-title{
	width: 100%;
	display: block;
	font-size:48px;
	line-height: 58px;
	letter-spacing: 1.75px;
	color:var(--color-1);
	font-weight: 400;
	margin-bottom:30px
}

.product-overview-text{
	width: 100%;
	display: block;
	font-size:18px;
	line-height: 32px;
	font-weight: 300;
	letter-spacing: .8px;
}

.specifications-wrapper{
	padding:0 0 90px 0
}

.specifications{
	width: 100%;
}

.specifications-header{
	width: 100%;
	display: block;
}

.specifications-title{
	width: 100%;
	display: block;
	font-size:24px;
	line-height: 34px;
	letter-spacing: 1.75px;
	color:var(--color-1);
	font-weight: 400;
	margin-bottom:30px;
}

.specs{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top:30px
}

.specs-menu{
	width:280px;
	display: flex;
	position: sticky;
	top:0;
	padding-right:30px
}

.specs-menu ul{
	display: block;
	list-style: none;
}

.specs-menu ul li{
	display: block;
	padding:15px 0
}

.specs-menu ul li a{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size:14px;
	color:#bbbcbc;
	font-weight: 600;
	letter-spacing: 1px;
}

.specs-menu ul li a:hover,
.specs-menu ul li a.active{
	color:var(--color-1)
}

.specs-sections{
	display: flex;
	flex-wrap: wrap;
	flex:1
}

.specs-section-wrapper{
	width: 100%;
	display: block;
	margin-bottom:30px
}

.specs-section-wrapper:not(:first-of-type){
	padding:0 0
}

.specs-section-item{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding:15px 0;
	border-bottom:1px solid #f1f1f1
}

.specs-mobile-title{
	width: 100%;
	padding:15px 0;
	font-size:18px;
	letter-spacing: 1.8px;
	color:var(--color-2);
}

.specs-section-item-key{
	display: inline-block;
	font-size:16px;
	color:var(--color-1);
	font-weight: 500;
	letter-spacing: 1px;
}

.specs-section-item-value{
	max-width: 50%;
	display: block;
	font-size:14px;
	line-height: 24px;
	font-weight: 300;
	text-align: right;
}

.product-video-wrapper{
	padding:60px 0
}

.product-video{
	width: 100%;
	margin:0 auto
}

.product-video-embed{
	display: block;
	overflow: hidden;
	position: relative;
	padding-bottom: 57.14285714%;
	height: 0;
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.product-video-object{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.product-video-content-wrapper{
	width: 60%;
	text-align: left;
	margin:0 auto;
	display: flex;
	flex-direction: column-reverse;
	position: relative;
	margin-top:80px;

}

.product-video-title{
	width: 100%;
	display: block;
	font-size:30px;
	line-height: 40px;
	letter-spacing: 1.75px;
	color:var(--color-1);
	font-weight: 400;
	margin-bottom:30px;
	text-align: center;
}

.product-video-text{
	width: 100%;
	display: block;
	font-size:18px;
	line-height: 32px;
	font-weight: 300;
	letter-spacing: .8px;
	text-align: center;
}

.product-stock-button {
	display: block;
	width: 100%;
	margin-bottom: 8px;
	background-color: #000;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1.5px;
	line-height: 24px;
	font-weight: 400;
	text-align: center;
	padding: 9px 24px;
	text-transform: uppercase;
	transition: border-color .3s ease;
}




/*----------
NEWS
-----------*/

.all-news-container{
	padding:0
}

.all-news{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	padding:0 0 60px 0
}

.all-news-item-wrapper{
	width: 33.33%;
	display: flex;
	padding:15px;
	margin-bottom:30px;
	font-size:0
}

.all-news-item{
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	background: #f9f9f9;
	box-shadow: 0 0 7px rgba(0,0,0,0.2);
}

.all-news-item-image{
	width: 100%;
	height: 300px;
	display: flex;
	overflow: hidden;
}

.all-news-item-image picture{
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
}

.all-news-item-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 150ms ease 0s;
}

.all-news-item:hover .all-news-item-image img{
	transform:scale(1.14);
}

.all-news-item-content{
	flex:1;
	width: 100%;
	padding:30px 15px;
	display: flex;
	flex-direction: column
}

.all-news-item-content-top{
	width: 100%;
	display: flex;
	flex-direction: column;
	flex:1;
}

.all-news-item-title{
	width: 100%;
	display: flex;
	color: var(--color-1);
	font-weight: 400;
	font-size:18px;
	font-weight: 600;
	letter-spacing: 1.25px
}

.all-news-item-text-wrapper{
	width: 100%;
	display: block;
	font-size:16px;
	line-height: 26px;
	letter-spacing:.8px;
	color:#606060;
	padding:15px 0
}

.all-news-item-text{
	width: 100%;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.all-news-item-links{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.all-news-item-link{
	display: inline-block;
	color:var(--color-2);
	font-size:14px;
}

.all-news-item-link:hover{
	text-decoration: underline!important;
}

/*----------
SEARCH
-----------*/

.body-overflow{
	overflow: hidden;
}

.search-overlay{
	position: relative;
}

.search-overlay-open{
	z-index:999999;
	transition-delay:0s
}

.search-overlay-inner{
	position: fixed;
	width: 100%;
	left:-100%;
	top:0;
	bottom:0;
	border-top:1px solid rgba(26,41,58,.2);
	background: #fff;
	transition:opacity .2s,visibility 0s .2s,left 0s .2s;
	transition-delay: 0s;
	overflow-y:auto;
	overflow-x:hidden;
	display: flex;
	flex-direction: column
}

.search-overlay-open .search-overlay-inner{
	opacity:1;
	left:0;
	pointer-events: auto;
	visibility: visible;
	transition-delay: 0s;
}

.search-overlay-header{
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-top:24px
}

.search-overlay-input{
	flex:1 1 auto;
	max-width: 600px;
}

.search-form-group{
	font-size: 16px;
	letter-spacing: .4px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom:32px;
	margin-top:16px;
	position: relative;
}

.search-form-field{
	cursor: pointer;
	position: relative;
	border-bottom:1px solid #7a7a7a;
	transition:border .3s ease
}

.search-input{
	display: block;
	width: 100%;
	line-height: 1;
	padding: 4px 0 5px;
	outline: none;
	border: none;
	border-radius: 0;
	background-color: transparent;
	cursor: inherit;
	font-family: inherit;
	font-size: 100%;
}

.search-submit-wrapper{
	background-color: transparent;
	outline: 0;
	position: absolute;
	bottom: 0;
	right: 0;
}

.search-submit-button{
	border:none;
	background: transparent;
	font-size:24px;
	cursor: pointer;
	transform: rotate(270deg)
}

.search-overlay-close{
	padding:16px 0
}

.search-overlay-close-button{
	display: inline-block;
	position: relative;
	font-size:30px;
	border:none;
	background-color: transparent;
	color:#7a7a7a;
	cursor: pointer;
}

.search-overlay-body{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding-bottom:40px;
}

.search-overlay-body{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.search-title{
	width: 100%;
	display: block;
	font-size: 12px;
	letter-spacing: .4px;
	line-height: 16px;
	font-weight: 400;
	color: #7a7a7a;
	margin: 0 0 12px;
}

.search-overlay-body-left{
	width: 50%;
	display: block;
	padding-right:30px
}

.search-overlay-body-right{
	width: 50%;
	display: block;
	padding-left:30px
}

.search-suggestion,.search-items{
	width: 100%;
	margin-bottom:32px;
}

.search-suggestion-list{
	width: 100%;
	display: block;
	list-style: none;
}

.search-suggestion-link{
	display: inline-block;
	padding:4px 0;
	color:#212121;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-items-list{
	width: 100%;
	display: block;
	list-style: none;
}

.search-items-list li{
	width: 100%;
	display: block;
	border-bottom:1px solid #ccc
}

.search-item-link{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	gap:0 15px;
	color:#212121;
	padding:24px 0
}

.search-item-image{
	width: 75px;
	height: 75px;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}

.search-item-image img{
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
}

.search-item-content-wrapper{
	flex:1 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}

.search-item-brand{
	width: 100%;
	display: block;
	font-size:14px;
	font-weight: 500;
	letter-spacing: .4px
}

.suggestion-item-model{
	width: 100%;
	display: block;
	font-size:14px;
	font-weight: 400;
	letter-spacing: .4px
}

.search-item-link:hover{
	background: #f9f9f9;
}

.product-suggestions-wrapper{
	padding:60px 0 60px 0;
	background: #f9f9f9;
}

.product-suggestions-header-container{
	padding:0
}

.product-suggestions-title{
	width: 100%;
	display: block;
	margin-bottom: 30px;
	font-size:20px;
	color:var(--color-2);
	font-weight: 600;
	letter-spacing: 2px;
}

.product-suggestions-items-container{
	overflow: hidden;
	padding:0;
	align-items: stretch;
}

.product-suggestions{
	width: 100%;
	display: flex;
	align-items: stretch;
	position: relative;
}

.product-suggestions .product-wrapper{
	padding:2px;
	margin:0;
	background: #fff;
}

/*----------
FOOTER
-----------*/

.all-footer-wrapper{
	background-color: var(--color-1);
}

.footer-top{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom:1px solid rgba(255,255,255,.2);
	padding:30px 0
}

.footer-top ul{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	list-style: none;
}

.footer-list li{
	display: block;
	margin-right:30px
}

.footer-list li a{
	color:#ffffff;
	font-size:15px;
}

.footer-list li a:hover{
	color:#ffffff;
}

.footer-social li{
	margin-left:15px;
}

.footer-social li a{
	font-size:30px;
	color:#ffffff;
	display: block;
}

.footer-social li a:hover{
	color:#ffffff
}

.footer-center{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer-center-left{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer-center-item{
	flex:auto;
	display: flex;
	flex-wrap: wrap;
	padding:30px 0;
	padding-right:60px;
	justify-content: flex-start;
}

.footer-center-title{
	width: 100%;
	display: block;
	font-size:18px;
	color:#ffffff80;
	font-weight: 600;
}

.footer-center-list{
	width: 100%;
	list-style: none;
	margin-top:30px
}

.footer-center-list li{
	display: block;
	width: 100%;
	margin-bottom:10px
}

.footer-center-list li a{
	display: inline-block;
	color:#fff;
	font-size:14px
}

.footer-center-right{
	flex:auto;
	display: flex;
	flex-wrap: wrap;
	padding:30px 0;
	justify-content: flex-end;
}

.footer-contacts{
	margin-top:30px;
}

.footer-contact{
	display: block;
	width: 100%;
	margin-bottom:10px
}

.footer-contact-item{
	font-size:14px;
	color:#fff;
	display: inline-block;
}

.legal-texts{
	padding:30px 0
}

/*------
FIXED
-------*/

.ikon-menu{
	position: fixed;
	right:15px;
	bottom:15px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index:9000
}

.go-top{
	background:var(--color-2);
	color: #fff;
	width: 48px;
	height: 48px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px;
	-webkit-transition: all 100ms ease 0s;
	transition: all 100ms ease 0s;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	margin-bottom:10px
}

.go-top:hover{
	background: var(--color-2);
}

.whatsapp{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.w-box-wrapper{
	max-width: 300px;
	display: none
}

.w-box-wrapper.active{
	display: flex;
}

.w-box{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-radius: 20px;
	overflow: hidden
}

.w-box-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding:15px;
	background: var(--color-2);
	gap:0 20px
}

.w-box-avatar{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	border:1px solid #fff;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:5px
}

.w-box-avatar img{
	max-width: 100%;
	max-height: 100%;
}

.w-box-person{
	display: flex;
	flex-direction: column;
	flex:1;
	justify-content: center;
	align-items: flex-start;
	color:#fff
}

.w-box-name{
	width: 100%;
	display: block;
	font-size:13px
}

.w-box-title{
	font-size:12px;
	display: block;
	margin-top:2px
}

.w-box-body{
	width: 100%;
	padding:15px 15px;
	background: #f1f1f1;
}

.w-box-text-wrapper{
	padding:15px;
	position: relative
}

.w-box-text{
	background: #fff;
	padding:15px;
	display: block;
	border-radius: 0 15px 15px 15px;
	position: relative;
	font-size:13px;
	line-height: 19px;
}

.w-box-text::before{
	content:"";
	display: inline-block;
	width:0;
	height: 0;
	border:8px solid transparent;
	border-top-color:#fff;
	border-right-color:#fff;
	position: absolute;
	top:0;
	left:-15px
}

.w-box-footer{
	width: 100%;
	padding:0 15px 15px;
	background: #f1f1f1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.w-box-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding:12px 25px;
	color:#fff;
	background: var(--color-2);
	border-radius: 30px;
	gap:0 5px
}

.w-box-link i{
	font-size:22px
}

.w-box-link:hover{
	background: var(--color-1);
	color:#fff
}

.w-button{
	display: flex;
	align-items: center;
	justify-content: center;
	width:48px;
	height:48px;
	background: var(--color-2);
	border-radius:50%;
	text-align: center;
	font-size:36px;
	color:#fff;
	margin-top:8px;
	box-shadow:2px 2px 13px rgba(0,0,0,0.6);
}

/*--------------------
	COOKIE BOX
---------------------*/

.cookies-box-wrapper{
	position: fixed;
	bottom:15px;
	left:15px;
	z-index:10000;
	max-width: 260px;
	background:var(--color-2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	border-radius: 16px;
}

.cookies-box{
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
	padding:30px 0 15px 0
}

.cookies-box-left{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.cookies-desc{
	width: 100%;
	display: inline-block;
	color:#fff;
	font-size:12px;
	line-height: 19px;
}

.cookies-box-buttons{
	width: 100%;
	margin:15px 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.cookies-inline-link{
	display: inline-block;
	color:var(--color-5);
	text-decoration: underline!important;
	font-size:12px
}
.cookies-link{
	display: inline-block;
	text-align: center;
	font-size:12px;
	font-weight: 700;
	color: var(--color-2);
	background: #fff;
	padding:10px 15px;
	border-radius: 6px;
}

/*-------------
	COMMON
--------------*/

.dir-ltr{
	direction:ltr
}

.dir-rtl{
	direction: rtl;
}

.f-title-16{
	font-size:16px;
	line-height: 28px;
}

.f-title-18{
	font-size:18px;
	line-height: 1.5;
}

.f-title-20{
	font-size:20px;
	line-height: 1.5;
}

.f-title-24{
	font-size:24px;
	line-height: 1.5;
}

.f-title-30{
	font-size:30px;
	line-height: 1.5
}

.f-title-36{
	font-size:36px;
	line-height: 1.5
}

.f-title-40{
	font-size:40px;
	line-height: 1.3
}

.f-title-53{
	font-size:53px;
	line-height: 1.5;
	letter-spacing: 1px;
}

.f-title-57{
	font-size:57px;
	line-height: 72px;
	font-weight: 700;
}

.with-menu .f-title-40{
	font-size:30px
}

.f-content-14{
	font-size:14px;
	line-height: 21px;
	font-family: var(--font-2);
}

.f-content-16{
	font-size:16px;
	line-height: 28px;
	font-family: var(--font-2);
}

.f-content-18{
	font-size:18px;
	line-height: 1.85;
	font-family: var(--font-2);
}

.f-content-20{
	font-size:20px;
	line-height: 1.85;
	font-family: var(--font-2);
}


.f-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--t-color-2);
    color:#fff;
	letter-spacing: 1px;
	padding:0 30px;
	height: 52px;
	font-size:14px;
	gap:0 10px;
	border-radius: 4px;
	white-space: nowrap;
}

.f-link-2{
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	height: 52px;
	border-radius: 40px;
	white-space: nowrap;
	padding:0 2px 0 32px;
	color:#fff;
	font-size:14px;
	background: var(--t-color-2);
}

.f-link-2 i {
	margin-left: 23px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	color: var(--t-color-2);
	font-size: 20px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.f-link-3{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--t-color-2);
	letter-spacing: 1px;
	padding:0 30px;
	height: 52px;
	font-size:14px;
	gap:0 10px;
	border-radius: 4px;
	white-space: nowrap;
}

.f-link:hover{
    background: var(--t-color-1);
}

.f-link-2:hover{
    background: var(--t-color-1);
    color:#fff
}

.f-link-2:hover i{
    background: var(--t-color-2);
    color:#fff
}

.c-title{
	display: block;
	font-weight: 700;
	position: relative;
	padding-left:10px;
	z-index: 2;
	color:var(--t-color-1);
}

.dir-rtl .c-title::before{
	left:auto;
	right:0
}

.w-900{
	font-weight: 900;
}

.w-800{
	font-weight: 800;
}

.w-700{
	font-weight: 700;
}

.w-600{
	font-weight: 600;
}

.w-500{
	font-weight: 500;
}

.w-400{
	font-weight: 400;
}

.w-300{
	font-weight: 300;
}

.w-200{
	font-weight: 200;
}

.w-100{
	font-weight: 100;
}

/*----------
MOBILE NAV
-----------*/
.mobile-header-wrapper{
	justify-content: space-between;
	position: relative;
	top:0;
	z-index:2000;
	background: #fff;
	padding:15px 15px;
	align-items: center;
	display: none;
	border-bottom:1px solid #e8e8e8
}

.mobile-logo-link img{
	height:40px
}

.mobile-header-right{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.mobile-header-lang{
	display: inline-flex;
	align-items: center;
	color:#212121;
	gap:0 5px
}

.rMenu{
	width:100%;
	height:100vh;
	background:#fff;
	position:fixed;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index:999999;
	left:auto;
	right:-150%;
	top:0;
	overflow:hidden;
	overflow-y: auto;
	scrollbar-width: none;
	padding:0 0;
	transition:all 300ms ease 0s
}

.rMenu.active{
	right:0;
}

.rMenu::-webkit-scrollbar {
    width: 0px;
	background: transparent;
	display: none;
}

.r-menu-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:10px 30px;
	background: #f4f4f4
}

.r-logo{
	display: inline-flex;
}

.r-logo img{
	max-height:40px
}

.r-menu-body{
	width:100%;
	height:auto;
	position:relative;
	padding:30px 30px;
	display: flex;
	flex:1;
	flex-wrap: wrap;
	align-items: flex-start
}

.rMenu ul{
	padding:0;
	margin:0;
	list-style-type:none;
	width:100%;
	height:auto;
	display:inline-block;
	position:relative;
}

.rMenu ul li {
	display:flex;
	align-items: center;
	flex-wrap:wrap;
	justify-content: space-between;
	width:100%;
	height:auto;
	text-align:left;
	border-bottom:1px solid #f1f1f1
}

.rMenu ul li a{
	width: 100%;
	flex:1;
	display:flex;
	align-items:center;
	justify-content: space-between;
	padding: 13px 0;
	text-align:left;
	font-size:15px;
	color:#000;
}

.rMenu ul li:hover > a,.rMenu ul li.active > a{
	color:var(--l-color-1);
}

.rMenu ul li ul{
	padding:0 0 0 5px;
	margin:0;
	list-style-type:none;
	width:100%;
	height:auto;
	display:none;
	position:relative;
	border-top:1px solid #f1f1f1
}

.rMenu ul li ul.active{
	display: block;
}

.rMenu ul li ul li {
	display:flex;
	width:100%;
	height:auto;
	text-align:center;
	border:none
}

.rMenu ul li ul li a{
	padding: 10px 5px 10px 0;
	text-align:left;
	font-size:14px;
	font-weight: 300;
	color:#000;
	text-decoration:none!important;
	border:none
}

.rMenu ul li ul li:hover > a,.rMenu ul li ul li.active > a{
	color:var(--color-1);
}

.r-menu-footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f1f1f1;
}

.r-foot-link{
	flex:1;
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: center;
	color:#fff;
	padding:15px
}

.r-foot-link i{
	font-size:30px
}

.r-foot-link:hover{
	background: #339933;
}

.r-foot-text{
	width:100%;
	text-align: center;
	margin:5px 0;
	font-size:12px
}

.r-phone{
	background: var(--color-1);
}

.r-whatsapp{
	background: #000
}

.fixed-wrapper{
	position: fixed;
	width: 100%;
	display: none;
	left:0;
	bottom:0;
	z-index:3000
}

.fixed{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.fixed-link{
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:15px 5px;
	color:#fff;
	font-size:12px;
	min-height: 100%;
}

.fixed-link i{
	font-size:20px;
	margin-right:5px
}

.fixed-phone{
	background: #006699
}

.fixed-whatsapp{
	background: #339933;
}

.plr0 {
	padding-left:0;
	padding-right:0
}

.toggle {
	display:block;
	padding: 0;
	margin-left:15px;
	font-size: 18px;
	position: relative;
	z-index: 3000;
}

.toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--color-1);
	margin: 8px 0;
	position: relative;
	top: 0;
	transition: top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
}

.toggle.active span:nth-child(1){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(45deg);
	top:8px;
}

.toggle.active span:nth-child(2){
	transition: opacity 0s .15s linear,background .3s 0s linear;
	opacity:0
}

.toggle.active span:nth-child(3){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(-45deg);
	top:-12px
}

#closeMenu {
	font-size:30px;
	display: inline-block;
	color:var(--color-1);
	cursor:pointer;
	z-index:5000
}

.close-menu span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--color-1);
	margin: 8px 0;
	position: relative;
	top: 0;
	transition: top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
}

.close-menu span:nth-child(1){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(45deg);
	top:8px;
}

.close-menu span:nth-child(2){
	transition: opacity 0s .15s linear,background .3s 0s linear;
	opacity:0
}

.close-menu span:nth-child(3){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(-45deg);
	top:-12px
}


@media (min-width:1280px){

	
	
}

@media (max-width:1368px) {	

	.container{
		width: 100%;
	}

	.product-image{
		height: auto;
	}

	.product-suggestions-header-container{
		padding:0 15px
	}

	.product-suggestions-items-container{
		padding: 0 15px;
	}

}

@media (max-width:1280px) {

	.all-header-wrapper{
		display: none;
	}

	.mobile-header-wrapper{
		display: flex;
	}

	.product-banner-wrapper{
		height: calc(100vh - 73px);
	}

	.product-overview-wrapper,
	.product-video-wrapper,
	.tabs-wrapper{
		padding:60px 0
	}

	.product-overview-content,.product-video-content-wrapper{
		width: 90%;
	}

	.product-overview-title,
	.product-video-title{
		font-size:34px;
		line-height: 44px;
	}

	.product-overview-text,
	.product-video-text{
		font-size:16px;
		line-height: 26px;
	}

}

@media (max-width:1024px) {

	.products-page{
		padding:0
	}

	.products-page-container{
		padding:0
	}

	.products-left{
		width: 100%;
		padding:0 15px;
	}

	.products-list-wrapper{
		width: 100%;
		padding-left:0;
		margin-top:30px
	}

	.products-brands-menu{
		display: none;
	}

	.products-select-menu{
		display: block;
	}

	.tab-content-wrapper{
		padding:190px 30px
	}

	.tabs-pagination{
		width: 100%;
		justify-content: center;
	}

	.all-news-item-wrapper{
		width: 50%;
	}

	.product-stage{
		flex-wrap: wrap;
	}

	.product-slides{
		width: 100%;
	}

	.product-info-wrapper{
		width: 100%;
		margin-top:30px
	}

	.product-info{
		padding: 0;
		flex-grow: 1;
	}

	.footer-top{
		display: none;
	}

	.footer-center-left{
		flex-wrap: wrap;
		display: none;
	}

	.footer-center-right{
		width: 100%;
		justify-content: flex-start;
	}

	

}


@media (max-width:768px){

	.tabs-wrapper{
		padding:0
	}

	.tab{
		flex-wrap: wrap;
	}

	.tab-image{
		width: 100%;
		max-height: 500px;
	}

	.tab-content-wrapper{
		width: 100%;
		padding:30px
	}

	.tabs-pagination{
		top:30px;
		gap:0 20px;
		padding:0 15px
	}

	.tabs-pagination span{
		background: #fff;
		color:var(--color-2);
		padding:5px;
		font-weight: 400;
	}

	.product-banner-wrapper{
		height: calc(70vh - 73px);
	}
	
	.product-banner-title{
		font-size:30px;
		line-height: 40px;
		letter-spacing: 1.8px;
	}

	.product-banner-button{
		padding:15px 15px;
		font-size:14px;
	}

	.product-overview-wrapper,
	.product-video-wrapper,
	.tabs-wrapper{
		padding:60px 0
	}

	.product-overview-content,.product-video-content-wrapper{
		width: 100%;
	}

	.product-overview-title,
	.product-video-title{
		font-size:28px;
		line-height: 38px;
	}

	.specs-menu{
		display: none;
	}

	.specs-sections{
		width: 100%;
	}

	.specs-section-wrapper{
		margin-bottom:45px
	}

	.specs-section-item-key{
		font-size:16px;
	}

	.specs-section-wrapper:nth-child(even){
		background: #f9f9f9;
		padding:15px 0
	}

	.specifications-title{
		display: none;
	}

}

@media (max-width:600px){ 

	.product-wrapper{
		width: 50%;
	}

	.specifications-container{
		padding:0
	}

	.specs-mobile-title{
		padding:15px;
		opacity: 1;
	}

	.specs-section-item{
		flex-wrap: wrap;
		padding:15px
	}

	.specs-section-item-key{
		width: 100%;
		font-weight: 600;
	}
	
	.specs-section-item-value{
		width: 100%;
		max-width: 100%;
		text-align: left;
		margin-top:30px
	}

	.specs-section-item:nth-child(even){
		background: #f1f1f1;
	}

	.specs-section-wrapper:nth-child(even) .specs-section-item:nth-child(even){
		background: #fff;
	}

	.all-news-item-wrapper{
		width: 100%;
	}

	.all-news-item-image{
		height: auto;
	}

}

@media (max-width:480px){ 

	.product-wrapper{
		width: 100%;
	}
   
	.tab-image{
		height: 200px;
	}

	.gallery-thumbs{
		display: none;
	}

	.gallery-main{
		width: 100%;
		height: 300px;
	}

	.center-item{
		height: 100%;
	}
    
}