@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700&display=swap');



/*
		НОВОГОДНИЙ СНЕГ
*/

.snow-canvas {
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	pointer-events: none;
}





*{
	box-sizing: border-box;
}

body{
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	background: #F3F3F3;
	margin:0;
	padding: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}

label{
	color:#363636;
}

/* ЛОАДЕРЫ */

.cssload-container{
	display: block;
	margin: auto;
	width:26px;
}

.cssload-loading{
	width: 24px;
	height: 24px;
	text-align: left;
	animation:cssload-loading-ani1 2.3s ease-in-out infinite;
		-o-animation:cssload-loading-ani1 2.3s ease-in-out infinite;
		-ms-animation:cssload-loading-ani1 2.3s ease-in-out infinite;
		-webkit-animation:cssload-loading-ani1 2.3s ease-in-out infinite;
		-moz-animation:cssload-loading-ani1 2.3s ease-in-out infinite;
}
.cssload-loading i,
.cssload-loading i:before{
	content: "";
	width: 24px;
	height: 24px;
	position: absolute;
}
.cssload-loading i{
	border-radius: 50%;
	overflow: hidden;
}
.cssload-loading i:nth-child(1){
	background: rgb(53,158,41);
	transform:translate(0,-13px);
		-o-transform:translate(0,-13px);
		-ms-transform:translate(0,-13px);
		-webkit-transform:translate(0,-13px);
		-moz-transform:translate(0,-13px);
}
.cssload-loading i:nth-child(1):before{
	background: rgb(51,51,51);
	bottom: 0;
	animation:cssload-loading-ani2 2.3s ease-in-out infinite;
		-o-animation:cssload-loading-ani2 2.3s ease-in-out infinite;
		-ms-animation:cssload-loading-ani2 2.3s ease-in-out infinite;
		-webkit-animation:cssload-loading-ani2 2.3s ease-in-out infinite;
		-moz-animation:cssload-loading-ani2 2.3s ease-in-out infinite;
}
.cssload-loading i:nth-child(2){
	background: rgb(51,51,51);
	transform:translate(0,13px);
		-o-transform:translate(0,13px);
		-ms-transform:translate(0,13px);
		-webkit-transform:translate(0,13px);
		-moz-transform:translate(0,13px);
}
.cssload-loading i:nth-child(2):before{
	animation:cssload-loading-ani2 2.3s ease-in-out infinite;
		-o-animation:cssload-loading-ani2 2.3s ease-in-out infinite;
		-ms-animation:cssload-loading-ani2 2.3s ease-in-out infinite;
		-webkit-animation:cssload-loading-ani2 2.3s ease-in-out infinite;
		-moz-animation:cssload-loading-ani2 2.3s ease-in-out infinite;
	background: rgb(53,158,41);
}



@keyframes cssload-loading-ani1{
	40%,50%{
		transform:rotate(180deg);
	}
	90%,100%{
		transform:rotate(360deg);
	}
}

@-o-keyframes cssload-loading-ani1{
	40%,50%{
		-o-transform:rotate(180deg);
	}
	90%,100%{
		-o-transform:rotate(360deg);
	}
}

@-ms-keyframes cssload-loading-ani1{
	40%,50%{
		-ms-transform:rotate(180deg);
	}
	90%,100%{
		-ms-transform:rotate(360deg);
	}
}

@-webkit-keyframes cssload-loading-ani1{
	40%,50%{
		-webkit-transform:rotate(180deg);
	}
	90%,100%{
		-webkit-transform:rotate(360deg);
	}
}

@-moz-keyframes cssload-loading-ani1{
	40%,50%{
		-moz-transform:rotate(180deg);
	}
	90%,100%{
		-moz-transform:rotate(360deg);
	}
}

@keyframes cssload-loading-ani2{
	40%,100%{
		height:100%;
	}
	50%,90%{
		height:0;
	}
}

@-o-keyframes cssload-loading-ani2{
	40%,100%{
		height:100%;
	}
	50%,90%{
		height:0;
	}
}

@-ms-keyframes cssload-loading-ani2{
	40%,100%{
		height:100%;
	}
	50%,90%{
		height:0;
	}
}

@-webkit-keyframes cssload-loading-ani2{
	40%,100%{
		height:100%;
	}
	50%,90%{
		height:0;
	}
}

@-moz-keyframes cssload-loading-ani2{
	40%,100%{
		height:100%;
	}
	50%,90%{
		height:0;
	}
}






.loadpage{
	width: 100%;
	height: 100vh;
	background: rgba(41, 41, 41, 0.8);
	z-index: 200;
	display: none;
	position: fixed;
	top:0;
	left:0;
}

.loadpage.active{
	display: block;
}


.spinner {
  animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}
.spinner .path {
  stroke: #ececec;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}







textarea {
   font-family: inherit;
   font-size: inherit;
}

h1{
	font-weight: 400;
	color: #292929;
	margin: 20px 0;
	padding: 0;
}

h2{
	font-weight: 400;
	color: #292929;
	margin:25px 0 10px 0;
}

.line{
	width:auto;
	font-size: 13px;
	color: #363636;
	padding: 7px;
	margin:3px 0;
	text-align: center;
	font-weight: 300;
}

.line.left{
	text-align: left;
	padding: 1px 0;
}

.wrap{
	width: 90%;
	margin:0 auto;
	position: relative;
	height: inherit;
}

header{
	width: 100%;
	background: #333333;
}

header .header-flex{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	height: 150px;
}

header .logo{
	flex:1.4;
}

header .logo img{
	max-width: 55px;
	/*max-width: 45px; ПОСЛЕ НГ ВЕРНУТЬ ОБРАТНО*/
	padding: 18.5px 0;
	margin-right: 10px;
}

header .logo div{
	display: inline-block;
	text-transform: uppercase;
	color:#fff;
	font-size:26px;
	vertical-align: top;
	line-height: 95px;
	letter-spacing: 1px;
}

header .logo div span{
	color:#359e29;
}

header .right-block{
	display: flex;
	flex:auto;
}

header .right-block .right-block-info{
	flex:auto;
	margin-right: 15px;
	position: relative;
}

header .right-block .right-block-info:nth-child(1){
	padding: 5px;
	transition: background 0.5s;
	background: rgba(0, 0, 0, 0.0);
	cursor: pointer;
}

header .right-block .right-block-info:nth-child(1).check{
	background: rgb(64, 64, 64, 0.8);
	border-radius: 10px 10px 0 0;

}

header .right-block .right-block-info.cart{
	cursor: pointer;
}

header .right-block .right-block-info .icon{
	width: 50px;
	height: 60px;
	display: inline-block;
}

header .right-block .right-block-info .icon img{
	width: 50px;
	height: 50px;
}

header .right-block .right-block-info .information{
	display: inline-block;
	padding: 0 10px;
	vertical-align: top;
}

header .right-block .right-block-info .information .title{
	text-transform: uppercase;
	color:#fff;
	line-height: 25px;
	letter-spacing: 0.7px;
}

header .right-block .right-block-info:hover .information .title{
	color:#359e29;
}

header .right-block .right-block-info .information .text{
	color:#A9A7A7;
	line-height: 25px;
}

header .right-block .right-block-info:nth-child(1) ul{
	background: rgba(0, 0, 0, 0.0);
	transform: scale(0);
	transition: background 0.5s, transform 0.5s;
	position: absolute;
}

header .right-block .right-block-info:nth-child(1).check ul{
	bottom: -100%;
	left:0;
	background: rgb(64, 64, 64, 0.8);
	list-style: none;
	margin:0;
	padding: 5px 20px;
	width: 100%;
	border-radius: 0 0 10px 10px;
	text-align: center;
	transform: scale(1);
}

header .right-block .right-block-info:nth-child(1) ul li{
	color:rgb(196, 196, 196);
	padding: 5px 0;
}

header .right-block .right-block-info:nth-child(1) ul li span{
	position: relative;
}

header .right-block .right-block-info:nth-child(1) ul li span img{
	position: absolute;
	top:50%;
	left:-25px;
	transform: translate(0, -50%);
	width: 17px;
	height: 17px;
}

/*
		ПРЕ ХЕАДЕР
*/

.header-menu{
	width: 100%;
	height: 60px;
	background: #212121;
}

.header-menu .menu{
	display: none;
}

.header-menu ul{
	list-style: none;
	margin:0;
	padding: 0;
}

.header-menu ul a{
	color:#fff;
	font-size: 16px;
	text-decoration: none;
}

.header-menu ul a li{
	margin:0;
	padding: 0;
	line-height: 60px;
	display: inline-block;
	width: 10%;
	text-align: center;
	text-transform: capitalize;
	letter-spacing: .6px;
	transition: background 0.6s;
}

.header-menu ul a li.active{
	background: #359e29;
}

.header-menu ul a li:hover{
	background: #359e29;
}

/*
		LEFT SIDE
*/

.left-side{
	margin-top:30px;
	width: 25%;
	display: inline-block;
}

.left-side .nav{
	background: #fff;
}

.left-side .nav .title{
	color:#fff;
	background: #359e29;
	text-transform: uppercase;
	padding: 17px 20px;
	font-size: 18px;
	position: relative;
}

.left-side .nav .title:before{
	content: '';
	background: url(../icons/icon-right-arow-white.svg) center no-repeat;
	background-size: 20px;
	width: 20px;
	height: 20px;
	position: absolute;
	top:50%;
	right: 15px;
	transform: translate(0,-50%);
	transition: transform 0.3s;
}

.left-side .nav.active .title:before{
	transform: translate(0,-50%) rotate(90deg);
}

.left-side .nav ul{
	display: none;
	margin:0;
	padding:0;
	list-style: none;
	margin-top: 10px;
	padding-bottom: 15px;
}

.left-side>.nav>ul>li{
	background: url(../icons/icon-right-arow.svg) no-repeat;
	background-position: center right 15px;
	background-size: 15px;
	cursor: pointer;
	position: relative;
}

.left-side .nav ul li a{
	padding: 12px 0;
	padding-left: 21px;
	display: inline-block;
	color:#333333;
	text-decoration: none;
	font-size: 14px;
	width: 100%;
	font-weight: 300;
	transition: color 0.4s;
	max-width: 85%;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.left-side .nav ul li a img{
	max-height: 30px;
	width: 80%;
	display: block;
	margin: 0 auto;
	object-fit: contain;
	flex:0 0 20%;
}

.left-side .nav>ul>li>a>span{
	flex:0 0 79%;

	display: flex;
	flex-direction: column;
	justify-content: center;
}

.left-side .nav ul li:hover>a{
	color:#359e29;
}

.left-side .nav ul li .dropbox-down{
	opacity: 0;
	width: 300px;
	max-width: 90vw;
	position: absolute;
	top:0;
	left:120%;
	background: #fff;
	border-left: 2px solid #BCBCBC;
	transition: all 0.4s;
	z-index: -1;
	border-top:1px solid #D2D2D2;
	border-right:1px solid #D2D2D2;
	border-bottom:1px solid #D2D2D2;

	-webkit-box-shadow: 3px 2px 11px 13px rgba(0,0,0,0.14);
	-moz-box-shadow: 3px 2px 11px 13px rgba(0,0,0,0.14);
	-ms-box-shadow: 3px 2px 11px 13px rgba(0,0,0,0.14);
	-o-box-shadow: 3px 2px 11px 13px rgba(0,0,0,0.14);
	box-shadow: 3px 2px 11px 13px rgba(0,0,0,0.14);
}

.left-side .nav ul li .dropbox-down.big_data{
	width: 650px;
}

.left-side .nav ul li .dropbox-down ul{
	margin:0;
	padding: 0;
	list-style: none;
}

.left-side .nav ul li .dropbox-down.big_data ul{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.left-side .nav ul li .dropbox-down ul li{
	width: 100%;
}

.left-side .nav ul li .dropbox-down.big_data ul li{
	flex: 0 0 45%;
}

.left-side .nav ul li:hover>.dropbox-down{
	opacity: 1;
	left:100%;
	z-index: 2;
}

.left-side .nav .small-text-sub_category{
	font-size: 12px;
	padding: 8px 0;
	padding-left: 21px;
}

.left-side .promotions{
	margin-top:30px;
	background: #fff;
	padding: 15px 5px;
	text-align: center;
}

.left-side .promotions .title{
	text-align: center;
	font-weight: 300;
	letter-spacing: 1.5px;
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.left-side .promotions .description{
	font-size: 24px;
	text-align: center;
	font-weight: 400;
}

.left-side .promotions .line{
	width: 20%;
	margin: 0 auto;
	height: 3px;
	background: #359e29;
	margin-top:15px;
	margin-bottom: 20px;
}

.left-side .promotions div{
	text-align: center;
}

.left-side .promotions a.button{
	display: inline-block;
	padding: 15px 20px;
	background: #DCDCDC;
	text-decoration: none;
	color:#151515;
	text-transform: uppercase;
	font-size: 16px;
	margin-bottom: 20px;
	transition: background 0.6s;
}

.left-side .promotions a.button:hover{
	background: #CBCBBD;
}

.left-side .promotions img{
	width: 45%;
}

.left-side .special{
	background: #fff;
	margin-top: 30px;
	padding: 15px 15px;
}

.left-side .special .title,
.left-side .special .title > a{
	color:#292929;
	font-size: 22px;
	font-weight: 300;
	padding-bottom: 15px;
	border-bottom: 1px solid #E6E6E6;
}

.left-side .special .title > a{
    text-decoration: none;
    border-bottom: none;
    color: #359e29;
}

.left-side .special .special-products{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
}

.left-side .special .special-products .product{
	flex:1;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 10px;
}

.left-side .special .special-products .product:last-child{
	margin-bottom: 0;
}

.left-side .special .special-products .product .image{
	flex:0.7;
	padding: 10px;
	width: 30px;
	height: 100px;
}

.left-side .special .special-products .product .image img{
	width: 85%;
	margin:0 auto;
	object-fit: contain;
}

.left-side .special .special-products .product .product-info{
	flex:1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.left-side .special .special-products .product .product-info .name{
	font-size: 14px;
	font-weight: 300;
	padding: 7px 0;
}


.left-side .special .special-products .product .product-info .name a{
	text-decoration: none;
	color:#949494;
	transition: color 0.5s;
}

.left-side .special .special-products .product .product-info .name a:hover{
	color:#359e29;
}

.left-side .special .special-products .product .product-info .prices{
	width: 100%;
	font-weight: 300;
}

.left-side .special .special-products .product .product-info .prices .new-price{
	float: left;
	color:#5FB11C;
}

.left-side .special .special-products .product .product-info .prices .old-price{
	color:#949494;
	margin-left: 7px;
	text-decoration: line-through;
}

.left-side .special .special-products .product .product-info a.botton#buy{
	color:#949494;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 7px 0;
	transition: color 0.5s;
}

.left-side .special .special-products .product .product-info a.botton#buy:hover{
	color:#359e29;
	text-decoration: underline;
}

.main{
	width: 70%;
	display: inline-block;
	float: right;
	margin-top: 30px;
}

.main .search{
	width: 100%;
	font-size: 0;
	position: relative;
}

.main .search .dropdown{
	width: 24%;
	display: inline-block;
	border-top:2px solid #359e29;
	position: relative;
}

.main .search .dropdown i{
	background: #359e29;
	padding: 17px 15px;
	display: inline-block;
	font-style: normal;
	color:#fff;
	width: 100%;
	font-size: 14px;
	position: relative;
}

.main .search .dropdown i:before{
	content: '';
	background: url(../icons/icon-right-arow-white.svg) center no-repeat;
	background-size: 12px;
	width: 12px;
	height: 12px;
	position: absolute;
	top:50%;
	right: 15px;
	transform: translate(0,-50%) rotate(-90deg);
	transition: transform 0.3s;
}

.main .search .dropdown:hover i:before{
	transform: translate(0,-50%) rotate(90deg);
}

.main .search .dropdown ul{
	width: 100%;
	margin:0;
	padding: 0;
	position: absolute;
	top:100%;
	left: 0;
	display: none;
	font-size: 14px;
	background: #fff;
	list-style: none;
	z-index: 9999;
}

.main .search .dropdown ul li{
	width: 100%;
	border-bottom: 1px solid #C2C2C2;
	padding: 15px 20px;
	color: #333333;
	cursor: pointer;
}

.main .search .dropdown ul li:hover{
	background: #EFEFEF;
}

.main .search .dropdown ul li:last-child{
	border-bottom: none;
}

.main .search input.text-search{
	width: 100%;
	padding: 17px 20px;
	font-size: 14px;
	border:0;
	outline: 0;
	border:1px solid #359e29;
	color: #333333;
}

.main .search a.submit{
	position: absolute;
	top:50%;
	right:25px;
	transform: translate(0,-50%);
	width:25px;
	height: 25px;
	background: url(../icons/icon-search.svg) center no-repeat;
	background-size: 25px;
	font-size: 14px;
}

/*
		СЛАЙДЕР
*/

.main-slider{
	margin-top:30px;
	position: relative;
}

.main-slider>div{
	width: 100%;
}

.main-slider div img{
	width: 100%;
}

/*
		ТОВАРЫ НА ГЛАВНОЙ
*/

.products{
	margin-top: 30px;
	width: 100%;
}

.products.hide{
	display: none;
}

.products .title{
	font-size: 22px;
	font-weight: 300;
	line-height: 60px;
	color: #fff;
	background: #359e29;
	padding: 0 20px;
	border-bottom: 1px solid #E6E6E6;
}

.products .title-line{
	background: #359e29;
	padding: 0 20px;
	color:#fff;
	border-bottom: 1px solid #E6E6E6;
}

.products .title-line .title{
	font-size: 22px;
	font-weight: 300;
	display: inline-block;
	line-height: 60px;
	color:#fff;
}

.products .title-line ul{
	list-style: none;
	float: right;
	padding: 0;
	margin:0;
}

.products .title-line ul li{
	display: inline-block;
	padding: 0 15px;
	line-height: 60px;
	color: #FDFDFD8A;
	cursor: pointer;
}

.products .title-line ul li.active{
	color:#fff;
	cursor: default;
}

.products .title-line ul li:hover{
	color:#fff;
}

.products .products-content, .products .products-content-bonus{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: left;
	background: #fff;
}

.products .products-content .product, .products .products-content-bonus .product{
	flex: 0 0 auto;
  	width: 33.333%;
	padding: 15px 0;
	position: relative;
}

.products .products-content .product:nth-child(1n), .products .products-content-bonus .product:nth-child(1n){
	padding-right:10px;
	border-right: 1px solid #E6E6E6;
	border-bottom: 1px solid #E6E6E6;
}

.products .products-content .product:nth-child(2n), .products .products-content-bonus .product:nth-child(2n){
	padding-left:10px;
	padding-right:10px;
	border-right: 1px solid #E6E6E6;
	border-bottom: 1px solid #E6E6E6;
}

.products .products-content .product:nth-child(3n), .products .products-content-bonus .product:nth-child(3n){
	padding-left:10px;
	border-bottom: 1px solid #E6E6E6;
}

.products .products-content .product .image, .products .products-content-bonus .product .image{
	width: 250px;
	margin:0 auto;
	position: relative;
}

.products .products-content .product .image .options, .products .products-content-bonus .product .image .options{
	display: none;
	position: absolute;
	bottom:15%;
	left:50%;
	transform: translate(-50%,-50%);
	height: 25px;
	width: 100%;
	z-index: 5;
	opacity: 0;
	transition: opacity 0.4s;
}

.products .products-content .product .image:hover .options, .products .products-content-bonus .product .image:hover .options{
	display: block;
	opacity: 1;
}

.products .products-content .product .image .options a, .products .products-content-bonus .product .image .options a{
	width: 33px;
	height: 33px;
	background: #333;
	margin-right: 5px;
	display: inline-block;
}

.products .products-content .product .image .options a:hover, .products .products-content-bonus .product .image .options a:hover{
	background: #359e29;
}

.products .products-content .product .image .options a.view-product, .products .products-content-bonus .product .image .options a.view-product{
	background-image: url(../icons/icon-look.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.products .products-content .product .image .options a.add-to-whitelist, .products .products-content-bonus .product .image .options a.add-to-whitelist{
	background-image: url(../icons/icon-whitelist.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.products .products-content .product .image .options a:last-child, .products .products-content-bonus .product .image .options a:last-child{
	margin-right: 0;
}

.products .products-content .product .image img, .products .products-content-bonus .product .image img{
	width: 90%;
	margin: 0 auto;
	transition: filter 0.3s;
	height: 150px;
	object-fit: contain;
}

.products .products-content .product .image:hover img, .products .products-content-bonus .product .image:hover img{
	-moz-filter:blur(1.5px);
	-webkit-filter:blur(1.5px);
	-o-filter:blur(1.5px);
	-ms-filter:blur(1.5px);
	filter:blur(1.5px);
}

.products .products-content .product .name, .products .products-content-bonus .product .name{
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
	padding: 2px 0;
}

.products .products-content .product .name a, .products .products-content-bonus .product .name a{
	text-decoration: none;
	color:#1F1F1F;
}

.products .products-content .product .prices, .products .products-content-bonus .product .pricts{
	text-align: center;
	font-size: 16px;
	font-weight: 300;
}

.products .products-content .product .prices .price, .products .products-content-bonus .product .prices .price{
	color:#5BB112;
}

.products .products-content .product .prices .old_price, .products .products-content-bonus .product .prices .old-price{
	color:#878787;
	text-decoration: line-through;
	margin-left: 7px;
}

.products .products-content .product div, .products .products-content-bonus .product div{
	text-align: center;
}

.products .products-content .product div a.submit, .products .products-content-bonus .product div a.submit{
	padding: 10px 25px 11px;
	border: 1px solid #ddd;
	display: inline-block;
	text-decoration: none;
	color:#888;
	text-transform: uppercase;
	font-size:15px;
	font-weight: 300;
	margin-top:10px;
	letter-spacing: 0.7px;
	transition: background 0.5s, color 0.5s;
}

.products .products-content .product div a.submit[data-action="add-comparison"], .products .products-content-bonus .product div a.submit[data-action="add-comparison"]{
	font-size:13px;
	letter-spacing: 0.6px;
	padding: 7px 15px 9px;
}

.products .products-content .product div a.submit.active[data-action="add-comparison"], .products .products-content-bonus .product div a.submit.active[data-action="add-comparison"]{
	background:#359e29;
	color:#fff;
}

.products .products-content .product div a.submit:hover, .products .products-content-bonus .product div a.submit:hover{
	background:#359e29;
	color:#fff;
}

.products .products-content .product .sale-block, .products .products-content-bonus .product .sale-block{
	position: absolute;
	top:15px;
	right:10px;
	padding: 8px 10px;
	background: #359e29;
	color:#fff;
	text-transform: uppercase;
	border-radius: 4px;
	font-size:12px;
	letter-spacing: 1px;
}





/*
		ФУТЕР
*/

.footer{
	width: 100%;
	margin-top: 30px;
	background: #333333;
}

.footer .prefooter{
	background-color: #212121;
	height: 100px;
}

.footer .prefooter .wrap{
	background-image: url(../icons/icon-email-subscribe.svg);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 60px;
}

.footer .prefooter .message{
	display: inline-block;
	color:#fff;
	font-size: 22px;
	line-height: 100px;
	padding-left: 100px;
	text-transform: uppercase;
}

.footer .prefooter .input-subscribe{
	display: inline-block;
	float: right;
	line-height: 100px;
}

.footer .prefooter .input-subscribe input.e-mail{
	width: 400px;
	padding: 15px 20px;
	font-size: 14px;
	border:none;
	outline: none;
	color: #222222;
}

.footer .prefooter .input-subscribe input.subscribe{
	width: 150px;
	padding: 15px 10px;
	font-size: 14px;
	text-align: center;
	color:#fff;
	background: #359e29;
	border:none;
	outline: none;
	text-transform: uppercase;
	font-weight: 300;
	margin-left: -4px;
	letter-spacing: 0.5px;
}

.footer .prefooter .input-subscribe input.subscribe:hover{
	color:#212121;
}

.footer .footer-main{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 90%;
	margin:0 auto;
	padding: 25px 0;
}

.footer .footer-main .footer-main-info{
	flex:1.5;
	padding-right: 30px;
	border-right: 1px solid #454545;
}

.footer .footer-main .footer-main-info .logo{
	width: 100%;
}

.footer .footer-main .footer-main-info .logo img{
	width:40px;
	height: 40px;
	display: inline-block;
}

.footer .footer-main .footer-main-info .logo-text{
	display: inline-block;
	vertical-align: bottom;
	line-height: 40px;
	font-size: 24px;
	color:#fff;
	text-transform: uppercase;
	margin-left: 5px;
}

.footer .footer-main .footer-main-info .logo-text span{
	color:#359e29;
}

.footer .footer-main .footer-main-info .info{
	color:#B2B2B2;
	text-align: justify;
	font-size: 14px;
	font-weight: 300;
	margin:20px 0;
	line-height: 20px;
}

.footer .footer-main .footer-main-info .social{
	text-align: center;
}

.footer .footer-main .footer-main-info .social a{
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: inline-block;
}

.footer .footer-main .footer-main-info .social a div{
	width: 35px;
	height: 35px;
	transition: all 0.4s;
	cursor: pointer;
}

.footer .footer-main .footer-main-info .social a.vk div{
	background-image: url(../icons/icon-vk.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.footer .footer-main .footer-main-info .social a.vk:hover div{
	background-image: url(../icons/icon-vk-white.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-color:#359e29;
}

.footer .footer-main .footer-main-info .social a.fb div{
	background-image: url(../icons/icon-fb.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.footer .footer-main .footer-main-info .social a.fb:hover div{
	background-image: url(../icons/icon-fb-white.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-color:#359e29;
}

.footer .footer-main .footer-main-info .social a.instagram div{
	background-image: url(../icons/icon-instagram.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.footer .footer-main .footer-main-info .social a.instagram:hover div{
	background-image: url(../icons/icon-instagram-white.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-color:#359e29;
}

.footer .footer-main ul.footer-main-category{
	flex:1;
	margin:0;
	padding: 0;
	list-style: none;
	padding: 0 20px;
}

.footer .footer-main ul.footer-main-category .title{
	color:#fff;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 15px;
}

.footer .footer-main ul.footer-main-category a{
	text-decoration: none;
}

.footer .footer-main ul.footer-main-category a li{
 	color:#B2B2B2;
 	font-size: 17px;
 	font-weight: 300;
 	line-height: 24px;
 	transition: color 0.3s;
}

.footer .footer-main ul.footer-main-category a li:hover{
	color:#359e29;
}

.footer .footer-main ul.footer-main-account{
	flex:1;
	margin:0;
	padding: 0;
	list-style: none;
	padding: 0 20px;
}


.footer .footer-main ul.footer-main-account .title{
	color:#fff;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 15px;
}

.footer .footer-main ul.footer-main-account a{
	text-decoration: none;
}

.footer .footer-main ul.footer-main-account a li{
 	color:#B2B2B2;
 	font-size: 17px;
 	font-weight: 300;
 	line-height: 24px;
 	transition: color 0.3s;
}

.footer .footer-main ul.footer-main-account a li:hover{
	color:#359e29;
}

.footer .footer-main ul.footer-main-contacts{
	flex:1;
	margin:0;
	padding: 0;
	list-style: none;
	padding: 0 20px;
}

.footer .footer-main ul.footer-main-contacts .title{
	color:#fff;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 15px;
}

.footer .footer-main ul.footer-main-contacts li{
 	color:#B2B2B2;
 	font-size: 17px;
 	font-weight: 300;
 	line-height: 24px;
}

.footer .footer-main ul.footer-main-contacts li img{
	width: 16px;
	height: 16px;
	margin-right: 15px;
	vertical-align: inherit;
}

.copy{
	width: 90%;
	margin:10px auto 0 auto;
	border-top: 1px solid #212121;
	padding: 25px 0;
}

.copy .copyright{
	font-size: 22px;
	text-transform: uppercase;
	color:#fff;
	font-weight: 300;
	display: inline-block;
}

.copy .pays{
	float: right;
	display: inline-block;
}

.copy .pays img{
	height: 20px;
	margin-right: 5px;
	filter: grayscale(90%);
	transition: filter 0.4s;
}

.copy .pays img:hover{
	filter: grayscale(0%)
}


/*
		КОНТАКТЫ
*/

 .contacts-icons{
	width: 100%;
	margin:0 auto;
	display: flex;
	flex-direction: row;
	background: #fff;
}

.contacts-icons .contact-item{
	flex:1;
	width: 20%;
	text-align: center;
	padding: 25px 0
}

.contacts-icons .contact-item .contact-item-image{
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	background-color:#359e29;
	width: 75px;
	height: 75px;
	margin:0 auto;
	background-size: 40px;
	border:3px solid #359e29;
	transition: background-color 0.5s, width 0.5s, height 0.5s;
}

.contacts-icons .contact-item:nth-child(1) .contact-item-image{
	background-image: url(../icons/icon-mail.svg);
}

.contacts-icons .contact-item:nth-child(2) .contact-item-image{
	background-image: url(../icons/icon-phone.svg);
}

.contacts-icons .contact-item:nth-child(3) .contact-item-image{
	background-image: url(../icons/icon-skype-2.svg);
}

.contacts-icons .contact-item:nth-child(4) .contact-item-image{
	background-image: url(../icons/icon-telegram-2.svg);
}

.contacts-icons .contact-item:nth-child(5) .contact-item-image{
	background-image: url(../icons/icon-viber-2.svg);
}

.contacts-icons .contact-item:hover .contact-item-image{
	background-color:transparent;
}

.contacts-icons .contact-item:nth-child(1):hover .contact-item-image{
	background-image: url(../icons/icon-mail-hover.svg);
}

.contacts-icons .contact-item:nth-child(2):hover .contact-item-image{
	background-image: url(../icons/icon-phone-hover.svg);
}

.contacts-icons .contact-item:nth-child(3):hover .contact-item-image{
	background-image: url(../icons/icon-skype-2-hover.svg);
}

.contacts-icons .contact-item:nth-child(4):hover .contact-item-image{
	background-image: url(../icons/icon-telegram-2-hover.svg);
}

.contacts-icons .contact-item:nth-child(5):hover .contact-item-image{
	background-image: url(../icons/icon-viber-2-hover.svg);
}

.contacts-icons .contact-item .contact-item-name{
	line-height: 25px;
	color:#B2B2B2;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 400;
	margin-top:10px;
}

.contacts-icons .contact-item .contact-item-value{
	margin-top: 10px;
	color:#292929;
}

.contacts-icons .contact-item .contact-item-value div{
	font-size: 13px;
	line-height: 18px;
}

.feed-back{
	width: 100%;
	background: #fff;
	padding:15px 0;
}

.feed-back .line{
	width: 60%;
	margin:0 auto;
	margin-bottom: 10px;
}

.feed-back .line>div{
	font-size: 18px;
	color:#B2B2B2;
	line-height: 26px;
}

.feed-back .line input{
	width: 100%;
	padding:10px 15px;
	border:1px solid #B2B2B2;
	font-size: 16px;
	font-weight: 300;
	color:#212121;
}

.feed-back .line textarea{
	width: 100%;
	padding:10px 15px;
	border:1px solid #B2B2B2;
	font-size: 16px;
	font-weight: 300;
	color:#212121;
}

.feed-back .button{
	text-align: center;
}

.feed-back .button input[type="submit"]{
	display: inline-block;
	padding: 15px 15px;
	background:#359e29;
	color:#fff;
	border:0;
	outline: 0;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	cursor: pointer;
}

.feed-back .button input[type="submit"]:hover{
	background: #359e2999;
}

.main-info{
	width: 100%;
	margin-top: 0px;
	background: #fff;
	padding: 3px 20px 25px 20px;
	color:#212121;
	line-height: 20px;
	color:rgba(0,0,0,0.7);
}

.main-info.warranty{
	line-height: 22px;
}

.main-info.about{
	padding: 25px 20px 25px 20px;
}

.main-info .line{
	width: 100%;
	height: 1px;
	background: rgba(0,0,0,0.1);
	margin:15px auto;
}

.main-info span.b{
	font-size: 16px;
	color:rgba(0,0,0,0.8);
	font-weight: 300;
	display: block;
}

.main-info span.i{
	font-size: 15px;
	color:rgba(0,0,0,0.9);
	font-weight: 300;
	font-style: italic;
	display: block;
}

.warranty-icons{
	width: 100%;
	margin:0 auto;
	display: flex;
	flex-direction: column;
}

.warranty-icons .warranty-item{
	flex:1;
	width: 100%;
	padding: 25px 0;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	background: #fff;
}

.warranty-icons .warranty-item:first-child{
	margin-bottom: 15px;
}

.warranty-icons .warranty-item .block-image{
	width: 24%;
	flex:0.3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.warranty-icons .warranty-item .warranty-item-image{
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	background-color:#359e29;
	width: 75px;
	height: 75px;
	margin:0 auto;
	background-size: 40px;
	border:3px solid #359e29;
	transition: background-color 0.5s, width 0.5s, height 0.5s;
}

.warranty-icons .warranty-item:nth-child(1) .warranty-item-image{
	background-image: url(../icons/icon-quality-white.svg);
}

.warranty-icons .warranty-item:nth-child(2) .warranty-item-image{
	background-image: url(../icons/icon-repair-white.svg);
}

.warranty-icons .warranty-item:hover .warranty-item-image{
	background-color:transparent;
}

.warranty-icons .warranty-item:nth-child(1):hover .warranty-item-image{
	background-image: url(../icons/icon-quality.svg);
}

.warranty-icons .warranty-item:nth-child(2):hover .warranty-item-image{
	background-image: url(../icons/icon-repair.svg);
}

.warranty-icons .warranty-item .warranty-item-info{
	flex:1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	float: right;
	padding-right:15px;
}

.warranty-icons .warranty-item .warranty-item-name{
	line-height: 25px;
	color:rgba(0,0,0,0.5);
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 400;
	width: 74%;
	transition: color 0.5s;
	margin-bottom: 5px;
	padding: 0 10px 8px 0px;
	border-bottom: 1px solid rgba(0,0,0,0.5);
}

.warranty-icons .warranty-item:hover .warranty-item-name{
	color:rgba(0,0,0,0.7);
}

.warranty-icons .warranty-item .warranty-item-text{
	line-height: 25px;
	color:rgba(0,0,0,0.7);
	font-size: 14px;
	font-weight: 400;
	width: 74%;
	transition: color 0.5s;
}

.warranty-icons .warranty-item:hover .warranty-item-text{
	color:rgba(0,0,0,0.8);
}

.warranty-icons span.text{
	margin:15px 10px;
	font-size: 16px;
	color:rgba(0,0,0,0.6);
}

.service-centers{
	background: #fff;
	margin-top:10px;
	color:rgba(0,0,0,0.6);
}

.service-centers .service-centers-botton{
	font-size: 20px;
	padding: 20px;
	position: relative;
	cursor: pointer;
}

.service-centers .service-centers-botton:before{
	position: absolute;
	top:50%;
	right:30px;
	transform: translate(0,-50%);
	width: 15px;
	height: 15px;
	content: '';
	background-image: url(../icons/icon-chevron-down-grey.svg);
	background-size: 15px;
	background-repeat: no-repeat;
	transition: transform 0.4s;
}

.service-centers .service-centers-botton.active:before{
	transform: translate(0,-50%) rotate(180deg);
}

.service-centers .service-centers-content{
	display: none;
	padding: 10px 30px 10px 20px;
	line-height: 21px;
}

.service-centers .service-centers-content table{
	border-collapse: collapse;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	line-height: 30px;
}

.service-centers .service-centers-content table tr{

	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.warranty-centers{
	background: #fff;
	margin-top:10px;
	color:rgba(0,0,0,0.6);
}

.warranty-centers .warranty-centers-botton{
	font-size: 20px;
	padding: 20px;
	position: relative;
	cursor: pointer;
}

.warranty-centers .warranty-centers-botton:before{
	position: absolute;
	top:50%;
	right:30px;
	transform: translate(0,-50%);
	width: 15px;
	height: 15px;
	content: '';
	background-image: url(../icons/icon-chevron-down-grey.svg);
	background-size: 15px;
	background-repeat: no-repeat;
	transition: transform 0.4s;
}

.warranty-centers .warranty-centers-botton.active:before{
	transform: translate(0,-50%) rotate(180deg);
}

.warranty-centers .warranty-centers-content{
	display: none;
	padding: 10px 30px 10px 20px;
	line-height: 21px;
}


.services{
	width: 100%;
	padding: 25px 15px;
	background: #fff;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.services .item{
	flex: 1;
	text-align: center;
	margin-right:15px;
}

.services .item .image{
	width: 30%;
	margin:0 auto;
}

.services .item .image img{
	width: 100%;
}

.services .item .name{
	margin-top: 20px;
	font-size: 18px;
	color:rgba(0,0,0,0.6);
	font-weight: 300;
}



/* КАРТОЧКА ТОВАРА */



.product-main{
	display: flex;
	flex-direction: row;
	width: 100%;
	background: #fff;
	padding: 25px;
}

.product-main .product-image-block{
	flex:1 0 40%;
}

.product-main .product-image{

}

.product-main .product-image img{
	width: 100%;
	padding: 30px;
	border:1px solid #e6e6e6;
	max-width: 350px;
	height:300px;
	object-fit: contain;
}

.product-main .product-image-slider{
	width: 100%;
	margin:15px 5px;
	max-width: 350px;
}

.product-main .product-image-slider div{

}

.product-main .product-image-slider div img{
	width: 100%;
	cursor: pointer;
	height: 100px;
	object-fit: contain;
}

.product-main .product-info{
	flex:1 0 60%;
	margin-left:20px;
}

.product-main .product-info .product-info-name{
	padding: 15px 0 0 0;
	font-size: 20px;
	color: #292929;
	letter-spacing: 0.5px;
}

.product-main .product-info .product-line{
	padding:0 20px;
	background: #e6e6e6;
	width: 100%;
	height: 1px;
	margin-bottom: 15px;
	margin-top: 15px;
}

.product-main .product-info .product-info-desc{
	line-height: 22px;
	font-size: 15px;
	color:#808080;
	font-weight: 300;
}

.product-main .product-info .product-info-desc span{
	line-height: 22px;
	font-size: 16px;
	color:#292929;
	font-weight: 300;
}

.product-main .product-info .product-prices{
	width: 100%;
}

.product-main .product-info .product-prices span.old_price{
	color:#808080;
	text-decoration: line-through;
	font-weight: 300;
	font-size: 20px;
	margin-right: 10px;
}

.product-main .product-info .product-prices span.new_price{
	color: #5FB11C;
	font-weight: 300;
	font-size: 20px;
}

.product-main .product-info .product-prices a.sale_button_buy {
	display: inline-block;
	font-size: 14px;
	padding: 7px;
	background: #5FB11C;
	color: #fff;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	margin-left: 15px;

	animation: radial-pulse 1s infinite;

	transform: scale(1);

	transition: all 0.3s;
}

@keyframes radial-pulse {
	0% {
		box-shadow: 0 0 0 0px rgba(96, 177, 28, 0.5);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(96, 177, 28, 0);
	}
}

.product-main .product-info .product-prices a.sale_button_buy:hover{
	text-decoration: none;
	background: #529D15;
	transform: scale(1.1);
}

.product-main .product-info  .buy-block{
	width: 100%;
	margin-top:15px;
}

.product-main .product-info  .buy-block input.count{
	float: left;
	margin-right: 5px;
	height: 36.4px;
	width: 45px;
	text-align: center;
	margin-left: 0px;
	border:none;
	outline: none;
	border:1px solid #808080;
	font-size: 16px;
}

.product-main .product-info  .buy-block a.add-to-cart{
	padding: 10px 35px;
	text-align: center;
	margin:0 0 0 2px;
	background: #262626;
	text-decoration: none;
	color:#fff;
	font-weight: 300;
	display: inline-block;
	text-transform: uppercase;
	vertical-align: top;
	transition: background 0.4s;
}

.product-main .product-info  .buy-block a.add-to-cart:hover{
	background: #5bb112;
}

.product-main .product-info  .buy-block a.add-to-white-list{
	text-align: center;
	margin:0 0 0 5px;
	background: #5bb112 url(../icons/icon-whitelist.svg) center no-repeat;
	background-size: 23px;
	display: inline-block;
	width: 37px;
	height: 37px;
}
.product-main .product-info div a.submit[data-action="add-comparison"]{
	padding: 7px 25px 7px;
	border: 1px solid #ddd;
	display: inline-block;
	text-decoration: none;
	color: #888;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 300;
	margin-top: 10px;
	letter-spacing: 0.7px;
	transition: background 0.5s, color 0.5s;
}

.product-desc{
	margin-top: 30px;
}

.product-desc .product-desc-menu{
	width: 100%;
}

.product-desc .product-desc-menu ul{
	list-style: none;
	padding: 0;
	margin:0;
}

.product-desc .product-desc-menu ul li{
	display: inline-block;
	padding: 20px 15px;
	color:rgba(0,0,0,0.6);
	transition: color 0.4s;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 15px;
	cursor: pointer;
}

.product-desc .product-desc-menu ul li.active, .product-desc .product-desc-menu ul li:hover{
	color:rgba(0,0,0,0.9);
	border-bottom: 1px solid rgba(0,0,0,0.9);
}

.product-desc .product-desc-block{
	background: #fff;
	padding: 25px 15px;
	color: rgba(0,0,0,0.6);
	line-height: 21px;
}

.product-desc .product-desc-block table{
	width: 100%;
	padding: 15px;
	border-collapse: collapse;
}

.product-desc .product-desc-block table tr td{
	width: 49%;
	padding: 10px 10px;
	border:1px solid rgba(0,0,0,0.15);
}
.product-desc .product-desc-block table tr th.colspan{
	padding: 10px;
	font-weight: 400;
	font-size: 16px;
	background: rgba(0,0,0,0.1);
	color: rgba(0,0,0,0.55);
}

/*
		КАТЕГОРИЯ
*/

h1.title-category-product{
	width: 100%;
	display: block;
	position: relative;
	font-size: 22px;
	padding: 20px 60px 20px 0;
}

h1.title-category-product a{
	color:rgba(0,0,0,0.6);
	text-decoration: none;
}

h1.title-category-product .view-type{
	position: absolute;
	top:50%;
	right:0;
	transform: translate(0,-50%);
}

h1.title-category-product .view-type .type-row, h1.title-category-product .view-type .type-column{
	background: rgba(0,0,0,0.07);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
	cursor: pointer;
}

h1.title-category-product .view-type .type-row{
	background: rgba(0,0,0,0.07) url(../icons/icon-rows.svg) center no-repeat;
	background-size: 18px;
}

h1.title-category-product .view-type .type-row.active{
	background: rgba(0,0,0,0.15) url(../icons/icon-rows.svg) center no-repeat;
	background-size: 18px;
	cursor: auto;
}

h1.title-category-product .view-type .type-column{
	background: rgba(0,0,0,0.07) url(../icons/icon-column.svg) center no-repeat;
	background-size: 17px;
}

h1.title-category-product .view-type .type-column.active{
	background: rgba(0,0,0,0.15) url(../icons/icon-column.svg) center no-repeat;
	background-size: 17px;
	cursor: auto;
}

.category-search{
	width: 100%;
}

.category-search input.search-text{
	width: 74%;
	padding: 15px 25px;
	margin-bottom: 20px;
	background: #fff;
	border:1px solid #359e29;
	color:rgba(0,0,0,0.65);
	font-size: 15px;
	display: inline-block;
	position: relative;
}

.category-search input.search-text:after {
	content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translate(0,-50%);
    width: 25px;
    height: 25px;
    background: #000;
    background-size: 25px;
    font-size: 14px;
    z-index: 5;
}

.category-search a.category-filters{
	width: 25%;
	display: inline-block;
	text-transform: uppercase;
	color:#fff;
	text-decoration: none;
	background: #359e29;
	padding: 15px 25px;
	text-align: center;
	font-size: 16px;
	font-weight: 300;
}

.category-search select.sub-catalogs{
	width: 25%;
	display: inline-block;
	text-transform: uppercase;
	color:rgba(0,0,0,0.6);
	text-decoration: none;
	font-size: 14px;
	padding: 15px 22px 15px 2px;
	font-weight: 300;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url(../icons/icon-chevron-down.svg) center right 5px no-repeat;
	background-size: 14px;
	outline: none;
	border:1px solid #359e29;
}

.category-full{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	background: #fff;
}



/* COLUMN */


.category-full .product-column{
	flex:0 0 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 10px;
	border-bottom: 2px solid rgba(0,0,0,0.15);
}

.category-full .product-column:last-child{
	margin-bottom: 0;
}

.category-full .product-column .image{
	flex:0.3;
	padding: 10px;
	position: relative;
	text-align: center;
}

.category-full .product-column .image .options{
	display: none;
	position: absolute;
	bottom:15%;
	left:50%;
	transform: translate(-50%,-50%);
	height: 25px;
	width: 100%;
	z-index: 5;
	opacity: 0;
	transition: opacity 0.4s;
}

.category-full .product-column .image:hover .options{
	display: block;
	opacity: 1;
}

.category-full .product-column .image .options a{
	width: 33px;
	height: 33px;
	background: #333;
	margin-right: 5px;
	display: inline-block;
}

.category-full .product-column .image .options a:hover{
	background: #359e29;
}

.category-full .product-column .image .options a.view-product{
	background-image: url(../icons/icon-look.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.category-full .product-column .image .options a.add-to-whitelist{
	background-image: url(../icons/icon-whitelist.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.category-full .product-column .image .options a:last-child{
	margin-right: 0;
}


.category-full .product-column .image img{
	width: 85%;
	margin:0 auto;
	height: 150px;
	object-fit: contain;
}

.category-full .product-column .image:hover img {
    -moz-filter: blur(1.5px);
    -webkit-filter: blur(1.5px);
    -o-filter: blur(1.5px);
    -ms-filter: blur(1.5px);
    filter: blur(1.5px);
}

.category-full .product-column .product-info{
	flex:1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.category-full .product-column .product-info .name{
	font-size: 18px;
	font-weight: 300;
	padding: 7px 0;
}


.category-full .product-column .product-info .name a{
	text-decoration: none;
	color:#949494;
	transition: color 0.5s;
}

.category-full .product-column .product-info .name a:hover{
	color:#359e29;
}

.category-full .product-column .product-info .prices{
	width: 100%;
	font-weight: 300;
	font-size: 16px;
}

.category-full .product-column .product-info .prices .new-price{
	float: left;
	color:#5FB11C;
}

.category-full .product-column .product-info .prices .old-price{
	color:#949494;
	margin-left: 7px;
	text-decoration: line-through;
}

.category-full .product-column .product-info a.botton#buy{
	color:#949494;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 350;
	letter-spacing: 0.5px;
	padding: 7px 0;
	transition: color 0.5s;
	margin-left: 15px;
}

.category-full .product-column .product-info a.botton#buy:hover{
	color:#359e29;
	text-decoration: underline;
}

.category-full .product-column .product-info a.botton[data-action="add-comparison"]{
	color:#949494;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 7px 0;
	transition: color 0.5s;
	display: inline-block;
	width: max-content;
}

.category-full .product-column .product-info a.botton.active[data-action="add-comparison"]{
	color:#359e29;
}

.category-full .product-column .product-info a.botton[data-action="add-comparison"]:hover{
	color:#359e29;
	text-decoration: underline;
}



/* ROW */



.category-full .product{
	flex: 0 0 auto;
  	width: 33.333%;
	padding: 15px 0;
	position: relative;
}

.category-full .product:nth-child(1n){
	padding-right:10px;
	border-right: 1px solid #E6E6E6;
	border-bottom: 1px solid #E6E6E6;
}

.category-full .product:nth-child(2n){
	padding-left:10px;
	padding-right:10px;
	border-right: 1px solid #E6E6E6;
	border-bottom: 1px solid #E6E6E6;
}

.category-full .product:nth-child(3n){
	padding-left:10px;
	border-bottom: 1px solid #E6E6E6;
}

.category-full .product .image{
	width: 250px;
	margin:0 auto;
	position: relative;
}

.category-full .product .image .options{
	display: none;
	position: absolute;
	bottom:15%;
	left:50%;
	transform: translate(-50%,-50%);
	height: 25px;
	width: 100%;
	z-index: 5;
	opacity: 0;
	transition: opacity 0.4s;
}

.category-full .product .image:hover .options{
	display: block;
	opacity: 1;
}

.category-full .product .image .options a{
	width: 33px;
	height: 33px;
	background: #333;
	margin-right: 5px;
	display: inline-block;
}

.category-full .product .image .options a:hover{
	background: #359e29;
}

.category-full .product .image .options a.view-product{
	background-image: url(../icons/icon-look.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.category-full .product .image .options a.add-to-whitelist{
	background-image: url(../icons/icon-whitelist.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.category-full .product .image .options a:last-child{
	margin-right: 0;
}

.category-full .product .image img{
	width: 90%;
	transition: filter 0.3s;
	margin: 0 auto;
	height: 150px;
	object-fit: contain;
}

.category-full .product .image:hover img{
	-moz-filter:blur(1.5px);
	-webkit-filter:blur(1.5px);
	-o-filter:blur(1.5px);
	-ms-filter:blur(1.5px);
	filter:blur(1.5px);
}

.category-full .product .name{
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
	padding: 8px 0;
}

.category-full .product .name a{
	text-decoration: none;
	color:#1F1F1F;
}

.category-full .product .prices{
	text-align: center;
	font-size: 16px;
	font-weight: 300;
}

.category-full .product .prices .price{
	color:#5BB112;
}

.category-full .product .prices .old_price{
	color:#878787;
	text-decoration: line-through;
	margin-left: 7px;
}

.category-full .product div{
	text-align: center;
}

.category-full .product div a.submit{
	padding: 10px 25px 11px;
	border: 1px solid #ddd;
	display: inline-block;
	text-decoration: none;
	color:#888;
	text-transform: uppercase;
	font-size:15px;
	font-weight: 300;
	margin-top:10px;
	letter-spacing: 0.7px;
	transition: background 0.5s, color 0.5s;
}

.category-full .product div a.submit[data-action="add-comparison"]{
	font-size:13px;
	letter-spacing: 0.6px;
	padding: 7px 15px 9px;
}

.category-full .product div a.submit.active[data-action="add-comparison"]{
	background:#359e29;
	color:#fff;
}

.category-full .product div a.submit:hover{
	background:#359e29;
	color:#fff;
}

.category-full .product .sale-block{
	position: absolute;
	top:15px;
	right:10px;
	padding: 8px 10px;
	background: #359e29;
	color:#fff;
	text-transform: uppercase;
	border-radius: 4px;
	font-size:12px;
	letter-spacing: 1px;
}

.comparison{
    position: fixed;
    bottom: 0;
    right: 5%;
    line-height: 39px;
    background: #359e29e0;
    z-index: 12;
    padding: 0 60px 0 18px;
    color: #fff;
    cursor: pointer;
    transition: -moz-box-shadow 0.3s, -webkit-box-shadow 0.3s, box-shadow 0.3s;
    display: none;
}

.comparison .remove-all-comparison{
	position: absolute;
	top:50%;
	right:18px;
	transform: translate(0, -50%);
	background: url(../icons/icon-basket.svg) center no-repeat;
	background-size: 22px;
	width: 22px;
	height: 22px;
}

.comparison.active{
	display: block;
}

.comparison:hover{
	-moz-box-shadow:0 0 15px #359e29e0;
	-webkit-box-shadow:0 0 15px #359e29e0;
	box-shadow:0 0 15px #359e29e0;
}










.search-page-head{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.search-page-head>div:first-child{
	flex:0 0 20%;
}

.search-page-head>div:first-child a{
	display: block;
	line-height: 50px;
	background: #359e29;
	color:#fff;
	font-size: 16px;
	padding: 0 5px;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
}

.search-page-head>div:last-child{
	flex:0 0 79%;
	position: relative;
}

.search-page-head .search-page-head__input input{
	width: 100%;
	line-height: 47px;
	border:1px solid rgb(181, 181, 181);
	color:rgb(85, 85, 85);
	padding: 0 15px;
}

.search-page-head a.search-page-head__button{
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translate(0,-50%);
	width: 25px;
	height: 25px;
	background: url(../icons/icon-search.svg) center no-repeat;
	background-size: 25px;
	font-size: 14px;
	cursor: pointer;
}

ul.breadcrumbs_list {
    background: #fff;
    display: flex;
    list-style: none;
    padding: 12px 16px;
    margin: 0 0 12px 0;
}

ul.breadcrumbs_list li.breadcrumbs_list__item {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

ul.breadcrumbs_list li.breadcrumbs_list__item::after {
    content: "";
    background: url(/design/icons/icon-black-right-arrow.svg) center no-repeat;
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: 12px;
}

ul.breadcrumbs_list li.breadcrumbs_list__item:last-child::after {
    display: none;
}

ul.breadcrumbs_list li.breadcrumbs_list__item:last-child {
    padding-right: 0;
    margin-right: 0;
}

ul.breadcrumbs_list li.breadcrumbs_list__item a[href] {
    color: #359e29;
    text-decoration: none;
}
