@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

HTML, BODY {
	padding: 0px; 
	margin: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(250, 249, 245, 0.9);
	color: #423c34;
}

HTML {
	font-family: 'Montserrat', sans-serif;
}

IMG {
	border: none;
	vertical-align: top;
}

A {
	color: #423c34;
	text-decoration: none;
	cursor: pointer;
}

A:hover {
	text-decoration: underline;
}

.wrapper {
	position: relative;
	min-width: 100%;
	min-height: 100%;
	box-sizing: border-box;
	display:flex;
	flex-direction:column;
}

.widther {
	width: 100%;
	max-width: 1200px;
	padding: 0px 10px;
	margin: 0 auto;	
	box-sizing: border-box;
}

.slider-1 img,
.slider-3 img {
	width: 100%;
}

.slider-m {
	display: none;
}

.slider-1 .slick-prev::before, 
.slider-1 .slick-next::before {
	color: #fff;
}

.slider-2 .slick-slide img {
	margin: 0 auto;
}

.slider-2 .slick-slide > div {
	display: flex;
	align-items: center;
	height: 64px;
	min-height: 64px;
}

.loading {
	height: 128px;
	background-image: url('/template/images/loading.gif');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 64px;
}

/* Header */

.header {
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(250, 249, 245, 0.9);
	z-index: 1;
}

.header > div {
	position: relative;
}

.header > div > div,
.header > div > div > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .logo {
	padding: 10px;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

.header .logo img {
	width: 200px;
}

.header-icons > div,
.header-icons > a {
	margin-left: 20px;
	width: 40px;
	height: 74px;
	cursor: pointer;
}

/* Home Header */

.home .header {
	display: none;
}

.home .home-header {
	display: block;
	background-color: transparent;
}

.home .home-header .logo img {
	opacity: 0;
}

.home .home-header .logo {
	background-image: url('/template/images/logo_w.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 200px 22px;
}

.home .home-header,
.home .home-header a {
	color: #fff;
}
	
.home .header.home-header .header-menu .menu > li {
    line-height: 32px;
}

.home .home-header .menu-button {
	background-image: url('/template/images/menu_w.svg');
}

.home .home-header .shop-user-menu .user-button {
    background-image: url('/template/images/user_w.svg');
}

.home .home-header .search-button {
    background-image: url('/template/images/search_w.svg');
}

.home .home-header .small-cart {
    background-image: url('/template/images/cart_w.svg');
}

.home .home-header .shop-user-menu > div:nth-child(2) {
	background-color: transparent;
}

.home .home-header .header-menu .menu ul {
	background-color: transparent;
}

.home .home-header .menu-button.menu-button-close {
    background-image: url('/template/images/close_w.svg');
}

.home .shop-items-view {
	margin-bottom: 50px;
}

.home .shop-items-view .slick-slide {
	margin: 0 10px;
}

.home .shop-items-view .slick-slide > div > div > div {
	margin-bottom: 10px;
}

.home .shop-items-view .slick-list {
	margin: 0 -10px;
}

/* Header Menu */

.header .menu-button {
	width: 30px;
	height: 40px;
	background-image: url('/template/images/menu.svg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 20px;
	cursor: pointer;
}

.header .header-menu {
	flex-grow: 1;
}

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

.header .header-menu .menu, .header .header-menu .menu ul {
	padding: 0px;
	margin: 0px;
}

.header .header-menu .menu li {
	list-style: none;
	line-height: 32px;
}

.header .header-menu .menu > li {
	line-height: 72px;
}

.header .header-menu .menu li.selected {
	font-weight: bold;
}

.header .header-menu .menu > li {
	display: inline-block;
	vertical-align: top;
	margin-left: 20px;
	margin-right: 20px;
}

.header .header-menu .menu > li:last-child {
	margin-right: 0px;
}

.header .header-menu .menu ul {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(250, 249, 245, 0.9);
	line-height: 30px;
	margin-left: -10px;
	padding: 10px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
}

.header .header-menu .menu > li:hover > ul {
	visibility: visible;
	opacity: 1;	
}

.header.active .header-menu .menu > li:hover > ul {
	visibility: hidden;
	opacity: 0;	
}

.header .menu-button.menu-button-close {
	background-image: url('/template/images/close.svg');
}

.header .env {
	position: relative;
	line-height: 40px;
	width: 40px;
	height: 40px;
}

.header .env > div {
	display: block;
	visibility: hidden;
	opacity: 0;
	vertical-align: top;
	padding: 0px 10px;
	position: absolute;
}

.header .env:hover > div {
	visibility: visible;
	opacity: 1;
	position: relative;
	background-color: rgba(250, 249, 245, 0.9);
}

.header .env > div.selected {
	visibility: visible;
	opacity: 1;
	font-weight: bold;
}

.header .small-cart {
	position: relative;
	background-image: url('/template/images/cart.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 22px;
}

.header .small-cart > div {
	position: absolute;
	right: -5px;
	top: 2px;
	width: 24px;
	height: 24px;
	font-size: 0.9em;
	font-weight: bold;
	text-align: center;
	line-height: 24px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}

.header .small-cart > div:empty {
	display: none;
}

/* Header Search */

.header .search-button {
	width: 100%;
	height: 100%;
	background-image: url('/template/images/search.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px;
}

.header .search-form {
	position: absolute;
	width: 100%;
	top: 100%;
	right: 0px;
	padding: 5px 10px;
	box-sizing: border-box;
	display: none;
}

.header .search:hover .search-form {
	visibility: visible;
	opacity: 1;
}

.header .search-form .form {
	position: relative;
}

.header .search-form .form input {
	border-radius: 16px;
	color: #777;
	font-weight: 300;
}

.header .search-form .form button {
	position: absolute;
	top: 0px;
	right: 0px;
	font-size: 0px;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	color: #000;
	background-color: transparent;
	background-image: url("/template/images/search.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 16px;
	opacity: 0.5;
}

/* Header User Menu */

.header .shop-user-menu {
	position: relative;
	text-align: center;
}

.header .shop-user-menu .user-button {
	width: 100%;
	height: 100%;
	background-image: url('/template/images/user.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px;
}

.header .shop-user-menu > div:nth-child(2) {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	padding: 10px;
	margin-top: -20px;
	background-color: rgba(250, 249, 245, 0.9);
	display: flex;
	transform: translate(-50%, 0);
	white-space: nowrap;
}

.header .shop-user-menu:hover > div:nth-child(2) {
	visibility: visible;
	opacity: 1;
}

.header .shop-user-menu > div:nth-child(2) > div {
	margin: 0px 10px;
}

.header .shop-user-menu > div:nth-child(2) > div:nth-child(1) {
	margin-left: 20px;
}

.header .shop-user-menu .logout {
	cursor: pointer;
}

/* Breadcrumb */

.breadcrumb {
	display: flex;
	font-size: 0.8em;
	opacity: 0.5;
}

.breadcrumb > div {
	padding: 20px 30px 30px 0px;
	position: relative;
}

.breadcrumb > div:after {
	content: "";
	display: block;
	position: absolute;
	right: 10px;
	top: 23px;
	width: 8px;
	height: 12px;
	background-image: url("/template/images/right.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 4px 6px;
}

.breadcrumb > div:last-child:after {
	display: none;
}

/* Content */

.content {
	padding-top: 80px;
	padding-bottom: 50px;
}

/* Footer */

.footer {
	margin-top: auto;
	clear: both;
	font-size: 0.8em;
	padding: 0px 10px;
}

.footer p {
	padding: 8px 0px;
	margin: 0px;
}

.footer ul,
.footer li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.footer li {
	padding: 5px 0px;
}

.footer > div {
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #eee;
	padding: 20px 0px;
}

.footer .logo img {
	height: 22px;
}

.footer .to-top {
	padding-top: 24px;
	background-image: url("/template/images/top.svg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 24px;
	cursor: pointer;
}

.footer .place,
.footer .phone,
.footer .mail {
	padding-left: 20px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 12px;
	
}

.footer .place {
	background-image: url("/template/images/place.svg");
}
.footer .phone {
	background-image: url("/template/images/phone.svg");
	
}
.footer .mail {
	background-image: url("/template/images/mail.svg");

}

/* Shop */

.content > .shop {
	display: flex;
	padding-right: 0px;
}

.content > .shop.offer {
	flex-direction: column;
}

.shop .shop-left {
	min-width: 200px;
}

.shop .shop-content {
	flex-grow: 1;
}

.catalogue-text {
	padding: 0px 10px 0px 0px;
}

.shop-items-view-header {
	display: flex;
	justify-content: space-between;
	line-height: 20px;
	padding: 5px 10px 5px 0px;
	margin-bottom: 20px;
}

.shop-items-view-header select,
.shop-items-view-header .select2 {
	margin-left: 10px;
	font-size: 1em !important;
}

/* Shop Menu */

.shop-categories {
	margin-bottom: 20px;
}

.shop-categories .shop-menu, .shop-menu ul {
	padding: 0px;
	margin: 0px;
}

.shop-categories .shop-menu > li > ul {
	font-size: 0.8em;
}

.shop-categories .shop-menu > li > ul {
	margin-bottom: 10px;
}

.shop-categories .shop-menu li {
	line-height: 30px;
	list-style: none;
}

.shop-categories .shop-menu li > img {
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

.shop-categories .shop-menu ul {
	display: none;
}

.shop-categories .shop-menu li.selected > a {
	font-weight: bold;
}

.shop-categories .shop-menu li.selected > ul {
	display: block;	
}

.header-full-menu {
	position: fixed;
	display: none;
	top: 74px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(250, 249, 245, 0.9);
	z-index: 2;
	overflow-y: scroll;
}

.header-full-menu .menu li ul {
	display: none;
}

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

.header-full-menu .menu li {
	font-size: 1.2em;
	margin: 20px 20px 10px 0px;
}

.header-full-menu > div {
    position: relative;
}

.header-full-menu ul,
.header-full-menu li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.header-full-menu .shop-menu ul {
	display: flex;
	flex-wrap: wrap;
}

.header-full-menu .shop-menu ul li {
	padding: 10px 15px 10px 0px;
}

.header-full-menu .shop-menu > li {
	padding: 20px 0px;
}

.header-full-menu .shop-menu > li > ul {
	margin-top: 10px;
}

.header-full-menu .shop-menu > li > a {
	font-size: 1.2em;
}

.header-full-menu li.selected > a {
	font-weight: bold;
}

/* Items Filter */

.items-filter .param-name {
	font-weight: bold;
	margin: 30px 0px 10px 0px;
}

.items-filter .param-price > div {
	display: inline-block;
	vertical-align: top;
}

.items-filter .param-price input {
	width: 50px;
	margin: 0px 5px;
	border-radius: 3px;
	border: 1px solid #eee;
	padding: 5px;
}

.items-filter .range-slider {
	padding-right: 30px;
	margin: 10px 0px;
}

.items-filter .param-values {
	height: 100px;
	overflow-y: hidden;
	line-height: 20px;
}

.items-filter .param-values > div {
	cursor: pointer;
}

.items-filter .param-checkbox {
	margin-top: 20px;
}

.items-filter .param-values > div > a,
.items-filter .param-checkbox > a {
	display: block;
	padding-left: 20px;
	background-image: url('/template/images/items-filter.svg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 14px;
	margin: 10px 0px;
}

.items-filter .param-values > div > a.selected,
.items-filter .param-checkbox > a.selected {
	background-image: url('/template/images/items-filter-on.svg');
}

.items-filter .param-values > div:hover {
	text-decoration: underline;
}

.items-filter .show-other {
	font-size: 0.8em;
	margin: 5px 0px;
	opacity: 0.6;
	cursor: pointer;
}

.items-filter-button {
	display: none;
	background-image: url('/template/images/filter.svg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 24px;
	padding-left: 32px;
	margin-bottom: 20px;
}

/* Items View */

.shop-items-view {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.shop-items-view > div {
	position: relative;
	flex-basis: 33.3%;
	padding: 10px 10px 20px 0px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
}

.shop-items-view > div > div {
	padding-top: 15px;
}

.shop-items-view .image {
	min-height: 120px;
	flex-grow: 1;
	text-align: center;
	background-color: #FFF;
	margin-bottom: 10px;
	padding: 0px;
}

.shop-items-view > div img {
	max-width: 100%;
}

.shop-items-view-next {
	display: table;
	margin: 0 auto;
	padding: 5px 10px;
	margin-top: 20px;
	cursor: pointer;
	border: 1px solid #eee;
}

.shop-items-view .name {
	position: relative;
}

.shop-items-view .quick-view {
	position: absolute;
	top: -40px;
	left: 5px;
	cursor: pointer;
	width: 24px;
	height: 24px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background-color: rgba(250, 249, 245, 0.9);
}

.shop-items-view .quick-view:after {
	content: "i";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 24px;
	text-align: center;
	line-height: 24px;
}

/* Offer View */

.shop-offer-view {
	display: flex;
	position: relative;
}

.shop-offer-view > div {
	box-sizing: border-box;
}

.shop-offer-view .back {
	position: absolute;
	top: 0px;
	left: 0px;
	padding-left: 24px;
	background-image: url("/template/images/back.svg");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 16px;
	opacity: 0.5;
	cursor: pointer;
}

.shop-offer-view .back:hover {
	opacity: 1;
}

#modal .back {
	display: none;
}

.shop-offer-view > div:last-child {
	flex-grow: 1;
}

.shop-offer-view .images {
	padding-right: 40px;
	margin-top: 40px;
	min-width: 300px;
	max-width: 500px;
}

#modal .shop-offer-view .images {
	margin-top: 0px;
}

.shop-offer-view .images .images-view img {
	width: 100%;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}

.shop-offer-view .images .images-preview > div {
	margin: 5px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}

.shop-offer-view .images .images-preview img {
	height: 60px;
}

.shop-offer-view-info h1 {
	font-size: 1.2em;
	margin: 0px;
}

.shop-offer-view-info > div {
	margin-bottom: 20px;
}

.other-offers {
	display: flex;
}

.other-offers img {
	height: 50px;
}

.other-offers > div {
	margin: 10px 10px 10px 0px;
}

.other-offers .selected {
	border: 2px solid #000;
}

.shop-offer-view-info .price {
	margin: 10px 0px;
	font-size: 1.2em;
}

.shop-offer-view-data > div {
	margin-bottom: 10px;
}

.shop-offer-select-title {
	font-weight: bold;
}

.shop-offer-select > div {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
}

.shop-offer-select a.selected {
	font-weight: bold;
}

.shop-offer-view-data {
	font-size: 0.8em;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.shop-offer-view-data > div {
	padding-bottom: 5px;
}

.shop-offer-view-data > div > div {
	display: inline-block;
	vertical-align: top;
}

.shop-offer-view-data > div > div:first-child {
	opacity: 0.8;
	padding-right: 10px;
}

.shop .login,
.shop .register,
.shop .restore,
.shop .user  {
	width: 100%;
	max-width: 600px;
}

.shop .login .row-password + div {
	float: right;
	line-height: 34px;
}

.shop-user-links > a {
	margin: 0px 20px 20px 0px;
}

.shop-user-links > a.selected {
	font-weight: bold;
}

.shop-user-links {
	margin-bottom: 20px;
}

.shop-user-orders, .shop-user-order-offers {
	border-collapse: collapse;
}

.shop-user-orders td, .shop-user-orders th, 
.shop-user-order-offers td, .shop-user-order-offers th {
	padding: 5px 10px;
}

.shop-user-orders td,
.shop-user-order-offers td {
	border-top: 1px solid #eee;
}

.shop-user-orders tbody tr {
	cursor: pointer;
}

.shop-user-orders tbody tr:hover {
	background-color: #f8f8f8;
}

.shop-user-order-offers tbody td:nth-child(2),
.shop-user-order-offers tbody td:nth-child(3),
.shop-user-order-offers tbody td:nth-child(4) {
	text-align: center;
}

.shop-user-order > div {
	margin-bottom: 10px;
}

/* Price View */

.price-view > div {
	display: inline-block;
	vertical-align: bottom;
	padding-right: 10px;
	font-weight: bold;
}

.price-view > div:after {
	content: "₽";
	padding-left: 3px;
	font-family: Arial;
}

.price-view .with-sale {
	opacity: 0.3;
	text-decoration: line-through;
	font-size: 0.8em;
	margin-right: 5px;
}

.price-view .sale {
	font-weight: bold;
	color: #de1830;
}

.shop-items-view > div > div.sale-percent {
	position: absolute;
	display: block;
	right: 16px;
	top: 16px;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	border-radius: 16px;
	background-color: #de1830;
	color: #fff;
	font-size: 0.8em;
	padding-top: 0px;
}

/* To Cart */

.to-cart {
	display: table;
}

.to-cart > div {
	display: table-cell;
	position: relative;
	vertical-align: top;
}

.to-cart button, 
.in-cart,
.cart .cart-offers button {
	cursor: pointer;
	background-color: transparent;
	line-height: 20px;
	font-size: 1em;
}

.to-cart > div:first-child {
	padding-right: 10px;
}

.to-cart > div:first-child button,
.cart .cart-offers > div > div:last-child > div button {
	border: none;
	width: 24px;
	height: 24px;
	display: block;
	line-height: 20px;
	position: absolute;
	top: 0px;
}

.to-cart > div:first-child > button:first-child,
.cart .cart-offers > div > div:last-child > div > button:first-child {
	left: 0px;
}

.to-cart > div:first-child > button:last-child {
	right: 10px;
}

.cart .cart-offers > div > div:last-child > div > button:last-child {
	right: 0px;
}

.to-cart > div:first-child input,
.cart .cart-offers > div > div:last-child > div input  {
	width: 100%;
	display: block;
	text-align: center;
	line-height: 24px;
	padding: 0px;
	margin: 0px;
	border: none;
	min-width: 60px;
	border-radius: 6px;
	background-color: #fff;
	color: #000;
}

.to-cart > div:last-child button, .in-cart {
	display: block;
	white-space: nowrap;
	padding: 0px 10px 0px 30px;
	border: none;
	background-image: url("/template/images/cart.svg");
	background-size: 16px;
	background-position: left 5px center;
	background-repeat: no-repeat;
}

.in-cart {
	display: inline-block;
	opacity: 0.4;
}

.to-cart-items .to-cart-item {
	display: table;
}

.to-cart-items .to-cart-item > div {
	display: table-cell;
	vertical-align: middle;
	padding-right:10px;
}

.to-cart-items .to-cart-item .image img {
	max-width: 100px;
	max-height: 100px;
}

.to-cart-items .to-cart-item .price-count > div {
	display: inline-block;
	vertical-align: top;
}

.to-cart-items .to-cart-item .price-count > div:nth-child(2):before {
	content: " x ";
}

.to-cart-items .to-cart-item .price-count > div:nth-child(2):after {
	content: " = ";
	padding-right: 10px;
}

.to-cart-items .to-cart-footer {
	font-weight: bold;
	margin-top: 20px;
}

.to-cart-items .to-cart-footer > div:first-child .price-view {
	display: inline-block;
	vertical-align: top;
	margin-left: 5px;
}

.to-cart-items .to-cart-footer > div.to-cart-footer-link {
	display: inline-block;
	vertical-align: top;
	margin: 20px 20px 20px 0px;
	cursor: pointer;
}

/* Cart */

.cart .cart-offers {
	display: flex;
	display: grid;
	flex-direction: column;
}

.cart .cart-offers > div {
	display: flex;
	min-height: 100px;
	justify-content: space-between;
	border-bottom: 1px solid #eee;
}

.cart .cart-offers .image {
	min-width: 100px;
	text-align: center;
}

.cart .cart-offers .image img {
	max-width: 100px;
	max-height: 100px;
	margin: 10px 0px;
}

.cart .cart-offers .info {
	padding: 10px 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.cart .cart-offers .info .name {
	font-weight: bold;
}

.cart .cart-offers .info .param  {
	font-size: 0.8em;
	padding-top: 5px;
}

.cart .cart-offers .info .param > div {
	display: inline-block;
	vertical-align: top;
}

.cart .cart-offers .info .param > div:first-child {
	font-weight: bold;
	padding-right: 5px;
}

.cart .cart-offers > div > div:last-child {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.cart .cart-offers > div > div:last-child > div {
	white-space: nowrap;
	position: relative;
	margin-left: 20px;
}

.cart .cart-offers > .sum {
	font-weight: bold;
	font-size: 1.2em;
	margin: 10px 0px;
}

.cart .cart-offers > .sum > div {
	display: inline-block;
	vertical-align: top;
}

.cart .cart-offers .delete:after {
	content: "X";
	color: #f00;
	cursor: pointer;
}

.cart .cart-offers > .min-sum {
	color: #f00;
}

.cart .cart-offers > .min-sum > div {
	display: inline-block;
	vertical-align: top;
}

.cart .cart-offers .price-view > div {
	padding-right: 0px;
}

.cart .cart-promo,
.cart .cart-delivery,
.cart .cart-pay {
	display: none;
}

.cart .cart-promo,
.cart .cart-delivery,
.cart .cart-pay,
.cart .cart-order {
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 10px;
	margin-top: 20px;
	box-sizing: border-box;
}

.cart .cart-promo h3,
.cart .cart-delivery h3,
.cart .cart-pay h3,
.cart .cart-order h3 {
	padding: 0px;
	margin: 0px;
}

.cart .cart-promo .promo-code {
	display: inline-block;
	vertical-align: text-top;
	font-weight: bold;
}

.cart .cart-promo .delete-promo {
	display: inline-block;
	vertical-align: text-top;
	color: #f00;
	margin-left: 10px;
	cursor: pointer;
}

.cart .cart-promo .promo-error {
	color: #f00;
	margin-top: 10px;
}

.cart .cart-delivery > div {
	display: inline-block;
	vertical-align: top;
}

.cart .cart-delivery > div:first-child > div {
	cursor: pointer;
}

.cart .cart-delivery > div:first-child > div.selected {
	font-weight: bold;
}

.cart .cart-delivery > div:last-child{
	padding-left: 20px;
	padding-top: 24px;
}

.cart .cart-delivery .price-view  {
	display: inline-block;
	vertical-align: top;
	font-weight: bold;
}

.cart .delivery-name {
	font-weight: bold;
}

.cart .cart-pay > div > div {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
	cursor: pointer;
}

.cart .cart-pay > div > div.selected {
	font-weight: bold;
}

/* Page */

.page {
	text-align: center;
	margin-top: 30px;
	font-size: 0.9em;
}

.page > a {
	text-decoration: none;
	color: #000;
	display: inline-block;
	padding: 3px;
	cursor: pointer;
	width: 16px;
	height: 16px;
	border: 1px solid #eee;
	margin: 0px 5px;
}

.page > a:first-child {
	width: auto;
	display: inline-block !important;
	margin-right: 15px;
	border: none;
}

.page > a:last-child {
	width: auto;
	display: inline-block !important;
	margin-left: 15px;
	border: none
}

.page > a:hover {
	text-decoration: underline;	
}

.page > a.hidden {
	display: none;
}

.page > a.selected {
	background-color: #000;
	color: #fff;
}

/* Form */

.form > div {
	position: relative;
	margin-bottom: 10px;
}

.form label {
	display: block;
	margin-top: 10px;
	margin-bottom: 4px;
}

.form label.no-block {
	padding-left: 30px;
	margin: 10px 0px;
}

.form input[type=checkbox] {
	position: absolute;
	left: 0px;
	top: 3px;
}

.form input[type=text], .form input[type=password], .form textarea {
	font-size: 1em;
	padding: 6px;
	border-radius: 6px;
	border: 1px solid #ddd;
	width: 100%;
	box-sizing: border-box;
}

.form button, .form-button {
	background-color: #000;
	color: #fff;
	border: none;
	padding: 7px 10px;
	font-size: 1em;
	cursor: pointer;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 300;
}

.form button:hover, .form-button:hover {
	background-color: #777;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.form .error-message {
	color: #f00;
	margin-top: 10px;
}

/* Review */

.shop-review > div:first-child {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 10px;
}

.shop-review .form-rating {
	display: inline-block;
	vertical-align: top;
	width: 162px;
}

.shop-review .form-rating > div {
	display: inline-block;
	vertical-align: top;
	width: 32px;
	height: 32px;
	background-image: url("/template/images/star.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 16px;
}

.shop-review .form-rating > div.raiting-on, 
.shop-review .form-rating > div.raiting-hover {
	background-image: url("/template/images/star-on.svg");
}

.shop-review .row-rating label {
	display: inline-block;
	vertical-align: top;
	line-height: 16px;
}

.shop-review-reviews > div {
	margin-top: 10px;
}

.shop-review-reviews > div > div:first-child {
	font-weight: bold;
}

.shop-review-reviews .shop-review-rating > div {
	display: inline-block;
	vertical-align: top;
	width: 32px;
	height: 32px;
	background-image: url("/template/images/star-on.svg");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 16px;
}

.shop-review-reviews label {
	line-height: 24px;
	opacity: 0.6;
}

/* Zoom Zoom */

.zoom-zoom {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 5;
	overflow-y: scroll;
}

.zoom-zoom img {
	width: 100%;
}

.zoom-close {
	position: fixed;
	top: 20px;
	right: 30px;
	width: 32px;
	height: 32px;
	border: 2px solid #000;
	background-image: url("/template/images/close.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 18px;
	border-radius: 50%;
	z-index: 6;
	cursor: pointer;
}

.zoom-zoom .images-preview {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	flex-direction: column;
	z-index: 6;
}

.zoom-zoom .images-preview img {
	opacity: 0.6;
	margin: 10px;
	width: 64px;
	cursor: pointer;
}

.zoom-zoom .images-preview img:hover {
	opacity: 1;
}

.zoom-zoom .images-preview img.selected {
	border: 1px solid #000;
	margin: 8px;
	opacity: 1;
}

.ys {
	font-size: 0.7em;
	font-weight: bold;
	cursor: pointer;
}

.ys:hover {
	text-decoration: underline;
}

.label-9 {
	position: absolute;
	top: 15px;
	left: 10px;
}

.label-9:after {
	content: "Новинка";
	font-weight: bold;
	color: #46c058;
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
}

.shop-divisions-view {
	display: flex;
	flex-wrap: wrap;
}

.shop-divisions-view > div {
	margin: 10px 10px 10px 0px;
}

.whatsapp {
	display: block;
	width: 48px;
	height: 48px;
	position: fixed;
	right: 24px;
	bottom: 24px;
	background-image: url("/template/images/whatsapp.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media (max-width: 1024px) {

	.header .header-menu .menu > li.division-2 {
		display: none;
	}
	
	.shop-items-view > div {
		flex-basis: 50%; 
	}
	
	.to-cart > div:last-child button {
		font-size: 0px;
		padding-left: 18px;
	}
	
}

@media (max-width: 768px) {
	
	.header-menu {
		display: none;
	}
	
	.header-full-menu .menu {
		display: flex;
	}
	
	.header-icons > div, 
	.header-icons > a {
		margin-left: 5px;
	}
	
	.content > .shop {
		flex-direction: column;	
	}
	
	.content > .shop .shop-menu {
		display: none;	
	}
	
	.shop-items-view {
		justify-content: space-between;
	}
	
	.shop-items-view > div {
		flex-basis: 48%;
	}
	
	.items-filter {
		display: none;
		margin-bottom: 20px;
	}
	
	.items-filter.active {
		display: block;
	}
	
	.items-filter .range-slider, .items-filter .param-price {
		display: inline-block;
		vertical-align: top;
		box-sizing: border-box;
	}
	
	.items-filter .range-slider {
		width: 40%;
	}
	
	.items-filter .param-price {
		width: 60%;
		padding-top: 36px;
		white-space: nowrap;
	}
	
	.items-filter .param-values {
		height: auto;
		display: flex;
		flex-wrap: wrap;
	}
	
	.items-filter .param-values > div {
		margin-right: 10px; 
		margin-bottom: 10px;
	}
	
	.items-filter .show-other {
		display: none;
	}
	
	.shop-offer-view {
		flex-direction: column;
	}
	
	.shop-offer-view .images {
		box-sizing: border-box;
		margin: 0 auto;
		width: 100%;
		padding-right: 10px;
		padding-bottom: 20px;
	}
	
	.shop-offer-view .images .images-view {
		box-sizing: border-box;
	}
	
	.shop-offer-view .images .images-preview {
		text-align: center;
	}
	
	.cart .cart-offers > div > div:last-child {
		flex-direction: column;
	}
	
	.cart .cart-offers > div > div:last-child > div {
		margin-left: 10px;
	}
	
}

@media (max-width: 480px) {
	
	.slider-f {
		display: none;
	}
	
	.slider-m {
		display: block;
	}
	
	.header .logo {
		position: relative;
		left: auto;
		transform: translate(0, 0);
	}

	.slider-1 img {
		width: auto;
		height: 500px;
		display: block;
	}
	
	.header .logo,
	.header .logo a,
	.header .logo img {
		width: 100px !important;
		height: 11px !important;
	}
	
	.home .home-header .logo {
	    background-size: 100px 11px;
	}
	
	.header-full-menu {
		font-size: 0.9em;
	}
	
	.header .menu > li {
		display: block;
		padding: 0px;
		margin: 0px;
		margin-top: 5px;	
	}
	
	.breadcrumb {
		display: none;
	}
	
	.shop-items-view-header {
		flex-direction: column;
	}
	
	.shop-items-view-header > div {
		margin-bottom: 20px;
	}
	
	.items-filter-button {
		display: flex;
	}
	
	.shop-items-view > div {
		padding-right: 0px;
	}
	
	.footer > div {
		position: relative;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.footer > div > div {
		margin-bottom: 20px;
	}
	
	.footer > div > div:last-child {
		position: absolute;
		top: 30px;
		right: 20px;
	}
	
	.footer ul {
		display: flex;
		flex-wrap: wrap;
	}
	
	.footer ul li {
		padding: 10px 20px 10px 0px;
	}

	.footer .logo img {
		margin: 20px 0px;
		height: 18px;
	}
	
}