body {
	--acc: #FF4240;
	--text: #29252B;
	--purple: #844AFF;
	--red: #FF1C1C;
	--orange: #FF4C2C;
	--bs: 0px 4px 7px rgba(62, 15, 138, 0.15);
	--bs-m: 0px 2px 6px rgba(0, 0, 0, 0.15);
	color: var(--text);
	font-family: 'Ubuntu', sans-serif;
	font-weight: 300;
	line-height: normal;
}
		
		[v-cloak] {
			display: none;
		}

.page.fixed {
	height: 100vh;
	overflow: hidden;
}

a {
	color: var(--text);
}

a:hover,
a:active,
a:focus {
	color: var(--text);
	text-decoration: none;
	outline: none;
}

.block, .inner, .grid, .grid-cascade, .grid-cover, .grid-row, .grid-col {
	display: block;
}

#form-notification {
	position: fixed;
	top: 100px;
	z-index: 10000;
	right: 0;
	width: 300px;
	padding: 30px;
	text-align: center;
	transform: translateX(320px);
	font-size: 16px;
	transition: .5s;
	border-radius: 10px;
}

#form-notification.active {
	transform: translateX(-20px);
}

#form-notification[data-class="done"] {
	background: var(--purple);
	color: #fff;
}

#form-notification[data-class="error"] {
	background: var(--red);
	color: #fff;
}

.page {
	padding-top: 85px;
	background: #fcfcfc;
}

.cont {
	max-width: 1170px;
	margin: auto;
}

.cont--full {
	max-width: 100%
}

.mbtn {
	display: inline-block;
	color: var(--text);
	transition: .3s;
	background: var(--acc);
	text-align: center;
	text-transform: uppercase;
	padding: 12px 17px;
	min-width: 200px;
	font-size: 14px;
    color: #fff;
    border-radius: 10px;
}
		
		.mbtn--purple {
			background: var(--purple)
		}
		
		
		
.mbtn:hover,
.mbtn:focus,
.mbtn:active {
	background: var(--purple);
	color: #fff;
}
		
		.mbtn--purple:hover {
			background: var(--acc)
		}
		
		.mbtn--flat-white {
			color: #fff;
			border-color: #fff;
		}
		
		.mbtn--flat-white:hover {
			color: var(--purple);
			background: #fff;
		}

.mbtn--size-s {
	font-size: 14px;
	min-width: 100px;
	font-size: 14px;
    min-width: 100px;
    padding: 7px 10px;
}

.mbtn--size-sm {
	font-size: 13px;
	min-width: 100px;
}
		
.header {
    padding: 0 15px;
    background: #fff;
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    left: 0;
	box-shadow: 0px 4px 4px rgba(62, 15, 138, 0.15);
}

.header.menu-active {
			padding-right: 32px;
		}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 20px 0;
}

.header__item--flex {
	display: flex;
	align-items: center;
}
	
		.header__item:last-child {
			justify-content: flex-end;
		}
		
.header__item {
    flex: 1;
}
		
.header-logo {
	text-align: center;
}

.city-switcher {
	display: flex;
	font-weight: 300;
	margin-left: 30px;
}

.city-switcher__title {
	border-bottom: 1px solid var(--text);
	margin-right: 7px;
}

.city-switcher__city {
	cursor: pointer
}

.catalog-trigger {
	display: flex;
	align-items: center;
	cursor: pointer
} 

.catalog-trigger__icon {
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer
}

.catalog-trigger__icon span {
	display: block;
	position: absolute;
	width: 22px;
	height: 2px;
	background: var(--text);
	top: calc(50%);
	left: calc(50% - 11px);
	transition: .3s;
}

.catalog-trigger__icon span:first-child {
	top: calc(50% - 6px);
}

.catalog-trigger__icon span:last-child {
    top: calc(50% + 6px);
}
		
.catalog-trigger.active .catalog-trigger__icon span:first-child {
	top: 50%;
	transform: rotate(45deg)
}

.catalog-trigger.active .catalog-trigger__icon span:nth-child(2) {
	opacity: 0;
}

.catalog-trigger.active .catalog-trigger__icon span:last-child {
	top: 50%;
	transform: rotate(-45deg)
}

.catalog-trigger__title {
	font-size: 18px;
	text-transform: uppercase;
	margin-left: 10px;
	line-height: 20px;
}
		
.header__contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
		
.header__contact:last-child {
	margin-left: 15px
}

.header__contact:last-child a {
	font-size: 18px;
}		
		
.search {
    position: relative;
	margin-right: 20px;
}
		
		.search-form__input {
			padding: 5px;
			height: 100%;
			border: none;
			border-bottom: 1px solid var(--text);
		}
		
.search-list {
    position: absolute;
    left: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
    padding: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
}
		
		.search-list__item--error {
			padding: 10px;
			color: var(--red);
			background: #f5f5f5;
			border-radius: 0 0 10px 10px;
		}
		
		.search-list__link {
			display: block;
			padding: 10px;
			transition: .3s;
		}
		
		.search-list__link:hover {
			background: var(--acc);
			color: #fff;
		}
		
		.search-list__item:last-child .search-list__link {
			border-radius: 0 0 10px 10px;
		}

.mheader {
	position: fixed;
	z-index: 998;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--text);
	display: none;
}

.mheader__wrapper {
	display: flex;
	align-items: center;
	padding: 10px;
	justify-content: space-between;
}

.mheader__item .header-logo img {
	width: 50px;
}

.mheader .catalog-trigger__icon span {
	background: #fff;
}

.menu {
	position: fixed;
	z-index: 98;
	top: 85px;
	left: 0;
	width: 100%;
	height: calc(100vh - 85px);
	background: #fff;
	overflow: auto;
	padding: 50px 15px 90px;
	transform: translateY(calc(-100% - 100px));
	transition: .5s;
}

.menu.active {
	transform: translateY(0);
}

.menu__wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 50px;
}

.mmenu__wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	grid-gap: 30px 0px;
	margin-bottom: 35px;
}

.mmenu-item {
	text-align: center;
	color: #a6a6a6;
	transition: .3s;
}

.mmenu-item:hover {
	color: var(--text);
}

.mmenu-item__icon {
	height: 45px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-bottom: 10px;
}

.mmenu-item .mmenu-item__icon svg * {
	transition: .3s
}

.mmenu-item:hover .mmenu-item__icon svg * {
	fill: var(--text)
}

.mmenu-title {
	margin-bottom: 35px;
	text-align:center;
}

.mmenu-title__link {
	font-size: 18px;	
}

.menu__item-title {
	margin-bottom: 20px;
}

.menu__item-title.center {
	text-align:center
}

.menu__item-title a {
	font-size: 22px;
	border-bottom: 1px dashed var(--text);
	padding-bottom: 3px;
}

.menu__item-title.size a {
	font-size: 18px;	
}

.menu-lists {
	margin-top: 70px;
}

.menu-banner {
	background: linear-gradient(156.76deg, #FF54D9 -16.28%, #A04DF7 31.99%, #844AFF 78.06%);
	color: #fff;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 40px 0 35px;
	height: 580px;

	position: relative;
	overflow: hidden;
}

.menu-banner>div {
	position: relative;
	z-index: 1;
}

.menu-banner:after {
	content: '';
	display: block;
	width: 400px;
	height: 300px;
	background: url(/site/theme/images/phero_bg2.png) no-repeat center / contain;
	top: 38%;
	left: 25px;
	position: absolute;
}

.menu-banner__title {
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
	margin-bottom: 20px;
}

.menu-banner__action {
	text-align: center;
}

.menu-banner__desc {
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 30px;
}

.menu__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.menu__item-action {
	text-align: center;
}

.hero {
	padding: 50px 15px 80px;
}

.hero__wrapper {
    /* height: calc(100vh - 85px); */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px;
    justify-content: center;
    margin-top: 40px;
}

.hero-card {
	display: flex;
	flex-direction: column;
	box-shadow: var(--bs);
	border-radius: 10px;
}

.hero-card__img {
    height: 240px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.hero-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-card__main {
	flex: auto;
	background: #fff;
	border-radius: 0 0 10px 10px;
	display: flex;
    flex-direction: column;
	padding: 25px;
    font-size: 16px;
    justify-content: space-between;
}

.hero-card__title {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 20px;
}

.hero-card__desc {
    font-size: 18px;
    line-height: 21px;
}

.hero-card__action {
    margin-top: 25px;
	text-align: center;
}

h1, h2, h3 {
	margin: 0;
}

.hero__title {
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    margin-bottom: 10px;
}

.hero__subtitle {
    text-align: center;
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    line-height: 21px;
}

		.page-title {
			text-align: center;
			font-weight: bold;
			font-size: 50px;
			margin-bottom: 15px;
		}
		
		.page-subtitle {
			font-size: 18px;
			line-height: 21px;
			text-align: center;
		}
		
.catalog {
	padding: 50px 15px
}

.catalog__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 270px);
    grid-gap: 30px;
	margin-top: 50px;
}

.catalog__item--main {
	grid-column: span 3;
}

.catalog-goods__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, 270px);
    grid-gap: 29px;
}

.catalog-sidebar {
	box-shadow: var(--bs);
	border-radius: 10px;
}

		.catalog-sidebar__category-wrapper {
			display: none;
		}
		
		.catalog-sidebar__category.active .catalog-sidebar__category-wrapper {
			display: block;
		}
		
.catalog-sidebar__category-subitems {
    display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 50px 25px;
	justify-content: center;
    background: #EFEDED;
    padding: 25px;
}
		
.catalog-sidebar__category-title {
    font-size: 18px;
    background: #fff;
    padding: 22px 25px;
	transition: .2s;
	cursor: pointer;
}
		
		.catalog-sidebar__category.active .catalog-sidebar__category-title {
			box-shadow: var(--bs);
			border-color: transparent;
			z-index: 1;
			position: relative;
		}
		
		.catalog-sidebar__category:not(:last-child) .catalog-sidebar__category-title {
			border-bottom: 1px dashed #C4C4C4;
		}
		
		.catalog-sidebar__category:first-child .catalog-sidebar__category-title {
			border-radius: 10px 10px 0 0;
		}
		
		.catalog-sidebar__category:last-child .catalog-sidebar__category-title {
			border-radius: 0 0 10px 10px;
		} 
		
		.catalog-sidebar__category.active:last-child .catalog-sidebar__category-title {
			border-radius: 0;
		} 
		
.catalog-sidebar__category-subitem {
    text-align: center;
	color: #A6A6A6;
	transition: .3s;
	font-size: 13px;
}
		
		.catalog-sidebar__category-subitem-icon {
			height: 46px;
			display: flex;
			justify-content: center;
			align-items: flex-end;
			margin-bottom: 3px;
		}
		
		.catalog-sidebar__category-subitem:hover,
		.catalog-sidebar__category-subitem--active {
			color: var(--text);
		}
		
		.catalog-sidebar__category-subitem svg * {
			transition: .3s;
			fill: #A6A6A6;
		}
		
		.catalog-sidebar__category-subitem:hover svg *,
		.catalog-sidebar__category-subitem--active svg * {
			fill: var(--text);
		}
		
.catalog-sidebar__categories-title {
    font-weight: 500;
    font-size: 18px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.catalog-sidebar__category.active .catalog-sidebar__category-subitems {
	
}

.catalog-sidebar__category-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #6B6B6B;
	transition: .3s;
}

.catalog-sidebar__category-link:hover,
.catalog-sidebar__category-link--active {
	color: var(--text);
}

		.catalog-sidebar__filters {
			margin-top: 50px;
		}
		
		.catalog-sidebar__filters-append {
			margin-top: 30px;
			text-align: center;
		}
		
		.vue-slider-dot-tooltip-inner.vue-slider-dot-tooltip-inner-top {
			border-color: var(--sky);
			background-color: var(--sky);
			color: var(--text);
		}
		
		.vue-slider-dot-tooltip-text {
			font-size: 12px;
		}
		
		.vue-slider-process {
			background-color: var(--red);
		}
		
		.vue-slider-dot-handle {
			background: var(--red);
			box-shadow: none;
		}
		
.good {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
	transition: .3s;
	display: flex;
    flex-direction: column;
}

.good__info {
    padding: 27px 25px;
    font-size: 18px;
    line-height: 21px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: auto;
	position: relative;
	transition: .3s;
}
		
		.good--incart .good__info {
			padding-bottom: 87px;
		}

		.good__tags {
			position: absolute;
			top: -33px;
			right: 25px;
			display: flex;
		}
		
.good__tag {
    background: #FF4C2C;
    width: 40px;
    height: 40px;
    box-shadow: var(--bs-m);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
		
		.good__tag:not(:last-child) {
			margin-right: 10px;
		}
		
		.good__tag--time {
			background: #fff;
			width: 120px;
			font-weight: 500;
			font-size: 16px;
			color: #FF4C2C;
		}
		
		.good__tag--time svg {
			margin-right: 10px;
		}
		
.good__title a {
	
}

.mbtn {
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	color: #fff;
	background: var(--red);
	padding: 9px 19px;
    border-radius: 10px;
    min-width: 160px;
    text-align: center;
	transition: .3s;
}
		
		.mbtn--size-m {
			padding: 12px 19px;
		}
		
		.mbtn--size-xs {
			padding: 7px 10px;
			min-width: 0;
		}
		
		.buybtn--incart,
		.buybtn:hover {
			background: var(--text);
			color: var(--acc);
		}
		
		.buybtn:active,
		.buybtn:focus {
			color: #fff;
		}
		
		.buybtn--incart:active,
		.buybtn--incart:focus {
			color: var(--acc);
		}
		
		

.mbtn--flat {
	background: #fff;
	color: var(--text);
	box-shadow: var(--bs-m);
}

.mbtn--flat:hover {
	background: var(--text);
	color: #fff;
}

.mbtn--icon {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 0;
	background: #fff;
    box-shadow: var(--bs-m);
	position: relative;
}
		
		.mbtn--icon:before,
		.mbtn--icon:after {
			content: '';
			display: block;
			position: absolute;
			width: 20px;
			height: 2px;
			border-radius: 2px;
			background: var(--acc);
			top: 22px;
			left: calc(50% - 10px);
			opacity: 0;
			transition: .3s;
		}
		
		.buybtn--incart.mbtn--icon:before,
		.buybtn--incart.mbtn--icon:after {
			opacity: 1;
		}
		
		.good__action--add .mbtn--icon:after {
			transform: rotate(90deg)
		}
		
		.mbtn--icon:hover svg {
			transition: .3s;
		}
		
		.mbtn--icon:hover svg * {
			fill: #fff;
		}
		
		.mbtn--icon:focus,
		.mbtn--icon:active {
			background: #fff;
		}
		
		.mbtn--icon:focus svg *,
		.mbtn--icon:active svg * {
			fill: var(--text);
		}
		
		.mbtn--icon.buybtn--incart:focus,
		.mbtn--icon.buybtn--incart:active {
			background: var(--text);
		}
		
		.mbtn--icon.buybtn--incart:focus svg *,
		.mbtn--icon.buybtn--incart:active svg * {
			fill: #fff;
		}
		
		.mbtn--icon.buybtn--incart svg {
			opacity: 0;
		}

.buybtn--incart {
	background: var(--text);
	color: #fff;
}
		
		.mbtn--flat:focus,
		.mbtn--flat:active {
			background: #fff;
			color: var(--text);
		}
		
		.mbtn--flat.buybtn--incart:focus,
		.mbtn--flat.buybtn--incart:active {
			background: var(--text);
			color: #fff;
		}

.buybtn--incart svg * {
	fill: #fff;
}

.good__actions {
    display: flex;
    justify-content: space-between;
	margin-top: 30px;
	position: absolute;
    width: 100%;
    left: 0;
    padding: 0 25px 27px;
    bottom: 0;
}
		
		.good__action--remove {
			opacity: 0;
			transition: .3s;
			pointer-events: none;
			transform: translateY(30px)
		}
		
		.good--incart .good__action--remove {
			opacity: 1;
			pointer-events: all;
			transform: translateY(0)
		}
		
		.good__action-quantity {
			display: flex;
			align-items: center;
			/* height: 100%; */
			font-weight: 700;
			transition: .3s;
			opacity: 0;
			transform: translateY(30px)
		}
		
		.good--incart .good__action-quantity {
			opacity: 1;
			transform: translateY(0)
		}
		
		.good__weight {
			margin: 10px 0 20px;
		}

.good__price {
    font-weight: bold;
	font-size: 30px;
    color: var(--text);
    margin-bottom: 10px;
}
		
.good__price--discount {
    display: flex;
    align-items: center;
}
		
		.good__price--old {
			color: #b5b5b5;
			text-decoration: line-through;
			margin-right: 7px;
			font-size: 22px;
		}
		
		.good__price--discount .good__price--current {
			color: var(--red);
		}

.good__title a {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}

.good__img {
    border-radius: 10px 10px 0 0;
   	overflow: hidden;
	height: 180px;
	transition: .3s;
	
}
		
		.good--incart .good__img {
			height: 120px;
		}
		
		.good__img img {
			transition: .5s;
			/*width: 100%; */
			height: 100%;
			/* object-fit: cover; */
			display: block;
			margin: auto;
		}
		
		.good:hover .good__img img {
			transform: scale(1.05)
		}
		
		.select2-container--default .select2-selection--single {
			border-radius: 10px;
			border: none;
			background: #fff;
			box-shadow: var(--bs-m);
			outline: none;
			height: 100%;
		}
		
		.select2-container--default .select2-selection--single .select2-selection__arrow {
			height: 100%;
			position: absolute;
			top: 0;
			right: 0;
			width: 40px;
			background: #EFEDED;
			border-radius: 0 10px 10px 0;
		}
		
		.select2-results__option {
			padding: 0 6px;
		}
		
		.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
			background-color: var(--acc);
		}
		
		.select2-selection.select2-selection--single[aria-expanded="true"] .select2-selection__arrow {
			border-radius: 0 10px 0 0;
		}
		
		.select2-container--open .select2-dropdown--below {
			border-radius: 0 0 10px 10px;
			overflow: hidden;
		}

		.good__quantity-option-inner {
			display: flex;
			align-items: center;
			padding: 6px 0px;
		}
		
		.good__quantity-option-count {
			font-weight: 500;
			font-size: 30px;
			padding-top: 1px;
		}
		
		.good__quantity-option-text {
			font-size: 12px;
			line-height: 14px;
		}
		
		.good__quantity-option-text span {
			display: block;
		}
		
.catalog-pagination {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.catalog-pagination__wrapper {
    grid-column: 2/5;
    text-align: center;
}
		
		.catalog-pagination ul {
			padding: 0 0 9px;
			margin: 0;
			list-style: none;
			display: inline-flex;
			justify-content: center;
			border-bottom: 1px solid var(--acc);
		}
		
		.catalog-pagination ul li {
			position: relative;
		}
		
		.catalog-pagination ul li:not(:last-child) {
			margin-right: 18px;
		}
		
		.catalog-pagination ul li a {
			font-weight: bold;
			font-size: 22px;
			color: var(--acc);
		}
		
		.catalog-pagination ul li.active:before {
			content: '';
			display: block;
			position: absolute;
			width: 100%;
			height: 0;
			border-bottom: 2px solid var(--red);
			left: 0;
			bottom: -10px;
		}
		
		.catalog-pagination ul li.active a {
			color: var(--red);
		}
		
.cart-block {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    
    
    min-width: 400px;
    transform: translateX(calc(100% + 20px));
    transition: .3s;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.cart-block.active {
	transform: translateX(0);
}

.cart-block:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	transition: .3s;
	transition-delay: .3s;
	top: 0;
	left: 0;
}

.cart-block.active:before {
	background: rgba(0, 0, 0, 0.5);
}

.cart-block__wrapper {
    padding: 50px 15px;
    background: #fff;
    min-width: 360px;
	position: relative;
	height: 100vh;
	overflow: auto;
}
		
#cart .empty {
	font-size: 20px;
}

.cart-header {
	font-size: 20px;
	margin-bottom: 20px;
}
		
.cart-list {
    padding-bottom: 50px;
}

.cart-listitem {
	display: flex;
	align-items: center;
	border-radius: 10px;
}

.cart-listitem:not(:last-child) {
	margin-bottom: 10px;
}

.cart-listitem__img {
	width: 60px;
	height: 60px;
	border-radius: 10px;
	overflow: hidden;
}

.cart-listitem__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-listitem__name {
	max-width: 120px;
	font-size: 12px;
	margin: 0 10px;
	flex: auto;
}

.cart-listitem__quantity input {
	width: 40px;
}

.cart-listitem__summary {
	margin: 0 10px;
	font-size: 16px;
	min-width: 46px;
}

.cart-listitem__delete {
	margin-right: 10px;
}

.close-cart {
	display: inline-block;
	width: 9px;
	height: 9px;
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 27px;
	border-left: 1px solid;
	border-bottom: 1px solid;
	transform: rotate(45deg);
}

.close-cart:before,
.close-cart:after {
	content: '';
	display: block;
	position: absolute;
	width: 12px;
	height: 2px;
	background: var(--red);
	top: 50%;
	left: calc(50% - 6px);
}

.close-cart:before {
	transform: rotate(-45deg);
	width: 18px;
	height: 1px;
	background: var(--text);
	top: calc(50% - 3px);
	left: calc(50% - 7px);
}

.close-cart:after {
	transform: rotate(-45deg);
	/* opacity: 0; */
	width: 20px;
	height: 15px;
	left: -4px;
	top: -6px;
	background: transparent;
}

.del-item {
	display: inline-block;
	width: 15px;
	height: 15px;
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent;
	position: relative;
	padding: 0;
}



.del-item:before,
.del-item:after {
	content: '';
	display: block;
	position: absolute;
	width: 12px;
	height: 2px;
	background: var(--red);
	top: 50%;
	left: calc(50% - 6px);
}

.del-item:before {
	transform: rotate(45deg)
}

.del-item:after {
	transform: rotate(-45deg)
}
		
		.cart-delivery {
			margin-top: 30px;
		}

.cart-bottom {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
    z-index: 9;
    bottom: 20px;
    width: 100%;
    max-width: 330px;
}

.cart-total,
.cart-delivery {
	font-size: 12px;
}

.cart-total span,
.cart-delivery__price {
	font-size: 20px;
	font-weight: 700;
	transition: .2s;
}
		
		.cart-total span {
			margin-left: 5px;
		}
	
		.cart-delivery__price {
			padding: 5px;
			border-radius: 4px;
		}		
		
.cart-delivery__price--active {
    background: var(--purple);
    color: #fff;
}

.cart-total sup,
.cart-delivery__price sup {
	font-size: 12px;
	font-weight: 700;
}
		
		.cart-delivery__price sup {
			margin-left: 3px;
		}
		
		.cart-buytype {
			margin: 15px 0px;
			display: block;
			align-items: center;
			justify-content: space-between;
		}
		
		.cart-buytype__title {
			margin-bottom: 3px;
		}
		
		input.vc-appearance-none {
			
			border-radius: 10px;
			padding: 6px 3px;
			font-size: 14px;
			border-color: var(--text);
		}
		
		.cart-select {
			padding: 10px;
			border-radius: 10px;
			padding: 6px 0px;
			font-size: 14px;
			width: 100%
		}
		
		.cart-select option:disabled {
			background: #EFEDED;
			color: #a3a3a3;
		}
		
		.cart-buytype .select2-container--default .select2-selection--single .select2-selection__rendered {
			padding: 5px 40px 5px 10px;
		}
		
		.cart-buytype .select2-results__option {
			padding: 10px;
		}

.cart-order__title {
	font-size: 20px;
	margin-bottom: 20px;
}

.cart-order__form form .form-group {
	max-width: 330px;
}

.cart-order__form form .form-control {
	border-radius: 10px;
}

.cart-order__form form .form-group--submit {
	text-align: center;
}
		
		.cart-order__form form .form-group--submit button {
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 20px 15px;
			background: var(--purple);
			border: none;
			outline: none;
		}
		
		.cart-confirm__total {
			font-size: 16px;
			text-transform: none;
		}

.cart-order__form form .form-group--submit input.mbtn {
	border: none;
	outline: none;
}

.cart-order__form form .form-group--submit input.mbtn:hover {
	color: var(--text);
}

.cart-order__form form .field_policy .checkbox label a {
	color: var(--acc);
}
		
		.cart-order__form form .field_policy .checkbox label input {
			opacity: 1;
		}
		
		.cart-order__form form .field_policy .checkbox label {
			padding-left: 20px;
		}
		
		.cart-min-alert {
			color: var(--red);
			font-weight: 700;
			text-align: center;
		}
		
		.open-order-confirm {
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 20px 15px;
			background: var(--purple);
		}
		
		.open-order-confirm--disabled {
			background: #ccc;
			pointer-events: none;
		}
		
		.open-order-confirm__total {
			font-size: 16px;
			margin-left: 10px;
		}
		
		.open-order-confirm sup {
			text-transform: none
		}
		
		.footer {
			background: var(--text);
			padding: 40px 15px 30px;
			color: #fff;
		}
		
		.footer a {
			color: #fff;
		}
		
		.footer__wrapper {
			display: flex;
			justify-content: space-between;
			padding-bottom: 40px;
			border-bottom: 1px solid #fff;
		}
		
		.footer__item:first-child {
			display: flex;
			align-self: center;
		}
		
		.footer__desc {
			font-size: 18px;
			margin-left: 30px;
			max-width: 340px;
		}
		
		.footer__menu-title {
			font-weight: 500;
			font-size: 18px;
		}
		
		.footer__menu-list {
			padding: 0;
			list-style: none;
			margin: 0;
		}
		
		.footer__menu-item {
			margin-top: 15px;
		}
		
		.footer__menu-link {
			font-size: 18px;
			transition: .3s;
		}
		
		.footer__menu-link:hover {
			color: var(--acc)
		}
		
		.footer__bottom {
			padding-top: 30px;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		
		.footer__bottom>div {
			flex: 1;
		}

		.footer__deps {
			text-align: center;
		}
		
		.footer__policy a {
			text-decoration: none;
			border-bottom: 1px solid #fff;
		}
		
		.footer__policy a:hover {
			text-decoration: none;
		}
		
		.footer__deps a {
			font-size: 18px;
			text-decoration: none;
		}
		
		.feedback {
			background: var(--purple);
			padding: 25px 15px 35px;
			color: #fff;
		}
		
		.feedback .section__title {text-align: center}
		
		.feedback .section__subtitle {
			font-size: 18px;
			margin-top: 10px;
		}
		
		.feedback__wrapper {
			max-width: 730px;
			margin: 20px auto 0;
		}
		
		.form__wrapper {
			display: flex;
			align-items: center;
		}
		
		.form__wrapper .form-group {
			margin: 0;
		}
		
		.form__wrapper .form-control {
			height: 100%;
			font-size: 16px;
			color: var(--purple);
			border-radius: 0;
			border: none;
			padding: 10px;
			background: #fff;
			font-weight: 400;
		}
		
		.form__wrapper .form-control::placeholder {
			color: rgba(132, 74, 255, 0.5)
		}
		
		.form__wrapper .form-control:focus {
			box-shadow: none;
			outline: none;
		}
		
		.form__wrapper .field_name .form-control {
			border-radius: 10px 0 0 10px;
		}
		
		.form__wrapper .field_phone .form-control {
			border-radius: 0 10px 10px 0;
		}
		
		.form__wrapper .field_phone,
		.form__wrapper .field_name {
			position: relative;
			flex: auto;
		}
		
		.form__wrapper .field_phone:before {
			content: '';
			display: block;
			position: absolute;
			width: 1px;
			height: 24px;
			left: 0;
			top: calc(50% - 12px);
			background: var(--purple);
		}
		
		.form__wrapper .mbtn {
			border: none;
		}
		
		.form__wrapper .mbtn:hover {
			background: #fff;
			color: var(--purple);
		}
		
		.form__wrapper .form-group:last-child {
			margin-left: 20px;
		}
		
		form .field_policy .checkbox label {
			position: relative;
			padding-left: 40px;
			cursor: pointer;
		}
		
		form .field_policy .checkbox label a {
			color: #fff;
			text-decoration: underline;
		}
		
		form .field_policy .checkbox label input {
			opacity: 0;
		}
		
		.checkbox-switcher {
			position: absolute;
			width: 30px;
			height: 15px;
			display: block;
			border: 2px solid #fff;
			border-radius: 8px;
			left: 0;
			top: 0px;
			transition: .3s;
		}
		
		.checkbox-switcher:before {
			content: '';
			display: block;
			position: absolute;
			width: 7px;
			height: 7px;
			border-radius: 5px;
			background: #fff;
			left: 2px;
			top: 2px;
			transition: .3s;
		}
		
		form .field_policy .checkbox label.active .checkbox-switcher {
			background: var(--acc);
    		border-color: var(--acc);
		}
		
		form .field_policy .checkbox label.active .checkbox-switcher:before {
			transform: translateX(14px);
		}
		
		.modale {
			background: #e5e5e5;
			position: fixed;
			z-index: 999;
			top: 0;
			left: 0;
			width: 100%;
			display: none;
		}
		
		.modale__wrapper {
			height: 100vh;
			overflow: auto;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		
		.modale__wrapper {
			height: 100vh;
			overflow: auto;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 50px 15px;
		}
		
		.mfeedback .form__wrapper {
			display: block;
		}
		
		.mfeedback .form__wrapper .field_name .form-control,
		.mfeedback .form__wrapper .field_phone .form-control,
		.mfeedback .form__wrapper .form-control {
			border-radius: 10px;
		}
		
		
		
		.mfeedback .form__wrapper .form-group {
			margin-bottom: 15px;
		}
		
		.mfeedback .form__wrapper .field_phone:before {
			display: none;
		}
		
		.mfeedback .form__wrapper .form-group {
			margin-left: 0;
			text-align: center;
		}
		
		.mfeedback form .field_policy .checkbox label a {
			color: var(--purple)
		}
		
		.mfeedback .checkbox-switcher {
			border-color: var(--purple)
		}
		
		.mfeedback .checkbox-switcher:before {
			background: var(--purple)
		}
		
		.mfeedback form .field_policy .checkbox label.active .checkbox-switcher:before {
			background: #fff
		}
		
		.mfeedback__title {
			color: var(--purple);
			font-weight: 500;
			margin-bottom: 20px;
			font-size: 30px;
		}
		
		.modale__closer {
			display: block;
			position: absolute;
			width: 50px;
			height: 50px;
			background: #fff;
			top: 15px;
			right: 15px;
			border-radius: 5px;
			cursor: pointer;
		}
		
		.modale__closer:before,
		.modale__closer:after {
			content: '';
			display: block;
			position: absolute;
			width: 26px;
			height: 1px;
			left: calc(50% - 13px);
			top: 50%;
			background: var(--purple);
		}
		
		.modale__closer:before {
			transform: rotate(45deg)
		}
		
		.modale__closer:after {
			transform: rotate(-45deg)
		}
		
		.single-good {
			padding: 50px 15px;
		}
		
		.single-good__wrapper {
			border-radius: 10px;
			box-shadow: var(--bs);
			display: flex;
			background: #fff;
		}
		
		.single-good__bottom {
			display: flex;
			align-items: center;
			margin-top: 30px;
		}
		
		.single-good__info {
			background: #fff;
			padding: 50px 35px;
			border-radius: 0 0 10px 10px;
			width: 50%;
		}
		
		.single-good__img {
			height: 400px;
			border-radius: 10px 0 0 0;
			overflow: hidden;
			width: 50%;
		}
		
		.single-good__img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		
		.single-good_prices {
			display: flex;
			align-items: center;
			margin-right: 20px;
			font-weight: bold;
			font-size: 30px;
		}
		
		.single-good__bottomwrapper {
			display: flex;
			align-items: center;
			position: relative;
			transition: .3s;
			padding-left: 0;
			
		}
		
		.single-good__bottomwrapper.good--incart {
			padding-left: 94px;
		}
		
		.single-good__action--add {
			position: relative;
			transition: .3s;
			
			z-index: 1;
		}
		
		.single-good__bottomwrapper.good--incart .single-good__action--add {
			
		}
		
		.single-good__bottomwrapper .good__action-quantity {
			transform: translateX(30px);
			margin: 0 10px;
			position: absolute;
			left: 40px;
			top: 0;
			height: 100%;
		}
		
		.single-good__bottomwrapper.good--incart .good__action-quantity {
			transform: translateX(0);
		}
		
		.single-good__action--remove {
			position: absolute;
			left: 0;
			top: 0;
		}
		
		.single-good__action--remove .buybtn {
			transition: .3s;
			transform: translateX(30px);
			opacity: 0;
			pointer-events: none;
			width: 39px;
			height: 39px;
			color: transparent;
		}
		
		.single-good__bottomwrapper.good--incart .single-good__action--remove .buybtn {
			transform: translateX(0);
			opacity: 1;
			pointer-events: all;
		}
		
		.single-good__bottomwrapper .single-good__action--remove .buybtn:before {
			top: 19px;
			width: 20px;
			left: calc(50% - 10px);
			background: #fff;
		}
		
		.single-good__bottomwrapper.good--incart .single-good__action--remove .buybtn:after {display: none;}
		
		.single-good__action--add .mbtn {
			position: relative;
		}
		
		.single-good__action--add .mbtn:after {
			content: 'Добавить еще';
			position: absolute;
			width: 100%;
			height: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
			left: 0;
			top: 0;
			opacity: 0;
			color: #fff;
		}
		
		.single-good__action--add .mbtn.buybtn--incart {
			color: transparent;
		}

		.single-good__action--add .mbtn.buybtn--incart:after {
			opacity: 1;
		}
		
		.single-good_price--old {
			color: #b5b5b5;
			text-decoration: line-through;
			margin-right: 10px;
			font-size: 22px;
		}
		
		.single-good_price.single-good_price--discount {
			color: var(--red);
		}
		
		.single-good__quantity {
			margin-right: 20px;
		}
		
		.single-good__summary {
			font-size: 16px;
			line-height: 18px;
			margin-top: 10px;
		}
		
		.single-good__recipe {
			margin-top: 50px;
		}
		
		.single-good__recipe-title {
			font-size: 30px;
			font-weight: 500;
			margin-bottom: 20px;
		}
		
		.mheader {
			position: fixed;
			z-index: 998;
			top: 0;
			left: 0;
			width: 100%;
			background: var(--text);
			display: none;
		}
		
		.mheader__wrapper {
			display: flex;
			align-items: center;
			padding: 10px;
			justify-content: space-between;
		}
		
		.mheader__item .header-logo img {
			width: 50px;
		}
		
		.mheader .catalog-trigger__icon span {
			background: #fff;
		}
		
		.eda {
			padding: 45px 15px;
		}
		
		.eda__wrapper {
			margin-top: 65px;
		}
		
		.eda-main {
			display: flex;
		} 
		
		.eda-main__item {
			width: 50%;
		}
		
		.eda-main__item--text {
			padding-left: 80px;
		}
		
		.eda-main__title {
			font-weight: bold;
			font-size: 35px;
			line-height: 40px;
			margin-bottom: 40px;
		}
		
		.eda-main__desc {
			font-size: 22px;
			line-height: 25px;
			margin-bottom: 50px;
		}
		
		.eda-main__action {
			margin-bottom: 40px;
		}
		
		.eda-main__comment {
			font-weight: 300;
			font-size: 16px;
		}
		
		.eda-main__item--img img {
			border-radius: 10px;
		}
		
		.section__title {
			font-weight: bold;
			font-size: 50px;
			text-align: center;
			margin-bottom: 5px;
		}
		
		.section__subtitle {
			font-size: 22px;
			text-align: center;
		}
		
		.eda__header {
			display: flex;
			justify-content: space-between;
			margin-top: 50px;
			position: relative;
		}
			
		.eda-it__icon {
			height: 73px;
			display: flex;
			align-items: flex-end;
			justify-content: center;
			margin-bottom: 15px;
		}
		
		.eda-it__title {
			font-size: 22px;
			text-align: center;
			color: #A6A6A6;
		}

		.eda-it-spacer {
			width: 100%;
			position: relative;
			background: linear-gradient(0deg, transparent 0, transparent calc(50% - 1px), #a6a6a6 50%, transparent 50%);
			margin: 0 10px;
		}
		
		.eda-it-spacer:before,
		.eda-it-spacer:after {
			content: '';
			display: block;
			position: absolute;
			top: calc(50% - 2px);
			width: 5px;
			height: 5px;
			border-radius: 50%;
			background: #a6a6a6;
		}
		
		.eda-it-spacer:before {
			left: 0;
		}
		
		.eda-it-spacer:after {
			right: 0;
		}
		
		.eda-cards {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			grid-gap: 30px;
			margin-top: 75px;
		}
		
		.eda-card {
			padding: 25px;
			background: #fff;
			border-radius: 10px;
			box-shadow: var(--bs);
		}
		
		.eda-card__icon {
			height: 114px;
			display: flex;
			align-items: flex-end;
			justify-content: center;
			margin-bottom: 30px;
		}
		
		.eda-card__title {
			font-weight: bold;
			font-size: 22px;
			line-height: 25px;
			margin-bottom: 20px;
		}
		
		.eda-card__desc {
			font-size: 18px;
			line-height: 21px;
		}
		
		.header__cart {
			text-align: right;
		}
		
		.cart-trigger {
			position: relative;
			cursor: pointer;
			display: inline-block;
			text-align: center;
		}
		
		.cart-trigger__title {
			display: block;
			font-size: 12px;
		}
		
		.cart-trigger .cart-trigger__count {
			position: absolute;
			display: block;
			width: 22px;
			height: 22px;
			background: rgba(255, 66, 64, 0.8);
			color: #fff;
			font-size: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 50%;
			top: -13px;
			right: 3px;
		}
		
		.mheader__trigger svg * {
			fill: #fff;
		}
		
		.mheader__trigger {
			padding-right: 10px;
		}
		
		.mheader__trigger .cart-trigger .cart-trigger__count {
			right: -10px;
		}
		
		.single-page {
			padding: 50px 15px;
			min-height: calc(100vh - 375px);
		}
		
		.single-page__title {
			margin-bottom: 20px;
		}
		
		.filters-trigger {
			display: none;
		}
		
		
@media (max-width: 1199px) {
	.catalog__item--main {
		grid-column: span 2;
	}
}

@media (max-width: 891px) {
	.catalog__item--main {
		grid-column: span 1;
	}
}

@media (max-width: 767px) {
	
	.page {
		padding-top: 69px;
	}
	
	.header {
		display: none;
	}
	
	.mheader {
		display: block;
	}
	
	.menu {
		top: 68px;
		height: calc(100vh - 68px);
	}

	.catalog__item.catalog__item--side {
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		overflow: auto;
		transform: translateX(calc(-100% - 10px));
		transition: .3s;
		background: #fff;
		padding-top: 15px;
	}
	
	.catalog__item.catalog__item--side.active {
		transform: translateX(0);
	}
	
	.catalog-sidebar__category-title {
		font-size: 14px;
		padding: 15px;
	}
	
	.catalog-sidebar {
		padding: 30px 20px;
		box-shadow: none;
	}
	
	.catalog__wrapper {
		display: block;
		margin-top: 25px;
	}
	
	.catalog-goods__wrapper {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
	}
	
	.good__info {
		padding: 10px;
		font-size: 14px;
		line-height: normal;
	}
	
	.good__price {
		font-size: 18px;
		margin: 0;
	}
	
	.good__title a {
		font-size: 12px;
	}
	
	.good__actions .mbtn {
		font-size: 10px;
		padding: 8px 10px;
		min-width: 0;
	}
	
	.good__actions .mbtn--icon {
		width: 33px;
		height: 33px;
		padding: 7px;
	}
	
	.good__actions .mbtn--icon:before,
	.good__actions .mbtn--icon:after {
		top: 16px;
		width: 12px;
		left: calc(50% - 6px)
	}
	
	.good__main {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	
	.good--incart .good__info {
		padding-bottom: 55px;
	}
	
	.good__price {
		font-size: 18px;
		margin: 0;
		flex: auto;
		display: flex;
		align-items: flex-end;
	}

	.catalog .page-title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 26px;
		text-align: left;
	}
	
	.filters-trigger {
		display: block;
		position: fixed;
		z-index: 9;
		background: var(--orange);
		color: #fff;
		font-weight: 300;
		border-radius: 20px;
		font-size: 12px;
		padding: 7px 10px;
		bottom: 50px;
		left: 50%;
		transform: translateX(-50%);
		box-shadow: 0 3px 3px rgba(0, 0, 0, .2);
	}
	
	.filters-trigger span {
		display: block;
		position: absolute;
		width: 20px;
		height: 2px;
		background: var(--acc);
		top: calc(50%);
		left: calc(50% - 10px);
	}
	
	.filters-trigger span:before,
	.filters-trigger span:after {
		content: '';
		display: block;
		position: absolute;
		width: 14px;
		height: 2px;
		background: var(--acc);
		top: calc(50%);
	}
	
	.filters-trigger span:before {
		top: calc(50% - 5px);
		left: 0;
	}
	
	.filters-trigger span:after {
		top: calc(50% + 3px);
		right: 0;
	}
	
	.catalog-sidebar__closer {
		display: inline-block;
		width: 9px;
		height: 9px;
		cursor: pointer;
		position: absolute;
		top: 15px;
		right: 27px;
		border-left: 1px solid;
		border-bottom: 1px solid;
		transform: rotate(45deg);
	}
	
	.catalog-sidebar__closer:before,
	.catalog-sidebar__closer:after {
		content: '';
		display: block;
		position: absolute;
	}
	
	.catalog-sidebar__closer:before {
		transform: rotate(-45deg);
		width: 18px;
		height: 1px;
		background: var(--text);
		top: calc(50% - 3px);
		left: calc(50% - 7px);
	}
	
	.catalog-sidebar__closer:after {
		transform: rotate(-45deg);
		width: 20px;
		height: 15px;
		left: -4px;
		top: -6px;
		background: transparent;
	}
	
	.cart-block__wrapper {
		min-width: 270px;
		width: 100%;
	}
	
	.cart-block {
		min-width: 100%;
	}
	
	.footer__wrapper {
		display: block;
		text-align: center;
	}
	
	.footer__item:first-child {
		display: block;
		margin-bottom: 30px;
	}
	
	.footer__desc {
		margin: 20px auto 0;
		font-size: 13px;
	}
	
	.footer__item:last-child {
		margin-top: 30px;
	}
	
	.footer__bottom {
		display: block;
		text-align: center;
	}
	
	.footer__deps {
		margin-top: 20px;
	}
	
	.good__action:first-child {
		margin-right: 5px;
	}
	
	.select2 {
		max-width: 90px;
		width: 100% !important;
	}
	
	.good__quantity-option-count {
		font-size: 20px;
	}
	
	.good__quantity-option-text {
		font-size: 9px;
		line-height: 10px;
	}
	
	.good__quantity-option-inner {
		padding: 0;
	}
	
	.select2-container--default .select2-selection--single .select2-selection__arrow {
		width: 20px;
	}
	
	.select2-container .select2-selection--single .select2-selection__rendered {
		padding-left: 3px;
	}
	
	.single-good__wrapper {
		display: block;
	}
	
	.single-good__bottomwrapper {
		display: flex;
		justify-content: space-between;
	}
	
	
	
	.single-good__img {
		height: 240px;
		width: 100%;
	}
	
	.single-good__info {
		padding: 10px;
		width: 100%;
	}
	
	.cart-bottom {
		max-width: 290px;
	}
	
	.single-good__bottom {
		display: block;
	}
	
	.single-good_prices {
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	.single-good__quantity {
		margin-right: 5px;
		flex: 0 0 90px;
	}
	
	.single-good__action .mbtn {
		font-size: 10px;
    	padding: 9px;
	}
	
	.single-good__title {
		font-size: 26px;
	}
	
	.single-good {
		padding: 15px;
	}
	
	.hero__wrapper {
		grid-template-columns: 1fr;
	}
	
	.hero__title {
		font-size: 40px;
	}
	
	.section__title {
		font-size: 35px;
	}
	
	.eda-it__title {
		font-size: 12px;
	}
	
	.eda-it__icon {
		margin-bottom: 0;
	}
	
	.eda-it__icon svg {
		width: 30px;
		height: 50px;
	}
	
	.eda-it-spacer {
		margin: 0 3px;
	}
	
	.eda-it-spacer:before, .eda-it-spacer:after {
		width: 3px;
		height: 3px;
		top: calc(50% - 1px);
	}
	
	.eda-main {
		display: block;
	} 
	
	.eda-main__item {
		width: 100%;
	} 
	
	.eda-main__item--text {
		padding-left: 0;
		margin-top: 30px;
	} 
	
	.eda-main__title {
		font-size: 24px;
		line-height: normal;
		margin-bottom: 25px;
	}
	
	.eda-main__desc {
		font-size: 18px;
		line-height: normal;
		margin-bottom: 30px;
	}
	
	.eda-main__action {
		margin-bottom: 20px;
	}
	
	.eda-main__comment {
		font-size: 12px;
	}
	
	.eda-cards {
		grid-template-columns: 1fr;
	}
	
	.eda__header {
		margin-top: 30px;
	}
	
	.good__img img {
		object-fit: contain;
	}
	
	.good__actions {
		padding: 10px;
	}
	
	.single-good__action--remove .buybtn {
		width: 29px;
		height: 29px;
	}
	
	.single-good__bottomwrapper .single-good__action--remove .buybtn:before {
		top: 13px;
		width: 15px;
		left: calc(50% - 7px);
	}

	.single-good__bottomwrapper .good__action-quantity {
		left: 34px;
	}
	
	
	
}
