:root {
	--white: #FFF;
	--black: #000;
	--gray: #AAA9AA;
	--light-gray: #F1F1F1;
	--red: #B83520;
	--green: #467837;
	--light-green: rgba(70, 120, 55, .08);
	--yellow: #EBB131;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
			text-size-adjust: none;
}

html {
	display: block;
}

body {
	margin: 0;
	padding: 0;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	font-family: 'Ubuntu', sans-serif;
	line-height: 1.15;
	background-color: #FFF;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	/*-webkit-font-smoothing: subpixel-antialiased;*/
}

img {
	display: block;

	width: 100%;
	height: auto;
}

a,
a:hover {
	text-decoration: none;
	cursor: pointer;
}

.bone {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.button {
	display: inline-block;
	position: relative;

	height: 46px;
	padding: 0 20px;
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	font-family: 'Ubuntu', sans-serif;
	text-align: center;
	text-transform: none;
	text-decoration: none;
	text-overflow: ellipsis;
	line-height: 46px;
	white-space: nowrap;
	background-color: var(--red);
	box-shadow: none;
	border-radius: 8px;
	cursor: pointer;

	transition: color .25s linear, background-color .25s linear;

	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
		 -o-user-select: none;
			user-select: none;
}

.button.add {
	padding-left: 43px;
}

.button.add:before {
	content: '';
	position: absolute;
	top: 11px;
	left: 11px;

	width: 24px;
	height: 24px;
	background-color: rgba(0, 0, 0, .08);
	background-image: url('../images/icons/plus.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	border-radius: 4px;
}

.button:hover {
	background-color: var(--green);
}

.button:active {
	line-height: 48px;
}

.button.mini {
	height: 32px;
	padding: 0 12px;
	line-height: 32px;
}

.button.mini:active {
	line-height: 34px;
}

.button.mini.add {
	padding-left: 36px;
}

.button.mini.add:before {
	top: 4px;
	left: 4px;
}

.button.load {
	background-color: var(--red);
	background-image: url('/images/load.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 50px;
}

.input,
.textarea {
	display: block;

	width: 100%;
	height: 46px;
	padding: 12px 20px 12px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Ubuntu', sans-serif;
	line-height: 19px;
	background-color: #FFF;
	border: 1px solid var(--light-green);
	border-radius: 8px;
	box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, .12);
	outline: none;

	transition: background-color .13s linear, border-color .13s linear;

	-webkit-appearance: none;
}

.input.err,
.textarea.err {
	border-color: #EE0C0C;
}

.input:hover {
/*	border-color: var(--boring);*/
}

.input:focus,
.textarea:focus {
	background-color: #FFF;
	border-color: var(--green);
	box-shadow: none;
}

.star:before {
	content: '';
	position: absolute;
	top: 5px;
	right: 5px;

	width: 8px;
	height: 8px;
	background: url('/images/icons/star.svg') center center no-repeat;
	background-size: 100% auto;
}

.textarea {
	resize: vertical;

	min-height: 100px;
	padding-top: 13px;
	line-height: 22px;
}

.error {
	width: 100%;
	text-align: left;
}

.error span {
	color: #EE0C0C;
}

.input:-moz-placeholder,
.textarea:-moz-placeholder {
	color: var(--gray) !important;
	line-height: normal;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
	color: var(--gray);
	line-height: normal;
}

::-webkit-input-placeholder {
	color: var(--gray);
	line-height: normal;
}

:-ms-input-placeholder {
	color: var(--gray);
	line-height: normal;
}

::-moz-placeholder {
	color: var(--gray);
	line-height: normal;
}

:-moz-placeholder {
	color: var(--gray);
	line-height: normal;
}

.title {
	font-size: 64px;
	font-weight: 700;
}

.subtitle {
	padding-top: 4px;
	font-size: 21px;
	line-height: 160%;
}

.subtitle a {
	color: var(--black);
	text-decoration: underline;
}

.subtitle a:hover {
	text-decoration: none;
}



/* global */

.global_header {
	padding-bottom: 40px;
}

.global_header.center {
	text-align: center;
}

.global_title {
	color: var(--black);
	font-size: 50px;
	font-weight: 700;
}

.global_bread {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;

	margin-top: 12px;
}

.global_bread a {
	position: relative;

	padding-right: 18px;
	color: var(--green);
	font-size: 16px;

	transition: color .23s ease-out;
}

.global_bread a:hover {
	color: var(--black);
}

.global_bread a:before {
	content: '';
	position: absolute;
	top: 7px;
	right: 0;

	width: 6px;
	height: 6px;
	background-image: url('../images/mushroom.gray.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.global_bread span {
	color: var(--gray);
	font-size: 16px;
}

/* global */



/* toggle */

.toggle {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;

	padding: 4px;
	border: 1px solid var(--light-gray);
	border-radius: 8px;
	box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, .12);
}

.toggle_li {
	flex-grow: 1;

	padding: 12px 20px;
	color: var(--black);
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	border-radius: 4px;
	cursor: pointer;

	transition: color .23s ease-out, background-color .23s ease-out;
}

.toggle_li:hover {
	color: var(--green);
	background-color: var(--light-green);
}

.toggle.mini .toggle_li {
	padding: 4px 8px;
}

.toggle_li.active {
	color: var(--white);
	background-color: var(--green);
}

/* — — — gray — — — */

.toggle_li.gray {
	color: var(--gray);
}

.toggle_li.gray:hover {
	color: var(--black);
	background-color: var(--light-gray);
}

.toggle_li.gray.active {
	color: var(--white);
	background-color: var(--green);
}

/* toggle */



/* counter */

.counter {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;

	padding: 4px;
	background-color: var(--white);
	border: 1px solid rgba(70, 120, 55, .16);
	border-radius: 8px;
	box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, .12);
}

.counter_button {
	width: 38px;
	height: 38px;
	background-color: var(--light-green);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	border-radius: 4px;
	cursor: pointer;

	transition: background-color .23s ease-out;
}

.counter_button:hover {
	background-color: transparent;
}

.counter_button.minus {
	background-image: url('../images/icons/minus.counter.svg');
}

.counter_button.plus {
	background-image: url('../images/icons/plus.counter.svg');
}

.counter_input {
	width: 48px;
}

.counter_input input {
	width: 100%;
	height: 38px;
	padding: 0;
	text-align: center;
	border: 0 none;
	box-shadow: none;
}

/* — — — mini — — — */

.counter.mini .counter_button {
	width: 28px;
	height: 22px;
}

.counter.mini .counter_input {
	width: 16px;
}

.counter.mini .counter_input input {
	height: 22px;
}

/* counter */



/* header */

.header {
	position: relative;

	padding: 4px 0 0;
	z-index: 3;
}

.header_group {

}

.header_bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;

	padding: 8px 20px 10px;
	background-color: var(--light-green);
	border-radius: 100px;
}

.header_bar_label {
	color: var(--green);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 140%;
}

.header_bar_ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.header_bar_li {
	color: var(--black);
	font-size: 12px;

	transition: color .23s ease-out;
}

.header_bar_li:hover {
	color: var(--green);
}

.header_bar_call {
	display: none;

	width: 40px;
	padding: 12px;
	background-color: var(--green);
	border-radius: 50%;
}

.header_bar_call img {

}

.header_info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;

	margin-top: 20px;
}

.header_info_logo {
	height: 64px;
}

.header_info_logo img {
	width: auto;
	height: 100%;
}

.header_info_contacts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 80px;
}

.header_info_contacts_block {

}

.header_info_contacts_block.right {
	text-align: right;
}

.header_info_contacts_label {
	color: var(--gray);
	font-size: 12px;
}

.header_info_contacts_value {
	margin-top: 4px;
	color: var(--black);
	font-size: 21px;
	font-weight: 500;

	transition: color .23s ease-out;
}

.header_info_contacts_value:hover {
	color: var(--green);
}

.header_menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	position: relative;

	margin-top: 20px;
	padding: 16px;
	background-color: var(--red);
	border-radius: 20px;
}

.header_menu_ul {
	display: flex;
	flex-wrap: wrap;
	gap: 46px;
}

.header_menu_li {
	position: relative;

	padding: 12px 20px;
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 100px;
	cursor: pointer;

	transition: background-color .23s ease-out;
}

.header_menu_li:before {
	content: '';
	position: absolute;
	top: 18px;
	left: calc(100% + 20px);

	width: 6px;
	height: 6px;
	background-image: url('../images/mushroom.white.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.header_menu_li:last-child:before {
	display: none;
}

.header_menu_li:hover {
	background-color: rgba(0, 0, 0, .08);
}

.header_menu_li.active {
	background-color: rgba(0, 0, 0, .08);
}

.header_menu_li.sub {
	padding-right: 38px;
}

.header_menu_li.sub:after {
	content: '';
	position: absolute;
	top: 15px;
	left: calc(100% - 34px);

	width: 14px;
	height: 12px;
	background-color: rgba(255, 255, 255, .12);
	background-image: url('../images/icons/arrow.bottom.white.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 6px auto;
	border-radius: 3px;

	transition: transform .23s ease-out;
}

.header_menu_li.sub.active:after {
	transform: rotate(180deg);
}

.header_submenu {
	visibility: hidden;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	right: 0;

	padding: 36px;
	background-color: var(--red);
	border-radius: 20px;
	opacity: 0;

	transition: top .23s ease-out, opacity .23s ease-out, visibility .23s ease-out;
}

.header_submenu.active {
	visibility: visible;
	top: calc(100% + 4px);

	opacity: 1;
}

.header_submenu_li {
	display: block;

	width: calc(100% / 6 - 80px / 6);
	padding: 20px;
	border-radius: 8px;

	transition: background-color .23s ease-out;
}

.header_submenu_li:hover {
	background-color: rgba(0, 0, 0, .08);
}

.header_submenu_li_icon {
	max-width: 40px;
	margin: 0 auto;
}

.header_submenu_li_label {
	padding-top: 20px;
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.header_search {

}

.header_search_button {
	display: flex;
	align-items: center;
	gap: 4px;

	padding: 0 20px 0 52px;
	height: 44px;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	background-color: rgba(0, 0, 0, .08);
	background-image: url('../images/icons/basket.flat.svg');
	background-position: 20px 12px;
	background-repeat: no-repeat;
	background-size: 20px auto;
	border-radius: 100px;
	cursor: pointer;
}

.header_search_button span {
	display: inline-block;
}

/* header */



/* general */

.general {
	margin-top: 48px;
}

.general_group {

}

.general_slider {

}

.general_slide {

}

.general_slide img {
	border-radius: 20px;
}

/* general */



/* goods */

.goods {
	margin-top: 48px;
}

.goods_group {

}

.goods_header {

}

.goods_filter {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;

	margin-bottom: 40px;
}

.goods_filter_tag {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;

	padding: 4px 12px;
	color: var(--black);
	font-size: 16px;
	background-color: var(--light-green);
	border: 2px solid transparent;
	border-radius: 100px;
	cursor: pointer;

	transition: color .23s ease-out, background-color .23s ease-out, border-color .23s ease-out;
}

.goods_filter_tag:hover {
	border-color: var(--light-green);
}

.goods_filter_tag.active {
	color: var(--green);
	background-color: transparent;
	border-color: var(--green);
}

.goods_filter_tag_icon {
	width: 16px;
}

.goods_filter_tag_icon img {

}

.goods_filter_tag_label {

}

.goods_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.goods_title {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px 40px;

	padding: 40px 0 20px;
	color: var(--black);
	font-size: 24px;
	font-weight: 700;
}

.goods_title:first-child {
	padding-top: 0;
}

.goods_title a {
	color: var(--green);
	font-size: 16px;

	transition: color .23s ease-out;
}

.goods_title a:hover {
	color: var(--black);
}

.goods_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	padding-top: 20px;
}

.goods_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;

	width: calc(25% - 15px);
	border: 1px solid var(--light-gray);
	border-radius: 12px;
}

.goods_block.line {
	flex-direction: row;

	width: 100%;
}

.goods_image {
	display: block;
	position: relative;

	border-bottom: 1px solid var(--light-gray);
}

.goods_image_badge {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;

	position: absolute;
	top: 12px;
	left: -4px;
}

.goods_image_badge_label {
	padding: 4px 8px;
	color: var(--white);
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	border-radius: 4px;
}

.goods_image_badge_label.new {
	background-color: var(--green);
}

.goods_image_badge_label.popular {
	background-color: var(--yellow);
}

.goods_image_badge_label.hot {
	background-color: var(--red);
}

.goods_image_badge_label.vegan {
	color: var(--green);
	background-color: #F0F4EF;
}

.goods_block.line .goods_image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	width: 200px;
	border-right: 1px solid var(--light-gray);
	border-bottom: 0 none;
}

.goods_image img {
	border-radius: 12px 12px 0 0;
}

.goods_block.line .goods_image img {
	border-radius: 12px 0 0 12px;
}

.goods_info {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-grow: 1;
	gap: 12px;

	padding: 20px;
}

.goods_block.line .goods_info {
	width: calc(100% - 200px);
}

.goods_info_header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
}

.goods_info_title {
	color: var(--black);
	font-size: 21px;
	font-weight: 700;
	cursor: pointer;

	transition: color .23s ease-out;
}

.goods_info_header:hover .goods_info_title {
	color: var(--green);
}

.goods_info_par {
	color: var(--gray);
	font-size: 16px;
}

.goods_info_descr {
	flex-grow: 1;
}

.goods_info_descr_text {
	color: var(--black);
	font-size: 12px;
	line-height: 140%;
}

.goods_info_toggle {

}

.goods_info_bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.goods_info_bar_price {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.goods_info_bar_price_money {
	color: var(--black);
	font-size: 16px;
	font-weight: 700;
}

.goods_info_bar_price_weight {
	position: relative;

	padding-left: 14px;
	color: var(--gray);
	font-size: 16px;
}

.goods_info_bar_price_weight:before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;

	width: 6px;
	height: 6px;
	background-image: url('../images/mushroom.gray.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

/* goods */



/* good */

.good {
	margin-top: 48px;
}

.good_group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.good_col {
	width: calc(50% - 10px);
}

.good_image {
	border: 1px solid var(--light-gray);
	border-radius: 20px;
}

.good_image img {
	border-radius: 20px;
}

.good_image.hidden {
	display: none;
}

.good_recommend {
	margin-top: 20px;
}

.good_recommend_label {
	color: var(--black);
	font-size: 21px;
	font-weight: 500;
}

.good_recommend_group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;

	margin-top: 20px;
}

.good_header {
	padding: 20px;
	border: 1px solid var(--light-gray);
	border-radius: 20px;
}

.good_tag {

}

.good_title {
	color: var(--black);
	font-size: 50px;
	font-weight: 700;
}

.good_subtitle {
	margin-top: 8px;
	color: var(--gray);
	font-size: 16px;
	line-height: 140%;
}

.good_descr {
	margin-top: 8px;
	color: var(--black);
	font-size: 14px;
	line-height: 140%;
}

.good_bar {
	margin-top: 20px;
	padding: 20px;
	border: 1px solid var(--light-gray);
	border-radius: 20px;
}

.good_bar.hidden {
	margin-top: 0;
	padding: 0;
	border: 0 none;
}

.good_toggle {

}

.good_panel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	left: 8px;
	right: 8px;
	bottom: 8px;

	margin-top: 8px;
	padding: 8px 8px 8px 20px;
	background-color: #EFF3EE;
	border-radius: 12px;
	z-index: 2;
}

.good_panel_price {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.good_panel_price_money {
	color: var(--black);
	font-size: 21px;
	font-weight: 700;
}

.good_panel_price_weight {
	position: relative;

	padding-left: 18px;
	color: var(--gray);
	font-size: 21px;
}

.good_panel_price_weight:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;

	width: 6px;
	height: 6px;
	background-image: url('../images/mushroom.gray.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.good_panel_control {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.good_panel_count {

}

.good_panel_button {

}

.good_components {
	margin-top: 20px;
	padding: 20px;
	border: 1px solid var(--light-gray);
	border-radius: 20px;
}

.good_components_tag {

}

.good_components_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;

	margin-top: 20px;
}

.good_components_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;

	width: calc(25% - 15px);
	padding: 20px 8px;
	text-align: center;
	border: 1px solid var(--light-gray);
	border-radius: 8px;
}

.good_components_image {

}

.good_components_image img {

}

.good_components_title {
	flex-grow: 1;

	font-size: 12px;
	text-align: center;
	line-height: 140%;
}

.good_components_price {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
}

.good_components_price_grams {
	color: var(--gray);
	font-size: 12px;
}

.good_components_price_money {
	color: var(--black);
	font-size: 12px;
}

.good_components_label {
	color: var(--black);
	font-size: 14px;
	line-height: 140%;
}

.good_components_kcal {
	display: flex;

	width: 100%;
	padding: 20px;
	background-color: var(--light-green);
	border-radius: 8px;
}

.good_components_kcal_block {
	flex-grow: 1;

	text-align: center;
}

.good_components_kcal_label {
	padding-bottom: 12px;
	color: var(--black);
	font-size: 12px;
	border-bottom: 2px solid var(--light-green);
}

.good_components_kcal_value {
	margin-top: 12px;
	color: var(--black);
	font-size: 12px;
	line-height: 140%;
}

/* — — — active — — — */

.good_components_kcal_block.active .good_components_kcal_label {
	color: var(--green);
	font-weight: 700;
	border-color: var(--green);
}

.good_components_kcal_block.active .good_components_kcal_value {
	color: var(--green);
	font-weight: 700;
}

/* good */



/* contacts */

.contacts {
	margin-top: 48px;
}

.contacts_group {

}

.contacts_header {

}

.contacts_row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.contacts_col {
	width: calc(50% - 10px);
	padding: 20px;
	border: 1px solid var(--light-gray);
	border-radius: 20px;
}

.contacts_map {
	position: relative;

	width: calc(50% - 10px);
	border-radius: 20px;
}

.contacts_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	border-radius: 20px;
}

.contacts_block {
	margin-top: 20px;
}

.contacts_block:first-child {
	margin-top: 0;
}

.contacts_label {
	color: var(--gray);
	font-size: 12px;
	line-height: 140%;
}

.contacts_phones {

}

.contacts_phone {
	display: block;
	position: relative;

	margin-top: 2px;
	padding-left: 24px;
	color: var(--black);
	font-size: 21px;
	font-weight: 500;
}

.contacts_phone:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;

	width: 16px;
	height: 16px;
	background-image: url('../images/icons/phone.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.contacts_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.contacts_socs_link {
	padding: 12px 28px;
	background-color: var(--light-green);
	border-radius: 100px;
}

.contacts_socs_link img {
	width: 20px;
}

.contacts_address {
	color: var(--black);
	font-size: 21px;
	font-weight: 500;
}

.contacts_times {
	display: flex;

	padding: 20px;
	background-color: var(--light-green);
	border-radius: 8px;
}

.contacts_times_block {
	flex-grow: 1;

	text-align: center;
}

.contacts_times_label {
	padding-bottom: 12px;
	color: var(--black);
	font-size: 12px;
	border-bottom: 2px solid var(--light-green);
}

.contacts_times_value {
	margin-top: 12px;
	color: var(--black);
	font-size: 12px;
	line-height: 140%;
}

/* — — — active — — — */

.contacts_times_block.active .contacts_times_label {
	color: var(--green);
	font-weight: 700;
	border-color: var(--green);
}

.contacts_times_block.active .contacts_times_value {
	color: var(--green);
	font-weight: 700;
}

/* contacts */



/* texter */

.texter {
	margin-top: 48px;
}

.texter_group {

}

.texter_header {

}

.texter_content {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
}

.texter_content.margin {
	margin-top: 40px;
}

.texter_content.gray {
	color: var(--gray);
}

.texter_content p {
	font-size: 18px;
	line-height: 160%;
}

.texter_content h3 {
	font-size: 21px;
	font-weight: 500;
	line-height: 160%;
}

.texter_content h4 {
	font-size: 18px;
	font-weight: 500;
	line-height: 160%;
}

.texter_delivery {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 8px;
}

.texter_delivery_block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	padding: 11px 12px 12px;
	background-color: var(--light-green);
	border-radius: 12px;
}

.texter_delivery_label {
	color: var(--green);
	font-size: 12px;
	line-height: 140%;
}

.texter_delivery_value {
	color: var(--black);
	font-size: 12px;
	font-weight: 700;
	line-height: 140%;
}

/* texter */



/* footer */

.footer {
	position: relative;

	margin-top: 48px;
	z-index: 1;
}

.footer_group {
	position: relative;

	padding: 40px 260px 20px 40px;
	background-color: var(--green);
	border-radius: 20px 20px 0 0;
}

.footer_row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer_block {

}

.footer_ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;
}

.footer_li {
	color: var(--white);
	font-size: 16px;
}

.footer_info {

}

.footer_info.right {
	text-align: right;
}

.footer_info:last-child {
	margin-top: 24px;
}

.footer_info_label {
	color: rgba(255, 255, 255, .4);
	font-size: 12px;
}

.footer_info_value {
	margin-top: 4px;
	color: var(--white);
	font-size: 21px;
	font-weight: 500;
}

.footer_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;

	margin-top: 24px;
}

.footer_socs_link {
	padding: 12px 28px;
	background-color: rgba(255, 255, 255, .08);
	border-radius: 100px;
}

.footer_socs_link img {
	width: 20px;
}

.footer_copy {
	margin-top: 20px;
	padding: 20px 0 0;
	color: rgba(255, 255, 255, .4);
	font-size: 12px;
	border-top: 1px solid rgba(255, 255, 255, .08);;
}

.footer_hipster {
	position: absolute;
	right: 0;
	bottom: 0;

	width: 220px;
}

.footer_hipster img {

}

/* footer */



/* minibar */

.minibar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: 9;
}

.minibar.hidden {
	display: none !important;
}

.minibar_group {
	padding: 0 8px 8px;
}

.minibar_panel {
	display: flex;
	gap: 4px;

	padding: 4px;
	background-color: var(--green);
	border-radius: 12px;
}

.minibar_block {
	position: relative;

	width: calc(100% - 8px / 3);
	padding: 10px;
	background-color: rgba(0, 0, 0, .08);
	border-radius: 8px;
	cursor: pointer;

	transition: background-color .23s ease-out;
}

.minibar_block:hover {
	background-color: rgba(0, 0, 0, .16);
}

.minibar_icon {
	width: 24px;
	margin: 0 auto;
	padding-bottom: 4px;

	transition: .23s opacity .23s ease-out;
}

.minibar_icon.hidden {
	opacity: 0;

	transition: opacity .23s ease-out;
}

.minibar_icon.fix {
	display: none;
}

.minibar_icon.open {
	display: block !important;

	height: 28px;
	opacity: 1;
}

.minibar_icon img {

}

.minibar_label {
	color: var(--white);
	font-size: 10px;
	font-weight: 500;
	text-align: center;
}

.minibar_label_count {
	position: absolute;
	top: 4px;
	right: 4px;

	padding: 5px 8px;
	color: var(--white);
	font-size: 12px;
	font-weight: 500;
	background-color: var(--red);
	border-radius: 4px;
}

/* minibar */



/* bar */

.bar {
	overflow: hidden;
	position: fixed;
	top: 8px;
	right: 8px;
	bottom: 83px;

	max-width: 600px;
	width: calc(100% - 16px);
	background-color: var(--green);
	border-radius: 12px;
	z-index: 998;

	transition: transform .25s ease-out;
	transform: translateX(110%);
}

.bar_close {
	position: absolute;
	top: 40px;
	right: 40px;

	width: 28px;
	height: 28px;
	background: url('../images/icons/close.svg') center center no-repeat;
	background-size: 100% auto;
	cursor: pointer;
	z-index: 2;
}

.bar.active {
	transform: translateX(0) !important;
}

.bar_scroll {
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	position: relative;

	width: calc(100% + 30px);
	height: calc(100vh - 83px);
	padding: 40px 70px 40px 40px;

	-webkit-overflow-scrolling: touch;
}

.bar_scroll::-webkit-scrollbar {
	width: 0;
}

.bar_scroll {
	-ms-overflow-style: none;
}

.bar_scroll {
	overflow: -moz-scrollbars-none;
}

.bar_ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 16px;
}

.bar_li {
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	line-height: 140%;

	transition: opacity .23s ease-out;
}

.bar_li:hover {
	opacity: .6;
}

.bar_li.sub {
	padding-left: 16px;
	opacity: .6;

	transition: opacity .23s ease-out;
}

.bar_li.sub:hover {
	opacity: 1;
}

.bar_ul.light {
	flex-grow: 1;

	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.bar_ul.light .bar_li {
	font-weight: 400;
}

.bar_info {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.bar_info_label {
	color: rgba(255, 255, 255, .4);
	font-size: 12px;
}

.bar_info_value {
	margin-top: 4px;
	color: var(--white);
	font-size: 21px;
	font-weight: 500;
}

/* bar */



/* sidebar */

.sidebar {
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;

	max-width: 500px;
	width: 100%;
	background-color: var(--white);
	border-left: 1px solid var(--light-gray);
	z-index: 998;

	transition: transform .25s ease-out;
	transform: translateX(100%);
}

.sidebar_close {
	position: absolute;
	top: 20px;
	right: 20px;

	width: 28px;
	height: 28px;
	background: url('../images/icons/close.gray.svg') center center no-repeat;
	background-size: 100% auto;
	cursor: pointer;
	z-index: 2;
}

.sidebar.active {
	transform: translateX(0) !important;
}

.sidebar_scroll {
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	position: relative;

	width: calc(100% + 30px);
	height: 100vh;
	padding: 20px 50px 122px 20px;

	-webkit-overflow-scrolling: touch;
}

.sidebar_scroll::-webkit-scrollbar {
	width: 0;
}

.sidebar_scroll {
	-ms-overflow-style: none;
}

.sidebar_scroll {
	overflow: -moz-scrollbars-none;
}

.sidebar_header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	min-height: 28px;
	margin-bottom: 20px;
}

.sidebar_title {
	color: var(--black);
	font-size: 21px;
	font-weight: 500;
}

.sidebar_title span {
	color: var(--green);
}

.sidebar_goods {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 16px;
}

.sidebar_goods_block {
	display: flex;
	flex-wrap: wrap;
	position: relative;

	padding: 8px;
	background-color: var(--light-green);
	border-radius: 12px;
}

.sidebar_goods_image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	width: 120px;
	background-color: var(--white);
	border-radius: 8px;
}

.sidebar_goods_image img {
	border-radius: 8px;
}

.sidebar_goods_info {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	gap: 8px;

	width: calc(100% - 120px);
	padding-left: 16px;
}

.sidebar_goods_title {
	color: var(--black);
	font-size: 21px;
	font-weight: 500;

	transition: color .23s ease-out;
}

.sidebar_goods_title:hover {
	color: var(--green);
}

.sidebar_goods_par {
	color: var(--green);
	font-size: 12px;
}

.sidebar_goods_adds {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 12px;
}

.sidebar_goods_adds_col {
	color: var(--black);
	font-size: 12px;
}

.sidebar_goods_adds_col span {
	color: var(--green);
}

.sidebar_goods_bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.sidebar_goods_price {
	color: var(--black);
	font-size: 16px;
	font-weight: 700;
}

.sidebar_goods_price span {
	color: var(--green);
}

.sidebar_goods_count {

}

.sidebar_goods_remove {
	position: absolute;
	right: 0;
	bottom: 0;

	width: 44px;
	height: 28px;
	background-color: var(--red);
	background-image: url('/images/icons/remove.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	border-radius: 12px 0;
	cursor: pointer;

	transition: background-color .23s ease-out;
}

.sidebar_goods_remove:hover {
	background-color: var(--green);
}

/* — — — mini — — — */

.sidebar_goods_block.mini {
	margin-left: 46px;
}

.sidebar_goods_block.mini .sidebar_goods_image {
	width: 74px;
}

.sidebar_goods_block.mini .sidebar_goods_title {
	font-size: 16px;
}

/* — — — mini — — — */

.sidebar_total {
	position: fixed;
	right: 0;
	bottom: 0;

	max-width: 500px;
	width: 100%;
	padding: 0 20px 20px;
	background-color: var(--white);
}

.sidebar_total_row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;

	padding: 8px 8px 8px 20px;
	background-color: var(--green);
	border-radius: 12px;
}

.sidebar_total_price {
	color: var(--white);
	font-size: 21px;
	font-weight: 700;
}

.sidebar_total_button {

}

/* sidebar */



/* msg */

.msg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	padding: 24px 20px 26px;
	color: var(--white);
	font-size: 16px;
	text-align: center;
	background-color: var(--black);
	cursor: pointer;
	opacity: 0;
	z-index: 100001;

	transition: opacity .23s ease-out, transform .23s ease-out;
	will-change: transform;

	-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
}

.msg.red {
	background-color: var(--red);
}

.msg.green {
	background-color: var(--green);
}

.msg.active {
	opacity: 1;

	-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
}

/* msg */



/* checkout */

.checkout {
	margin-top: 48px;
}

.checkout_group {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.checkout_form {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;

	width: calc(100% - 460px);
	padding-right: 40px;
}

.checkout_flex {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.checkout_form > div,
.checkout_flex > div {
	width: 100%;
}

.checkout_title {
	width: 100%;
	color: var(--black);
	font-size: 21px;
	font-weight: 500;
}

.checkout_row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;

	width: 100%;
}

.checkout_row.two > div {
	width: calc(50% - 8px);
}

.checkout_row.three > div {
	width: calc(100% / 3 - 32px / 3);
}

.checkout_row.full {
	width: 100%;
}

.checkout_input {
	position: relative;

	width: 100%;
}

.checkout_input input {

}

.checkout_toggle {
	display: flex;

	width: 100%;
}

.checkout_adds {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;

	width: 100%;
}

.checkout_adds_block {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;

	padding: 8px 8px 8px 20px;
	background-color: var(--light-green);
	border-radius: 12px;
}

.checkout_adds_label {
	font-size: 12px;
	font-weight: 500;
}

.checkout_adds_label span {
	color: var(--green);
}

.checkout_adds_count {

}

.checkout_equipment {
	margin-top: 16px;
}

.checkout_message {
	padding: 10px 12px 12px;
	color: var(--green);
	font-size: 12px;
	background-color: var(--light-green);
	border-radius: 12px;
}

.checkout_finish {
	width: 460px;
}

.checkout_finish_attantion {
	position: relative;
	margin-top: 16px;
	padding-left: 28px;
	color: var(--gray);
	font-size: 16px;
	line-height: 160%;
}

.checkout_finish_attantion span {
	color: var(--green);
}

.checkout_finish_attantion:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;

	width: 20px;
	height: 20px;
	background-image: url('/images/icons/attantion.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.checkout_finish_bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;

	margin-top: 16px;
	padding: 8px 8px 8px 20px;
	background-color: var(--light-green);
	border-radius: 12px;
}

.checkout_finish_price {
	color: var(--black);
	font-size: 21px;
	font-weight: 700;
}

.checkout_finish_button {

}

.checkout_delivery {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	padding: 12px 16px;
	background-color: var(--light-green);
	border-radius: 12px;
}

.checkout_delivery_icon {
	width: 40px;
}

.checkout_delivery_icon img {

}

.checkout_delivery_info {
	position: relative;

	width: calc(100% - 40px);
	padding-left: 16px;
}

.checkout_delivery_title {
	color: var(--green);
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
}

.checkout_delivery_descr {
	padding-top: 4px;
	color: var(--black);
	font-size: 12px;
	line-height: 140%;
}

.checkout_delivery_button {
	position: absolute;
	top: 50%;
	right: 0;

	width: 20px;
	height: 20px;
	margin-top: -10px;
	background-image: url('/images/icons/info.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	cursor: pointer;

	transition: transform .23s ease-out;
}

.checkout_delivery_button:hover {
	transform: scale(1.1);
}

.checkout_success {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	padding: 12px;
	background-color: var(--light-green);
	border-radius: 12px;
}

.checkout_success_icon {
	width: 80px;
}

.checkout_success_icon img {

}

.checkout_success_info {
	width: calc(100% - 80px);
	padding-left: 12px;
}

.checkout_success_title {
	color: var(--black);
	font-size: 21px;
	font-weight: 500;
}

.checkout_success_descr {
	margin-top: 4px;
	color: var(--black);
	font-size: 14px;
	line-height: 140%;
}

.checkout_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.checkout_block {
	width: calc(50% - 8px);
}

.checkout_block.full {
	width: 100%;
}

.checkout_block_label {
	color: var(--gray);
	font-size: 14px;
}

.checkout_block_value {
	margin-top: 4px;
	color: var(--black);
	font-size: 14px;
	font-weight: 500;
	line-height: 140%;
}

/* checkout */






































.contacts_input.star:before {
		content: '';
		position: absolute;
		top: 5px;
		right: 5px;

		width: 6px;
		height: 6px;
		background: url(//uadd.me/images/star.svg) center center no-repeat;
		background-size: 100% auto;
		z-index: 8;
}

/* animation */

.animation_top {
	opacity: 0;

	transition: opacity .33s ease-out, transform .63s ease-out;
	will-change: transform, opacity;

	transform: translate3d(0, 60px, 0);
}

.animation_top.animation_active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_levitate {
	animation: levitate-animation 8s ease-in-out infinite alternate;
}

@keyframes levitate-animation {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(20px, -30px, 0) rotate(5deg);
	}
	100% {
		transform: translate3d(0, -50px, 0) rotate(-2deg);
	}
}

/* animation */

@media only screen and (max-width: 1160px) {
	/* goods */

	.goods_block {
		width: calc(100% / 3 - 40px / 3);
	}

	/* goods */
}

@media only screen and (max-width: 980px) {
	.bone {
		max-width: 600px;
		padding: 0 20px;
	}

	/* slider */

	.slick-dots {
		bottom: 16px;
	}

	/* slider */



	/* global */

	.global_header {
		padding-bottom: 20px;
		text-align: center;
	}

	.global_title {
		font-size: 21px;
	}

	.global_bread {
		justify-content: center;

		margin-top: 8px;
	}

	/* global */



	/* header */

	.header {
		padding-top: 12px;
	}

	.header_group {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.header_bar {
		order: 2;
		gap: 20px;

		width: calc(100% - 120px);
		padding: 8px 8px 8px 24px;
	}

	.header_bar_label {
		width: calc(100% - 60px);
	}

	.header_bar_call {
		display: block;
	}

	.header_bar_ul,
	.header_info_contacts,
	.header_search {
		display: none;
	}

	.header_info {
		order: 1;

		margin-top: 0;
	}

	.header_info_logo {
		height: 54px;
	}

	.header_menu {
		order: 3;
		justify-content: center;

		width: calc(100% + 40px);
		margin-top: 12px;
		padding: 12px 24px;
		border-radius: 12px;
	}

	.header_menu_ul {
		gap: 12px;
	}

	.header_menu_li {
		padding: 0 0 0 18px;
	}

	.header_menu_li:first-child {
		padding: 0;
	}

	.header_menu_li:before {
		top: 6px;
		left: calc(100% + 12px);
	}

	.header_menu_li:hover {
		background-color: transparent;
	}

	.header_menu_li.active {
		background-color: transparent;
	}

	.header_submenu {
		padding: 16px;
		border-radius: 12px;
	}

	.header_submenu_li {
		width: calc(100% / 3 - 32px / 3);
	}

	.header_menu_li.sub {
		padding-right: 18px;
	}

	.header_menu_li.sub:after {
		top: 3px;
		left: calc(100% - 14px);
	}

	/* header */



	/* minibar */

	.minibar {
		display: block;
	}

	/* minibar */



	/* toogle */

	.toggle_li {
		padding-left: 12px;
		padding-right: 12px;
	}

	/* toogle */



	/* general */

	.general {
		margin-top: 20px;
	}

	/* general */



	/* good */

	.good {
		margin-top: 20px;
	}

	.good_col {
		width: 100%;
	}

	.good_col:first-child {
		order: 2;
	}

	.good_image {
		display: none;
	}

	.good_image.hidden {
		display: block;
	}

	.good_header {
		margin-top: 12px;
		padding: 16px;
	}

	.good_title {
		font-size: 36px;
	}

	.good_panel {
		justify-content: center;
		gap: 20px;
		bottom: 56px;

		padding: 8px;
	}

	.good_bar {
		margin-top: 12px;
		padding: 16px;
	}

	.good_components {
		margin-top: 12px;
		padding: 16px;
	}

	.good_components_block {
		width: calc(100% / 3 - 8px);
	}

	.good_components_list {
		gap: 12px;

		margin-top: 12px;
	}

	.good_recommend {
		margin-top: 0;
	}

	.good_recommend_group {
		gap: 12px;

		margin-top: 12px;
	}

	.good_recommend_label {
		text-align: center;
	}

	/* good */



	/* goods */

	.goods {
		margin-top: 20px;
	}

	.goods_filter {
		justify-content: center;

		margin-bottom: 20px;
	}

	.goods_list {
		gap: 12px;
	}

	.goods_block.line .goods_image {
		width: 135px;
	}

	.goods_block.line .goods_info {
		width: calc(100% - 135px);
		padding: 16px;
	}

	.goods_block {
		flex-direction: row;

		width: 100%;
	}

	.goods_image {
		display: flex;
		flex-wrap: wrap;
		align-items: center;

		width: 135px;
		border-right: 1px solid var(--light-gray);
		border-bottom: 0 none;
	}

	.goods_image img {
		border-radius: 12px 0 0 12px;
	}

	.goods_info {
		width: calc(100% - 135px);
		padding: 16px;
	}

	/* goods */



	/* contacts */

	.contacts {
		margin-top: 20px;
	}

	.contacts_row {
		gap: 12px;
	}

	.contacts_col {
		width: 100%;
		padding: 16px;
	}

	.contacts_map {
		width: 100%;
		height: 400px;
	}

	/* contacts */



	/* texter */

	.texter {
		margin-top: 20px;
	}

	/* texter */



	/* footer */

	.footer {
		margin-top: 20px;
	}

	.footer_group {
		margin-left: -20px;
		margin-right: -20px;
		padding: 20px;
		border-radius: 0;
	}

	.footer_block {
		width: 100%;
	}

	.footer_block:nth-child(2) {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, .08);
	}

	.footer_ul {
		align-items: center;
	}

	.footer_info {
		text-align: center;
	}

	.footer_info.right {
		margin-top: 24px;
		text-align: center;
	}

	.footer_socs {
		justify-content: center;
	}

	.footer_hipster {
		z-index: 1;
	}

	.footer_row {
		position: relative;

		z-index: 2;
	}

	.footer_socs_link {
		background-color: #558347;
	}

	.footer_copy {
		position: relative;

		z-index: 2;
	}

	/* footer */



	/* checkout */

	.checkout {
		margin-top: 20px;
	}

	.checkout_form {
		gap: 12px;

		width: 100%;
		padding-right: 0;
	}

	.checkout_finish {
		width: 100%;
		margin-top: 12px;
	}

	.checkout_row {
		gap: 12px;
	}

	.checkout_adds {
		flex-wrap: wrap;
		gap: 8px;
	}

	.checkout_adds_block {
		width: 100%;
	}

	.checkout_success {
		justify-content: center;

		padding: 20px 16px;
	}

	.checkout_success_info {
		width: 100%;
		padding-top: 12px;
		padding-left: 0;
		text-align: center;
	}

	.checkout_block {
		width: 100%;
	}

	/* checkout */
}

@media only screen and (max-width: 520px) {
	/* header */

	.header_menu_ul {
		justify-content: space-between;
		gap: 4px;

		width: 100%;
	}

	.header_menu_li {
		padding: 0;
		font-size: 13px;
	}

	.header_menu_li:before {
		display: none;
	}

	.header_submenu {
		gap: 12px;

		padding: 12px;
	}

	.header_submenu_li {
		width: calc(100% / 3 - 8px);
		font-size: 13px;
		border-radius: 8px;
	}

	.header_menu_li.sub:after {
		top: 2px;
	}

	/* header */



	/* good */

	.good_panel {
		gap: 8px;
	}

	.good_panel_price {
		justify-content: center;

		width: 100%;
	}

	/* good */
}

@media only screen and (max-width: 440px) {
	.bone {
		padding: 0 12px;
	}

	/* header */

	.header_menu {
		width: calc(100% + 24px);
	}

	.header_menu_li.sub:after {
		top: 2px;
	}

	/* header */



	/* footer */

	.footer_group {
			margin-left: -12px;
			margin-right: -12px;
	}

	/* footer */



	/* goods */

	.goods_info {
		padding: 12px;
	}

	/* goods */



	/* contacts */

	.contacts_col {
		padding: 12px;
	}

	/* contacts */
}

@media only screen and (max-width: 410px) {
	/* global */

	.global_header {
		padding-bottom: 12px;
	}

	/* global */



	/* header */

	.header_menu {
		padding-left: 12px;
		padding-right: 12px;
	}

	.header_bar {
		flex-grow: 1;
		gap: 12px;

		margin-left: 12px;
	}

	/* header */



	/* general */

	.general {
		margin-top: 0;
	}

	.general_group {
		margin-left: -12px;
		margin-right: -12px;
	}

	.general_slide img {
		border-radius: 0;
	}

	/* general */



	/* good */

	.good_image,
	.good_header,
	.good_bar,
	.good_components,
	.good_recommend {
		margin-left: -12px;
		margin-right: -12px;
		border-left: 0 none;
		border-right: 0 none;
		border-radius: 0;
	}

	.good_header,
	.good_bar,
	.good_components {
		padding: 12px;
	}

	.good_components_block {
		width: calc(50% - 6px);
	}

	/* good */



	/* goods */

	.goods {
		margin-top: 12px;
	}

	.goods_group {
		margin-left: -12px;
		margin-right: -12px;
	}

	.goods_block,
	.goods_block.line {
		border-left: 0 none;
		border-right: 0 none;
		border-radius: 0;
	}

	.goods_image,
	.goods_block.line .goods_image {
		width: 100px;
	}

	.goods_info,
	.goods_block.line .goods_info {
		width: calc(100% - 100px);
		padding: 12px;
	}

	/* goods */



	/* contacts */

	.contacts_col {
		width: calc(100% + 24px);
		margin-left: -12px;
		margin-right: -12px;
		padding-top: 0;
		padding-bottom: 0;
		border: 0 none;
		border-radius: 0;
	}

	/* contacts */



	/* footer */

	.footer {
		margin-top: 12px;
	}

	/* footer */
}