@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("reset.css");
/* @group Общий стиль */
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font: 15px Helvetica, sans-serif;
  color: #1d1d1b;
  background-color: #f7f7f7;
}

p {
  margin-bottom: 15px;
}

ul.textpage, ol.textpage {
  margin-bottom: 15px;
}
ul.textpage li, ol.textpage li {
  margin-left: 40px;
}

h1 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: normal;
}

h2 {
  clear: both;
  color: #000000;
  font-size: 32px;
  font-weight: 400;
}
h2.textpage {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

h3 {
  font-size: 16px;
  font-weight: normal;
}

a {
  color: #0095eb;
}
a:hover {
  color: #fc750b;
}

.section-title {
  margin-bottom: 24px;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.count-circle {
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 13px;
  color: #ffffff;
  background: #02a709;
}

.not-in-stock {
  font-size: 13px;
  color: #b3b3b3;
}

.count-in-brackets {
  font-size: 25px;
  color: #b3b3b3;
}

.index-top-wrapper {
  flex: 0 0 auto;
}

/* Стилизация <input type="number"> */
/* Для Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

/* Для Firefox */
input[type=number] {
  -moz-appearance: textfield;
  border: 1px solid #f1f1f1;
}

/* @end — Общий стиль */
#menu .sub-items,
#account .sub-items,
#account-mob .sub-items {
  width: 200px;
  padding: 10px;
  line-height: 33px;
  display: none;
  flex-wrap: wrap;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 18px 20px 0 rgba(0, 0, 0, 0.2);
  background: #ffffff;
}
#menu .sub-items .sub-item,
#account .sub-items .sub-item,
#account-mob .sub-items .sub-item {
  flex-basis: 100%;
  margin: 5px 0;
  line-height: 1.3;
  padding-left: 20px;
  color: #1d1d1b;
  list-style: none;
}
#menu .sub-items .sub-item a,
#account .sub-items .sub-item a,
#account-mob .sub-items .sub-item a {
  display: block;
  color: #1d1d1b;
  text-decoration: underline;
}
#menu .sub-items .sub-item a:hover,
#account .sub-items .sub-item a:hover,
#account-mob .sub-items .sub-item a:hover {
  text-decoration: none;
}
#menu .sub-items .sub-item:hover,
#account .sub-items .sub-item:hover,
#account-mob .sub-items .sub-item:hover {
  background: #ffffff;
}

#index-top {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex: 0 1 auto;
}

#inner-top {
  flex: 0 1 auto;
}

#main {
  flex: 1 0 auto;
  margin: 0 auto 45px;
}

#content.advert {
  flex-basis: 75.5%;
}
#content.advert .tiny_products li {
  flex-basis: 33.3%;
}
#content.sidebar-on {
  display: flex;
  flex-wrap: wrap;
}
#content.sidebar-on #sidebar {
  flex-basis: 260px;
  display: block;
}
#content.sidebar-on .tiny_products {
  flex-basis: 75.5%;
}
#content.sidebar-on .tiny_products li {
  flex-basis: 33.3%;
}

#left {
  flex-basis: 260px;
}

#sidebar {
  margin: 0 auto 0 0;
  display: none;
}

/* @group Пустая корзина, товар не найден и прочее */
.not-found {
  width: 100%;
  font-size: 30px;
  text-align: center;
}
.not-found .image-not-found {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.not-found .image-not-found.product-not-found {
  background: url(../images/not-found.svg) no-repeat center center;
  background-size: contain;
}
.not-found .image-not-found.empty-cart-img {
  background: url(../images/empty-cart.svg) no-repeat center center;
  background-size: contain;
}

/* @end — Пустая корзина, товар не найден и прочее */
.button {
  width: 100%;
  margin: 10px 0;
  padding: 15px;
  display: block;
  border: 1px solid #02a709;
  background: #02a709;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  transition-duration: 0.4s;
  border-radius: 5px;
  cursor: pointer;
  cursor: hand;
}
.button:not(.button-white):hover {
  background-color: #028e08;
}
.button.button-white {
  background: transparent;
  color: #02a709;
}

.logo-login {
  margin: 100px auto 30px;
  text-align: center;
}

.order-thanks {
  padding-left: 8px;
}
.order-thanks p {
  margin: 35px 0;
  line-height: 20px;
}
.order-thanks a {
  color: #02a709;
}
.order-thanks a.tel {
  color: #1d1d1b;
}

.float-btn-block {
  position: fixed;
  top: 102px;
  left: 2px;
  z-index: 1;
  display: none;
  flex-direction: column;
  padding: 10px;
}
.float-btn-block.not-catalog {
  position: absolute;
}
.float-btn-block .fl-btn {
  width: 30px;
  height: 30px;
  margin: 10px 5px;
  cursor: pointer;
  cursor: hand;
}
.float-btn-block .fl-menu-btn {
  background: url(../images/icon-menu.svg) no-repeat center center;
  background-size: contain;
}
.float-btn-block .fl-filter-btn {
  background: url(../images/icon-filter.svg) no-repeat center center;
  background-size: contain;
}
.float-btn-block .fl-sort-btn {
  background: url(../images/icon-sort.svg) no-repeat center center;
  background-size: contain;
}

/* Это активные стили, но теги с ними не используются.
Данные стили перешли от базовой Симплы,
их нужно переопределить и настроить при использовании */
/* @group Форма отправки обратной связи */
.feedback_form {
  background-color: #f3f3f3;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-top: 20px;
  width: 90%;
  overflow: hidden;
}

.feedback_form .input_captcha, .register_form .input_captcha {
  float: left;
  width: 150px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 15px;
  height: 36px;
}

.feedback_form .captcha, .register_form .captcha {
  float: left;
  display: block;
  margin-top: 15px;
  margin-right: 10px;
}

.feedback_form .button_send {
  font-size: 18px;
  float: right;
  margin-top: 25px;
}

/* @end — Форма отправки комментария */
/* Сообщение с ошибкой */
.message_error {
  clear: both;
  height: 36px;
  padding: 10px 20px;
  margin-bottom: 15px;
  margin-top: 10px;
  overflow: hidden;
  color: red;
  background-color: #ffcaca;
  border: 1px dotted #ff4545;
}

/* @end */
@media (max-width: 1100px) {
  #content.sidebar-on .tiny_products {
    flex-basis: 68%;
  }
  #content.sidebar-on .tiny_products li {
    flex-basis: 50%;
  }
}
@media (max-width: 830px) {
  #content.sidebar-on .tiny_products {
    flex-basis: 68%;
  }
  #content.sidebar-on .tiny_products li {
    flex-basis: 100%;
  }
}
@media (max-width: 800px) {
  .invisible-on-mobile {
    display: none !important;
  }

  #content.advert,
  #main.index {
    display: none;
  }

  #index-top {
    margin-top: 0;
    padding: 0;
    display: block;
  }

  #content.sidebar-on .tiny_products {
    flex-basis: 100%;
  }
  #content.sidebar-on #sidebar {
    position: absolute;
    top: 120px;
    left: 0;
    z-index: 2;
    width: 100%;
  }

  .float-btn-block {
    display: flex;
  }
}
/* @group Выбор валюты */
/*
#currencies{
	margin-bottom:15px;
}
#currencies ul{
	margin-top: 10px;
}
#currencies ul li{
	font-size: 12px;
	display: inline;
	padding-right: 5px;
	list-style: none;
}
#currencies ul li a{
	white-space: nowrap;
	color: #505050;
}
#currencies ul li.selected a{
	text-decoration: none;
}
*/
/* @end — Выбор валюты */
/* @group Комментарии */
/*
.comment_list {
	margin-top: 15px;
	list-style: none;
}
.comment_list li {
	padding-bottom: 15px;
}
.comment_header {
	font-size: 18px;
}
.comment_header i {
	font-weight: normal;
	font-style: normal;
	color: #878787;
	font-size: 13px;
}
*/
/* @end — Комментарии */
/* @group Форма отправки комментария */
/*
.comment_form {
	background-color: #f3f3f3;
	border: 1px solid #e0e0e0;
	padding: 20px;
	margin-top: 20px;
	width: 90%;
	overflow: hidden;
}
.comment_form h2 {
	margin-bottom: 0px;
}
.comment_form .comment_textarea {
	width: 100%;
	height: 100px;
	font-size: 12px;
}
.comment_form label {
	display: block;
	float: left;
	width: 100px;
	font-size: 18px;
	margin-top: 15px;
}
.comment_form .input_name {
	font-size: 16px;
	width: 250px;
	margin-top: 15px;
}
.comment_form .input_captcha, .cart_form .input_captcha{
	float: left;
	width: 150px;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 15px;
	height: 36px;
}
.comment_form .captcha, .cart_form .captcha {
	float: left;
	display: block;
	margin-top: 15px;
	margin-right: 10px;
}
.comment_form .button,
.feedback_form .button,
.register_form .button,
.login_form .button{
	float: right;
	display: block;
	margin-top: 10px;
	margin-right: 0px;
}
*/
/* @end — Форма отправки комментария */
/* @group Блог */
/*
#blog{
	list-style: none;
}
*/
/* @end — Блог */
.iconed-arrow {
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  cursor: hand;
}
.iconed-arrow:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  transform-origin: center center;
  transition-duration: 0.5s;
  background: url(../images/arrow-down.svg) no-repeat center center;
  background-size: contain;
}
.iconed-arrow.iconed-arrow-black:after {
  background: url(../images/arrow-down-black.svg) no-repeat center center;
  background-size: contain;
}
.iconed-arrow.iconed-arrow-gray:after {
  background: url(../images/arrow-down-gray.svg) no-repeat center center;
  background-size: contain;
}
.iconed-arrow.prev-arrow:after {
  transform: translate(0, -50%) rotate(90deg);
}
.iconed-arrow.next-arrow:after {
  transform: translate(0, -50%) rotate(-90deg);
}

.rotate:after {
  transform: translate(0, -50%) rotate(180deg);
}

.iconed-before {
  position: relative;
  padding-left: 24px;
}
.iconed-before:before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.iconed-before.case:before {
  background: url(../images/case.svg) no-repeat center center;
  background-size: contain;
}
.iconed-before.phone:before {
  background: url(../images/phone.svg) no-repeat center center;
  background-size: contain;
}
.iconed-before.label:before {
  background: url(../images/label.svg) no-repeat center center;
  background-size: contain;
}
.iconed-before.user:before {
  background: url(../images/user.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.iconed-before.telegram {
  display: inline-block;
  width: 37px;
  height: 37px;
}
.iconed-before.telegram:before {
  width: 37px;
  height: 37px;
  background: url(../images/telegram.svg) no-repeat center center;
  background-size: contain;
}
.iconed-before.attention {
  padding-left: 0;
}
.iconed-before.attention::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: -10px;
  border-radius: 50%;
  background: #fc750b url(../images/attention.svg) no-repeat center center;
  background-size: 81%;
}

/* @group Сердечко для favorites */
.favorite {
  width: 17px;
  height: 16px;
  background: url(../images/favorites-gray.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  cursor: hand;
}
.favorite.pressed {
  background: url(../images/favorites.svg) no-repeat center center;
  background-size: contain;
}

/* @end — Сердечко для favorites */
/* @group Кружок с чеком */
.check-item {
  position: relative;
  /*&.check-action {
      &::before {
          background: #f1351c url(../images/check-asterisk.svg) no-repeat center center;
          background-size: 60%;
      }
  }*/
}
.check-item::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -7px;
  left: 6px;
  background: url(../images/check-new.svg) no-repeat center center;
  background-size: contain;
}
.check-item.check-sale::before {
  background: url(../images/check-sale.svg) no-repeat center center;
  background-size: contain;
}
.check-item.check-hot::before {
  background: url(../images/check-hit.svg) no-repeat center center;
  background-size: contain;
}

/* @end — Кружок с чеком */
/* @group Кнопка "Наверх" */
#to-top {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 50px;
  z-index: 2;
  background: #02a709 url(../images/to-top.svg) no-repeat center center;
  background-size: 60%;
  border-radius: 50%;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  cursor: hand;
}

/* @end — Кнопка "Наверх" */
@media (max-width: 1100px) {
  #to-top {
    right: calc(50px + (50 - 15) * (100vw - 1100px) / (1100 - 480));
  }
}
input,
textarea {
  font-family: Helvetica;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  font-size: 18px;
}

.form {
  width: 400px;
  margin-bottom: 20px;
}
.form textarea {
  width: 100%;
  height: 100px;
  font-size: 18px;
}
.form label {
  display: block;
  font-size: 14px;
}
.form input[type="text"] {
  display: block;
  margin-bottom: 10px;
}

.login_form,
.cart_form,
.pass_remind {
  margin: 0 auto;
}
.login_form input[type="text"],
.login_form input[type="password"],
.cart_form input[type="text"],
.cart_form input[type="password"],
.pass_remind input[type="text"],
.pass_remind input[type="password"] {
  height: 36px;
  padding: 10px;
}
.login_form textarea,
.cart_form textarea,
.pass_remind textarea {
  height: 72px;
  padding: 10px;
}
.login_form input[type="submit"],
.cart_form input[type="submit"],
.pass_remind input[type="submit"] {
  border-radius: 5px;
  -webkit-appearance: none;
}
.login_form p,
.cart_form p,
.pass_remind p {
  text-align: right;
}
.login_form p a,
.cart_form p a,
.pass_remind p a {
  color: #1d1d1b;
}
.login_form p a:hover,
.cart_form p a:hover,
.pass_remind p a:hover {
  text-decoration: none;
}

.slider-wrap {
  width: 836px;
  margin: 0 0 30px auto;
  overflow: hidden;
}
.slider-wrap .slider {
  position: relative;
}
.slider-wrap .slider .slide {
  width: 838px;
  display: block;
  position: relative;
}
.slider-wrap .slider .slide img {
  border-radius: 5px;
  width: 100%;
}
.slider-wrap .slider .slide a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider-wrap .slider .slick-arrow {
  height: 35px;
  width: 35px;
  position: absolute;
  top: 45%;
  background-color: #000000;
  opacity: 0.6;
  z-index: 1;
}
.slider-wrap .slider .slick-arrow::after {
  width: 22px;
  height: 22px;
  right: 6px;
}
.slider-wrap .slider .slick-arrow.prev-arrow {
  left: 15px;
}
.slider-wrap .slider .slick-arrow.next-arrow {
  right: 15px;
}
.slider-wrap .slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 1;
}
.slider-wrap .slider .slick-dots li {
  margin: 3px;
  display: inline-block;
  border: 9px solid #ffffff;
  border-radius: 50%;
}
.slider-wrap .slider .slick-dots li.slick-active {
  border: 9px solid #02a709;
}
.slider-wrap .slider .slick-dots li button {
  display: none;
}
.slider-wrap .slider_2 {
  position: relative;
  margin: 0 -10px;
}
.slider-wrap .slider_2 .slide {
  width: 30%;
  margin: 0 10px;
  display: block;
  position: relative;
}
.slider-wrap .slider_2 .slide img {
  height: 250px;
  width: 100%;
  border-radius: 5px;
}
.slider-wrap .slider_2 .slide p {
  padding-top: 10px;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}
.slider-wrap .slider_2 .slide a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider-wrap .slider_2 .slick-arrow {
  display: none !important;
}

/* @group Заголовок секции чекнутых товаров на главной странице */
.checks-head {
  padding: 30px 0 20px;
  display: flex;
  justify-content: space-between;
}
.checks-head.line {
  border-top: 2px solid #cfcfcf;
}
.checks-head a {
  color: #000000;
  text-decoration: none;
}
.checks-head a:hover {
  text-decoration: underline;
}
.checks-head .see-more {
  padding: 10px 17px;
  display: block;
  flex: 0 1 auto;
  color: #000000;
  text-decoration: none;
  background-color: #ededed;
  border-radius: 5px;
}
.checks-head .see-more:hover {
  background-color: #e1e1e1;
  text-decoration: none;
}
.checks-head h2 {
  padding-left: 68px;
  flex: 1 1 auto;
}
.checks-head .products-arrow {
  width: 36px;
  height: 36px;
  margin-left: 15px;
  flex: 0 1 auto;
  background-color: #ededed;
  border-radius: 5px;
  cursor: pointer;
  cursor: hand;
}
.checks-head .products-arrow::after {
  width: 20px;
  height: 20px;
  right: 7px;
}
.checks-head .not-active {
  pointer-events: none;
  cursor: default;
}
.checks-head .not-active::after {
  opacity: 0.2;
}

.advert .checks-head {
  padding-top: 0;
}
.advert .checks-head h2 {
  padding-left: 11px;
}
.advert .checks-head h2::before {
  display: none;
}

/* @end — Заголовок галочнной секции на главной странице */
@media (max-width: 1175px) {
  .slider-wrap {
    width: calc(836px + (836 - 470) * (100vw - 1175px) / (1175 - 800));
  }
  .slider-wrap .slider_2 {
    position: relative;
    margin: 0 -10px;
  }
  .slider-wrap .slider_2 .slide {
    width: 50%;
  }
  .slider-wrap .slider_2 .slide img {
    height: calc(350px + (350 - 200) * (100vw - 1175px) / (1175 - 800));
  }
}
.orders_history-wrap {
  width: 400px;
  margin: 0 auto;
}

#orders_history {
  margin-top: 15px;
  list-style: none;
}

#orders_history li {
  display: flex;
  margin-bottom: 10px;
}

#orders_history li a {
  margin: 0 30px;
  font-size: 16px;
}

table#purchases {
  width: 100%;
  margin: 15px 0 25px;
  background: #ffffff;
}
table#purchases td {
  border: 1px solid #e0e0e0;
}
table#purchases td.image, table#purchases td.variant-image {
  width: 65px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
}
table#purchases td.image img, table#purchases td.variant-image img {
  display: block;
  margin: 5px auto;
}
table#purchases td.image a, table#purchases td.variant-image a {
  display: block;
}
table#purchases td.name {
  padding: 0 20px;
}
table#purchases td.name a {
  color: #000000;
  text-decoration: underline;
}
table#purchases td.name a:hover {
  color: #000000;
  text-decoration: none;
}
table#purchases td.variant, table#purchases td.price, table#purchases td.amount {
  text-align: center;
}
table#purchases th {
  height: 50px;
  padding: 5px;
  background: #028e081a;
}

table.order_info {
  margin: 15px 0 25px;
  background-color: #f9f9f9;
}

table.order_info td {
  padding: 10px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}

/*
.checkout_button {
	padding: 10px 20px 10px 20px;
	border: 1px solid #51a400;
	background-color: #d3ffa9;
	color: #2e5e00;
	font-size: 14px;
}
*/
@media (max-width: 600px) {
  th span {
    writing-mode: tb;
    transform: rotate(180deg);
  }
}
#top_background {
  width: 100%;
  background-color: #ebebeb;
  flex: 0 1 auto;
}
#top_background #top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 30px;
  font-size: 13px;
  		/*
  		#menu,
  		#account {
  			.sub-items {
  				width: 200px;
  				padding: 10px;
  				line-height: 33px;
  				display: none;
  				flex-wrap: wrap;
  				position: absolute;
  				top: 100%;
  				right: 0;
  				box-shadow: 0 18px 20px 0 rgba(0, 0, 0, 0.2);
  				background: #ffffff;
  				
  				.sub-item {
  					flex-basis: 100%;
  					margin: 0;
  					padding-left: 20px;
  					color: $color_font_dark;
  
  					a {
  						display: block;
  						color: $color_font_dark;
  						text-decoration: underline;
  
  						&:hover {
  							text-decoration: none;
  						}
  					}
  
  					&:hover {
  						background: #ffffff;
  					}
  				}
  			}
  		}*/
}
#top_background #top .telegram {
  width: auto;
  height: 20px;
  display: block;
  padding-left: 24px;
  line-height: 20px;
  color: #808080;
  text-decoration: none;
}
#top_background #top .telegram:before {
  width: 20px;
  height: 20px;
}
#top_background #top #menu {
  display: flex;
}
#top_background #top #menu li {
  padding-left: 10px;
  margin-right: 20px;
  list-style: none;
  position: relative;
  z-index: 1;
}
#top_background #top #menu li > div {
  color: #808080;
  cursor: pointer;
  cursor: hand;
}
#top_background #top #menu li > div a {
  color: #808080;
}
#top_background #top #menu li.cooperation .sub-items {
  width: 245px;
}
#top_background #top #menu li.prices .sub-items {
  width: 500px;
}
#top_background #top #menu li:hover {
  color: #000000;
}
#top_background #top #menu li:hover > div::after {
  transform: translate(0, -50%) rotate(180deg);
}
#top_background #top #menu li:hover .sub-items {
  display: flex;
}
#top_background #top #account a {
  text-decoration: none;
  color: #808080;
}
#top_background #top #account #username {
  padding-left: 10px;
  position: relative;
  z-index: 1;
  transition-duration: 0.3s;
}
#top_background #top #account #username:hover {
  color: #000000;
}
#top_background #top #account #username:hover a::after {
  transform: translate(0, -50%) rotate(180deg);
}
#top_background #top #account #username:hover .sub-items {
  display: flex;
}
#top_background #top #account #username #logout {
  color: #1d1d1b;
  text-decoration: underline;
}
#top_background #top #account #username #logout:hover {
  text-decoration: none;
}

@media (max-width: 1150px) {
  #top_background #top #menu li {
    margin-right: 0;
  }
}
@media (max-width: 900px) {
  #top_background #top .telegram span {
    display: none;
  }
}
@media (max-width: 800px) {
  #top_background {
    display: none;
  }
}
#header_background {
  background-color: #ffffff;
  flex: 0 1 auto;
}
#header_background #header {
  height: 92px;
  clear: both;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header_background #header #logo {
  flex-grow: 3;
}
#header_background #header #search {
  height: 35px;
  flex-grow: 20;
}
#header_background #header #search form {
  display: flex;
  align-items: center;
}
#header_background #header #search form .input_search {
  padding: 0 13px;
  height: 35px;
  font-size: 12px;
  flex-grow: 1;
}
#header_background #header #search .button_search {
  width: 35px;
  height: 20px;
  background: url(../images/search.svg) no-repeat center center;
  background-size: contain;
  border-style: none;
  flex-grow: 0;
  cursor: pointer;
  cursor: hand;
}
#header_background #header #search .button_search-mob {
  display: none;
  width: 29px;
  height: 30px;
}
#header_background #header #account-mob {
  display: none;
  width: 30px;
  height: 30px;
}
#header_background #header #account-mob .iconed-before.user:before {
  width: 30px;
  height: 30px;
  top: 0;
  transform: translate(0, 0);
}
#header_background #header #account-mob .sub-items {
  display: none;
}
#header_background #header #cart_informer {
  margin-right: 15px;
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}
#header_background #header #cart_informer .balance {
  padding-top: 6px;
  padding-left: 10px;
}
#header_background #header #favorites_informer {
  display: flex;
  justify-content: flex-end;
  flex-grow: 5;
}
#header_background #header .header-icon {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}
#header_background #header .header-icon.cart-icon {
  background: url(../images/informer-cart.svg) no-repeat center center;
  background-size: contain;
}
#header_background #header .header-icon.favorites-icon {
  background: url(../images/favorites.svg) no-repeat center center;
  background-size: contain;
}
#header_background #header .header-total {
  position: absolute;
  top: -8px;
  right: -12px;
  /*&.total-favorites {
  	background: $color_logo;
  }*/
}

@media (max-width: 800px) {
  #header_background #header #search {
    flex-grow: 1;
  }
  #header_background #header #search form {
    position: absolute;
    top: 92px;
    right: 10px;
    z-index: 4;
  }
  #header_background #header #search .button_search-mob {
    display: block;
  }
  #header_background #header #account-mob {
    display: block;
  }
  #header_background #header #account-mob .sub-items {
    display: flex;
    top: 80px;
    z-index: 4;
  }
  #header_background #header #favorites_informer {
    flex-grow: 1;
  }
  #header_background #header #cart_informer {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  #header_background #header #logo {
    flex-grow: 1;
    margin-right: 20px;
  }
  #header_background #header #logo img {
    width: calc(236px + (236 - 185) * (100vw - 600px) / (600 - 480));
  }
}
.search-by-wrapper {
  flex: 0 0 33px;
  height: 33px;
}
.search-by-wrapper.more {
  flex: 1 0 auto;
  height: auto;
}
.search-by-wrapper.model {
  background-color: #b663f3;
}
.search-by-wrapper.model .item:hover {
  background-color: #028e08;
}
.search-by-wrapper.model .sub-items {
  border: 2px solid #028e08;
}
.search-by-wrapper.brand {
  background-color: #fc750b;
}
.search-by-wrapper.brand .item:hover {
  background-color: #d66309;
}
.search-by-wrapper.brand #search-by .items .item .sub-items {
  border: 2px solid #d66309;
}
.search-by-wrapper .container {
  display: flex;
  justify-content: space-between;
}

#search-by {
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  line-height: 33px;
}
#search-by .name-for-search {
  margin-right: 45px;
  margin-left: 15px;
  font-weight: bold;
  white-space: nowrap;
  flex: 0 1 auto;
}
#search-by .items-wrap {
  flex: 1 1 auto;
}
#search-by .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#search-by .items .item {
  list-style-type: none;
  margin: 0 5px;
}
#search-by .items .item .search-by-level-1 {
  padding: 0 4px;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer;
}
#search-by .items .item .sub-items {
  position: absolute;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 18px 20px 0 rgba(0, 0, 0, 0.2);
  color: #000;
  z-index: 1000;
  width: 100%;
  padding: 10px 4% 10px 12%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  line-height: 30px;
  overflow: auto;
  max-height: 600px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s 0.5s;
}
#search-by .items .item .sub-items .sub-item {
  flex-basis: 19%;
  margin-left: 5px;
}
#search-by .items .item .sub-items span {
  color: #b3b3b3;
  margin: 0;
}
#search-by .items .item .sub-items a {
  color: #1d1d1b;
  text-decoration: none;
}
#search-by .items .item .sub-items a:hover {
  text-decoration: underline;
}
#search-by .items .item:hover .sub-items {
  visibility: visible;
  opacity: 1;
}
#search-by .more-items {
  flex: 0 1 100px;
  margin: 0 15px;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
}

.links-for-checks {
  line-height: 33px;
}
.links-for-checks .check-item {
  padding-left: 30px;
  margin-left: 20px;
  color: #ffffff;
  text-decoration: none;
}
.links-for-checks .check-item::before {
  width: 25px;
  height: 25px;
  top: -4px;
  left: 0;
}
.links-for-checks .check-item:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .search-by-wrapper .check-item span {
    display: none;
  }
}
@media (max-width: 800px) {
  .search-by-wrapper {
    display: none;
  }
}
#catalog_menu {
  width: 260px;
  background-color: #ffffff;
  border-top: #dadada solid 2px;
  font: 15px Roboto, sans-serif;
}
#catalog_menu ul {
  list-style: none;
  width: 260px;
  z-index: 3;
}
#catalog_menu ul li {
  line-height: 25px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#catalog_menu ul li a {
  padding: 3px;
  color: #1d1d1b;
  text-decoration: none;
  flex-grow: 1;
  display: flex;
}
#catalog_menu ul li a .icon-wrapper {
  width: 25px;
  height: 25px;
  margin: 0 10px;
  display: flex;
}
#catalog_menu ul li a .icon-wrapper img {
  margin: auto;
}
#catalog_menu ul li a p {
  margin: 0;
  align-self: center;
}
#catalog_menu ul li a p span {
  font-size: 11px;
  color: #999999;
}
#catalog_menu ul li:hover, #catalog_menu ul li.selected {
  background-color: #028607;
}
#catalog_menu ul li:hover > a,
#catalog_menu ul li:hover > a span, #catalog_menu ul li.selected > a,
#catalog_menu ul li.selected > a span {
  color: #ffffff;
}
#catalog_menu ul li:hover > div[id^="selected_products_in_category"], #catalog_menu ul li.selected > div[id^="selected_products_in_category"] {
  color: #ffffff;
}
#catalog_menu ul li:hover > div[id^="selected_products_in_category"]::after, #catalog_menu ul li.selected > div[id^="selected_products_in_category"]::after {
  background: url(../images/cart-white.svg) no-repeat center center;
  background-size: contain;
}
#catalog_menu ul li div[id^="selected_products_in_category"] {
  padding-right: 15px;
  padding-bottom: 3px;
  margin-right: 10px;
  align-self: flex-end;
  position: relative;
  font-size: 11px;
  color: #1d1d1b;
}
#catalog_menu ul li div[id^="selected_products_in_category"]::after {
  content: "";
  width: 14px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 4px;
  background: url(../images/informer-cart.svg) no-repeat center center;
  background-size: contain;
  opacity: 0.5;
}

.inner-menu-wrapper {
  width: 260px;
  padding: 10px;
  background: #02a709;
  color: #ffffff;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.inner-menu-wrapper #catalog_menu {
  display: none;
  position: absolute;
  top: 37px;
  left: 0;
  z-index: 3;
  box-shadow: 0 18px 20px 0 rgba(0, 0, 0, 0.2);
}

#catalog_menu > ul li ul {
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: absolute;
  left: 100%;
  box-shadow: 0 18px 20px 0 rgba(0, 0, 0, 0.2);
}
#catalog_menu > ul li ul li {
  padding-left: 20px;
  font-size: 14px;
}
#catalog_menu > ul li ul li a .icon-wrapper {
  display: none;
}
#catalog_menu > ul li:hover > ul {
  display: block;
}
#catalog_menu > ul > li > ul {
  background-color: #ededed;
  max-height : 550px;
  overflow  : auto;
}
#catalog_menu > ul > li > ul > li > a,
#catalog_menu > ul > li > ul > li > a span {
  color: #1d1d1b;
}
#catalog_menu > ul > li > ul > li div[id^="selected_products_in_category"] {
  color: #1d1d1b;
}
#catalog_menu > ul > li > ul > li div[id^="selected_products_in_category"]::after {
  background: url(../images/informer-cart.svg) no-repeat center center;
  background-size: contain;
}
#catalog_menu > ul > li > ul > li:hover, #catalog_menu > ul > li > ul > li.selected {
  background-color: #02a709;
}
#catalog_menu > ul > li > ul > li:hover > a,
#catalog_menu > ul > li > ul > li:hover > a span, #catalog_menu > ul > li > ul > li.selected > a,
#catalog_menu > ul > li > ul > li.selected > a span {
  color: #ffffff;
}
#catalog_menu > ul > li > ul > li:hover div[id^="selected_products_in_category"], #catalog_menu > ul > li > ul > li.selected div[id^="selected_products_in_category"] {
  color: #ffffff;
}
#catalog_menu > ul > li > ul > li:hover div[id^="selected_products_in_category"]::after, #catalog_menu > ul > li > ul > li.selected div[id^="selected_products_in_category"]::after {
  background: url(../images/cart-white.svg) no-repeat center center;
  background-size: contain;
}
#catalog_menu > ul > li > ul > li > ul {
  display : none !important;
  background: #ffffff;
}
#catalog_menu > ul > li > ul > li > ul > li {
  font-size: 12px;
}
#catalog_menu > ul > li > ul > li > ul > li:hover, #catalog_menu > ul > li > ul > li > ul > li.selected {
  background-color: #028607;
}
#catalog_menu > ul > li > ul > li > ul > li:hover > a,
#catalog_menu > ul > li > ul > li > ul > li:hover > a span, #catalog_menu > ul > li > ul > li > ul > li.selected > a,
#catalog_menu > ul > li > ul > li > ul > li.selected > a span {
  color: #ffffff;
}
#catalog_menu > ul > li > ul > li > ul > li:hover div[id^="selected_products_in_category"], #catalog_menu > ul > li > ul > li > ul > li.selected div[id^="selected_products_in_category"] {
  color: #ffffff;
}
#catalog_menu > ul > li > ul > li > ul > li:hover div[id^="selected_products_in_category"]::after, #catalog_menu > ul > li > ul > li > ul > li.selected div[id^="selected_products_in_category"]::after {
  background: url(../images/cart-white.svg) no-repeat center center;
  background-size: contain;
}

@media (max-width: 800px) {
  .inner-menu-wrapper {
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 2;
    width: 100%;
  }

  #catalog_menu {
    width: 100%;
    font: 18px Roboto, sans-serif;
  }
  #catalog_menu ul {
    width: 100%;
  }
  #catalog_menu > ul li {
    flex-wrap: wrap;
  }
  #catalog_menu > ul > li {
    background-color: #028607;
  }
  #catalog_menu > ul > li > a,
  #catalog_menu > ul > li > a p span {
    color: #ffffff;
  }
  #catalog_menu > ul > li > div[id^="selected_products_in_category"] {
    color: #ffffff;
  }
  #catalog_menu > ul > li > div[id^="selected_products_in_category"]::after {
    background: url(../images/cart-white.svg) no-repeat center center;
    background-size: contain;
  }
  #catalog_menu > ul > li ul {
    display: block;
    position: static;
    box-shadow: none;
  }
  #catalog_menu > ul > li ul li {
    font-size: 16px;
    background-color: #ededed !important;
  }
  #catalog_menu > ul > li ul li > a,
  #catalog_menu > ul > li ul li > a span {
    color: #1d1d1b !important;
  }
  #catalog_menu > ul > li ul li div[id^="selected_products_in_category"] {
    color: #1d1d1b !important;
  }
  #catalog_menu > ul > li ul li div[id^="selected_products_in_category"]::after {
    background: url(../images/informer-cart.svg) no-repeat center center !important;
    background-size: contain !important;
  }
  #catalog_menu > ul > li ul li > ul {
    background: #ffffff !important;
  }
  #catalog_menu > ul > li ul li > ul > li {
    font-size: 16px !important;
  }
}
.category-name h1 {
  flex-basis: 65%;
}
.category-name .favorite {
  width: 25px;
  height: 25px;
}
.category-name .view-type-wrapper {
  display: flex;
  align-items: center;
}
.category-name .view-type-wrapper span {
  margin-right: 10px;
}
.category-name .view-type-wrapper .view-type {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  cursor: pointer;
  cursor: hand;
}
.category-name .view-type-wrapper .view-type.mosaic {
  background: url(../images/view-mosaic-gray.svg) no-repeat center center;
  background-size: contain;
}
.category-name .view-type-wrapper .view-type.mosaic.active {
  background: url(../images/view-mosaic-green.svg) no-repeat center center;
  background-size: contain;
  cursor: default;
}
.category-name .view-type-wrapper .view-type.list {
  background: url(../images/view-list-gray.svg) no-repeat center center;
  background-size: contain;
}
.category-name .view-type-wrapper .view-type.list.active {
  background: url(../images/view-list-green.svg) no-repeat center center;
  background-size: contain;
  cursor: default;
}
.category-name .sort .products-sort {
  height: 36px;
  padding: 0 10px;
  font-size: 15px;
  line-height: 36px;
  text-align: center;
  color: #000000;
  background-color: #ededed;
  border: none;
  border-radius: 5px;
}

.navigation,
.category-name,
.filter-pagination {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100%;
}

.navigation {
  margin: 40px 0 18px;
}
.navigation #path {
  margin-left: 30px;
  flex-grow: 1;
  color: #000000;
}
.navigation #path a {
  color: #000000;
  text-decoration: none;
}
.navigation #path a:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  padding: 0;
}
.pagination a {
  min-width: 36px;
  height: 36px;
  margin-left: 5px;
  padding: 0 10px;
  line-height: 36px;
  text-align: center;
  color: #000000;
  background-color: #ededed;
  text-decoration: none;
  border-radius: 5px;
}
.pagination a.selected:hover, .pagination a.selected {
  background-color: #747473;
  color: #ffffff;
}

.filter-pagination {
  margin: 7px 0 30px;
  justify-content: flex-start;
}
.filter-pagination .filter-link {
  width: 260px;
  padding: 10px;
  background: #ededed;
  border-radius: 5px;
  cursor: pointer;
  cursor: hand;
}
.filter-pagination .filter-link.pressed {
  background: #747473;
  color: #ffffff;
}
.filter-pagination .checks-wrapper {
  flex-basis: 35%;
  min-width: 340px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-pagination .checks-wrapper > div[class^="checks_"] {
  flex-basis: 60px;
}
.filter-pagination .checks-wrapper label.check-item {
  padding-left: 40px;
}
.filter-pagination .checks-wrapper label.check-item::before {
  width: 36px;
  height: 36px;
  top: -12px;
  left: auto;
  right: 5px;
}
.filter-pagination .checks-wrapper label.check-item span {
  display: none;
}
.filter-pagination .checks-wrapper label.check-item:hover {
  cursor: pointer;
  cursor: hand;
}
.filter-pagination .checks-wrapper button {
  padding: 0 10px;
  line-height: 36px;
  font-size: 15px;
  text-align: center;
  color: #000000;
  background-color: #ededed;
  text-decoration: none;
  border: none;
  border-radius: 5px;
}

.cathegory-description {
  flex-basis: 100%;
  padding: 0 8px;
  margin-bottom: 30px;
}

@media (max-width: 1060px) {
  .filter-pagination {
    flex-wrap: wrap;
  }

  .pagination {
    flex-basis: 100%;
    margin-top: 10px;
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .category-name {
    margin-left: 55px;
  }
  .category-name h1 {
    flex-basis: 100%;
  }
  .category-name .view-type-wrapper {
    display: none;
  }
  .category-name .sort {
    position: fixed;
    top: 219px;
    left: 56px;
    z-index: 2;
  }
  .category-name .sort span {
    display: none;
  }
  .category-name .sort .products-sort {
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
  }

  .navigation #path {
    margin-left: 55px;
  }

  .filter-pagination .filter-link {
    display: none;
  }
  .filter-pagination .filter-link.pressed {
    display: block;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
  }
  .filter-pagination .checks-wrapper {
    display: none;
  }
  .filter-pagination .pagination {
    flex-basis: 100%;
    justify-content: center;
  }
}
#features-filter {
  padding-bottom: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}
#features-filter .feature-block {
  padding: 15px;
  border-bottom: 1px solid #ededed;
}
#features-filter .feature-block .feature-name {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  cursor: hand;
}
#features-filter .feature-block .labels {
  margin-top: 15px;
  display: none;
  overflow: hidden;
}
#features-filter .feature-block label {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  cursor: hand;
}
#features-filter .feature-block label:nth-of-type(n+6) {
  display: none;
}
#features-filter .feature-block label span {
  margin-left: 5px;
}
#features-filter .feature-block .more-labels {
  color: #02a709;
  text-decoration: underline;
  cursor: pointer;
  cursor: hand;
}
#features-filter .feature-block .more-labels:hover {
  text-decoration: none;
}
#features-filter .feature-block:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#features-filter .feature-block:first-of-type .sidebar-name {
  font-size: 24px;
}
#features-filter .feature-block:first-of-type .reset {
  margin: 5px 0 0 0;
}
#features-filter .feature-block:last-of-type {
  border-bottom: none;
}
#features-filter .feature-block .price-range-wrapper {
  margin-top: 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  line-height: 30px;
}
#features-filter .feature-block .price-range-wrapper input[type="number"] {
  padding: 0 10px;
  width: 100px;
  height: 30px;
}
#features-filter .feature-block .ui-widget.ui-widget-content {
  height: 5px;
  border: none;
  background: #f1f1f1;
}
#features-filter .feature-block .ui-slider .ui-slider-range {
  background: #b3b3b3;
}
#features-filter .feature-block .ui-state-default, #features-filter .feature-block .ui-widget-content .ui-state-default {
  border-radius: 50%;
  border: none;
  background: #02a709;
}
#features-filter .feature-block .ui-slider-horizontal .ui-slider-handle {
  top: -.45em;
}
#features-filter .feature-block.checks {
  display: none;
}
#features-filter .feature-block .checks-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#features-filter .feature-block .checks-wrapper .checks_new,
#features-filter .feature-block .checks-wrapper .checks_sale,
#features-filter .feature-block .checks-wrapper .checks_hot {
  width: 29%;
}
#features-filter .feature-block .checks-wrapper label.check-item span {
  display: none;
}
#features-filter .feature-block .checks-wrapper label.check-item:before {
  width: 40px;
  height: 40px;
  top: -4px;
  left: 23px;
}
#features-filter .button {
  background-color: #747473;
  border: 1px solid #747473;
}
#features-filter .button:hover {
  background-color: #636362;
}
#features-filter .reset {
  display: block;
  width: 112px;
  padding: 10px 10px 10px 22px;
  margin: 0 auto;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
#features-filter .reset::before {
  width: 15px;
  height: 15px;
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  background: url(../images/cross.svg) no-repeat center center;
  background-size: contain;
}

@media (max-width: 800px) {
  #features-filter {
    padding-bottom: 20px;
    background-color: #ffffff;
  }
  #features-filter .feature-block.checks {
    display: block;
  }
}
ul#deliveries {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 20px 20px 0 20px;
  list-style: none;
}

ul#deliveries li {
  margin-bottom: 20px;
}

ul#deliveries li div.checkbox {
  float: left;
}

ul#deliveries li h3, ul#deliveries li .description {
  display: block;
  margin-left: 25px;
}

.top-wrapper {
  display: flex;
  align-items: center;
}
.top-wrapper h1 {
  flex-grow: 1;
}
.top-wrapper .all-cats-toggle,
.top-wrapper .remove {
  padding: 10px;
  background-color: #ededed;
}
.top-wrapper .all-cats-toggle {
  border-radius: 5px;
  cursor: pointer;
  cursor: hand;
}
.top-wrapper .all-cats-toggle span {
  padding-left: 21px;
  padding-right: 10px;
}
.top-wrapper .all-cats-toggle span::after {
  width: 14px;
  height: 12px;
  position: absolute;
  left: 2px;
  background: url(../images/arrow-down-black.svg) no-repeat center center;
  background-size: contain;
}
.top-wrapper .remove {
  margin-left: 10px;
  border-radius: 5px;
}
.top-wrapper .remove a {
  padding-left: 21px;
  text-decoration: none;
  color: #000;
  position: relative;
}
.top-wrapper .remove a::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 3px;
  top: 2px;
  background: url(../images/cross-red.svg) no-repeat center center;
  background-size: contain;
}
.top-wrapper .export-cart,
.top-wrapper .import-cart {
  margin-left: 10px;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.top-wrapper .export-cart a,
.top-wrapper .import-cart a {
  display: block;
  width: 100%;
  height: 100%;
}
.top-wrapper .export-cart {
  background: #ededed url(../images/export.svg) no-repeat center center;
  background-size: 25px;
}
.top-wrapper .import-cart {
  background: #ededed url(../images/import.svg) no-repeat center center;
  background-size: 25px;
}

.cart-category-name {
  margin: 7px 0;
  padding: 0 15px;
  line-height: 35px;
  color: #ffffff;
  background: #a6a6a5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-category-name.with-products {
  background: #02a709;
}
.cart-category-name .left-wrapper {
  display: flex;
  align-items: center;
}
.cart-category-name .left-wrapper .icon-wrapper {
  margin: 0 10px 0 0;
}
.cart-category-name .left-wrapper .icon-wrapper img {
  display: block;
}
.cart-category-name .left-wrapper .cat-name {
  font-size: 18px;
  font-weight: 700;
}
.cart-category-name .left-wrapper .cat-link {
  color: #ffffff;
  margin-left: 10px;
  text-decoration: none;
}
.cart-category-name .left-wrapper .cat-link:hover {
  text-decoration: underline;
}
.cart-category-name .right-wrapper {
  flex-basis: 280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-category-name .right-wrapper .cat-count {
  line-height: normal;
  text-align: center;
  position: relative;
  background-color: #fff;
  color: #02a709;
}
.cart-category-name .right-wrapper .cat-count::before {
  content: "";
  width: 20px;
  height: 16px;
  position: absolute;
  left: -22px;
  top: 2px;
}
.cart-category-name .right-wrapper .cat-count.cat-count-favorites::before {
  background: url(../images/favorites-white.svg) no-repeat center center;
  background-size: contain;
}
.cart-category-name .right-wrapper .cat-count.cat-count-cart::before {
  background: url(../images/cart-white.svg) no-repeat center center;
  background-size: contain;
}
.cart-category-name .right-wrapper .cat-toggle {
  width: 100px;
  text-align: right;
  cursor: pointer;
  cursor: hand;
}
.cart-category-name .right-wrapper .cat-toggle.to-roll-down .roll-up {
  display: none;
}
.cart-category-name .right-wrapper .cat-toggle.to-roll-down .roll-down {
  display: inline;
}
.cart-category-name .right-wrapper .cat-toggle.to-roll-up .roll-up {
  display: inline;
}
.cart-category-name .right-wrapper .cat-toggle.to-roll-up .roll-down {
  display: none;
}
.cart-category-name .right-wrapper .cat-toggle.iconed-arrow {
  padding-right: 20px;
}
.cart-category-name .right-wrapper .cat-toggle.iconed-arrow::after {
  right: 0;
}

.products-in-category {
  width: 100%;
}
.products-in-category li {
  width: 100%;
  list-style: none;
}
.products-in-category li .product {
  display: flex;
  padding: 0 15px;
  margin: 12px 0;
  align-items: flex-start;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 5px;
}
.products-in-category li .product .left-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.products-in-category li .product .left-wrapper .img-wrapper {
  width: 85px;
  height: 85px;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  cursor: hand;
}
.products-in-category li .product .left-wrapper .img-wrapper img {
  margin: auto;
}
.products-in-category li .product .left-wrapper .img-wrapper img.invisible {
  display: none;
}
.products-in-category li .product .left-wrapper .product-name-wrapper {
  flex-grow: 1;
}
.products-in-category li .product .left-wrapper .product-name-wrapper .additional-icons {
  width: auto;
  height: 25px;
  position: static;
}
.products-in-category li .product .left-wrapper .product-name-wrapper .additional-icons .check-stickers .check-item {
  margin-right: 25px;
}
.products-in-category li .product .left-wrapper .product-name-wrapper .additional-icons .check-stickers .check-item::before {
  width: 20px;
  height: 20px;
  top: 0;
}
.products-in-category li .product .left-wrapper .product-name-wrapper .product-name a {
  font-size: 16px;
  color: #1d1d1b;
}
.products-in-category li .product .left-wrapper .product-name-wrapper .product-name a:hover {
  text-decoration: none;
}
.products-in-category li .product .left-wrapper .product-name-wrapper .variants-count {
  font-size: 13px;
}
.products-in-category li .product .left-wrapper .prices-and-incart {
  flex-basis: 210px;
}
.products-in-category li .product .left-wrapper .prices-and-incart .prices .compare_price {
  margin-right: 8px;
}
.products-in-category li .product .left-wrapper .prices-and-incart .prices .price {
  flex-basis: 55%;
  margin-left: 8px;
}
.products-in-category li .product > div[class^="product_variant"],
.products-in-category li .product .variants-wrapper {
  flex-basis: 270px;
  margin: 0 20px 0 40px;
  border-top: none;
  align-self: center;
}
.products-in-category li .product > div[class^="product_variant"] .button[id^="toggle_variants_button"],
.products-in-category li .product .variants-wrapper .button[id^="toggle_variants_button"] {
  border-radius: 5px;
}
.products-in-category li .product > div[class^="product_variant"] .button.button-white,
.products-in-category li .product .variants-wrapper .button.button-white {
  margin-top: 16px;
}
.products-in-category li .product .remove-product {
  width: 37px;
  height: 37px;
  margin-top: 26px;
  border-radius: 5px;
  background: #fc750b url(../images/cross-white.svg) no-repeat center center;
  cursor: pointer;
  cursor: hand;
}
.products-in-category li .product div[class^="product_variant"] {
  align-self: center;
}
.products-in-category li .product div[class^="product_variant"] form.variants {
  margin: 0;
}
.products-in-category li .product div[class^="product_variant"] form.variants .variant_name {
  flex-grow: 1;
  margin-left: 5px;
}
.products-in-category.cart li .product .left-wrapper {
  flex-basis: 40%;
  flex-grow: 0;
}
.products-in-category.cart li .product > div[class^="product_variant"] {
  flex-basis: 60%;
}
.products-in-category.cart li .product > div[class^="product_variant"] .variant_name {
  font-size: 15px;
}
.products-in-category.cart li .product > div[class^="product_variant"] .sku {
  flex-grow: 1;
}
.products-in-category.cart li .product > div[class^="product_variant"] .price {
  font-size: 16px;
  font-weight: 700;
}
.products-in-category.cart li .product > div[class^="product_variant"] .quantity-block {
  margin-left: 15px;
}
.products-in-category.cart li .product > div[class^="product_variant"] .total-variant-price {
  flex-basis: 106px;
  font-size: 21px;
  font-weight: 700;
}

.cart-total {
  width: 460px;
  margin: 0 0 40px auto;
  display: flex;
  flex-wrap: wrap;
  line-height: 38px;
  font-size: 18px;
  font-weight: 700;
}
.cart-total div {
  flex-basis: 60%;
  border-bottom: 1px solid #b3b3b3;
}
.cart-total span {
  flex-basis: 40%;
  border-bottom: 1px solid #b3b3b3;
}

.cart-order-button-form {
  display: flex;
}

.comment-for-order {
  resize: none;
  flex-basis: 50%;
  padding: 10px;
}

.button.cart-btn {
  margin-right: 0;
  margin-left: auto;
  width: auto;
}

@media (max-width: 800px) {
  .cart-category-name .right-wrapper {
    flex-basis: auto;
  }
  .cart-category-name .right-wrapper .cat-count,
  .cart-category-name .right-wrapper .cat-total-price {
    display: none;
  }
  .cart-category-name .right-wrapper .cat-toggle .roll-up,
  .cart-category-name .right-wrapper .cat-toggle .roll-down {
    display: none;
  }

  .products-in-category li .product {
    flex-wrap: wrap;
    padding: 10px 10px 0;
  }
  .products-in-category li .product > div[class^="product_variant"] {
    flex-basis: 88%;
    margin: 0 10px 0 0;
    /*.total-variant-price {
    	flex-basis: 75px;
    	text-align: right;
    }*/
  }
  .products-in-category li .product .variants-wrapper {
    margin: 0 auto;
  }
  .products-in-category li .product .variants-wrapper .button.button-white {
    margin-top: 10px;
  }
  .products-in-category li .product .remove-product {
    margin-top: 7px;
  }
  .products-in-category.cart li .product .left-wrapper {
    flex-basis: 90%;
    order: -2;
  }
  .products-in-category.cart li .product > div[class^="product_variant"] {
    flex-basis: 100%;
    margin: 0;
  }
  .products-in-category.cart li .product > div[class^="product_variant"] .total-variant-price {
    flex-basis: 75px;
    text-align: right;
  }
  .products-in-category.cart li .product .remove-product {
    order: -1;
  }

  .top-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  .top-wrapper h1 {
    flex-basis: 100%;
    margin-left: 55px;
  }

  .cart-order-button-form {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .comment-for-order {
    flex-basis: 100%;
    max-width: 470px;
  }
}
.product {
  position: relative;
}
.product .additional-icons {
  width: calc(100% - 30px);
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}
.product .additional-icons .check-stickers {
  display: flex;
}
.product .additional-icons .check-stickers .check-item {
  margin-right: 30px;
}
.product .additional-icons .check-stickers .check-item::before {
  width: 24px;
  height: 24px;
  top: -4px;
  left: auto;
}
.product .favorite-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.product .favorite-wrapper.list {
  display: none;
}
.product .image {
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #ffffff;
}
.product .image img {
  margin: auto;
  opacity: 1;
  transform: rotateY(0);
  transition: all ease-in-out .5s;
}
.product .image img.invisible {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-180deg);
}
.product form.variants {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.product form.variants .img-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product form.variants .img-wrapper img {
  margin: auto;
}
.product form.variants .img-wrapper .big-img {
  display: none;
  position: absolute;
  right: 35px;
  border: 5px solid #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.product form.variants .variant_name {
  font-size: 13px;
  flex-shrink: 1;
}
.product form.variants .variant_sku {
  flex-grow: 1;
}
.product form.variants .quantity-block {
  display: flex;
  justify-content: center;
}
.product form.variants .quantity-block .quantity-num {
  width: 32px;
  height: 24px;
  text-align: center;
  border: 1px solid #f1f1f1;
}
.product form.variants .quantity-block .quantity-arrow-plus,
.product form.variants .quantity-block .quantity-arrow-minus {
  width: 18px;
  height: 24px;
  background: #f1f1f1;
  line-height: 24px;
  cursor: pointer;
  cursor: hand;
}
.product form.variants .button {
  flex-shrink: 0;
  margin: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  background: #02a709 url(../images/cart-white.svg) no-repeat center center;
  background-size: 16px;
}
.product form.variants [class^="product_variant_in_cart"] {
  margin: 0;
  flex-basis: 35px;
  font-size: 12px;
  color: #b3b3b3;
  border-top: none;
}
.product .variants-count {
  font-size: 13px;
  line-height: 25px;
}
.product div[class^="product_variant"] {
  margin: 10px 0 0;
  border-top: 1px solid #e6e6e6;
}
.product div[class^="product_variant"] form.variants {
  margin: 22px 0 14px;
}
.product div[class^="product_variant"].multi-variants {
  margin: 0;
  display: none;
}
.product div[class^="product_variant"].multi-variants form.variants {
  margin: 0;
}
.product div[class^="product_variant"].multi-variants form.variants .variant_name {
  padding-left: 5px;
  flex-grow: 2;
  font-size: 12px;
  text-align: left;
}
.product .prices-and-incart {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product .prices-and-incart .prices {
  flex-basis: 75%;
  line-height: 24px;
  display: flex;
  justify-content: flex-end;
}
.product .prices-and-incart .prices .compare_price {
  flex-basis: 33%;
  font-size: 14px;
  text-decoration: line-through;
  white-space: nowrap;
  color: #b3b3b3;
}
.product .prices-and-incart .prices .price {
  flex-basis: 67%;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.product .prices-and-incart .incart {
  position: relative;
  text-align: right;
}
.product .prices-and-incart .incart::before {
  content: "";
  width: 20px;
  height: 16px;
  position: absolute;
  left: -22px;
  top: 1px;
  background: url(../images/informer-cart.svg) no-repeat center center;
  background-size: contain;
}
.product .prices-and-incart .incart.empty-cart {
  background: #b3b3b3;
}
.product .prices-and-incart .incart.empty-cart::before {
  opacity: 0.5;
}

.product.pdp {
  margin: 20px 0 60px;
  display: flex;
}
.product.pdp .product-left {
  flex-basis: 50%;
  margin-right: 50px;
}
.product.pdp .product-left .image {
  margin: 0;
  width: 100%;
  height: 600px;
}
.product.pdp .product-left .image a {
  margin: auto;
}
.product.pdp .product-left .images {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-right: -30px;
}
.product.pdp .product-left .images .small-img-wrapper {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 30px 20px 0;
  background-color: #ffffff;
  cursor: pointer;
  cursor: hand;
}
.product.pdp .product-left .images .small-img-wrapper img {
  margin: auto;
  height: auto;
}
.product.pdp .product-right {
  flex-basis: 50%;
}
.product.pdp .product-right .check-stickers {
  height: 50px;
  margin-bottom: 30px;
  display: flex;
}
.product.pdp .product-right .check-stickers .check-item {
  margin-right: 60px;
}
.product.pdp .product-right .check-stickers .check-item::before {
  top: 0;
  left: 0;
}
.product.pdp .product-right .prices .price {
  font-size: 28px;
  font-weight: 700;
}
.product.pdp .product-right .prices .compare_price {
  margin-left: 10px;
  font-size: 21px;
}
.product.pdp .product-right .variants-count {
  margin: 30px 0 20px;
  display: block;
  font-size: 24px;
  color: #000000;
}
.product.pdp .product-right div.variants {
  margin-top: 30px;
}
.product.pdp .product-right div[class^="product_variant"] {
  margin: 0;
  border-top: none;
}
.product.pdp .product-right form.variants {
  margin: 0 0 10px;
  padding: 30px;
  background: #ffffff;
}
.product.pdp .product-right form.variants .variant_name {
  padding-left: 20px;
}
.product.pdp .product-right .description {
  margin-top: 30px;
  line-height: 22px;
}
.product.pdp .product-right .video {
  margin-top: 25px;
}
.product.pdp .product-right .features {
  list-style: none;
  width: 100%;
  display: block;
  clear: both;
  margin-top: 25px;
}
.product.pdp .product-right .features li {
  padding: 10px 5px 10px 20px;
  overflow: hidden;
}
.product.pdp .product-right .features li.odd {
  background-color: #fefefe;
}
.product.pdp .product-right .features li label {
  font-style: normal;
  display: block;
  width: 30%;
  float: left;
}
.product.pdp .product-right .features li span {
  float: left;
  display: block;
  width: 70%;
  padding-left: 10px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .product.pdp .product-left {
    margin-right: 20px;
  }
  .product.pdp .product-left .image {
    height: auto;
  }
  .product.pdp .product-left .image img {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .product.pdp {
    flex-wrap: wrap;
  }
  .product.pdp .product-left {
    flex-basis: 100%;
  }
  .product.pdp .product-right {
    flex-basis: 100%;
  }
}
.tiny_products {
  margin: 0 -13px 10px -13px;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.tiny_products li[class^="product-wrapper"] {
  flex-basis: 25%;
  margin-bottom: 40px;
  transition-duration: 0.5s;
}
.tiny_products li[class^="product-wrapper"] .product {
  width: 260px;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 5px;
}
.tiny_products li[class^="product-wrapper"] .product:hover {
  box-shadow: 0 18px 20px 0 rgba(0, 0, 0, 0.2);
}
.tiny_products li[class^="product-wrapper"] .product .image {
  width: 226px;
  height: 250px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.tiny_products li[class^="product-wrapper"] .product .image:hover img:first-of-type {
  opacity: 0;
  transform: rotateY(-180deg);
}
.tiny_products li[class^="product-wrapper"] .product .image:hover img:last-of-type {
  opacity: 1;
  transform: translate(-50%, -50%) rotateY(0);
}
.tiny_products li[class^="product-wrapper"] .product .image .product-link {
  margin: 0 auto;
  display: block;
}
.tiny_products li[class^="product-wrapper"] .product .image .product-link img {
  vertical-align: middle;
  max-width: 226px;
}
.tiny_products li[class^="product-wrapper"] .product .image.mosaic {
  display: flex;
}
.tiny_products li[class^="product-wrapper"] .product .image.list {
  display: none;
}
.tiny_products li[class^="product-wrapper"] .product h3 {
  width: 100%;
  margin-top: 10px;
  min-height: 37px;
}
.tiny_products li[class^="product-wrapper"] .product h3.featured {
  background: url(../images/star.png) no-repeat;
  background-position: left center;
  padding-left: 20px;
}
.tiny_products li[class^="product-wrapper"] .product h3 a {
  color: #1d1d1b;
  text-decoration: none;
}
.tiny_products li[class^="product-wrapper"] .product h3 a:hover {
  text-decoration: underline;
}
.tiny_products li[class^="product-wrapper"] .product h3.underlined {
  text-decoration: underline;
}
.tiny_products li[class^="product-wrapper"] .product .price {
  font-size: 21px;
  color: #dc0000;
}
.tiny_products li[class^="product-wrapper"] .product .variants-wrapper:not(.absolute) {
  border: none !important;
}
.tiny_products li[class^="product-wrapper"] .product .variants-wrapper.absolute {
  width: 260px;
  left: -2px;
  position: absolute;
  background: #ffffff;
  z-index: 2;
  padding: 0 15px;
  box-shadow: 0 18px 20px 0 rgba(0, 0, 0, 0.2);
  border: 2px solid #ffffff;
  border-top: none !important;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tiny_products li[class^="product-wrapper"] .product .variants-wrapper .button[id^="toggle_variants_button"] {
  border-radius: 5px;
}
.tiny_products.list-view:not(.index) {
  margin: 0 0 10px 0;
  list-style: none;
  flex-direction: column;
}
.tiny_products.list-view:not(.index) li {
  margin-bottom: 10px;
  flex-basis: auto !important;
  width: 100%;
}
.tiny_products.list-view:not(.index) li .product {
  width: 100%;
  padding: 0 15px;
  display: flex;
}
.tiny_products.list-view:not(.index) li .product:hover {
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.2);
}
.tiny_products.list-view:not(.index) li .product .additional-icons {
  width: auto;
  display: block;
  top: 10px;
  left: 120px;
}
.tiny_products.list-view:not(.index) li .product .additional-icons .check-stickers .check-item {
  margin-right: 25px;
}
.tiny_products.list-view:not(.index) li .product .additional-icons .check-stickers .check-item::before {
  width: 20px;
  height: 20px;
}
.tiny_products.list-view:not(.index) li .product .additional-icons .favorite-wrapper {
  display: none;
}
.tiny_products.list-view:not(.index) li .product .image {
  width: 84px;
  height: 84px;
  margin: 1px 20px 0 0;
  display: flex;
}
.tiny_products.list-view:not(.index) li .product .image.mosaic {
  display: none;
}
.tiny_products.list-view:not(.index) li .product .image.list {
  display: flex;
}
.tiny_products.list-view:not(.index) li .product h3 {
  flex-basis: 250px;
  margin: 30px 0 0 0;
  min-height: auto;
  flex-grow: 1;
  width: auto;
  text-align: left;
}
.tiny_products.list-view:not(.index) li .product .prices-and-incart {
  flex-basis: 280px;
  padding: 30px 0 0;
  align-self: flex-start;
}
.tiny_products.list-view:not(.index) li .product .prices-and-incart .prices {
  flex-basis: 65%;
}
.tiny_products.list-view:not(.index) li .product .prices-and-incart .favorite-wrapper.list {
  flex-basis: 15%;
  margin: 0 25px 0 10px;
  display: block;
  justify-content: center;
}
.tiny_products.list-view:not(.index) li .product > div[class^="product_variant"] {
  flex-basis: 270px;
  margin: 0 0 0 40px;
  border-top: none;
  display: flex;
  align-items: center;
}
.tiny_products.list-view:not(.index) li .product > div[class^="product_variant"] form.variants {
  flex-basis: 100%;
  margin: 0;
}
.tiny_products.list-view:not(.index) li .product .variants-wrapper {
  flex-basis: 270px;
  margin: 1px 0 1px 40px;
}
.tiny_products.list-view:not(.index) li .product .variants-wrapper > div[class^="product_variant"] {
  flex-basis: 270px;
}
.tiny_products.list-view:not(.index) li .product .variants-wrapper.absolute {
  position: static;
  padding: 0;
  border: none !important;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .tiny_products li[class^="product-wrapper"] {
    flex-basis: 33.333%;
  }
}
@media (max-width: 830px) {
  .tiny_products li[class^="product-wrapper"] {
    flex-basis: 50%;
  }
}
@media (max-width: 800px) {
  .tiny_products li[class^="product-wrapper"] {
    transition-duration: 0s;
  }
  .tiny_products li[class^="product-wrapper"] .image:hover img:first-of-type {
    opacity: 1;
    transform: none;
  }
  .tiny_products li[class^="product-wrapper"] .image:hover img:last-of-type {
    opacity: 0;
    transform: none;
  }
}
@media (max-width: 560px) {
  .tiny_products li[class^="product-wrapper"] {
    flex-basis: 100%;
  }
  .tiny_products li[class^="product-wrapper"] .product {
    width: 345px;
  }
  .tiny_products li[class^="product-wrapper"] .product .variants-wrapper.absolute {
    width: 345px;
  }
}
#footer {
  width: 100%;
  padding: 45px 0;
  clear: both;
  text-align: center;
  background: #2f3334;
  flex: 0 1 auto;
  color: #fafbfd;
}
#footer .copyright {
  margin: 15px 0;
}
#footer #menu-footer-mob {
  display: none;
  margin-top: 10px;
}
#footer #menu-footer-mob li {
  margin: 5px 0;
}
#footer #menu-footer-mob li div {
  cursor: pointer;
  cursor: hand;
}
#footer #menu-footer-mob .sub-items {
  display: none;
}
#footer #menu-footer-mob .sub-items a {
  color: #fafbfd;
}

@media (max-width: 800px) {
  #footer #menu-footer-mob {
    display: block;
  }
}
