@charset "UTF-8";
@font-face {
	font-display: swap;
	font-family: Nunito;
	src: url(../fonts/Nunito/Nunito-Regular.ttf) format("truetype");
	font-weight: 400;
	font-style: normal
}
	
@font-face {
	font-display: swap;
	font-family: Nunito;
	src: url(../fonts/Nunito/Nunito-Medium.ttf) format("truetype");
	font-weight: 500;
	font-style: normal
}

@font-face {
	font-display: swap;
	font-family: Nunito;
	src: url(../fonts/Nunito/Nunito-Bold.ttf) format("truetype");
	font-weight: 700;
	font-style: normal
}

:root {
	--f-spinner-width: 36px;
	--f-spinner-height: 36px;
	--f-spinner-color-1: rgba(0, 0, 0, 0.1);
	--f-spinner-color-2: rgba(17, 24, 28, 0.8);
	--f-spinner-stroke: 2.75;
	--f-button-width: 40px;
	--f-button-height: 40px;
	--f-button-border: 0;
	--f-button-border-radius: 0;
	--f-button-color: #374151;
	--f-button-bg: #f8f8f8;
	--f-button-hover-bg: #e0e0e0;
	--f-button-active-bg: #d0d0d0;
	--f-button-shadow: none;
	--f-button-transition: all 0.15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 20px;
	--f-button-svg-height: 20px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: none;
	--f-button-svg-disabled-opacity: 0.65;
	--basic-font: "Nunito",sans-serif;
	--title-font: "Nunito",sans-serif;
	--nm-color-brand: #3466b1;
	--nm-color-default: #8f97a3;

	--color-base-secondary: #fa8749;
	--color-typo-primary: #023;
	--color-typo-secondary: rgba(0, 34, 51, 0.7);
	--color-typo-white: #fff;
	--color-typo-ghost: #183053;
	--color-typo-light-ghost: rgba(0, 34, 51, 0.7);

	--color-success: #448d44;
	--color-warning: #fa8749;
	--color-alert: #e5534f;
	--color-bg-border: #e1e1e1;
	--color-bg-secondary: #f5f5f6;
	--color-bg-system: #e1e4e9;
	--color-bg-caution: #ffa10a;
	--color-bg-page-gray: #f4f5f6;

	--color-control-bg-ghost: rgba(0, 42, 105, 0.07);
	--color-control-bg-disable: rgba(0, 34, 51, 0.06);
	--color-control-bg-focus: rgba(52, 102, 177, 0.5);
	--color-control-bg-focus-transparent: rgba(52, 102, 177, 0);
	--color-control-bg-ghost-hover: rgba(0, 42, 105, 0.05);
	--color-control-typo-disable: rgba(0, 34, 51, 0.3);
	--color-control-typo-placeholder: #8f97a3;
	--color-control-bg-border-default: rgba(0, 34, 51, 0.28);
	--color-control-bg-border-primary: rgba(52, 102, 177, 0.7);
	--color-control-primary-hover: #4277c7;

	--color-bg-overlay: rgba(0, 11, 11, 0.4);

	--shadow-primary: 0px 4px 16px 1px rgba(0, 34, 51, 0.11);
	--shadow11: 0px 4px 16px 1px rgba(0, 34, 51, 0.11);
	--border-radius-primary: 8px;
	--controlDefaultBgBorder: rgba(0, 34, 51, 0.28);
	--animateHoverBox: 0.3s;
	--animateHoverBtn: 0.2s;
	--gap: 24px;
	--icon-size: 16px;
	--lh-body: 1.6;
	--max-width-xxl: 1464px;
	--max-width-xl: 1217px;
	--max-width-lg: 1024px;
	--max-width-md: 800px;
	--max-width-sm: 608px;
	--z-index-modal: 202;
	--z-index-overlay: 1;
	--z-index-header: 200;
	--z-index-loader-absolute: 199;
	--shine-degree: 120deg;
	--shine-color: rgba(255, 255, 255, 0.5);
	--shine-effect: linear-gradient( var(--shine-degree), transparent, var(--shine-color), transparent );
	--shine-transition: all 0.65s ease-in-out
}

@-webkit-keyframes loader {
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5)
	}
}

@keyframes loader {
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5)
	}
}

svg {
	display: flex
}

button {
	border: none;
	cursor: pointer;
	background: 0 0;
	-webkit-appearance: none;
	padding-left: 0;
	padding-right: 0
}

input,textarea {
	border-radius: var(--border-radius-primary);
	-webkit-appearance: none!important
}

input::-webkit-inner-spin-button,input::-webkit-outer-spin-button,textarea::-webkit-inner-spin-button,textarea::-webkit-outer-spin-button {
	-webkit-appearance: none!important
}

input:disabled,textarea:disabled {
	cursor: not-allowed;
	background: var(--color-control-bg-disable)
}

.checkbox,.checkbox__container {
	display: flex;
	align-items: center
}

.checkbox-with-text .checkbox__label {
	margin-left: 8px
}

.checkbox-rule {
	margin-top: 16px;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap
}

.checkbox-rule label {
	width: calc(100% - 30px)
}

.checkbox-input {
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	-webkit-transition: border-color .15s,background-color .15s;
	-o-transition: border-color .15s,background-color .15s;
	transition: border-color .15s,background-color .15s;
	cursor: pointer;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border: 1px solid var(--controlDefaultBgBorder);
	margin: 0
}

.checkbox-input:before {
	background-position: 50%;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition-duration: var(--animateHoverBtn);
	pointer-events: none
}

.checkbox-input:checked {
	border: 1px solid var(--nm-color-brand)!important;
	-webkit-animation: .5s ease-in animation-focus;
	animation: .5s ease-in animation-focus;
	background-color: var(--nm-color-brand)!important
}

.checkbox-input:checked:before {
	opacity: 1!important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.146 8.227l6.429-7.66 1.149.964L5.33 10.34.352 6.16l.964-1.149 3.83 3.215z' fill='%23fff'/%3E%3C/svg%3E")!important
}

.checkbox-size-m .checkbox-input {
	width: 16px;
	height: 16px
}

.checkbox-size-m .checkbox-input:before {
	background-size: 9.9px
}

.checkbox-size-l .checkbox-input {
	width: 20px;
	height: 20px;
	background-size: 12.3px
}

.checkbox a {
	color: var(--nm-color-brand)
}

.checkbox a:hover {
	color: var(--color-control-primary-hover)
}

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

.radio-input {
	border: 1px solid var(--controlDefaultBgBorder);
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	margin: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.radio-input:before {
	background-position: 50%;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	transition-duration: var(--animateHoverBtn);
	margin: auto;
	border-radius: 50%;
	pointer-events: none
}

.radio-input:checked {
	border: 1px solid var(--nm-color-brand)!important;
	-webkit-animation: .5s ease-in animation-focus;
	animation: .5s ease-in animation-focus
}

.radio-input:checked:before {
	opacity: 1!important;
	background-color: var(--nm-color-brand)!important
}

.radio-label {
	margin-left: 8px
}

.radio-size-m .radio-input {
	width: 16px;
	height: 16px
}

.radio-size-m .radio-input:before {
	width: 6px;
	height: 6px
}

.radio-size-l .radio-input {
	width: 20px;
	height: 20px
}

.radio-size-l .radio-input:before {
	width: 8px;
	height: 8px
}

.formField-status-alert .text-field__input {
	border-color: var(--color-alert);
	color: var(--color-alert)
}

.formField-status-alert .text-field__label {
	color: var(--color-alert)
}

.formField-status-alert .checkbox-input {
	border-color: var(--color-alert)
}

.text-field {
	display: flex;
	flex-flow: column;
	position: relative;
	align-items: flex-start
}

.text-field__type-textarea .text-field__label {
	bottom: auto
}

.text-field__type-text.text-field__size-m .text-field__label,.text-field__type-text.text-field__size-s .text-field__label,.text-field__type-textarea.text-field__size-m .text-field__label {
	left: 5px;
	height: 21px;
	font-size: 14px
}

.text-field__type-text.text-field__size-l .text-field__label,.text-field__type-textarea.text-field__size-l .text-field__label {
	left: 6px;
	font-size: 16px;
	height: 24px
}

.text-field__type-text.text-field__code.text-field__size-l .text-field__label {
	font-size: 22px;
	background-color: unset;
	right: 0;
	top: -2px!important;
	margin: auto;
	display: flex;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-transform: scale(.8);
	-ms-transform: scale(.8);
	transform: scale(.8);
	letter-spacing: 50px;
	width: 300px;
	left: 35px;
	text-align: right;
	-webkit-transform-origin: unset;
	-ms-transform-origin: unset;
	transform-origin: unset
}

.text-field__type-textarea.text-field__size-m .text-field__label {
	top: 8px
}

.text-field__type-textarea.text-field__size-l .text-field__label {
	top: 10px
}

.text-field__label {
	color: var(--nm-color-default);
	background-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
	line-height: 1.5;
	padding: 0 8px;
	transition-duration: .2s
}

.text-field.active .text-field__label {
	-webkit-transform: scale(.9);
	-ms-transform: scale(.9);
	transform: scale(.9);
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left
}

.text-field.active .text-field__label-code {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	top: -6px!important
}

.text-field.active.text-field__type-textarea .text-field__label {
	top: 0;
	-webkit-transform: translateY(-50%) scale(.9);
	-ms-transform: translateY(-50%) scale(.9);
	transform: translateY(-50%) scale(.9)
}

.text-field.active.text-field__type-text .text-field__label {
	top: -100%
}

.text-field__input-container {
	width: 100%;
	position: relative
}

.text-field__input {
	width: 100%;
	border: 1px solid var(--controlDefaultBgBorder);
	line-height: 1.5;
	padding-top: 0;
	padding-bottom: 0
}

.text-field__input[required]+.text-field__label:after {
	position: absolute;
	content: "*";
	font-size: inherit;
	top: 0;
	height: inherit;
	padding-right: 4px;
	right: -8px;
	color: var(--color-alert);
	background-color: #fff
}

.text-field__input::-webkit-input-placeholder {
	color: var(--nm-color-default)
}

.text-field__input::-moz-placeholder {
	color: var(--nm-color-default)
}

.text-field__input:-ms-input-placeholder {
	color: var(--nm-color-default)
}

.text-field__input::-ms-input-placeholder {
	color: var(--nm-color-default)
}

.text-field__input::placeholder {
	color: var(--nm-color-default)
}

.text-field__size-s input {
	height: 32px
}

.text-field__size-s textarea {
	padding-top: 8px
}

.text-field__size-s input,.text-field__size-s textarea {
	font-size: 14px;
	padding-left: 12px
}

.text-field__size-m input {
	height: 40px
}

.text-field__size-m textarea {
	padding-top: 8px
}

.text-field__size-m input,.text-field__size-m textarea {
	font-size: 14px;
	padding-left: 12px
}

.text-field__size-l input {
	height: 48px
}

.text-field__size-l textarea {
	padding-top: 10px
}

.text-field__size-l input,.text-field__size-l textarea {
	font-size: 16px;
	padding-left: 13px
}

.text-field__code.text-field__size-l input {
	padding-left: calc(50% - 96px);
	font-size: 22px;
	letter-spacing: 44px
}

.pagination {
	display: flex;
	align-items: center
}

.pagination a:hover:not(.active) {
	background-color: var(--color-control-bg-ghost-hover);
	color: var(--color-typo-secondary)
}

.pagination__pages {
	flex-wrap: nowrap
}

.pagination__item,.pagination__pages {
	display: flex
}

.pagination__item {
	width: 32px;
	height: 32px;
	border-radius: var(--border-radius-primary);
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--color-typo-secondary);
	margin-right: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition-duration: var(--animateHoverBtn)
}

.pagination__item.active {
	pointer-events: none;
	background-color: var(--nm-color-brand);
	color: #fff
}

.pagination__more {
	pointer-events: none
}

.pagination__prev-page {
	margin-right: 4px;
	justify-content: center
}

.pagination__prev-page svg,.pagination__prev-page-mobile {
	display: none
}

.pagination__next-page span {
	margin-right: 8px
}

.pagination__next-page,.pagination__prev-page {
	display: flex;
	align-items: center;
	padding: 0 12px;
	border-radius: var(--border-radius-primary);
	font-size: 14px;
	line-height: 32px;
	height: 32px;
	background-color: var(--color-control-bg-ghost);
	transition-duration: var(--animateHoverBtn)
}

.pagination__next-page span,.pagination__prev-page span {
	color: var(--color-typo-secondary)
}

app-product-favorite {
	display: flex;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	width: 24px;
	height: 24px;
	background-position: 50%;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' stroke-linejoin='round'%3E%3Cpath d='M12 20S3 14.909 3 8.727c0-1.093.375-2.151 1.061-2.996s1.64-1.424 2.701-1.639a4.64 4.64 0 013.117.461A4.71 4.71 0 0112 6.906a4.71 4.71 0 012.122-2.352 4.64 4.64 0 013.117-.461c1.061.215 2.015.794 2.701 1.639S21 7.635 21 8.727C21 14.909 12 20 12 20z' stroke='%23fff' stroke-width='3'/%3E%3Cpath d='M12 20S3 14.909 3 8.727c0-1.093.375-2.151 1.061-2.996s1.64-1.424 2.701-1.639a4.64 4.64 0 013.117.461A4.71 4.71 0 0112 6.906h0a4.71 4.71 0 012.122-2.352 4.64 4.64 0 013.117-.461c1.061.215 2.015.794 2.701 1.639S21 7.635 21 8.727C21 14.909 12 20 12 20z' stroke='%23023' stroke-opacity='.5' stroke-width='1.5'/%3E%3C/svg%3E")
}

app-product-favorite[data-is="1"] {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='M12 20.681S2.234 15.157 2.234 8.449c0-1.186.407-2.335 1.151-3.252a5.07 5.07 0 012.93-1.778c1.151-.233 2.346-.056 3.382.501s1.865 1.072 2.317 2.166c.452-1.094 1.251-1.61 2.287-2.166s2.232-.734 3.382-.501a5.07 5.07 0 012.93 1.778 5.162 5.162 0 011.151 3.252c0 6.708-9.766 12.232-9.766 12.232z' fill='%23e61a3c'/%3E%3C/svg%3E")
}

app-product-favorite:hover {
	cursor: pointer
}

app-notify {
	width: 0;
	height: 0;
	position: fixed;
	right: 0;
	padding-right: 24px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	bottom: 24px;
	top: auto;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-start;
	left: 24px
}

app-notify app-notify-item {
	background-color: #fff;
	border-radius: var(--border-radius-primary);
	-webkit-box-shadow: 0 4px 16px 1px rgba(0,34,51,.27);
	box-shadow: 0 4px 16px 1px rgba(0,34,51,.27);
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 500px
}

app-notify app-notify-item:last-child {
	margin-bottom: 0
}

.app-notify-item-container {
	padding: 20px
}

.app-notify-item-container,.app-notify-item-ico {
	display: flex;
	align-items: center
}

.app-notify-item-ico {
	margin-right: 8px;
	justify-content: center;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.app-notify-item-message {
	font-size: 16px
}

.app-notify-item-line {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	top: auto;
	bottom: 0;
	left: 0;
	border-radius: 10px
}

.app-notify-item-status-green .app-notify-item-ico path {
	fill: var(--color-success)
}

.app-notify-item-status-blue .app-notify-item-ico path {
	fill: var(--nm-color-brand)
}

.app-notify-item-status-orange .app-notify-item-ico path {
	fill: var(--color-warning)
}

.app-notify-item-status-red .app-notify-item-ico path {
	fill: var(--color-alert)
}

.app-notify-item-status-green {
	color: var(--color-success)
}

.app-notify-item-status-green .app-notify-item-line {
	background-color: var(--color-success)
}

.app-notify-item-status-blue {
	color: var(--nm-color-brand)
}

.app-notify-item-status-blue .app-notify-item-line {
	background-color: var(--nm-color-brand)
}

.app-notify-item-status-orange {
	color: var(--color-warning)
}

.app-notify-item-status-orange .app-notify-item-line {
	background-color: var(--color-warning)
}

.app-notify-item-status-red {
	color: var(--color-alert)
}

.app-notify-item-status-red .app-notify-item-line {
	background-color: var(--color-alert)
}

.box-loading {
	position: relative;
	z-index: 4;
	pointer-events: none
}

.loader {
	--backgroundColor: var(--loaderBackgroundColor);
	width: 100%;
	pointer-events: none
}

.loader.button-loader {
	height: 100%;
	left: 50%;
	position: relative;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%)
}

.loader.box-loader {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	background: hsla(0,0%,100%,.7);
	height: 100%
}

.loader-size-s {
	--loader-size: 4px
}

.loader-size-m {
	--loader-size: 6px
}

.loader-dot {
	-webkit-animation: 1s -.18s infinite loader;
	animation: 1s -.18s infinite loader;
	position: absolute;
	width: var(--loader-size);
	height: var(--loader-size);
	border-radius: 50%;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0
}

.loader-dot-button {
	background: var(--color-control-typo-disable)
}

.loader-dot-box {
	background: var(--nm-color-brand)
}

.loader-dot:after,.loader-dot:before {
	background: inherit;
	width: inherit;
	height: inherit;
	border-radius: inherit;
	content: "";
	position: absolute
}

.loader-dot:before {
	-webkit-animation: 1s infinite loader;
	animation: 1s infinite loader;
	left: calc(50% - var(--loader-size)*2.5)
}

.loader-dot:after {
	-webkit-animation: 1s -.36s infinite loader;
	animation: 1s -.36s infinite loader;
	left: calc(50% + var(--loader-size)*1.5)
}

.button,a.button {
	border-radius: var(--border-radius-primary);
	border: 1px solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	padding: 0;
	transition-duration: var(--animateHoverBtn);
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.button .icon,a.button .icon {
	pointer-events: none
}

.button-loading .button-loader,.button-loading a.button-loader,a.button-loading .button-loader,a.button-loading a.button-loader {
	--loaderBackgroundColor: var(--color-control-typo-disable);
	position: absolute
}

.button-icon-position-right,a.button-icon-position-right {
	margin-left: 12px
}

.button-width-icon,a.button-width-icon {
	display: flex;
	align-items: center
}

.button-primary,a.button-primary {
	background-color: var(--nm-color-brand);
	border: none;
	color: var(--color-typo-white)
}

.button-primary:hover,a.button-primary:hover {
	background-color: var(--color-control-primary-hover);
	color: var(--color-typo-white)
}

.button-secondary,a.button-secondary {
	background: #fff;
	border-color: var(--nm-color-brand);
	color: var(--nm-color-brand)
}

.button-secondary:hover,a.button-secondary:hover {
	background: var(--color-control-primary-hover);
	border-color: var(--color-control-primary-hover);
	color: var(--color-typo-white)
}

.button-ghost,a.button-ghost {
	background: var(--color-control-bg-ghost);
	color: var(--color-typo-ghost);
	border: none
}

.button-ghost:hover,a.button-ghost:hover {
	background: var(--color-control-bg-ghost-hover)
}

.button[disabled],a.button[disabled] {
	background: var(--color-control-bg-disable);
	color: var(--color-control-typo-disable);
	border: none;
	pointer-events: none
}

.button[disabled] path,a.button[disabled] path {
	stroke: var(--color-control-typo-disable)
}

.button-size-xs,a.button-size-xs {
	font-size: 12px;
	line-height: 24px;
	padding: 0 12px
}

.button-size-s,a.button-size-s {
	font-size: 14px;
	line-height: 32px;
	height: 32px;
	padding: 0 12px
}

.button-size-m,a.button-size-m {
	font-size: 16px;
	line-height: 40px;
	height: 40px;
	padding: 0 16px
}

.button-size-l,a.button-size-l {
	font-size: 16px;
	line-height: 48px;
	height: 48px;
	padding: 0 16px
}

.button-loading,a.button-loading {
	color: transparent!important
}

.icon {
	align-items: center;
	height: var(--icon-size);
	justify-content: center;
	line-height: 0;
	overflow: hidden;
	width: var(--icon-size)
}

.icon,.slick-initialized .slick-slide {
	display: flex
}

.slick-initialized .slick-slide {
	width: 100%;
	max-width: 100%
}

.breadcrumbs {
	margin-bottom: .75rem
}

.breadcrumbs__list {
	display: flex;
	align-items: center
}

.breadcrumbs__item {
	margin-right: 36px;
	position: relative
}

.breadcrumbs__item:last-child {
	margin-right: 0
}

.breadcrumbs__item:last-child:before {
	content: none
}

.breadcrumbs__item:before {
	position: absolute;
	content: "";
	left: calc(100% + 12px);
	bottom: 0;
	top: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 3.5l3 3-3 3' stroke='%23023' stroke-opacity='.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain
}

.breadcrumbs__item:last-child .breadcrumbs__link {
	color: var(--color-typo-primary);
	pointer-events: none
}

.breadcrumbs__link {
	font-size: 14px;
	color: var(--color-typo-secondary)
}

@-webkit-keyframes animation-focus {
	0% {
		-webkit-box-shadow: 0 0 0 0 var(--color-control-bg-focus);
		box-shadow: 0 0 0 0 var(--color-control-bg-focus)
	}

	to {
		-webkit-box-shadow: 0 0 0 6px var(--color-control-bg-focus-transparent);
		box-shadow: 0 0 0 6px var(--color-control-bg-focus-transparent)
	}
}

@keyframes animation-focus {
	0% {
		-webkit-box-shadow: 0 0 0 0 var(--color-control-bg-focus);
		box-shadow: 0 0 0 0 var(--color-control-bg-focus)
	}

	to {
		-webkit-box-shadow: 0 0 0 6px var(--color-control-bg-focus-transparent);
		box-shadow: 0 0 0 6px var(--color-control-bg-focus-transparent)
	}
}

.title,a,body,button,h1,h2,h3,h4,h5,h6,html,input,select,textarea {
	font-family: var(--basic-font)
}

::-moz-selection {
	background-color: var(--nm-color-brand);
	color: #fff
}

::selection {
	background-color: var(--nm-color-brand);
	color: #fff
}

a {
	text-decoration: none
}

a:hover {
	color: var(--color-control-primary-hover)
}

.link {
	cursor: pointer;
	color: var(--nm-color-brand)
}

.link:hover {
	color: var(--color-control-primary-hover)
}

.hr {
	display: block;
	background: var(--color-bg-border);
	height: 1px;
	border: none
}

* {
	outline: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent
}

a,body {
	color: var(--color-typo-primary)
}

html {
	display: flex;
	overflow-x: hidden;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	min-height: -webkit-fill-available;
	max-width: 100vw
}

.scroll-disable {
	overflow: hidden!important
}

.pointer-none {
	pointer-events: none!important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

body {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	background-color: #fff;
	position: relative;
	display: flex;
	flex-flow: column;
	flex-grow: 1
}

body.loading * {
	-webkit-transition: none!important;
	-o-transition: none!important;
	transition: none!important
}

body * {
	outline: 0
}

img {
	opacity: 0
}

img[src] {
	opacity: 1
}

h1 {
	font-size: 32px
}

h2 {
	font-size: 24px
}

.title,h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	margin: 0;
	line-height: 1;
	font-family: var(--title-font);
	font-style: normal;
	letter-spacing: normal;
	text-decoration: none;
	text-transform: none;
	word-spacing: normal
}

.section-header-h2 {
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	margin-top: 1rem;
	margin-bottom: 1rem
}

p {
	margin-bottom: 16px
}

ol,ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.container {
	width: 100%;
	padding-right: 24px;
	padding-left: 24px;
	margin-right: auto;
	margin-left: auto;
	max-width: var(--max-width-xxl);
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.row {
	display: flex;
	flex-flow: column
}

.d-none {
	display: none!important
}

.main {
	display: flex;
	flex-flow: column;
	flex-grow: 1
}

.overlay {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: var(--z-index-overlay);
	background: var(--color-bg-overlay)
}

.overlay.pointer-none {
	pointer-events: none
}

.flex-grow-1 {
	flex-grow: 1
}

.text-size-s {
	font-size: 14px;
	line-height: 22px
}

.color-red * {
	color: var(--color-alert)
}

.mb-12 {
	margin-bottom: 12px
}

.menu {
	height: 100%
}

.header {
	background: #fff;
	position: absolute;
	top: 0;
	z-index: var(--z-index-header);
	width: 100%
}

.header-slogan {
	padding: .5rem 0;
	color: #fff;
	background-color: #fff;
}

.html-scroll .header {

	padding-top:0.5rem;
}

.html-scroll .header-slogan {

	display:none;
}

.header-slogan .header__content {
	white-space: nowrap;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	margin: 0;
	padding:0 3px;
}

.header-slogan .header__content::-webkit-scrollbar {
	display: none;
	width: 0px; 
	height: 0px; 
}

.header-slogan a {
	padding-right: 1rem;
	color: #444
}

.header-slogan a:last-child {
	padding: 0
}

.header-slogan a:hover {
	color: #c7c7c7
}

.header-slogan-club {
                                
	font-weight:600;
	color:#3466b1!important;
}

.header-fixed {
	position: fixed
}

.header__content {
	align-items: center;
	height: 100%;
	width: 100%;
	position: relative;
	display: flex;
	margin-bottom: .5rem
}

.navbar-fixed {
	position: fixed;
	z-index: 9;
	bottom: 0;
	width: 100%;
	display: flex;
	flex-flow: column
}

.navbar-fixed .product-information__buttons {
	display: none;
	background-color: #fff;
	padding: 16px;
	position: relative;
	z-index: 3;
	transition-duration: var(--animateHoverBtn);
	-webkit-box-shadow: 0 0 17px rgba(20,40,70,.11);
	box-shadow: 0 0 17px rgba(20,40,70,.11)
}

.navbar-fixed .product-information__buttons.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none
}

.navbar {
	left: 0;
	background-color: #fff;
	width: 100%;
	height: 80px;
	border-top: 1px solid #e1e1e1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: none;
	z-index: 5;
	position: relative
}

.popular-categories__list {
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	margin-left: calc(0px - var(--gap)/ 2);
	margin-right: calc(0px - var(--gap)/ 2);
}

.popular-categories__item,.popular-categories__list {
	display: flex
}

.popular-categories__item {
	width: calc(25% - var(--gap));
	margin: 0 calc(var(--gap)/2) var(--gap);
	flex-flow: column;
	position: relative
}

.popular-categories__item:hover .popular-categories__photo img {
	-webkit-filter: brightness(.95);
	filter: brightness(.95);
	transform: scale(1.1);
	transition-duration: .3s, .3s;
}

.popular-categories__photo {
	position: relative;
	border-radius: var(--border-radius-primary);
	overflow: hidden;
	display: flex;
	isolation: isolate;
	background: #f0f0f0
}

.popular-categories__photo img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
}

.popular-categories__name {
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.2;
	text-align: center
}

.rating-block__stars {
	width: 80px;
	height: 17px;
	position: relative;
	z-index: 1;
	margin-right: 6px
}

.rating-block__bg {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='80' height='17' fill='none'%3E%3Cg fill='%23023'%3E%3Cpath opacity='.2' d='M7.797 12.068a.4.4 0 01.407 0l3.312 1.954a.4.4 0 00.592-.437l-.872-3.655a.4.4 0 01.131-.398l2.897-2.453a.4.4 0 00-.226-.704l-3.832-.318a.4.4 0 01-.334-.24l-1.505-3.47a.4.4 0 00-.734 0l-1.505 3.47a.4.4 0 01-.334.24l-3.832.318a.4.4 0 00-.225.704l2.897 2.453a.4.4 0 01.131.398l-.872 3.655a.4.4 0 00.592.437l3.312-1.954z'/%3E%3Cuse xlink:href='%23B' opacity='.2'/%3E%3Cuse xlink:href='%23C' opacity='.2'/%3E%3Cuse xlink:href='%23C' x='16' opacity='.2'/%3E%3Cuse xlink:href='%23B' x='48' opacity='.2'/%3E%3C/g%3E%3Cdefs%3E%3Cpath id='B' d='M23.797 12.068a.4.4 0 01.406 0l3.312 1.954a.4.4 0 00.592-.437l-.872-3.655a.4.4 0 01.131-.398l2.897-2.453a.4.4 0 00-.226-.704l-3.832-.318a.4.4 0 01-.334-.24l-1.505-3.47a.4.4 0 00-.734 0l-1.505 3.47a.4.4 0 01-.334.24l-3.832.318a.4.4 0 00-.226.704l2.897 2.453a.4.4 0 01.131.398l-.872 3.655a.4.4 0 00.592.437l3.312-1.954z'/%3E%3Cpath id='C' d='M39.797 12.068a.4.4 0 01.406 0l3.312 1.954a.4.4 0 00.592-.437l-.872-3.655a.4.4 0 01.131-.398l2.897-2.453a.4.4 0 00-.225-.704l-3.832-.318a.4.4 0 01-.334-.24l-1.505-3.47a.4.4 0 00-.734 0l-1.505 3.47a.4.4 0 01-.334.24l-3.832.318a.4.4 0 00-.225.704l2.897 2.453a.4.4 0 01.131.398l-.872 3.655a.4.4 0 00.592.437l3.312-1.954z'/%3E%3C/defs%3E%3C/svg%3E");
	z-index: 0
}

.rating-block__bg,.rating-block__count-stars {
	background-repeat: repeat-x;
	width: inherit;
	height: inherit;
	position: absolute
}

.rating-block__count-stars {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='80' height='17' fill='none'%3E%3Cg fill='%23ffa10a'%3E%3Cpath d='M7.797 12.068a.4.4 0 01.407 0l3.312 1.954a.4.4 0 00.592-.437l-.872-3.655a.4.4 0 01.131-.398l2.897-2.453a.4.4 0 00-.226-.704l-3.832-.318a.4.4 0 01-.334-.24l-1.505-3.47a.4.4 0 00-.734 0l-1.505 3.47a.4.4 0 01-.334.24l-3.832.318a.4.4 0 00-.225.704l2.897 2.453a.4.4 0 01.131.398l-.872 3.655a.4.4 0 00.592.437l3.312-1.954z'/%3E%3Cuse xlink:href='%23B'/%3E%3Cuse xlink:href='%23C'/%3E%3Cuse xlink:href='%23C' x='16'/%3E%3Cuse xlink:href='%23B' x='48'/%3E%3C/g%3E%3Cdefs%3E%3Cpath id='B' d='M23.797 12.068a.4.4 0 01.406 0l3.312 1.954a.4.4 0 00.592-.437l-.872-3.655a.4.4 0 01.131-.398l2.897-2.453a.4.4 0 00-.226-.704l-3.832-.318a.4.4 0 01-.334-.24l-1.505-3.47a.4.4 0 00-.734 0l-1.505 3.47a.4.4 0 01-.334.24l-3.832.318a.4.4 0 00-.226.704l2.897 2.453a.4.4 0 01.131.398l-.872 3.655a.4.4 0 00.592.437l3.312-1.954z'/%3E%3Cpath id='C' d='M39.797 12.068a.4.4 0 01.406 0l3.312 1.954a.4.4 0 00.592-.437l-.872-3.655a.4.4 0 01.131-.398l2.897-2.453a.4.4 0 00-.225-.704l-3.832-.318a.4.4 0 01-.334-.24l-1.505-3.47a.4.4 0 00-.734 0l-1.505 3.47a.4.4 0 01-.334.24l-3.832.318a.4.4 0 00-.225.704l2.897 2.453a.4.4 0 01.131.398l-.872 3.655a.4.4 0 00.592.437l3.312-1.954z'/%3E%3C/defs%3E%3C/svg%3E");
	z-index: 1
}

.rating-block__count {
	font-size: 14px;
	line-height: 17px;
	color: var(--color-typo-secondary)
}

.product-tags {
	display: flex;
	align-items: flex-start
}

.product-tags app-product-tags {
	margin: 0
}

.product-tags app-product-tag {
	font-size: 12px;
	padding: 2px 4px;
	height: 20px;
	border-radius: 6px
}

.product-card {
	position: relative;
	z-index: 1
}

.product-card app-product-cart,.product-card app-product-cart button[name=productButtonMain] {
	flex: 1
}

.product-card,.product-card__container {
	display: flex;
	flex-flow: column
}

.product-card__container {
	border-radius: var(--border-radius-primary);
	background-color: #fff;
	flex-grow: 1
}

.product-card__top {
	position: relative;
	z-index: 1;
	padding: 12px 12px 0
}

.product-card__top-control {
	position: absolute;
	z-index: 1;
	right: 1.25rem;
	bottom: .5rem;
	display: flex;
	align-items: center;
	cursor: auto
}

.product-card__tags {
	top: 20px
}

.product-card__tags,.product-card__tags-bottom {
	flex-flow: column;
	position: absolute;
	left: 20px;
	z-index: 1
}

.product-card__tags-bottom {
	top: 23px;
	display: flex
}

.product-card__tags-bottom .product-tags__sale-user {
	margin-top: 6px
}

.product-card__tags>div {
	margin-bottom: 6px
}

.product-card__tags>div:last-child {
	margin-bottom: 0
}

.product-card__fast-view {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	background-color: hsla(0,0%,100%,.9);
	font-size: 14px;
	color: var(--color-typo-primary);
	line-height: 32px;
	padding: 0 12px;
	-webkit-box-shadow: var(--shadow11);
	box-shadow: var(--shadow11);
	border-radius: var(--border-radius-primary);
	display: none;
	transition-duration: var(--animateHoverBtn)
}

.product-card__fast-view:hover {
	-webkit-box-shadow: 0 4px 16px 1px rgba(0,34,51,.2);
	box-shadow: 0 4px 16px 1px rgba(0,34,51,.2)
}

.product-card__bottom {
	display: flex;
	flex-flow: column;
	padding: 0 12px 12px
}

.product-card__bottom,.product-card__name {
	flex-grow: 1;
	text-decoration: none!important
}

.product-card__name {
	padding-top: 12px;
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.2;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	max-height: 42px;
	color: var(--color-typo-primary)!important
}

.product-card__name:hover {
	cursor: pointer;
	color: var(--color-control-primary-hover)
}

.product-card__rating {
	display: flex;
	align-items: center;
	margin-top: auto
}

.product-card__rating .rating-block__count {
	font-size: 12px;
	line-height: 17px
}

.product-card__prices {
	display: flex;
	align-items: baseline;
	margin-top: 16px
}

.product-card__price-now {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	color: #e51a3c
}

.product-card__price-last {
	font-size: 14px;
	line-height: 1;
	color: var(--color-typo-secondary);
	margin-left: 8px;
	position: relative
}

.product-card__price-last:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: var(--color-alert)
}

.product-card__buttons {
	margin-top: 8px;
	display: none
}

.products__not-found {
	font-size: 16px;
	text-align: center;
	padding: 100px 0
}

.products__list {
	display: flex;
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	margin-left: -12px;
	margin-right: -12px;
	position: relative
}

.products .product-card {
	width: 16.66667%;
	margin-bottom: 24px
}

.lazyload,.lazyloading {
	width: 100%;
	height: 100%;
	max-width: 100%;
	overflow: hidden;
	z-index: 1;
	transition-duration: .3s bottom: 0;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	background-image: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),color-stop(20%,hsla(0,0%,100%,.2)),color-stop(60%,hsla(0,0%,100%,.5)),to(hsla(0,0%,100%,0)));
	background-image: -webkit-linear-gradient(left,hsla(0,0%,100%,0),hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0));
	background-image: -o-linear-gradient(left,hsla(0,0%,100%,0),hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0));
	background-image: linear-gradient(90deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0));
	-webkit-animation: 2s infinite modal-box-animate-preview;
	animation: 2s infinite modal-box-animate-preview
}

.preload-box {
	background: #f0f0f0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	overflow: hidden;
	z-index: 1;
	transition-duration: .3s
}

.preload-box,.preload-box:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0
}

.preload-box:after {
	bottom: 0;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	background-image: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),color-stop(20%,hsla(0,0%,100%,.2)),color-stop(60%,hsla(0,0%,100%,.5)),to(hsla(0,0%,100%,0)));
	background-image: -webkit-linear-gradient(left,hsla(0,0%,100%,0),hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0));
	background-image: -o-linear-gradient(left,hsla(0,0%,100%,0),hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0));
	background-image: linear-gradient(90deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0));
	-webkit-animation: 2s infinite modal-box-animate-preview;
	animation: 2s infinite modal-box-animate-preview;
	content: ""
}

.collection-card {
	background: var(--color-bg-secondary);
	border-radius: var(--border-radius-primary);
	overflow: hidden
}

.collection-card,.collection-card__content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: flex
}

.collection-card__content {
	flex-flow: column;
	align-items: flex-start;
	padding: 16px 0 24px 16px
}

.collection-card__title {
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 4px;
	font-weight: 700
}

.collection-card__text {
	color: var(--color-typo-secondary);
	margin-bottom: 16px;
	line-height: 1.2;
	font-size: 14px;
	width: 100%;
	flex-grow: 1
}

.collection-card__image {
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 175px;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.collection-card__image img {
	width: 140px;
	height: auto
}

.collection-products__content,.collection-products__list {
	display: flex
}

.collection-products__list {
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	width: calc(67.7965% - 24px);
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: -24px;
	-ms-flex-item-align: start;
	align-self: flex-start;
	margin-right: 24px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.collection-products__item {
	width: calc(50% - 12px);
	margin-bottom: 24px
}

.collection-products__banner {
	width: auto;
	border-radius: var(--border-radius-primary);
	flex-grow: 1;
	background-position: 46% top;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none
}

.collection-products__banner,.home-about__text {
	display: flex;
	overflow: hidden;
	position: relative
}

.home-about__text {
	height: 6em;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 16px
}

.home-about__text.opened {
	height: auto
}

.home-about__text.opened:before {
	content: none
}

.home-about__text:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 47px;
	background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),color-stop(.01%,rgba(246,247,248,0)),color-stop(97.4%,#fff));
	background: -webkit-linear-gradient(top,hsla(0,0%,100%,0),rgba(246,247,248,0) .01%,#fff 97.4%);
	background: -o-linear-gradient(top,hsla(0,0%,100%,0) 0,rgba(246,247,248,0) .01%,#fff 97.4%);
	background: linear-gradient(180deg,hsla(0,0%,100%,0),rgba(246,247,248,0) .01%,#fff 97.4%);
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1
}

.home-about__text p {
	margin: 16px 0
}

.home-about__text ul {
	gap: 8px;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 12px 0
}

.home-about__text ul li {
	list-style: inside
}

.home-about__text h3 {
	margin-top: 24px;
	margin-bottom: 12px
}

.home-about__text a {
	color: var(--nm-color-brand);
	text-decoration: underline
}

.footer-menu__title {
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700
}

.footer-menu__link {
	font-size: 14px;
	line-height: 1.3;
	color: var(--color-typo-secondary)
}

.footer-menu__list {
	margin-top: 12px
}

.footer-menu__list li {
	margin-bottom: 8px
}

.footer-menu__list li:last-child {
	margin-bottom: 0
}

.networks__item {
	justify-content: center;
	border-radius: 8px;
	overflow: hidden;
	width: 24px;
	height: 24px
}

.networks__item,.networks__item-wrap {
	display: flex;
	align-items: center
}

.networks__item-label {
	margin-left: 8px
}

.footer-contacts__phone {
	font-size: 20px;
	line-height: 1;
	font-weight: 700
}

.footer-contacts__work-time {
	font-size: 14px;
	line-height: 1;
	color: var(--color-typo-secondary);
	margin-top: 8px
}

.footer-contacts__callback {
	background-color: #fff;
	border: 1px solid var(--color-bg-border);
	color: var(--color-typo-primary);
	margin-top: 16px
}

.footer-contacts__callback:hover {
	background-color: var(--color-bg-secondary)
}

.footer-contacts__callback-description {
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-typo-secondary);
	margin-top: 8px
}

.elevator-wrap {
	position: absolute;
	right: 24px;
	bottom: 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	transition-duration: var(--animateHoverBtn);
	-webkit-transform: translateY(32px);
	-ms-transform: translateY(32px);
	transform: translateY(32px)
}

.elevator-wrap.active {
	bottom: 60px
}

.elevator-wrap.active,.elevator-wrap.active .elevator-button {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

.elevator-wrap.active .elevator-button {
	bottom: 0
}

.elevator-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	left: auto;
	margin-left: auto;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	z-index: 2;
	background-color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 100px;
	cursor: pointer;
	-webkit-box-shadow: var(--shadow-primary);
	box-shadow: var(--shadow-primary)
}

.elevator-button,.elevator-button svg path {
	transition-duration: var(--animateHoverBtn)
}

.elevator-button:hover {
	background-color: var(--nm-color-brand)
}

.elevator-button:hover svg path {
	fill: #fff
}

.elevator-button.active {
	bottom: 32px;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

.elevator-callback {
	z-index: 2;
	width: 48px;
	height: 48px;
	border-radius: 100px;
	transition-duration: var(--animateHoverBtn);
	background-color: #f36509;
	position: relative;
	display: none;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	cursor: pointer
}

.elevator-callback:before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='28' height='29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.99 7.744a2 2 0 012 2v11.49a2 2 0 01-2 2h-1.044v5.162l-4.752-5.163h-7.503a2 2 0 01-2-2v-1.872h10.073a3 3 0 003-3V7.744h2.226zM19.381 0a2 2 0 012 2v12.78a2 2 0 01-2 2h-8.69l-5.94 6.453V16.78H2a2 2 0 01-2-2V2a2 2 0 012-2h17.381z' fill='%23fff'/%3E%3C/svg%3E");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain
}

.elevator-callback svg {
	width: 20px
}

.footer {
	margin-top: 1rem
}

.footer__top {
	padding-top: 64px;
	padding-bottom: 64px;
	background-color: #f4f7fb
}

.footer__bottom,.footer__top {
	display: flex
}

.footer__bottom {
	padding-top: 16px;
	padding-bottom: 16px;
	background-color: #e8eef7
}

.footer__bottom-links {
	margin-left: auto;
	margin-right: auto
}

.footer__bottom-links a {
	margin-right: 32px
}

.footer__bottom-links a:last-child {
	margin-right: 0
}

.footer__content {
	display: flex;
	width: 100%
}

.footer__collumn {
	flex-grow: 1
}

.footer__networks {
	margin-top: 16px;
	display: flex
}

.footer__networks a {
	width: 32px;
	height: 32px;
	margin-right: 8px
}

.footer__networks:last-child {
	margin-right: 0
}

.footer__copyrights {
	color: var(--color-typo-secondary);
	font-size: 14px;
	line-height: 1.5;
	margin-top: 16px
}

#jcont,#jvLabelWrap {
	right: 24px!important
}

@-webkit-keyframes pulse2 {
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	to {
		-webkit-transform: scale(2);
		transform: scale(2);
		opacity: 0
	}
}

@keyframes pulse2 {
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	to {
		-webkit-transform: scale(2);
		transform: scale(2);
		opacity: 0
	}
}

.cookie {
	position: fixed;
	bottom: -2rem;
	transform: translateY(100%);
	left: 0;
	right: 0;
	z-index: 5;
	transition-duration: var(--animateHoverBox);
	opacity: 0;
	visibility: hidden
}

.cookie.active {
	transform: translateY(0);
	bottom: 32px;
	opacity: 1;
	visibility: visible
}

.cookie .row {
	flex-flow: row;
	flex-grow: 1;
	align-items: center;
	gap: .5rem
}

.cookie .row,.cookie__content {
	display: flex
}

.cookie__content {
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	padding: 1rem;
	background-color: #444;
	color: #fff;
	border-radius: .5rem;
	-webkit-box-shadow: var(--shadow-primary);
	box-shadow: var(--shadow-primary)
}

.cookie__title {
	font-size: 16px;
	line-height: 1.4;
	width: 100%;
	font-weight: 700;
	margin-bottom: .5rem
}

.cookie__text {
	font-size: 14px;
	line-height: 1.4;
	width: 100%
}

.cookie__text a {
	color: #fff;
	font-weight: 700
}

.product-page-photo {
	display: flex;
	align-items: flex-start;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.product-page-photo__main-preview {
	overflow: hidden;
	width: calc(100% - 112px);
	margin-left: auto;
	position: relative;
	border-radius: var(--border-radius-primary);
	display: flex
}

.product-page-photo__main-preview-item {
	overflow: hidden;
	border-radius: var(--border-radius-primary);
	position: relative;
	align-items: center;
	height: auto;
	max-height: 784px
}

.product-page-photo__main-preview-item:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0,0,0,.03);
	pointer-events: none;
	z-index: 1
}

.product-page-photo__main-preview-item:first-child {
	display: flex
}

.product-page-photo__main-preview-item img {
	max-width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	cursor: pointer
}

.product-information__tags>div {
	margin-right: 8px
}

.product-information__tags>div:last-child {
	margin-right: 0
}

.product-information__top {
	display: flex;
	align-items: start;
	margin-top: 0;
	margin-bottom: 1rem
}

.product-information__title {
	font-size: 24px;
	line-height: 1.2;
	color: #000
}

.product-information__share {
	font-size: 14px;
	display: flex;
	align-items: center;
	margin-left: auto;
	color: var(--nm-color-brand);
	line-height: inherit;
	position: relative;
	top: 0;
	height: auto
}

.product-information__share:hover svg {
	fill: var(--color-control-primary-hover)
}

.product-information__share svg {
	margin-right: 4px
}

.product-information__top-other {
	display: flex;
	justify-content: space-between;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--color-bg-border)
}

.product-information__top-other-mobile {
	display: none
}

.product-information__article {
	font-size: 14px;
	line-height: 1.2
}

.product-information__article span {
	color: var(--color-typo-secondary)
}

.product-information__review {
	display: flex;
	align-items: center
}

.product-information__review a {
	color: var(--nm-color-brand)
}

.product-information__amount-order {
	font-size: 14px;
	line-height: 1.2;
	color: var(--color-typo-secondary)
}

.product-information__main {
	display: flex;
	flex-flow: column;
	max-width: 100%;
	width: 100%
}

.product-information__prices {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 1rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.product-information__prices-amount-order {
	display: none
}

.product-information__price-now {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2
}

.product-information__price-now--sale {
	color: #e51a3c
}

.product-information__price-last {
	font-size: 16px;
	line-height: 1.2;
	color: var(--color-typo-secondary);
	margin-left: 12px;
	position: relative
}

.product-information__price-last:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: var(--color-alert)
}

.product-information__description {
	display: flex;
	flex-flow: column;
	align-items: flex-start
}

.product-information__description-name {
	font-size: 14px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: .5rem
}

.product-information__options {
	display: flex
}

.product-information__options-wrap {
	position: relative;
	display: flex;
	width: 100%;
	margin-bottom: 1rem
}

.product-information__options-item {
	border-radius: var(--border-radius-primary);
	max-width: 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center
}

.product-information__options-item:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0,0,0,.03);
	pointer-events: none;
	z-index: 1
}

.product-information__options-item.active img {
	pointer-events: unset
}

.product-information__options-item.active:after {
	-webkit-box-shadow: 0 0 0 2px var(--color-control-bg-border-primary) inset;
	box-shadow: 0 0 0 2px var(--color-control-bg-border-primary) inset;
	border-radius: inherit
}

.product-information__options-item:last-child {
	margin-right: 0
}

.product-information__options-item:hover .option-open-photo {
	opacity: 1;
	visibility: visible
}

.product-information__options-item img {
	border-radius: .4rem;
	width: 72px;
	height: 96px;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
	pointer-events: none
}

.product-information__table-size {
	display: flex;
	align-items: center;
	color: var(--nm-color-brand);
	margin-left: 1rem
}

.product-information__table-size:hover svg {
	fill: var(--color-control-primary-hover)
}

.product-information__table-size svg {
	margin-right: 8px
}

.product-information__table-size_content {
	display: none
}

.product-information__buttons {
	display: flex;
	flex-flow: column
}

.product-information__buttons-top {
	display: flex;
	align-items: center
}

.product-information__buttons app-product-favorite {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	margin-left: 12px
}

.product-about__title {
	margin:0;
	margin-bottom:1rem;
}

.product-about__table-name {
	color: var(--color-typo-secondary);
	flex-grow: 1;
	position: relative;
	width: 50%
}

.product-about__table-name span {
	background: #fff;
	height: 100%;
	z-index: 1;
	position: relative;
	padding-right: 12px
}

.product-about__table-name:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed rgba(0,34,51,.4);
	bottom: 4px;
	margin: auto;
	left: 0
}

.product-about__table-value {
	background: #fff;
	padding-left: 12px;
	z-index: 1;
	position: relative;
	text-align: left;
	width: 50%
}

.product-about__table li {
	margin-bottom: 12px;
	display: flex;
	font-size: 14px;
	line-height: 1.4;
	align-items: flex-start
}

.product-about__table li:last-child {
	margin-bottom: 0
}

.reviews__top-more {
	margin-left: 16px
}

.reviews__top {
	width: 100%;
	margin-bottom: 20px
}

.reviews__top,.reviews__top-navigation {
	display: flex;
	align-items: center
}

.reviews__top-navigation {
	height: 24px;
	margin-left: 24px
}

.reviews__title {
	margin: 0;
	position: relative
}

.reviews__title>span {
	position: absolute;
	top: -5px;
	right: -10px;
	font-size: 12px;
	color: var(--color-typo-secondary)
}

.reviews__content {
	width: 100%;
	position: relative
}

.reviews__item {
	border-radius: var(--border-radius-primary);
	-webkit-box-shadow: 0 4px 17px 0 rgba(0,34,51,.07);
	box-shadow: 0 4px 17px 0 rgba(0,34,51,.07);
	padding: 16px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #fff;
	display: flex;
	flex-flow: column;
	margin-right: 24px;
	margin-bottom: 12px;
	margin-top: 12px;
	height: auto
}

.reviews__item:last-child {
	margin-right: 0
}

.reviews__item-top {
	display: flex;
	align-items: center
}

.reviews__item-photo {
	width: 48px;
	height: 48px;
	border-radius: 100px;
	overflow: hidden;
	background-color: #f5f5f6;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='34' height='37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 0C11.376 0 6.8 4.376 6.8 9.756s4.576 9.756 10.2 9.756 10.2-4.377 10.2-9.756C27.2 4.376 22.624 0 17 0zM29.69 25.885c-2.792-2.712-6.494-4.205-10.423-4.205h-4.534c-3.93 0-7.631 1.493-10.424 4.205C1.53 28.584 0 32.146 0 35.916 0 36.515.507 37 1.133 37h31.734c.626 0 1.133-.485 1.133-1.084 0-3.77-1.53-7.332-4.31-10.03z' fill='%23E1E4E9'/%3E%3C/svg%3E");
	background-size: 34px;
	background-position: bottom;
	background-repeat: no-repeat;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.reviews__item-photo img {
	width: 100%
}

.reviews__item-about-user {
	margin-left: 12px;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 4px
}

.reviews__item-name {
	font-size: 16px;
	line-height: 1.2;
	height: 19px;
	width: 100%;
	font-weight: 700;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	overflow: hidden
}

.reviews__item-rating {
	margin-top: 4px;
	height: 19px;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2
}

.reviews__item-date {
	margin-top: 4px;
	color: var(--color-typo-secondary);
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
	font-size: 12px
}

.reviews__item-content {
	margin-top: 12px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	line-height: 1.4
}

.reviews__item-more {
	font-size: 14px;
	line-height: 1.2;
	color: var(--nm-color-brand);
	margin-top: 8px
}

.reviews__item-more:hover {
	color: var(--color-control-primary-hover)
}

.reviews__information {
	width: calc(25% - 12px)
}

.reviews__information-top {
	display: flex;
	align-items: center;
	padding-bottom: 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid var(--color-bg-border)
}

.reviews__information-top-rating .rating-block__stars {
	width: 115px;
	height: 24px
}

.reviews__information-top-rating .rating-block__stars>div {
	background-size: 115px
}

.reviews__information-top-count {
	font-size: 14px;
	line-height: 1;
	color: var(--color-typo-secondary);
	margin-right: 12px;
	margin-left: auto;
	white-space: nowrap
}

.reviews__information-top-scores {
	white-space: nowrap;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700
}

.reviews__information-rating {
	margin-top: 24px
}

.option-underText {
	text-align: center;
	padding: 4px;
	background: #f0f0f0;
	width: 100%
}

body.product-page {
	overflow-x: visible;
	width: 100%
}

.product-page-navbar {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-top: 1px solid var(--color-bg-border);
	align-items: center;
	padding: 16px;
	display: none;
	z-index: 2
}

.product-page-navbar .add-to-favorites {
	opacity: 1;
	visibility: visible;
	margin-left: 12px;
	pointer-events: auto
}

.product-page-navbar .button-primary {
	flex-grow: 1
}

.product-page .collapse__button {
	font-size: 14px
}

.product-page-wrap {
	position: relative;
	z-index: 2
}

.product-page__container {
	display: flex;
	flex-flow: column;
	position: relative;
	z-index: 0;
	height: auto
}

.product-page__information {
	width: calc(50% - 1rem);
	z-index: 2;
	padding-bottom: 1rem;
	position: sticky;
	top: 110px
}

.product-page__photo-wrap {
	width: calc(50% - 1rem);
	z-index: 2
}

.product-page__information-wrap {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	z-index: 1;
	display: flex;
	gap: 2rem
}

.product-page__about {
	width: calc(50% - 1rem);
	position: relative;
	z-index: 1
}

.option-open-photo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	border-radius: 4px;
	background-color: #fff;
	-webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.11);
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.11);
	position: absolute;
	top: 6px;
	opacity: 0;
	visibility: hidden;
	left: 6px;
	cursor: pointer;
	z-index: 2
}

.option-open-photo,.option-open-photo svg {
	transition-duration: .3s
}

.option-open-photo:hover {
	-webkit-box-shadow: none;
	box-shadow: none
}

.option-open-photo:hover svg {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.quantity-product {
	width: 0;
	overflow: hidden;
	display: flex
}

.quantity-product__content {
	margin-right: 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative
}

.quantity-product__button,.quantity-product__content {
	display: flex;
	align-items: center
}

.quantity-product__button {
	cursor: pointer;
	width: 40px;
	height: 40px;
	justify-content: center;
	padding: 12px
}

.quantity-product__count {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-appearance: textfield!important;
	border: none;
	font-size: 14px;
	text-align: center;
	margin: 0 8px;
	-webkit-box-sizing: unset;
	box-sizing: unset;
	width: 2rem
}

.reviews__item-pictures {
	display: flex;
	margin-top: 16px;
	width: 100%;
	overflow: hidden
}

.reviews__item-pictures__item {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100px;
	display: block;
	border-radius: 12px;
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	margin-right: 16px
}

.reviews__item-pictures__item:last-child {
	margin-right: 0
}

.reviews__item-pictures__item:after {
	position: relative;
	display: block;
	content: "";
	width: 100%;
	padding-bottom: 100%
}

.reviews__item-pictures .swiper-wrapper {
	display: flex
}

.page__content {
	margin-left: 24px;
	flex-flow: column;
	width: calc(100% - 240px);
	position: relative;
	z-index: 0
}

.main__container,.page__content {
	display: flex
}

.main__container {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.catalog {
	flex-grow: 1
}

.catalog .loader-dot-box {
	top: 150px;
	bottom: auto
}

.catalog__products {
	margin-bottom: 24px;
	display: block
}

.catalog__products .products__list {
	width: auto
}

.catalog__products .product-card {
	width: 20%;
	margin-bottom: 24px
}

.catalog__description,.catalog__pagination {
	margin-bottom: 24px
}

.catalog__description p {
	margin-top: 0;
	margin-bottom: 16px;
	line-height: 1.4;
	font-size: 14px
}

.catalog__description p:last-child {
	margin-bottom: 0
}

@-webkit-keyframes slide {
	0% {
		-webkit-transform: translateX(-30px) rotate(45deg);
		transform: translateX(-30px) rotate(45deg)
	}

	50%,to {
		-webkit-transform: translateX(120px) rotate(45deg);
		transform: translateX(120px) rotate(45deg)
	}
}

@keyframes slide {
	0% {
		-webkit-transform: translateX(-30px) rotate(45deg);
		transform: translateX(-30px) rotate(45deg)
	}

	50%,to {
		-webkit-transform: translateX(120px) rotate(45deg);
		transform: translateX(120px) rotate(45deg)
	}
}

.page .text-size-s,.page p.page__subtitle {
	line-height: 22px;
	font-size: 14px
}

.page p.page__subtitle {
	color: var(--color-typo-secondary)
}

.page .page-button-register {
	margin-top: 12px;
	margin-bottom: 12px
}

.page .page-register-wrap button {
	white-space: pre-wrap;
	line-height: 1.4;
	padding: 12px 16px
}

.page .page-register-wrap p {
	margin: 0
}

.page__image-list {
	display: flex;
	margin-left: -6px;
	margin-right: -6px;
	margin-bottom: -12px
}

.page__image-list img {
	margin: 0 6px 12px;
	border-radius: var(--border-radius-primary);
	overflow: hidden;
	height: auto
}

.page__content {
	display: block;
	font-size: 16px;
	margin-bottom: -16px
}

.page__content .title-with-icon {
	display: flex
}

.page__content .title-with-icon svg {
	margin-right: 8px
}

.page__content table {
	border: none;
	padding: 0;
	margin: 16px 0;
	border-spacing: 0;
	border-collapse: collapse;
	line-height: 26px;
	overflow: auto;
	max-width: 100%;
	display: flex
}

.page__content table.table-requisites {
	width: 100%
}

.page__content table.table-style-2 tr td {
	border-left: 0;
	border-right: 0
}

.page__content table.table-style-2 tr td:first-child {
	padding-left: 0
}

.page__content table.table-style-2 tr td:last-child {
	padding-right: 0
}

.page__content table.table-style-2 tr:first-child td {
	background-color: unset
}

.page__content table tr:first-child td {
	background-color: var(--color-bg-secondary)
}

.page__content table tr td {
	border: 1px solid var(--color-bg-border);
	padding: 12px 16px
}

.page__content a {
	color: var(--nm-color-brand);
	text-decoration: underline
}

.page__content a:hover {
	color: var(--color-control-primary-hover)
}

.page__content h1 {
	line-height: 1.2;
	margin-bottom: 24px
}

.page__content h2 {
	line-height: 1.2;
	margin-bottom: 1rem
}

.page__content h3 {
	font-size: 20px;
	line-height: 24px;
	margin-top: 32px;
	margin-bottom: 16px
}

.page__content p {
	margin: 16px 0;
	line-height: 26px
}

.page__content ol {
	list-style: decimal
}

.page__content ul {
	list-style: unset
}

.page__content ol,.page__content ul {
	margin: 16px 0 16px 26px
}

.page__content ol li,.page__content ul li {
	margin: 8px 0;
	line-height: 26px
}

.page__content hr {
	margin-top: 32px;
	margin-bottom: 32px;
	display: block;
	border: none;
	background-color: var(--color-bg-border);
	height: 1px
}

.page__content .container {
	padding: 0
}

.select__dropdown-list {
	margin: 0
}

.page__content .select__item-first {
	padding-left: 16px
}

.product-information__description-text {
	line-height: 1.4;
	color: var(--color-typo-secondary)
}

.product-information__description-text-value {
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin-left: 6px
}

.product-information__description-text-value span {
	color: #000
}

.contacts__container {
	display: flex;
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	max-width: 1224px;
	align-items: flex-start;
	max-width: var(--max-width-xxl)
}

.contacts h1 {
	width: 100%;
	margin-bottom: 32px
}

.contacts__content {
	flex-flow: column;
	max-width: calc(50% - 12px);
	flex: 0 0 calc(50% - 12px);
	margin-right: 24px
}

.contacts__content,.contacts__content-row {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	width: 100%
}

.contacts__content-row {
	margin-bottom: 32px;
	flex-flow: column
}

.contacts__content-row:last-child {
	margin-bottom: 0
}

.contacts__title {
	margin-bottom: 16px
}

.contacts__phone,.contacts__title {
	font-size: 20px;
	line-height: 24px;
	font-weight: 700
}

.contacts__phone {
	color: var(--nm-color-brand)
}

.contacts__phone-time-work {
	color: var(--color-typo-secondary);
	font-size: 14px;
	line-height: 17px;
	margin-top: 4px
}

.contacts__list a {
	color: var(--nm-color-brand)
}

.contacts__list a:hover {
	color: var(--color-control-primary-hover)
}

.contacts__list li {
	margin-bottom: 8px
}

.contacts__list li:last-child {
	margin-bottom: 0
}

.contacts__networks .networks__item-wrap {
	margin-bottom: 8px
}

.contacts__networks .networks__item-wrap:last-child {
	margin-bottom: 0
}

.contacts__address li {
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 16px;
	display: flex;
	flex-flow: column
}

.contacts__address li:last-child {
	margin-bottom: 0
}

.contacts__address li span {
	font-size: 14px;
	line-height: 17px;
	margin-top: 4px;
	color: var(--color-typo-secondary)
}

.contacts__form {
	flex: 1;
	-webkit-box-shadow: var(--shadow-primary);
	box-shadow: var(--shadow-primary);
	border-radius: var(--border-radius-primary);
	background-color: #fff;
	padding: 32px
}

.contacts__form-title {
	margin-bottom: 32px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	text-align: center
}

.contacts__form textarea {
	height: 150px;
	resize: none
}

.contacts__form__content {
	-ms-flex-flow: wrap;
	flex-flow: wrap
}

.contacts__form-row,.contacts__form__content {
	display: flex
}

.contacts__form-row {
	width: 100%
}

.contacts__form-row .contacts__form-field {
	margin-right: 20px;
	flex: 0 0 calc(50% - 10px)
}

.contacts__form-row .contacts__form-field:last-child {
	margin-right: 0
}

.contacts__form-field {
	flex-grow: 1;
	margin-bottom: 20px
}

.contacts__form-button {
	margin-top: 20px
}

.footer-cart {
	background-color: #fff;
	height: auto;
	min-height: 52px;
	margin-top: 1rem
}

.footer-cart__container {
	display: flex;
	align-items: center;
	padding-top: 12px;
	padding-bottom: 12px
}

.footer-cart__copyright {
	font-size: 14px;
	line-height: 17px
}

.footer-cart__menu {
	display: flex;
	align-items: center;
	margin-left: auto;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: -12px
}

.footer-cart__menu li {
	margin-right: 32px;
	margin-bottom: 12px;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.footer-cart__menu li:last-child {
	margin-right: 0
}

.footer-cart__menu li a {
	font-size: 14px;
	line-height: 17px
}

.product-card-count {
	display: flex;
	align-items: center
}

.product-card-count__text-field {
	margin: 0 4px
}

.product-card-count__text-field input {
	width: 2rem;
	padding: 0;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	background: 0 0;
	border-radius: 0;
	border: none;
	text-align: center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-appearance: textfield!important
}

.product-card-count__text-field input::-webkit-inner-spin-button,.product-card-count__text-field input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0
}

body.page-cart {
	overflow-x: visible
}

.page-cart {
	background-color: var(--color-bg-page-gray)
}

.page-cart h1 {
	padding: 0;
	margin: .5rem 0 .75rem;
	font-size: 18px
}

.page-cart .disabled {
	pointer-events: none;
	opacity: .75
}

.page-cart .elevator-button {
	display: none
}

.cart-aside-wrap {
	position: sticky;
	top: 7.5rem
}

.cart-total {
	padding: 24px;
	background-color: #fff;
	-webkit-box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	border-radius: var(--border-radius-primary)
}

.cart-total-top {
	font-size: 24px;
	line-height: 29px;
	font-weight: 700;
	display: flex;
	align-items: center;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-bg-border)
}

.cart-total-top-total {
	margin-left: auto
}

.cart-total ul {
	margin: 16px 0
}

.cart-total ul li {
	font-size: 14px;
	line-height: 17px;
	display: flex;
	align-items: center;
	margin-bottom: 12px
}

.cart-total ul li:last-child {
	margin-bottom: 0
}

.cart-total ul li div {
	color: var(--color-typo-secondary)
}

.cart-total ul li span {
	margin-left: auto
}

.cart-total-list-sale div,.cart-total-list-sale span {
	color: var(--color-base-secondary)!important
}

.cart-total-button {
	width: 100%
}

.cart__title {
	font-size: 18px;
	line-height: inherit;
	margin-bottom: 1rem;
	font-weight: 700;
	width: 100%
}

.cart-product-wrap {
	border-radius: 12px;
	transition-duration: .3s;
	background: #fff;
	padding: 1rem;
	overflow: hidden;
	position: relative;
	margin-bottom: .5rem
}

.cart-product-primary,.cart-product-secondary {
	display: flex;
	position: relative
}

.cart-product-secondary {
	padding-top: 1rem;
	margin-top: 1rem
}

.cart-product-secondary:before {
	position: absolute;
	content: "";
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='8' height='1' rx='.5' fill='%23D9D9D9'/%3E%3Crect x='16' width='8' height='1' rx='.5' fill='%23D9D9D9'/%3E%3C/svg%3E");
	background-repeat: repeat-x;
	top: 0;
	left: auto;
	right: 0;
	width: 100%;
	height: 1px
}

.cart-product-photo {
	border-radius: var(--border-radius-primary);
	overflow: hidden;
	margin-right: 24px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	display: flex;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	-webkit-filter: brightness(.97);
	filter: brightness(.97);
	background: #fff
}

.cart-product-photo img {
	width: 128px;
	height: 128px;
	-o-object-fit: contain;
	object-fit: contain
}

.cart-product-name {
	font-size: 16px;
	line-height: 19px
}

.cart-product-param {
	margin-top: 8px;
	display: flex;
	flex-flow: column
}

.cart-product-param li {
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 17px
}

.cart-product-param li span {
	color: var(--color-typo-secondary)
}

.cart-product-param li:last-child {
	margin-bottom: 0
}

.cart-product-content {
	display: flex;
	flex-flow: column;
	margin-right: 24px;
	flex-grow: 1
}

.cart-product-content-secondary {
	margin-left: auto;
	display: flex;
	align-items: flex-start;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	position: relative;
	width: 406px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content
}

.cart-product-content-secondary-bottom {
	position: absolute;
	transition-duration: var(--animateHoverBtn);
	bottom: 0;
	right: 0
}

.cart-product-remove {
	font-size: 14px;
	line-height: 17px;
	margin: 0
}

.cart-product-remove,.cart-product-remove:hover {
	color: var(--color-alert)
}

.cart-product-price {
	display: flex;
	flex-flow: wrap;
	margin-right: 24px;
	flex-shrink: 0;
	flex: none;
	flex-grow: 1
}

.cart-product-price-sale {
	font-size: 12px;
	line-height: 14px;
	color: var(--color-base-secondary);
	margin-bottom: 8px;
	width: 100%
}

.cart-product-price-primary,.cart-product-price-secondary {
	font-size: 20px;
	line-height: 20px;
	font-weight: 700
}

.cart-product-price-last {
	margin-left: 8px;
	font-size: 14px;
	line-height: 14px;
	color: var(--color-typo-secondary);
	display: flex;
	align-items: center;
	position: relative
}

.cart-product-price-last:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: var(--color-alert)
}

.cart-product-price-count {
	font-size: 14px;
	line-height: 17px;
	margin-top: 8px;
	width: 100%
}

.cart-product-count-wrap {
	display: flex;
	flex-flow: column;
	flex-shrink: 1;
	margin-left: auto;
	position: relative;
	align-items: center;
	flex: none
}

.cart-product-in-stock {
	font-size: 12px;
	line-height: 14px;
	color: var(--color-typo-secondary);
	margin-top: 8px;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.cart-product-notice {
	background-color: var(--color-alert);
	color: #fff;
	padding: .5rem;
	margin-bottom: .5rem;
	border-radius: var(--border-radius-primary)
}

.cart-box {
	background-color: #fff;
	border-radius: var(--border-radius-primary);
	padding: 1rem
}

.cart-product-secondary .cart-product-price {
	margin-right: 0
}

.delivery-item.checked .delivery-item__inner,.payment-method__item.checked {
	border-color: var(--color-control-bg-border-primary);
	-webkit-box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset;
	box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset
}

.cart__delivery-types-item.delivery-item.checked .delivery-item__logo {
	color: #3466b1
}

.delivery-item {
	padding: 0 8px 8px
}

.delivery-item__inner {
	border-radius: var(--border-radius-primary);
	border: 1px solid var(--color-control-bg-border-default);
	cursor: pointer;
	padding: 1rem;
	min-height: 68px
}

.delivery-item__inner,.delivery-item__logo {
	display: flex;
	align-items: center
}

.delivery-item__logo {
	justify-content: center;
	margin-right: 8px;
	width: 22px;
	height: 22px;
	background-color: transparent
}

.delivery-item__name {
	font-size: 16px;
	line-height: 24px
}

.cart__delivery {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	z-index: 0;
	padding-bottom: 0;
	margin-bottom: 1rem
}

.cart__delivery-top {
	display: flex
}

.cart__delivery-top>label {
	flex-grow: 1;
	margin-right: 16px
}

.cart__delivery-top>label:last-child {
	margin-right: 0
}

.cart__delivery-top-radio {
	height: 40px;
	border-radius: var(--border-radius-primary);
	padding-left: 12px;
	padding-right: 12px;
	border: 1px solid var(--color-control-bg-border-default)
}

.cart__delivery-types {
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: auto;
	margin: 16px -8px -8px;
	display: flex
}

.payment-method {
	display: block
}

.payment-method__list {
	width: 100%
}

.payment-method__item,.payment-method__list {
	display: flex
}

.payment-method__item {
	padding: 16px 8px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-control-bg-border-default);
	border-radius: var(--border-radius-primary);
	width: 100%;
	flex-flow: column
}

.payment-method__item input {
	display: none
}

.payment-method__item span {
	margin-top: 4px;
	text-align: center;
	font-size: 14px;
	line-height: 17px
}

.payment-method__item .payment-method_img {
	display: flex;
	align-items: center
}

.delivery-company__list {
	margin-left: -12px;
	margin-right: -12px;
	margin-bottom: -16px;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%
}

.delivery-company__item {
	padding: 0 12px 16px;
	cursor: pointer;
	height: auto
}

.delivery-company__item-container {
	padding: 16px;
	border: 1px solid var(--color-bg-border);
	border-radius: 8px;
	height: 100%
}

.delivery-company__item.active .delivery-company__item-container {
	border-color: #7194c8;
	-webkit-box-shadow: 0 0 0 1px #7194c8 inset;
	box-shadow: inset 0 0 0 1px #7194c8
}

.delivery-company__item-top {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-bg-border)
}

.delivery-company__item-checkbox {
	pointer-events: none
}

.delivery-company__item-logo {
	margin-left: 12px;
	display: flex;
	align-items: center
}

.delivery-company__item-name {
	margin-left: 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 19.2px
}

.cart__delivery-addressBox {
	display: none;
	flex-flow: column
}

.cart__delivery-addressBox.active {
	display: flex
}

.cart__delivery-pointMap {
	z-index: 0;
	display: flex;
	background: 100% #fff;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
	border-radius: 8px;
	border: 1px solid var(--color-bg-border)
}

.cart__container {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.cart__container h1 {
	width: 100%;
	margin-bottom: 32px
}

.cart__content {
	flex: 1;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	z-index: 1
}

.cart-aside {
	margin-left: 24px;
	max-width: calc(25% - 18px);
	width: 100%;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.cart__products {
	display: flex;
	flex-flow: column;
	width: 100%
}

.cart__products .cart-product-wrap {
	margin-bottom: .5rem;
	padding: 1rem
}

.cart__products-list {
	margin-top: 12px;
	position: relative;
	z-index: 0
}

.cart__products-list.cart-box {
	margin: 0 0 .5rem;
	padding: 0!important
}

.cart__products-top {
	border-radius: var(--border-radius-primary);
	background-color: #fff;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	z-index: 1;
	position: relative;
	transition-duration: .3s
}

.cart__products-top--fixed {
	-webkit-box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	box-shadow: 0 4px 16px 1px rgba(0,34,51,.11)
}

.cart__products-top-back-home {
	margin-left: auto
}

.cart__delivery {
	flex: 1 0 100%;
	max-width: 100%
}

.cart__recipient {
	flex: 100%;
	margin-bottom: 1rem
}

.cart__recipient.cart-box {
	padding-top: 1rem;
	padding-bottom: .5rem
}

.cart__recipient label {
	width: 100%
}

.cart__recipient-form {
	flex-flow: column;
	display: flex
}

.cart__not-found-data {
	margin: auto
}

.cart__delivery-top-radio.disabled {
	opacity: .4;
	-webkit-filter: brightness(0);
	filter: brightness(0);
	pointer-events: none
}

.cart__delivery-top {
	width: 100%
}

.InsufficientStock+.cart-product-secondary:before {
	display: none
}

.cart__products-list {
	padding: 0;
	background: 0 0
}

.page-cart .main>.loader.box-loader {
	position: fixed
}

.error404 {
	height: 100%
}

.error404__container {
	padding: 120px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%
}

.error404__code {
	margin-right: 64px;
	color: var(--nm-color-brand);
	font-size: 150px;
	line-height: 1.4
}

.error404__code span {
	color: var(--color-base-secondary)
}

.error404__content {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	max-width: 300px;
	width: 100%
}

.error404__title {
	font-size: 24px;
	line-height: 1.2
}

.error404__description {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.4
}

.error404__button {
	margin-top: 32px
}

.modal table {
	border-radius: var(--border-radius-primary);
	border-collapse: collapse;
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: 0 auto;
	-webkit-box-shadow: 0 0 0 1px var(--color-bg-border) inset;
	box-shadow: 0 0 0 1px var(--color-bg-border) inset;
	table-layout: fixed
}

.modal .table-wrap {
	overflow: auto;
	border-radius: var(--border-radius-primary);
	margin-left: -8px;
	margin-right: -8px;
	margin-bottom: -8px
}

.modal .table-wrap h1 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #002234;
	margin-top: 30px
}

.modal table tr:first-child th {
	background-color: var(--color-bg-secondary)
}

.modal table td,.modal table th {
	padding: 16px;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	border: 1px solid var(--color-bg-border);
	word-wrap: break-word
}

.modal table th {
	border-top: none;
	border-left: none
}

.modal table th:last-child {
	border-right: none
}

.modal table tr:hover {
	background-color: rgba(52,102,177,.07)
}

.modal table tr:first-child td {
	border-top-style: none
}

.modal table tr:last-child td {
	border-bottom-style: none
}

.modal table tr td:first-child {
	border-left-style: none
}

.modal table tr td:last-child {
	border-right-style: none
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: var(--z-index-modal);
	align-items: center;
	justify-content: center;
	display: flex;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	line-height: var(--lh-body)
}

.modal h1 {
	font-size: 20px;
	margin-bottom: .5rem;
	text-align: left!important
}

.modal--open .navbar-fixed .product-information__buttons {
	display: none!important
}

.product-information__modal-more {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #fff;
	padding: 24px;
	-webkit-box-shadow: var(--shadow11);
	box-shadow: var(--shadow11);
	text-align: center
}

.product-information__modal-more-button {
	width: 100%
}

.account__not-found-data {
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 120px 0
}

.account__not-found-data span {
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 16px
}

.products-favorites .product-card {
	width: 25%
}

.order,.orders {
	display: flex;
	flex-flow: column
}

.order {
	border-radius: var(--border-radius-primary);
	overflow: hidden;
	-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.11);
	box-shadow: 0 0 0 1px rgba(0,0,0,.11);
	background-color: #fff;
	margin-bottom: 24px
}

.order:last-child {
	margin-bottom: 0
}

.order__bottom {
	align-items: center;
	background-color: #fff;
	border-top: 1px solid rgba(0,0,0,.11);
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%
}

.order__bottom,.order__content {
	display: flex;
	padding: 16px
}

.order__listProducts {
	display: flex;
	margin-left: auto;
	max-width: 600px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 12px;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.order__listProducts-item {
	-webkit-filter: brightness(.97);
	filter: brightness(.97);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: var(--border-radius-primary);
	overflow: hidden;
	width: 72px;
	height: 96px;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.order__bottom-menu,.order__bottom-menu>div {
	display: flex;
	align-items: center
}

.order__bottom-menu>div {
	position: relative;
	padding-right: 24px;
	border-right: 1px solid var(--color-bg-border)
}

.order__bottom-menu>div:last-child {
	border-right: none
}

.order__bottom-menu>div svg {
	margin-right: 6px
}

.order__addReview,.order__moreInfo,.reviewAllProductsBtn {
	color: var(--nm-color-brand);
	font-size: 14px;
	font-weight: 500;
	margin-right: 16px;
	cursor: pointer
}

.order__dateOrder {
	color: var(--color-typo-light-ghost);
	margin-left: auto
}

.reviewAllProductsBtn {
	display: flex;
	align-items: center;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content
}

.reviewAllProductsBtn svg {
	margin-right: 6px
}

.addReview__reviewTextarea {
	resize: none;
	padding-bottom: 6px
}

.addReview__content {
	display: flex;
	flex-flow: column
}

.addReview-button {
	width: 100%;
	justify-content: center;
	margin-top: 24px
}

.addReview-button,.setRating {
	align-items: center
}

.setRating {
	display: flex
}

.setRating input {
	width: 21px;
	padding: 0 4px;
	margin: 0;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 21px;
	display: block;
	background-color: var(--color-bg-system);
	-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='19' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.208 15.129a.575.575 0 01.584 0l4.761 2.808a.575.575 0 00.851-.628l-1.254-5.255a.575.575 0 01.188-.572l4.165-3.526a.575.575 0 00-.324-1.012l-5.508-.457a.575.575 0 01-.48-.344l-2.164-4.989a.575.575 0 00-1.055 0L6.81 6.143a.575.575 0 01-.48.344l-5.508.457a.575.575 0 00-.324 1.012l4.165 3.526c.165.14.238.362.188.573l-1.254 5.254a.575.575 0 00.851.628l4.76-2.808z' fill='%23E1E4E9'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='19' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.208 15.129a.575.575 0 01.584 0l4.761 2.808a.575.575 0 00.851-.628l-1.254-5.255a.575.575 0 01.188-.572l4.165-3.526a.575.575 0 00-.324-1.012l-5.508-.457a.575.575 0 01-.48-.344l-2.164-4.989a.575.575 0 00-1.055 0L6.81 6.143a.575.575 0 01-.48.344l-5.508.457a.575.575 0 00-.324 1.012l4.165 3.526c.165.14.238.362.188.573l-1.254 5.254a.575.575 0 00.851.628l4.76-2.808z' fill='%23E1E4E9'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	cursor: pointer
}

.setRating input:last-child {
	padding-right: 0
}

.setRating input:first-child {
	padding-left: 0
}

.setRating input.active,.setRating.checked input {
	background-color: var(--color-bg-caution)
}

.setRating.checked input:checked~input,.setRating.not-checked input {
	background-color: var(--color-bg-system)
}

.setRating.not-checked input.active {
	background-color: var(--color-bg-caution)!important
}

.addReview__title {
	font-size: 16px;
	font-weight: 500;
	margin-top: 16px;
	margin-bottom: 8px;
	width: 100%;
	display: flex;
	align-items: center
}

.reviews-product__title {
	margin-bottom: 1rem
}

.reviews-product__content {
	max-width: 1056px
}

.reviews-product .pagination {
	margin-top: 32px
}

.reviews-product__back {
	margin-bottom: 1.5rem
}

.reviews-product__back svg {
	margin-right: 8px
}

.reviews-product__back a {
	font-size: 14px;
	color: var(--color-typo-secondary)
}

.reviews-product-info,.reviews-product__back a {
	display: flex;
	align-items: start
}

.reviews-product-info {
	width: 100%;
	border-bottom: 1px solid var(--color-bg-border);
	margin-bottom: 1rem;
	padding-bottom: 1rem
}

.reviews-product-info__photo {
	width: 72px;
	height: 96px;
	position: relative;
	z-index: 0;
	border-radius: var(--border-radius-primary);
	overflow: hidden;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.reviews-product-info__photo img {
	width: 72px;
	height: 96px
}

.reviews-product-info__photo:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
	background-color: rgba(0,0,0,.03)
}

.reviews-product-info__content {
	margin-left: 12px
}

.reviews-product-info__name {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem
}

.reviews-product-info__countReviews {
	margin-top: 8px;
	font-size: 16px;
	color: var(--color-typo-secondary)
}

.reviews-product-info__prices {
	margin-left: auto;
	display: flex;
	align-items: flex-end;
	white-space: nowrap;
	margin-bottom: 1rem
}

.reviews-product-info__currentPrice {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	margin-right: 8px
}

.reviews-product-info__oldPrice {
	font-size: 16px;
	line-height: 1;
	color: var(--color-typo-secondary);
	position: relative
}

.reviews-product-info__oldPrice:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: var(--color-alert)
}

@media screen and (min-width: 1024px) {
	.product-card:hover app-product-favorite,app-product-favorite[data-is="1"] {
		opacity:1;
		visibility: visible;
		pointer-events: auto
	}

	.product-card:hover .product-card__buttons,.product-card:hover .product-card__fast-view,.product-card:hover .product-card__sizes-available {
		display: flex!important
	}

	.product-card:hover .product-card__container {
		-webkit-box-shadow: var(--shadow-primary);
		box-shadow: var(--shadow-primary);
		-webkit-transition: -webkit-box-shadow var(--animateHoverBox);
		transition: -webkit-box-shadow var(--animateHoverBox);
		-o-transition: box-shadow var(--animateHoverBox);
		transition: box-shadow var(--animateHoverBox);
		transition: box-shadow var(--animateHoverBox),-webkit-box-shadow var(--animateHoverBox)
	}

	.product-card:hover {
		z-index: 2
	}
}

@media screen and (min-width: 1040px) {
	.checkbox-input:hover {
		border:1px solid var(--color-control-bg-focus)
	}

	.checkbox-input:hover:before {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' opacity='.5' height='11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.146 8.227l6.429-7.66 1.149.964L5.33 10.34.352 6.16l.964-1.149 3.83 3.215z' fill='%233466B1'/%3E%3C/svg%3E");
		opacity: 1;
		background-color: unset
	}

	.radio-input:hover {
		border: 1px solid var(--color-control-bg-focus)
	}

	.radio-input:hover:before {
		opacity: 1;
		background-color: var(--color-control-bg-focus)
	}
}

@media (max-width: 1463.98px) {
	.collection-card__image {
		display:flex;
		align-items: center
	}

	.collection-card__image img {
		width: 10vw;
		height: auto
	}
}

@media (max-width: 1280px) {
	.cart-product-content-secondary {
		width:350px
	}

	.cart__container {
		flex-flow: column
	}

	.cart-aside {
		margin-left: 0;
		margin-top: 32px;
		max-width: calc(50% - 12px)
	}
}

@media (max-width: 1217.98px) {
	.products .product-card {
		width:25%
	}

	.product-card__sizes-available ul li a {
		font-size: 14px
	}

	.collection-card__content {
		max-width: 280px
	}

	.collection-card__image img {
		width: 13vw
	}

	.collection-products {
		width: 100%
	}

	.collection-products__content {
		flex-flow: column
	}

	.collection-products__list {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0
	}

	.collection-products__item {
		width: calc(50% - 12px);
		margin-bottom: 24px
	}

	.collection-products__banner {
		background-position: 49% top;
		max-height: 315px;
		height: 76.09vw;
		width: 100%
	}

	.catalog__products .product-card {
		width: 33.333333%
	}
}

@media (max-width: 1023.98px) {
	.filter-price .noUi-handle {
		width:24px;
		height: 24px
	}

	.breadcrumbs {
		margin-bottom: 1rem;
		overflow: auto
	}

	.breadcrumbs::-webkit-scrollbar {
		width: 0;
		height: 0
	}

	.breadcrumbs__item {
		-ms-flex-negative: 0;
		flex-shrink: 0
	}

	.breadcrumbs__item:last-child {
		padding-right: 16px
	}

	.pagination {
		margin-top: 0
	}

	.pagination__pages {
		margin-right: -4px;
		flex-grow: 1;
		width: 100%;
		justify-content: center;
		align-items: center
	}

	.pagination__item,.pagination__prev-page {
		margin-right: 8px;
		width: 38px;
		height: 38px;
		background-color: var(--color-control-bg-ghost-hover);
		color: var(--color-typo-secondary)
	}

	.pagination__more {
		background-color: unset
	}

	.pagination__more--first {
		width: 24px;
		height: 24px
	}

	.pagination__more--last,.pagination__prev-page-desktop {
		display: none
	}

	.pagination__prev-page-mobile {
		display: block
	}

	.pagination__next-page {
		display: none
	}

	app-notify {
		top: 24px;
		bottom: auto;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	body {
		height: max-content
	}

	html {
		height: -webkit-fill-available
	}

	.container {
		padding-right: 16px;
		padding-left: 16px
	}

	.navbar {
		display: flex
	}

	.search {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: calc(100% - 61px);
		margin: 0;
		background: #fff;
		z-index: 2;
		display: none
	}

	.search-active {
		display: flex;
		z-index: 7
	}

	.navbar-fixed {
		z-index: 10
	}

	.navbar-fixed .product-information__buttons {
		display: flex
	}

	.products .product-card {
		margin-bottom: 0
	}

	.products .product-card__buttons {
		display: flex
	}

	.products .product-card__top-control button {
		opacity: 1;
		visibility: visible;
		pointer-events: auto
	}

	.__jivoMobileButton,.products .product-card__fast-view {
		display: none!important
	}

	#jvLabelWrap {
		display: none
	}

	.elevator-button {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%)
	}

	.elevator-wrap {
		bottom: 100%;
		-webkit-transform: translateY(44px);
		-ms-transform: translateY(44px);
		transform: translateY(44px);
		right: 16px
	}

	.elevator-wrap.active {
		bottom: 77px
	}

	.elevator-wrap.elevator-hidden {
		visibility: hidden;
		opacity: 0;
		pointer-events: none
	}

	.elevator-callback {
		display: flex
	}

	.elevator-button.active {
		bottom: calc(100% + 16px)
	}

	.footer {
		padding-bottom: 80px
	}

	.footer-logo {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}

	.footer-contacts {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}

	.footer-menu {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.footer__top {
		padding-top: 48px;
		padding-bottom: 24px
	}

	.footer__content {
		flex-flow: column
	}

	.footer__collumn {
		margin-bottom: 24px
	}

	.footer__copyrights {
		margin-top: 12px
	}

	.product-page .footer {
		padding-bottom: 135px
	}

	.cookie.active {
		bottom: 90px
	}

	.product-page .cookie.active {
		bottom: 155px
	}

	.product-information,.product-page .product-page-navbar {
		display: flex
	}

	.product-information {
		position: static;
		padding-bottom: 0;
		flex-flow: column
	}

	.product-information__title {
		font-size: 20px
	}

	.product-information__tags {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		min-height: 26px
	}

	.product-information__tags .product-tags__item {
		margin-bottom: 0;
		font-size: 14px;
		padding: 3px 6px
	}

	.product-information__buttons {
		display: none
	}

	.product-information__button-primary {
		flex: 1
	}

	.product-information__top {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin-bottom: 1rem;
		margin-top: 0;
		border-bottom: 1px solid var(--color-bg-border);
		padding-bottom: 1rem
	}

	.product-information__prices {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-shadow: 0 4px 17px 0 rgba(0,30,51,.11);
		box-shadow: 0 4px 17px 0 rgba(0,30,51,.11);
		border-radius: var(--border-radius-primary);
		padding: 12px 16px;
		margin-bottom: 1rem
	}

	.product-information__prices .product-information__prices-amount-orderx {
		margin-left: auto;
		color: var(--color-typo-secondary)
	}

	.product-information__prices-amount-order {
		display: flex;
		margin-left: auto
	}

	.product-information__main {
		margin-top: 0;
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}

	.product-information__main>div {
		margin-bottom: 20px
	}

	.product-information__top-other {
		border-bottom: none;
		padding-bottom: 0;
		display: none
	}

	.product-information__top-other-mobile {
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-flow: row-reverse;
		flex-flow: row-reverse;
		margin-top: 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: 12px
	}

	.product-information__top-other-mobile .product-information__review {
		margin-left: 0
	}

	.product-information__top-other-mobile .product-information__review .rating-block__stars {
		width: 80px;
		height: 17px
	}

	.product-information__top-other-mobile .product-information__review .rating-block__stars .rating-block__bg,.product-information__top-other-mobile .product-information__review .rating-block__stars .rating-block__count-stars {
		background-size: 80px
	}

	.product-about {
		margin-top: -20px;
		z-index: 0
	}

	.product-about__table li {
		flex-flow: column;
		padding-top: 8px;
		padding-bottom: 12px;
		margin-bottom: 0;
		border-bottom: 1px solid var(--color-bg-border)
	}

	.product-about__table-name {
		width: 100%;
		padding: 0
	}

	.product-about__table-name:before {
		display: none
	}

	.product-about__table-value {
		padding: 0;
		margin-top: 4px;
		width: 100%
	}

	.reviews {
		background-color: var(--color-bg-secondary);
		padding-top: 32px;
		padding-bottom: 32px
	}

	.reviews__title.section-header-h2 {
		margin: 0
	}

	.reviews__top {
		margin-bottom: 0
	}

	.reviews__content {
		margin-top: 16px;
		width: 100%
	}

	.reviews .reviews__title {
		white-space: nowrap;
		margin-right: 16px;
		height: 32px;
		display: flex;
		align-items: center;
		margin-top: 8px
	}

	.reviews .reviews__top-more {
		margin-left: 0;
		margin-top: 8px
	}

	.reviews .reviews__top {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: -8px;
		align-items: center
	}

	.reviews__item {
		margin-right: 0
	}

	.reviews__item,.reviews__item:last-child {
		margin-bottom: 0
	}

	.reviews__more {
		margin-top: 4px;
		width: 100%
	}

	.reviews__information {
		width: 100%;
		margin-top: 24px
	}

	.products__list {
		overflow: visible
	}

	.product-page__information {
		width: 100%;
		position: static
	}

	.product-page__information-wrap {
		flex-flow: column
	}

	.product-page__about {
		width: 100%
	}

	.product-page__photo-wrap {
		width: 100%;
		flex-flow: column-reverse;
		flex-flow: column
	}

	.option-open-photo {
		opacity: 1;
		visibility: visible
	}

	.page__content {
		width: 100%;
		margin-left: 0
	}

	.catalog__button-filter,.catalog__grid {
		display: flex
	}

	.contacts {
		background-color: #f9f9fa
	}

	.contacts h1 {
		margin-bottom: 24px
	}

	.contacts__container {
		flex-flow: column
	}

	.contacts__content {
		max-width: 100%;
		flex: 1
	}

	.contacts__content-row {
		margin-bottom: 16px;
		padding-bottom: 16px;
		border-bottom: 1px solid var(--color-bg-border)
	}

	.contacts__content-row:last-child {
		border-bottom: 0;
		margin-bottom: 0;
		padding-bottom: 0
	}

	.contacts__title {
		font-size: 16px;
		line-height: 19px;
		margin-bottom: 10px
	}

	.contacts__address li {
		font-size: 14px;
		line-height: 17px
	}

	.contacts__address li span {
		font-size: 12px;
		line-height: 14px
	}

	.contacts__form {
		width: auto;
		-webkit-box-shadow: none;
		box-shadow: none;
		padding: 24px 16px;
		margin: 32px 0
	}

	.contacts__form-title {
		font-size: 24px;
		margin-bottom: 24px
	}

	.contacts__form-row .contacts__form-field {
		margin-right: 0;
		flex: 0 0 100%
	}

	.contacts__form-row {
		flex-flow: column
	}

	.contacts__form-button {
		width: 100%
	}

	.page-cart {
		padding-bottom: 6rem
	}

	.cart__title {
		font-size: 20px;
		line-height: 24px
	}

	.cart__delivery-type-box-inner {
		flex-flow: column
	}

	.cart__delivery-type-item {
		margin-bottom: 20px
	}

	.cart__delivery-type-item:last-child {
		margin-bottom: 0
	}

	.payment-method__item {
		flex: 1
	}

	.cart-aside {
		margin-top: 16px;
		max-width: 100%
	}

	.cart-product-wrap>div:last-child {
		padding-bottom: 24px
	}

	.cart-product-primary,.cart-product-secondary {
		-ms-flex-flow: wrap;
		flex-flow: wrap;
		position: unset;
		align-items: flex-start;
		padding: 20px;
		overflow: hidden
	}

	.cart-product-secondary {
		border-top: 1px dashed var(--color-bg-border)
	}

	.cart-product-checkbox {
		margin: auto;
		position: absolute;
		right: 16px;
		bottom: 12px;
		top: auto;
		left: 12px;
		z-index: 1
	}

	.cart-product-secondary:before {
		display: none
	}

	.cart-product-content {
		flex: 1;
		margin-right: 0
	}

	.cart-product-content-secondary {
		width: 100%;
		margin-top: 8px;
		-ms-flex-flow: wrap;
		flex-flow: wrap;
		align-items: center
	}

	.cart__products-list {
		background-color: initial;
		padding: 0;
		border-radius: var(--border-radius-primary);
		border: none
	}

	.cart-product-name {
		font-size: 14px;
		line-height: 17px
	}

	.cart-product-param li {
		font-size: 12px;
		line-height: 14px;
		margin-bottom: 6px
	}

	.cart-product-content-secondary-bottom {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex;
		width: 100%;
		margin-top: 12px;
		padding: 12px 16px
	}

	.cart-product {
		margin-bottom: 20px
	}

	.cart-product:last-child {
		margin-bottom: 0
	}

	.cart-product-secondary {
		margin-top: 0;
		align-items: center
	}

	.cart-product-photo {
		margin-right: 16px;
		display: flex
	}

	.cart-product-photo img {
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		width: 100px
	}

	.cart-product-price {
		margin-right: 0;
		flex: 1
	}

	.cart-product-price-primary {
		font-size: 18px;
		line-height: 18px
	}

	.cart-product-count-wrap {
		flex: 1
	}

	.cart-product-add-to-favorite,.cart-product-remove {
		font-size: 12px;
		line-height: 15px
	}

	.cart__products-top {
		padding: 12px 14px
	}

	.cart__products-top-back-home {
		display: none
	}

	.cart__container h1 {
		margin-bottom: 16px
	}

	.footer-cart {
		display: none
	}

	.modal-window .text-field__size-l input {
		height: 48px
	}

	.tableizer-table-wrap {
		max-width: calc(100vw - 32px);
		max-height: calc(70vh - 200px);
		margin-left: auto;
		margin-right: auto;
		overflow: scroll
	}

	.order__content {
		flex-flow: column
	}

	.order__listProducts {
		margin: 24px 0 0;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.order__listProducts-item {
		width: 72px;
		height: 96px
	}

	.order__content {
		padding: 12px
	}

	.order {
		background-color: #fff;
		-webkit-box-shadow: none;
		box-shadow: none;
		border: 1px solid #e4e4e4
	}

	.order__bottom-menu {
		width: 100%;
		gap: 8px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}

	.order__bottom-menu>div {
		padding: 0;
		margin: 0;
		border: none;
		white-space: nowrap
	}

	.order__bottom {
		display: flex;
		flex-flow: column;
		gap: 12px
	}

	.order__dateOrder {
		display: none
	}
}

@media (max-width: 799.98px) {
	.text-field__size-l input,.text-field__size-l textarea {
		font-size:14px;
		top: 3px;
		left: 14px
	}

	.text-field__type-text.text-field__size-l .text-field__label,.text-field__type-text.textarea-field__sise-l .text-field__label {
		font-size: 14px;
		top: 3px
	}

	.product-page .app-notify {
		bottom: 146px
	}

	app-notify app-notify-item {
		max-width: calc(100vw - 96px)
	}

	.app-notify-item-container {
		padding: 16px
	}

	.app-notify-item-ico svg {
		width: 20px
	}

	.app-notify-item-message {
		font-size: 16px
	}

	.popular-categories__item {
		width: calc(50% - var(--gap))
	}

	.products__list {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-left: 0;
		margin-right: 0
	}

	.products .product-card {
		width: 50%
	}

	.collection-card {
		padding: 8px 12px 12px
	}

	.collection-card__content {
		width: 100%;
		padding: 0;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		flex-grow: 1
	}

	.collection-card__title {
		margin-top: 8px;
		font-size: 14px;
		margin-bottom: 8px
	}

	.collection-card__text {
		font-size: 12px
	}

	.collection-card__button {
		font-size: 14px;
		line-height: 32px;
		padding: 0 12px
	}

	/*
	.collection-card__button .icon {
		display: none
	}
	*/

	.collection-card__image {
		margin-left: 0;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		height: 103px;
		width: 100%
	}

	.collection-card__image img {
		height: 100px;
		width: auto
	}

	.collection-products__item {
		width: calc(50% - 6px);
		flex-flow: column;
		align-items: flex-start;
		margin-bottom: 12px
	}

	.home-about__text:before {
		height: 90px
	}

	.cookie__content .row {
		flex-flow: column
	}

	.cookie__button {
		margin-left: 0;
		margin-right: auto;
		margin-top: 12px
	}

	.product-information__tags {
		min-height: 24px
	}

	.product-information__price-now {
		font-size: 28px
	}

	.product-information__prices {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.product-information__prices .product-information__prices-amount-order {
		font-size: 12px
	}

	.product-about {
		margin-top: -20px;
		z-index: 0
	}

	.product-about__table li {
		flex-flow: column;
		padding-top: 8px;
		padding-bottom: 12px;
		margin-bottom: 0;
		border-bottom: 1px solid var(--color-bg-border)
	}

	.product-about__table-name {
		width: 100%;
		padding: 0
	}

	.product-about__table-name:before {
		display: none
	}

	.product-about__table-value {
		padding: 0;
		margin-top: 4px;
		width: 100%
	}

	.page .text-size-s {
		font-size: 12px;
		line-height: 16px
	}

	.page p.page__subtitle {
		font-size: 12px;
		line-height: 17px
	}

	.page__content {
		margin-bottom: 0
	}

	.page__content h1 {
		margin-bottom: 24px
	}

	.page__content h2 {
		margin: 48px 0 16px;
		font-size: 20px
	}

	.page__content h3 {
		margin: 24px 0 12px;
		font-size: 18px
	}

	.page__content hr {
		margin-top: 24px;
		margin-bottom: 24px
	}

	.page__content ol li,.page__content p,.page__content table,.page__content ul li {
		font-size: 14px;
		line-height: 20px
	}

	.page__content p {
		margin: 12px 0
	}

	.page__content ol,.page__content ul {
		margin: 12px 0 12px 26px
	}

	.page__content ol li,.page__content ul li {
		margin: 6px 0
	}

	.cart__products-list.cart-box {
		padding: 0
	}

	.payment-method__item span {
		font-size: 12px;
		line-height: 14px
	}

	.footer-cart {
		margin-bottom: 62px;
		height: auto;
		margin-top: 24px;
		display: none
	}

	.footer-cart__container {
		padding-top: 32px;
		padding-bottom: 32px
	}

	.footer-cart__container,.footer-cart__menu {
		flex-flow: column;
		align-items: flex-start
	}

	.footer-cart__menu {
		margin-left: 0;
		margin-right: auto;
		margin-top: 16px
	}

	.footer-cart__menu li {
		margin-bottom: 8px
	}

	.footer-cart__menu li:last-child {
		margin-bottom: 0
	}

	.footer-cart__copyright b {
		width: 100%;
		display: block
	}

	.cart__delivery .radio-size-l .radio-input {
		width: 16px;
		height: 16px
	}

	.cart__delivery .radio-size-l .radio-input:before {
		width: 6px;
		height: 6px
	}

	.cart__delivery-top>label {
		width: 100%;
		height: -webkit-max-content;
		height: -moz-max-content;
		height: max-content;
		min-height: 40px;
		margin-right: 0
	}

	.cart__delivery-top {
		-ms-flex-flow: wrap;
		flex-flow: wrap
	}

	.cart__delivery-type {
		margin-top: 0;
		border-bottom: 1px solid var(--color-bg-border);
		padding-bottom: 16px
	}

	.delivery-item__name {
		font-size: 14px;
		line-height: 17px
	}

	.payment-method__list {
		flex-flow: column
	}

	.cart__delivery-top>label,.cart__delivery-type-item {
		margin-bottom: 16px
	}

	.payment-method__item {
		margin-right: 0;
		margin-bottom: 16px;
		width: 100%
	}

	.payment-method__item:last-child {
		margin-bottom: 0
	}

	.delivery-company__list {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0
	}

	.delivery-company__item {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
		margin-bottom: 16px
	}

	.delivery-company__item:last-child {
		margin-bottom: 0
	}

	.delivery-company__item-container {
		padding: 12px
	}

	.delivery-company__item-top {
		padding-bottom: 0
	}

	.delivery-company__item-checkbox {
		margin-bottom: 8px
	}

	.delivery-company__item-logo {
		margin-bottom: 8px;
		margin-left: 8px;
		margin-right: 8px
	}

	.delivery-company__item-logo img {
		width: 70px;
		height: auto
	}

	.delivery-company__item-name {
		margin-bottom: 8px;
		margin-left: 0
	}

	.cart__delivery-pointMap {
		padding-bottom: 120%
	}

	.error404__container {
		flex-flow: column;
		padding-top: 20px;
		padding-bottom: 32px
	}

	.error404__code {
		font-size: 76px;
		line-height: 1;
		margin: auto auto 24px
	}

	.error404__content {
		max-width: none;
		justify-content: center;
		text-align: center
	}

	.error404__title {
		text-align: center;
		width: 100%
	}

	.error404__button {
		margin-left: auto;
		margin-right: auto;
		margin-top: 24px
	}

	.text-field__size-l input {
		height: 48px
	}
}

@media (max-width: 607.98px) {
	h1 {
		font-size:24px;
		line-height: 29px
	}

	.popular-categories__list {
		margin-left: calc(0px - var(--gap)/ 4);
		margin-right: calc(0px - var(--gap)/ 4)
	}

	.popular-categories__item {
		margin: 0 calc(var(--gap)/4) 20px;
		width: calc(50% - 12px)
	}

	.popular-categories__name {
		font-size: 14px;
		margin-top: 8px
	}

	.rating-block__stars {
		width: 70px
	}

	.rating-block__bg,.rating-block__count-stars {
		background-size: 70px auto;
		background-position: 0
	}

	.rating-block__count {
		font-size: 12px
	}

	.product-tags>div {
		margin-bottom: 4px
	}

	.product-tags__item {
		font-size: 12px;
		line-height: 18px
	}

	.products .product-card {
		margin-bottom: 12px;
		width: calc(50% - 6px)
	}

	.products .product-card__buttons button {
		line-height: 32px;
		padding: 0 12px;
		font-size: 14px
	}

	.products .product-card__top {
		padding: 0
	}

	.products .product-card__top-control {
		padding: 8px
	}

	.products .product-card__tags {
		top: 8px;
		left: 8px
	}

	.products .product-card__tags-bottom {
		top: 10px;
		left: 8px
	}

	.products .product-card__bottom {
		padding-left: 0;
		padding-right: 0
	}

	.products .product-card__name {
		font-size: 14px;
		max-height: 41px
	}

	.products-slider .product-card {
		margin-bottom: 0
	}

	.closeButton__Je1_W {
		position: relative;
		top: -36px;
		left: 30px
	}

	.footer {
		margin-top: 32px
	}

	.footer__top {
		padding-top: 32px;
		padding-bottom: 8px
	}

	.footer__bottom {
		padding-top: 16px;
		padding-bottom: 16px
	}

	.footer__bottom-links {
		display: flex;
		flex-flow: column;
		width: 100%
	}

	.footer__bottom-links a {
		margin-bottom: 12px
	}

	.footer__bottom-links a:last-child {
		margin-bottom: 0
	}

	.catalog__products .product-card {
		width: calc(50% - 6px)
	}

	.contacts__container {
		align-items: stretch
	}

	.contacts__form {
		border-radius: 0;
		margin: 32px -16px -32px
	}

	.reviews-product-info {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.reviews-product-info__content {
		margin-left: 0;
		margin-top: 12px
	}

	.reviews-product-info__countReviews,.reviews-product-info__name {
		font-size: 14px
	}

	.reviews-product-info__prices {
		margin-left: 0;
		margin-top: 12px
	}

	.reviews-product-info__currentPrice {
		font-size: 18px
	}

	.reviews-product-info__oldPrice {
		font-size: 14px
	}
}

@media (max-width: 550px) {
	.cart__delivery-types {
		width:calc(100% + 16px)
	}

	.cart__delivery-types-item {
		flex: 1
	}
}

@media (max-width: 400px) {
	.collection-card__button {
		font-size:3.55vw;
		padding: 0 2.5vw
	}
}

@media (max-width: 350px) {
	.cart-product-photo img {
		width:100%
	}

	.cart-product-content {
		flex: 0 0 100%
	}

	.cart-product-photo {
		margin-bottom: 16px;
		flex: 1
	}
}

@media (hover: hover) {
	.f-button:hover:not([disabled]) {
		color:var(--f-button-hover-color);
		background-color: var(--f-button-hover-bg)
	}

	.elevator-callback:hover {
		background-color: #d85c0c
	}

	.cart-product:hover .cart-product-wrap {
		-webkit-box-shadow: 0 4px 11px 0 rgba(0,0,0,.07);
		box-shadow: 0 4px 11px 0 rgba(0,0,0,.07)
	}
}

@media (hover: none) {
	.elevator-callback:active {
		background-color:#d85c0c
	}
}

body {
	margin-top: 90px
}

.order-review-product-content {
	min-height: 200px;
	padding: 0 0 20px;
	display: flex
}

.order-review-product-list {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
	gap: 8px
}

.order-review-product-item {
	display: flex
}

.order-review-product-item-photo {
	background-color: #fff;
	-webkit-filter: brightness(.97);
	filter: brightness(.97);
	border-radius: var(--border-radius-primary);
	overflow: hidden;
	background-position: 50%;
	background-size: contain;
	background-repeat: no-repeat;
	width: 72px;
	height: 96px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 16px
}

.order-review-product-item-content {
	display: flex;
	flex-flow: column;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	align-items: flex-start
}

.order-review-product-item-content-name {
	font-size: 14px;
	margin-top: 6px;
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 6px
}

.order-review-product-item-content-info {
	margin-bottom: 8px
}

.order-review-product-item-content-button {
	margin-top: auto
}

.modal-order-review-add {
	padding: 2rem
}

.modal-order-review-add .order-review-product-content {
	min-height: auto
}

.bs-m-0 {
	margin: 0!important
}

.bs-m-2 {
	margin: .5rem!important
}

.bs-m-3 {
	margin: 1rem!important
}

.bs-mb-1 {
	margin-bottom: .25rem!important
}

.bs-mb-2 {
	margin-bottom: .5rem!important
}

.bs-mb-3 {
	margin-bottom: 1rem!important
}

.bs-mt-1 {
	margin-top: .25rem!important
}

.bs-mt-2 {
	margin-top: .5rem!important
}

.bs-mt-3 {
	margin-top: 1rem!important
}

.bs-mt-4 {
	margin-top: 1.5rem!important
}

.bs-me-1 {
	margin-right: .25rem!important
}

.bs-me-2 {
	margin-right: .5rem!important
}

.bs-me-3 {
	margin-right: 1rem!important
}

.bs-me-4 {
	margin-right: 1.5rem!important
}

.bs-ms-2 {
	margin-left: .5rem!important
}

.bs-mx-auto {
	margin-right: auto!important;
	margin-left: auto!important
}

.bs-fw-bold {
	font-weight: 700!important
}

.bs-small {
	font-size: .875em!important
}

.bs-d-flex {
	display: flex!important
}

.bs-flex-grow-1 {
	flex-grow: 1!important
}

.bs-align-items-center {
	align-items: center!important
}

.bs-justify-content-center {
	justify-content: center!important
}

.bs-text-secondary {
	color: #6c757d!important
}

.bs-text-primary {
	color: var(--nm-color-brand)
}

.bs-text-danger {
	color: #e5534f!important
}

.bs-text-success {
	color: #448d44!important
}

.bs-text-white {
	color: #fff!important
}

.bs-text-center {
	text-align: center!important
}

.bs-text-decoration-none {
	text-decoration: none!important
}

.bs-p-2 {
	padding: .5rem!important
}

.bs-p-3 {
	padding: 1rem!important
}

.bs-p-4 {
	padding: 1.5rem!important
}

.bs-p-5 {
	padding: 3rem!important
}

.bs-border-dark {
	border: 1px solid #023
}

.bs-border-top {
	border-top: 1px solid #023
}

.bs-border-bottom {
	border-bottom: 1px solid #023
}

.bs-border-secondary {
	border-color: var(--color-bg-border)
}

.bs-position-relative {
	position: relative!important
}

.bs-position-fixed {
	position: fixed!important
}

.bs-float-end {
	float: right!important
}

.bs-flex-row {
	flex-direction: row!important
}

.bs-flex-wrap {
	flex-wrap: wrap!important
}

.bs-d-none {

	display: none!important
}

.model-delivery {
	width: 100%
}

.bs-gap-3 {
	gap: 1rem
}

.bs-alert {
	padding: .5rem;
	border: 1px solid #fff;
	border-radius: var(--border-radius-primary)
}

.bs-alert-danger {
	background-color: #f8d7da;
	color: #58151c;
	border-color: #f1aeb5
}

.text-field__input.quantity-product__count::-webkit-inner-spin-button,.text-field__input.quantity-product__count::-webkit-outer-spin-button {
	-webkit-appearance: none!important;
	margin: 0!important
}

.text-field__input.quantity-product__count {
	-moz-appearance: textfield!important
}

.map-hint {
	display: inline-block;
	position: relative;
	padding: 12px;
	width: 280px;
	background-color: #fff;
	-webkit-box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	border-radius: var(--border-radius-primary)
}

.map-hint>.head {
	font-size: 24px;
	font-weight: bolder;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-bg-border)
}

.map-hint>.body {
	margin: 16px 0
}

.map-hint>.foot {
	display: flex;
	align-items: center
}

.cart-delivery-map-place {
	display: none;
	flex-flow: column;
	margin-bottom: 1rem
}

.cart-delivery-map-place.active {
	display: flex
}

.cart-delivery-map-place>.head {
	font-size: 18px;
	line-height: inherit;
	margin: 0 0 1rem;
	font-weight: 700;
	width: 100%
}

.cart-delivery-map-place>.body {
	display: flex;
	align-items: center;
	border-color: var(--color-control-bg-border-primary);
	-webkit-box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset;
	box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset;
	padding: 16px;
	border-radius: var(--border-radius-primary);
	border: 1px solid var(--color-control-bg-border-default);
	height: 100%
}

app-cart-delivery-place,app-cart-li {
	position: relative
}

app-cart-delivery-receiving-address {
	position: relative;
	margin-bottom: 1rem
}

.cart-delivery-receiving-address {
	display: flex;
	flex-flow: column
}

.cart-delivery-receiving-address>.head {
	font-size: 18px;
	line-height: inherit;
	margin: 0 0 1rem;
	font-weight: 700;
	width: 100%
}

.cart-delivery-receiving-address>.body {
	border-color: var(--color-control-bg-border-primary);
	-webkit-box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset;
	box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset;
	border-radius: var(--border-radius-primary);
	border: 1px solid var(--color-control-bg-border-default);
	padding: 16px;
	height: 100%;
	min-height: 68px;
	font-size: 16px
}

app-cart-delivery {
	width: 100%!important
}

app-cart-delivery-group {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 1rem;
	gap: 8px;
	width: 100%
}

app-cart-delivery-group-item {
	flex: 1 0 24%;
	position: relative
}

app-cart-delivery-group-item.delivery-item {
	padding: 0
}

app-cart-delivery-map {
	margin-bottom: 1rem
}

app-cart-delivery-company-group {
	position: relative;
	margin-bottom: 1rem;
	display: block
}

app-cart-delivery-company-group>.head {
	font-size: 18px;
	line-height: inherit;
	margin: 0 0 1rem;
	font-weight: 700;
	width: 100%
}

app-cart-delivery-company-item {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: var(--border-radius-primary);
	border: 1px solid var(--color-control-bg-border-default);
	cursor: pointer;
	min-height: 68px;
	height: 100%;
	margin-bottom: .5rem
}

app-cart-delivery-company-item.active {
	border-color: var(--color-control-bg-border-primary);
	-webkit-box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset;
	box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset;
	border-radius: var(--border-radius-primary);
	border: 1px solid var(--color-control-bg-border-default)
}

app-cart-delivery-company-item.disabled {
	opacity: .5;
	pointer-events: none
}

app-cart-delivery-company-item>.head {
	display: flex;
	margin-left: 16px;
	align-items: center
}

app-cart-delivery-company-item>.body {
	flex-grow: 1;
	text-align: end;
	margin-right: 16px;
	font-size: 18px;
	word-break: break-all
}

app-cart-delivery-company-item>.head>.logo {
	margin-left: 12px;
	width: 100px;
	height: 40px;
	display: flex
}

app-cart-delivery-company-item>.head>.logo>img {
	height: auto;
	width: 100%;
	object-fit: contain
}

app-cart-delivery-company-item>.head>.name {
	margin-left: 12px;
	font-size: 16px;
	font-weight: 700
}

app-cart-payment app-cart-payment-item,app-cart-recipient {
	position: relative
}

app-cart-recipient>app-cart-recipient-contact {
	display: flex;
	margin-bottom: .5rem;
	align-items: center;
	border-bottom: 1px solid var(--color-bg-border);
	padding-bottom: .5rem
}

app-cart-recipient>app-cart-recipient-address {
	display: flex;
	margin-bottom: .5rem;
	align-items: center
}

app-cart-payment {
	gap: 16px;
	display: flex;
	width: 100%
}

app-product-not-available .content {
	display: block;
	margin-top: 1.5rem;
	border-radius: var(--border-radius-primary);
	border: 1px solid var(--color-bg-border);
	background-color: #fff;
	padding: .5rem 1rem
}

app-product-not-available .content .head {
	margin-top: .5rem;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-alert)
}

app-product-not-available .content .body {
	margin-top: 1rem
}

app-product-not-available .content .body>div {
	margin-bottom: .5rem
}

.modal-product-not-available {
	padding: 2rem
}

.modal-product-not-available>div>.head {
	display: flex;
	justify-content: center;
	margin-bottom: .5rem
}

.modal-product-not-available .button {
	width: 100%
}

.modal-product-not-available>div>.body {
	margin-bottom: 1rem
}

.card {
	background-color: #fff;
	border-radius: var(--border-radius-primary);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem
}

.card .card-body {
	margin: 1rem;
	display: flex;
	flex-flow: column;
	align-items: center
}

app-cart-delivery-group-item,app-cart-payment app-cart-payment-item {
	min-height: 68px
}

.page-cart .delivery-and-payment-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%
}

.page-blog h1 {
	margin-bottom: 1rem
}

.page-blog a {
	text-decoration: none!important
}

.page-blog .page-blog-items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem
}

.page-blog .page-blog-item {
	display: flex;
	flex-direction: column;
	flex: 1 1 calc(25% - 1rem);
	max-width: calc(25% - 1rem)
}

.page-blog .page-blog-item a {
	width: 100%;
	color: var(--color-typo-primary)
}

.page-blog .page-blog-item .page-blog-item-img {
	margin-bottom: 1rem;
	display: flex;
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-radius: var(--border-radius-primary)
}

.page-blog .page-blog-item .page-blog-item-img img {
	width: 100%;
	background-color: var(--color-bg-secondary)
}

.page-blog .page-blog-item .page-blog-item-head {
	height: 3rem;
	font-weight: 700
}

.page-blog .page-blog-item .page-blog-item-body {
	height: 6rem;
	overflow: hidden;
	line-height: 1.25
}

@media (max-width: 768px) {
	.page-blog .page-blog-item {
		flex-basis:calc(50% - 1rem);
		max-width: none
	}
}

@media (max-width: 480px) {
	.page-blog .page-blog-item {
		flex-basis:100%;
		max-width: none
	}
}

.page-dostavka .page-dostavka-items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem
}

.page-dostavka .page-dostavka-item {
	padding: 1rem 0;
	background-color: #fff;
	-webkit-box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	border-radius: var(--border-radius-primary);
	display: flex;
	flex-direction: column;
	flex: 1 1 calc(25% - 1rem);
	max-width: calc(25% - 1rem);
	text-align: center;
	text-decoration: none;
	color: var(--color-typo-primary)
}

.page-dostavka .page-dostavka-item b {
	margin-bottom: 1rem
}

.page-dostavka .page-dostavka-item-img {
	display: flex;
	height: 40px;
	justify-content: center;
	margin-bottom: 1rem
}

.page-dostavka .page-dostavka-item-img img {
	height: 40px
}

@media (max-width: 480px) {
	.page-dostavka .page-dostavka-item {
		flex-basis:100%;
		max-width: none
	}
}

@media (max-width: 768px) {
	.page-dostavka .page-dostavka-item {
		flex-basis:calc(100% - 1rem);
		max-width: none
	}
}

.product-tab {
	position: relative;
	width: 100%;
	margin-bottom: 1rem
}

.product-tab .product-tab-head {
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	text-decoration: none;
	position: relative;
	color: var(--color-typo-secondary);
	margin-right: 2rem
}

.product-tab .product-tab-head.active {
	color: var(--color-typo-primary);
	pointer-events: none
}

.product-tab .product-tab-head>span {
	position: absolute;
	top: -5px;
	right: -10px;
	font-size: 12px;
	color: var(--color-typo-secondary)
}

.product-review {
	display: block;
	width: 50%
}

.product-review .product-review-head {
	margin-bottom: 1rem
}

.product-review .product-review-item {
	background-color: #fff;
	display: flex;
	flex-flow: column;
	margin-bottom: 1rem
}

.product-review .product-review-item-head {
	display: flex;
	align-items: center;
	margin-bottom: 1rem
}

.product-review .product-review-item-head-ico {
	font-size: 20px;
	height: 48px;
	line-height: 26px;
	width: 48px;
	align-self: flex-start;
	flex-shrink: 0;
	margin-right: 16px;
	align-items: center;
	background-color: #f5f5f6;
	border-radius: 50%;
	box-sizing: border-box;
	color: #fff;
	display: inline-flex;
	font-weight: 700;
	justify-content: center
}

.product-review .product-review-item-head-fio {
	font-size: 16px;
	line-height: 1.2;
	width: 100%;
	font-weight: 700;
	overflow: hidden
}

.product-review .product-review-item-head-date {
	color: var(--color-typo-secondary);
	white-space: nowrap
}

.product-review .product-review-item-head-rating {
	margin-left: 1rem
}

.product-review .product-review-item-head-rating .rating-block__stars {
	margin: 0
}

.product-review .product-review-item-body {
	margin-left: 4rem
}

.product-review .product-review-item-head-group {
	display: flex
}

@media (max-width: 768px) {
	.product-review {
		width:100%
	}

	.product-review .product-review-item-head-group {
		flex-flow: column
	}

	.product-review .product-review-item-head-rating {
		margin: 0;
		text-align: center;
		display: flex;
		justify-content: center
	}
}

.product-question {
	display: block;
	width: 50%
}

.product-question .product-question-form {
	background-color: #fff;
	-webkit-box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	box-shadow: 0 4px 16px 1px rgba(0,34,51,.11);
	border-radius: var(--border-radius-primary);
	padding: 1.5rem;
	margin-bottom: 1.5rem
}

.product-question .product-question-form textarea {
	padding: .5rem;
	resize: none
}

.product-question .product-question-body {
	margin-top: 1rem
}

.product-question .product-question-item {
	background-color: #fff;
	display: flex;
	flex-flow: column;
	margin-bottom: 1rem
}

.product-question .product-question-item-head {
	display: flex;
	align-items: center;
	margin-bottom: 1rem
}

.product-question .product-question-item-head-ico {
	font-size: 20px;
	height: 48px;
	line-height: 26px;
	width: 48px;
	align-self: flex-start;
	flex-shrink: 0;
	margin-right: 16px;
	align-items: center;
	background-color: #f5f5f6;
	border-radius: 50%;
	box-sizing: border-box;
	color: #fff;
	display: inline-flex;
	font-weight: 700;
	justify-content: center
}

.product-question .product-question-item-head-fio {
	font-size: 16px;
	line-height: 1.2;
	width: 100%;
	font-weight: 700;
	overflow: hidden
}

.product-question .product-question-item-head-date {
	color: var(--color-typo-secondary);
	white-space: nowrap
}

.product-question .product-question-item-body {
	margin-left: 4rem
}

.product-question .product-question-item-head-group {
	display: flex
}

@media (max-width: 768px) {
	.product-question {
		width:100%
	}

	.product-question .product-question-item-head-group {
		flex-flow: column
	}

	.product-question .product-question-item-head-rating {
		margin: 0;
		text-align: center;
		display: flex;
		justify-content: center
	}
}

.product-info-question,.product-info-question a,.product-info-review,.product-info-review a {
	display: flex;
	align-items: center;
	line-height: 1.2;
	font-size: 14px
}

.product-info-review .rating-star {
	display: flex;
	position: relative;
	height: 14px;
	width: 14px;
	color: #ddd;
	margin-right: .25rem
}

.product-info-review .rating-star .rating-star-top {
	position: absolute;
	height: 14px;
	z-index: 1;
	overflow: hidden
}

.product-info-review .rating-star .rating-star-top svg {
	color: orange
}

.product-info-question span,.product-info-review span {
	margin: 0 .25rem
}

.pagination__next-page {
	color: var(--color-typo-light-ghost)
}

.search-active button {
	color: #fff
}

.btn-outline a,.footer-logo {
	color: var(--nm-color-brand)
}

.reviews-product__back a {
	align-items: center!important
}

@media (max-width: 1024px) {
	.page-cart .cart-product {
		margin-bottom:.5rem
	}

	.page-cart .container {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.page-cart .cart-product-primary,.page-cart .cart-product-secondary {
		padding: 0
	}

	.page-cart .cart-product-secondary {
		padding-top: .5rem;
		margin-top: .5rem
	}
}

@media (max-width: 1366px) {
	.page-cart .cart-aside {
		width:100%;
		max-width: 100%;
		margin: 0
	}

	.page-cart .cart__container {
		flex-flow: column!important
	}

	.page-cart .delivery-and-payment-wrap {
		flex-wrap: wrap-reverse
	}
}

app-loading {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	min-height: 65px
}

app-loading>div {
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-name: app-loading-frame;
	animation-timing-function: linear;
	background-color: #f5f5f6;
	background: linear-gradient(to right,#f5f5f6 8%,#eee 18%,#f5f5f6 33%);
	background-size: 800px 800px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 0;
	border-radius: var(--border-radius-primary)
}

@keyframes app-loading-frame {
	0% {
		background-position: -800px 0
	}

	100% {
		background-position: 800px 0
	}
}

app-loading-button {
	position: absolute;
	z-index: 1;
	background-color: var(--nm-color-brand);
	pointer-events: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: var(--border-radius-primary)
}

app-loading-button.ghost {
	background: var(--color-control-bg-ghost)
}

app-loading-button>div {
	pointer-events: none;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	z-index: 9999;
	background: #fff;
	--loader-size: 4px;
	-webkit-animation: 1s -.18s infinite loader;
	animation: 1s -.18s infinite loader;
	position: absolute;
	width: var(--loader-size);
	height: var(--loader-size);
	border-radius: 50%;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0
}

app-loading-button>div:after,app-loading-button>div:before {
	background: inherit;
	width: inherit;
	height: inherit;
	border-radius: inherit;
	content: "";
	position: absolute
}

app-loading-button>div:before {
	-webkit-animation: 1s infinite loader;
	animation: 1s infinite loader;
	left: calc(50% - var(--loader-size) * 2.5)
}

app-loading-button>div:after {
	-webkit-animation: 1s -.36s infinite loader;
	animation: 1s -.36s infinite loader;
	left: calc(50% + var(--loader-size) * 1.5)
}

app-spinner {
	width: 30px;
	height: 30px;
	border: 5px solid #0236;
	border-bottom-color: #3466b1;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: 1s linear infinite app-spinner-rotation
}

app-spinner-center {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.7);
	z-index: 999999
}

app-spinner-center app-spinner {
	position: relative;
	left: calc(50% - 50px);
	top: 50%
}

@keyframes app-spinner-rotation {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

.loader-absolute {
	pointer-events: none;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: var(--z-index-loader-absolute);
	background: rgba(255,255,255,.7);
	--loader-size: 4px
}

.map-marker-lg,.map-marker-sm {
	position: relative
}

.map-marker-sm>div {
	position: absolute;
	left: -10px;
	top: -10px;
	width: 20px;
	height: 20px
}

.map-marker-lg>div {
	position: absolute;
	left: -20px;
	top: -20px;
	width: 40px;
	height: 40px
}

input[readonly] {
	cursor: not-allowed;
	background: var(--color-control-bg-disable)
}

.input-delete-and-save {
	display: flex;
	gap: 8px
}

.input-delete-and-save .delete,.input-delete-and-save .new {
	display: flex;
	width: auto;
	align-items: center;
	background-color: transparent;
	border: 1px solid var(--color-control-bg-border-default)
}

.input-delete-and-save button {
	flex-grow: 1
}

.input-delete-and-save a.button-primary:hover {
	background-color: transparent
}

.networks__item_vk {
	background-color: #5181b8
}

.text-field__input.required+.text-field__label:after {
	position: absolute;
	content: "*";
	font-size: inherit;
	top: 0;
	height: inherit;
	padding-right: 4px;
	right: -8px;
	color: var(--color-alert);
	background-color: #fff
}

.app-review-image {
	display: flex;
	margin-top: 1rem;
	margin-bottom: 1rem;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
	gap: 8px
}

.app-review-image .app-review-image-wrapper {
	border-radius: var(--border-radius-primary);
	min-width: 72px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-flow: column
}

.app-review-image .app-review-image-wrapper img {
	width: 72px;
	height: 96px
}

.button-club {
	display: flex;
	flex-flow: column;
	background-color: #fb9153;
	color: #fff;
	text-align: center;
	padding: .5rem 1rem;
	position: relative;
	overflow: hidden;
	border: none;
	border-radius: .75rem;
	font-size: 1rem;
	white-space: nowrap;
	line-height: 1
}

.button-club>div:first-child {
	font-weight: 500;
	font-size: 110%;
	margin-bottom: .5rem
}

.button-club>div:nth-child(2) {
	font-size: 80%
}

.button-club::before {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--shine-effect);
	-webkit-animation: 5s ease-in-out infinite shine;
	animation: 5s ease-in-out infinite shine
}

.button-club:hover {
	background-color: #d4723a;
	color: #fff
}

.modal .button-club {
	font-size: 1rem!important
}

.modal .button-club>div:nth-child(2) {
	margin-bottom: 0!important
}

@-webkit-keyframes shine {
	0% {
		left: -100%;
		transition-property: left
	}

	100%,11.5044247788% {
		left: 100%;
		transition-property: left
	}
}

@keyframes shine {
	0% {
		left: -100%;
		transition-property: left
	}

	100%,11.5044247788% {
		left: 100%;
		transition-property: left
	}
}

@media (max-width: 1023.98px) {
	.product-information__top-other {
		flex-flow:row
	}

	.header-slogan {
		text-align: center
	}

	.header-slogan a:first-child {
		padding: 0 1rem 0 0!important
	}
}

@media (max-width: 799.98px) {
	.product-information__price-now {
		font-size:22px
	}
}

@media (max-width: 768px) {
	.button-club {
		font-size:.9rem
	}

	.catalog-filter__list-content {
		flex-flow: column
	}

	.app-review-image {
		margin-top: 1.5rem;
		margin-bottom: 0
	}

	app-cart-delivery-company-item {
		flex-flow: column;
		align-items: start;
		padding: 1rem
	}

	app-cart-delivery-company-item>.head {
		margin: 0 0 .5rem;
		font-size: 16px
	}

	app-cart-delivery-company-item .delivery-company__item-checkbox {
		margin: 0
	}

	app-cart-delivery-company-item>.body {
		padding-top: .5rem;
		border-top: 1px solid var(--color-bg-border);
		width: 100%;
		text-align: start
	}

	.cart-delivery-map-place>.head,.cart-delivery-receiving-address>.head,app-cart-delivery-company-group>.head {
		font-size: 16px;
		margin-bottom: .5rem
	}

	.cart-delivery-map-place>.body {
		flex-flow: column;
		align-items: start
	}

	app-cart-payment {
		gap: 8px
	}

	.modal-order-review,.modal-order-review-add,.modal-recipient-address {
		padding: 1rem;
		max-height: 90vh
	}

	.modal-recipient-address .head {
		display: none
	}

	.modal-recipient-address .body {
		display: flex;
		height: 100%;
		column-gap: 12px;
		flex-flow: column
	}

	.modal-recipient-address .body .body-s {
		flex: 0
	}

	.modal-recipient-address .body .body-e {
		flex: 1
	}

	.modal-recipient-address-change,.modal-recipient-contact-change {
		padding: 1rem;
		max-height: 90vh
	}

	.elevator-wrap.active {
		bottom: 65px
	}

	.product-page .elevator-wrap.active {
		bottom: 150px
	}

	.modal-product-not-available {
		padding: 1rem;
		bottom: 130px!important
	}
}

.keen-slider-arrow {
	z-index: 1;
	background-color: #fff;
	border-radius: 50px;
	font-size: 0;
	background-position: 50%;
	background-size: 30px;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	fill: #fff;
	cursor: pointer;
	-webkit-box-shadow: var(--shadow-primary);
	box-shadow: var(--shadow-primary)
}

.keen-slider-arrow.arrow-prev {
	left: 12px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.185 20.743a.808.808 0 001.143-1.143l-4.107-4.116h11.543a.81.81 0 000-1.62H10.22l4.107-4.117a.808.808 0 00-1.143-1.142l-5.496 5.496a.81.81 0 000 1.146l5.496 5.496z' fill='%23023'/%3E%3C/svg%3E")
}

.keen-slider-arrow.arrow-next {
	right: 12px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.815 9.257a.808.808 0 00-1.143 1.143l4.107 4.116H8.236a.81.81 0 000 1.62H19.78l-4.107 4.117a.808.808 0 001.143 1.142l5.496-5.496a.81.81 0 000-1.146l-5.496-5.496z' fill='%23023'/%3E%3C/svg%3E")
}

.keen-slider-arrow.arrow-disabled {
	opacity: .125
}

.keen-slider-dots {
	display: flex;
	padding: 10px 0;
	justify-content: center;
	position: absolute;
	bottom: 1rem;
	width: 100%
}

.keen-slider-dot:after {
	content: "";
	width: 8px;
	height: 8px;
	display: block;
	margin: 0 .75rem;
	opacity: .5;
	border-radius: 8px;
	background-color: #fff;
	-webkit-box-shadow: 0 4px 16px 0 rgba(0,34,51,.16);
	box-shadow: 0 4px 16px 0 rgba(0,34,51,.16);
	cursor: pointer
}

.keen-slider-dot.dot-active:after {
	opacity: 1
}

.keen-slider-page {
	position: absolute;
	z-index: 1;
	bottom: 20px;
	transition: opacity .3s;
	left: 20px;
	font-size: 14px;
	width: auto;
	min-width: 32px;
	text-align: center;
	background: rgba(0,34,51,.5);
	color: #fff;
	border-radius: 8px;
	padding: 4px 8px;
	display: flex;
	gap: .5rem
}

.keen-slider-wrapper {
	position: relative;
	display: flex
}

.slider-slide {
	display: flex;
	overflow: hidden;
}

.slider-slide a {
	border-radius: var(--border-radius-primary);
	overflow: hidden;
	display: flex;
	background-color: #f0f0f0;
	height: 100%
}

.slider-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: .3s;
}
.slider-slide .keen-slider__slide.active:hover img{
	transform: scale(1.025)
}

.slider-slide .keen-slider-wrapper {

	overflow:hidden;
}

.slider-slide .keen-slider__slide {
	display:flex;
	min-width: 75%!important;
	max-width: 75%!important;
}

.slider-slide .keen-slider__slide.active {
	pointer-events: all
}

.slider-slide .keen-slider-dots {
	width: 75%
}

.slider-slide .keen-slider-arrow.arrow-next {
	right: calc(25% + 24px)
}

.slider-product img {
	width: auto;
	height: 100%
}

.slider-product.slider-product-thumbnail {
	display: none;
	overflow: hidden;
	width: 100%;
	min-width: 76px;
	max-width: 76px;
	position: relative;
	border-radius: var(--border-radius-primary);
	height: 100%;
	max-height: 668px;
	margin-right: 1rem
}

.slider-product.slider-product-thumbnail .keen-slider {
	width: 76px;
	min-width: 76px;
	max-width: 76px;
	height: 100%;
	max-height: 668px
}

.slider-product.slider-product-thumbnail .keen-slider-wrapper {
	height: 100%;
	position: relative;
	visibility: hidden
}

.slider-product.slider-product-thumbnail .keen-slider__slide:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.03);
	pointer-events: none;
	z-index: 1
}

.slider-product.slider-product-thumbnail .keen-slider__slide {
	display: flex;
	cursor: pointer;
	border-radius: var(--border-radius-primary);
	border: 2px solid transparent;
	min-height: 100px!important;
	max-height: 100px!important
}

.slider-product.slider-product-thumbnail .keen-slider__slide img {
	height: 96px;
	min-height: 96px
}

.slider-product.slider-product-thumbnail .keen-slider__slide.active {
	border: 2px solid var(--color-control-bg-border-primary)
}

@media (min-width: 1024px) {
	.slider-product.slider-product-thumbnail {
		display:flex
	}
}

.slider-product.slider-product-preview {
	display: flex;
	overflow: hidden;
	width: 100%;
	position: relative;
	border-radius: var(--border-radius-primary);
	height: 100%;
	max-height: 668px;
}

.slider-product.slider-product-preview .keen-slider-wrapper {
	height: 100%;
	position: relative;
	visibility: hidden;
	width: 100%
}

.slider-product.slider-product-preview .keen-slider {
	max-height: 668px
}

.slider-product.slider-product-preview .keen-slider__slide {
	display: flex;
	cursor: pointer;
	border-radius: var(--border-radius-primary);
	justify-content: center;
	position: relative
}

.slider-product.slider-product-preview .keen-slider__slide:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.03);
	pointer-events: none;
	z-index: 1
}

.slider-product.slider-product-quick-view {
	display: flex;
	overflow: hidden;
	width: 100%;
	position: relative;
	border-radius: var(--border-radius-primary);
	height: 100%
}

.slider-product.slider-product-quick-view .keen-slider-wrapper {
	height: 100%;
	position: relative;
	visibility: hidden;
	width: 100%
}

.slider-product.slider-product-quick-view .keen-slider__slide {
	display: flex;
	cursor: pointer;
	border-radius: var(--border-radius-primary);
	justify-content: center;
	position: relative
}

.slider-product.slider-product-quick-view .keen-slider__slide:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.03);
	pointer-events: none;
	z-index: 1
}

.slider-product.slider-product-mini {
	position: relative
}

.slider-product.slider-product-mini .keen-slider-wrapper {
	display: flex;
	overflow: hidden;
	position: relative;
	border-radius: var(--border-radius-primary)
}

.slider-product.slider-product-mini img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: auto;
	width: 100%;
	user-select: none;
	height: 100%;
	object-fit: contain
}

.slider-product.slider-product-mini .keen-slider {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	box-sizing: content-box
}

.slider-product.slider-product-mini .keen-slider:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1;
	pointer-events: none;
	background-color: rgba(0,0,0,.03)
}

.slider-product.slider-product-mini .keen-slider__slide {
	display: flex;
	content: "";
	padding-top: 133.4525%;
	justify-content: center;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	pointer-events: none;
	min-width: 100%!important;
	max-width: 100%!important
}

.slider-product.slider-product-mini .keen-slider-dots {
	z-index: 1;
	overflow: hidden;
	padding: 0;
	bottom: 12px
}

.slider-product.slider-product-mini .keen-slider-dot:after {
	margin: 0;
	border-radius: 0;
	width: 4px;
	height: 4px;
	opacity: 1
}

.slider-product.slider-product-mini .keen-slider-dot.dot-active:after {
	background-color: #3466b1
}

.slider-product.slider-product-mini .keen-slider-dot:first-child:after {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px
}

.slider-product.slider-product-mini .keen-slider-dot:last-child:after {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px
}

.slider-product.slider-product-same {
	position: relative;
	display: flex;
	width: 100%
}

.slider-product.slider-product-same .keen-slider__slide {
	display: flex;
	min-width: 72px!important;
	max-width: 72px!important
}

.slider-product.slider-product-same .keen-slider-wrapper {
	width: 100%;
	min-width: 100%
}

.slider-product.slider-product-same .keen-slider-arrow.arrow-prev {
	left: -10px
}

.slider-product.slider-product-same .keen-slider-arrow.arrow-next {
	right: -10px
}

@media (min-width: 768px) {

	.slider-product.slider-product-same .keen-slider-arrow.arrow-prev {
		left: -24px
	}

	.slider-product.slider-product-same .keen-slider-arrow.arrow-next {
		right: -24px
	}
}

@media (max-width: 1023.98px) {

	.slider-slide .keen-slider__slide {
		min-width:100%!important;
		max-width: 100%!important
	}

	.slider-slide .keen-slider-dots {
		width: 100%
	}

	.slider-slide .keen-slider-arrow {
		display: none
	}

	.slider-product.slider-product-preview,.slider-product.slider-product-preview .keen-slider {
		max-height: 300px
	}
}

app-search {
	display: flex;
	flex-grow: 1;
	align-items: flex-start;
	z-index: 100;
	width: 100%;
	height: 40px;
	margin: 0;
	position: absolute
}

app-search .search-container {
	display: flex;
	flex-flow: wrap;
	width: 100%;
	padding: 0;
	border-radius: var(--border-radius-primary);
	z-index: 101;
	position: relative;
	background-color: #fff;
	align-items: center
}

app-search .search-input-wrap {
	flex-grow: 1;
	z-index: 102
}

app-search .search-input-wrap input {
	width: 100%;
	border: none;
	background: var(--color-bg-secondary);
	padding: 0 10px;
	border-radius: var(--border-radius-primary);
	height: 40px;
	font-size: 16px
}

app-search .search-append {
	display: flex;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	align-items: center;
	justify-content: center
}

app-search .search-append>* {
	background: #fff
}

app-search .search-back {
	display: none;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	margin: 0 0.5rem;
}

app-search .search-dropdown {
	background: #fff;
	width: 100%;
	z-index: 103;
	height: max-content;
	max-height: 500px;
	overflow: auto;
	margin: .5rem 0;
	top: 100%;
	position: absolute;
	border-radius: var(--border-radius-primary)
}

app-search .search-dropdown ul li {
	display: flex;
	gap: .5rem;
	margin-bottom: .25rem;
	border-radius: var(--border-radius-primary);
	padding: .25rem .5rem;
	min-height: 40px
}

app-search .search-dropdown ul li:last-child {
	margin-bottom: 0
}

app-search .search-dropdown ul li a {
	display: flex;
	flex-grow: 1;
	align-items: center;
	white-space: nowrap;
	overflow: hidden
}

app-search .search-dropdown ul li.search-hint {
	overflow: hidden
}

app-search .search-dropdown ul li.search-hint a {
	flex-grow: 0;
	background-color: var(--color-bg-secondary);
	padding: 0 .5rem;
	border-radius: var(--border-radius-primary);
	white-space: nowrap
}

app-search .search-message {
	justify-content: center;
	background-color: var(--color-bg-secondary);
	align-items: center
}

app-search .search-message a {
	text-align: center
}

app-search .search-dropdown ul li:hover:not(.search-message):not(.search-hint) {
	background-color: var(--color-bg-secondary)
}

app-search .search-dropdown ul li:not(.search-message)>div {
	display: flex;
	align-items: center;
	justify-content: center
}

app-search.search-active {
	position: fixed;
	top: 35px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	display: flex;
	height: 100%;
	background-color: #fff;
	box-shadow: var(--shadow-primary);
	padding-top: .5rem
}

.html-scroll app-search.search-active {

	top:0;
}

app-search.search-active .search-container {
	border-radius: 0;
	margin: 0 .25rem
}

app-search.search-active .search-back {
	display: flex
}

app-search.search-active .overlay {
	opacity: 0
}

app-search.search-active .search-input-wrap input {
	box-shadow: 0 0 0 2px var(--nm-color-brand) inset;
	background-color: #fff
}

@media (min-width: 768px) {

	.lk-back {

		display:flex!important;
	}

	body {
		margin-top:7rem
	}

	app-search,app-search .search-input-wrap input,app-search.search-active {
		height: 60px
	}

	app-search.search-active {
		padding: 0;
		position: static
	}

	app-search.search-active .overlay {
		opacity: 1
	}

	app-search.search-active .search-container {
		border-radius: 0;
		margin: 0;
		border-radius: var(--border-radius-primary)
	}

	app-search.search-active .search-back {
		display: none
	}
}

.header-nav {
	display: flex;
	margin-bottom: .5rem
}

.header-nav .container {
	display: flex;
	gap: .5rem;
	align-items: center
}

.header-nav .header-btn {
	position: relative;
	height: 40px;
	width: 40px;
	min-width: 40px;
	display: none;
	justify-content: center;
	align-items: center;
	background: var(--color-control-bg-ghost);
	border-radius: var(--border-radius-primary)
}

.header-nav .header-btn.active {
	background-color: var(--nm-color-brand);
	color: var(--color-typo-white)
}

.header-nav .header-btn .header-btn-text {
	position: absolute;
	font-size: 10px;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	text-align: center
}

.header-nav .header-btn .header-btn-text.prepend {
	top: 2px
}

.header-nav .header-btn .header-btn-text.append {
	bottom: 3px
}

.header-nav .header-btn .header-btn-m {
	margin-bottom: .5rem;
	white-space: nowrap
}

.header-nav .header-btn.header-btn-phone {
	width: 180px;
	min-width: 180px
}

.header-nav .header-btn.header-btn-phone .header-btn-m {
	font-size: 18px;
	line-height: 1.2;
	white-space: nowrap;
	margin: 0
}

.header-nav .header-btn.header-btn-logo {
	width: 180px;
	padding: 0 1rem
}

.header-nav .header-btn.header-btn-logo:not(.dev) svg {
	color: var(--nm-color-brand)
}

.header-nav .header-btn.header-btn-menu {
	background-color: #3466b1;
	color: #fff
}

.header-nav .header-btn.header-btn-search {
	display: flex;
	position: relative;
	flex-grow: 1;
	height: 40px
}

.header-nav .header-btn .header-btn-qty {
	position: absolute;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background-color: var(--color-base-secondary);
	padding: 2px 4px;
	border-radius: 6px;
	overflow: hidden;
	line-height: 1;
	z-index: 1;
	right: -4px;
	top: -4px;
	display: none;
	border: 0
}

@media (min-width: 768px) {
	.header-nav .header-btn {
		height:60px;
		width: 60px;
		min-width: 60px
	}

	.header-nav .header-btn.header-btn-search {
		height: 60px
	}
}

.footer-nav .footer-btn {
	user-select: none;
	color: var(--color-typo-light-ghost);
	height: auto;
	flex: 1;
	display: flex;
	justify-content: center;
	flex-flow: column;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	position: relative
}

.footer-nav .footer-btn .footer-btn-qty {
	display: none;
	right: 9px;
	top: 3px;
	font-size: 10px;
	position: absolute;
	font-weight: 700;
	color: #fff;
	background-color: var(--color-base-secondary);
	border: 2px solid #fff;
	padding: 2px 4px;
	border-radius: 6px;
	overflow: hidden;
	line-height: 1;
	z-index: 1
}

.footer-nav .footer-btn .footer-btn-text {
	user-select: none;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	color: var(--color-typo-light-ghost);
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.footer-nav .footer-btn.active,.footer-nav .footer-btn.active .footer-btn-text {
	color: var(--nm-color-brand)
}

.d-mobile-none {
	display: none!important
}

.d-mobile-flex {
	display: flex!important
}

@media (min-width: 768px) {
	.d-desktop-none {
		display:none!important
	}

	.d-desktop-flex {
		display: flex!important
	}
}

.modal.modal-show {
	opacity: 1;
	pointer-events: auto;
	visibility: visible
}

.modal-window {
	position: absolute;
	background-color: #fff;
	border-radius: 8px 8px 0 0;
	overflow: auto;
	z-index: 5;
	display: flex;
	flex-flow: column;
	margin: auto;
	padding: 0 0 2rem;
	max-width: 100%;
	width: 100%;
	max-height: 90%;
	bottom: 0
}

.modal-window form {
	overflow: auto;
	z-index: 5;
	display: flex;
	flex-flow: column
}

.modal-head {
	padding: 1rem;
	display: flex;
	align-items: center
}

.modal-head .modal-title {
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	flex-grow: 1
}

.modal-head .modal-close {
	display: flex;
	cursor: pointer;
	z-index: 1;
	background-color: #fff
}

.modal-body {
	padding: 1rem;
	overflow: auto
}

.modal-foot {
	display: flex;
	flex-flow: column;
	gap: .5rem;
	padding: 0 1rem 1rem
}

.modal-foot a {
	text-align: center
}

.modal-window p {
	margin: 0 0 1rem
}

@media (min-width: 1024px) {
	.modal-window {
		padding:0;
		max-width: 470px;
		width: 100%;
		max-height: 90%;
		bottom: auto;
		border-radius: var(--border-radius-primary)
	}
}

.modal-recipient-address {
	height: 100%;
	max-height: 98%
}

.modal-recipient-address .head {
	margin-bottom: 1rem
}

.modal-recipient-address .body {
	display: flex;
	height: 100%;
	column-gap: 24px
}

.modal-recipient-address .body .body-s {
	flex: 1 0 calc(20% - 12px)
}

.modal-recipient-address .body .body-e {
	flex: 1 0 calc(80% - 12px)
}

.modal-recipient-address #search {
	min-width: 320px
}

.modal-recipient-address #map {
	width: 100%;
	height: 100%
}

.modal-recipient-address .modal-body {
	height: 100%
}

.modal-recipient-address .modal-body .wrp {
	height: calc(100% - 3rem)
}

@media (min-width: 768px) {
	.modal-recipient-address {
		max-width:90%
	}
}

.modal-recipient-address-change a {
	display: flex
}

.modal-recipient-address-change>div>.head {
	display: flex;
	justify-content: center;
	margin-bottom: .5rem
}

.modal-recipient-address-change>div>.body>.list>.btn-outline {
	display: flex;
	width: 100%;
	padding: 0;
	border: 1px solid var(--color-control-bg-border-default);
	border-radius: var(--border-radius-primary);
	margin-bottom: .5rem
}

.modal-recipient-address-change>div>.body>.list>.btn-outline:hover {
	cursor: pointer
}

.modal-recipient-address-change>div>.body>.list>.btn-outline.checked {
	border-color: var(--color-control-bg-border-primary);
	box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset
}

.modal-recipient-address-change>div>.body>.list>.btn-outline.checked>.address {
	font-weight: 700
}

.modal-recipient-address-change>div>.body>.info {
	font-size: 16px;
	line-height: 19px
}

.modal-recipient-address-change>div>.body>.info>div {
	margin-bottom: 1rem
}

.modal-recipient-contact a {
	display: flex
}

.modal-recipient-contact>div>.head {
	display: flex;
	justify-content: center;
	margin-bottom: .5rem
}

.modal-recipient-contact-change a {
	display: flex
}

.modal-recipient-contact-change>div>.head {
	display: flex;
	justify-content: center;
	margin-bottom: .5rem
}

.modal-recipient-contact-change>div>.body>.list>.btn-outline {
	display: flex;
	width: 100%;
	padding: 0;
	border: 1px solid var(--color-control-bg-border-default);
	border-radius: var(--border-radius-primary);
	margin-bottom: .5rem
}

.modal-recipient-contact-change>div>.body>.list>.btn-outline:hover {
	cursor: pointer
}

.modal-recipient-contact-change>div>.body>.list>.btn-outline.checked {
	border-color: var(--color-control-bg-border-primary);
	box-shadow: 0 0 0 1px var(--color-control-bg-border-primary) inset
}

.modal-recipient-contact-change>div>.body>.list>.btn-outline.checked>.address {
	font-weight: 700
}

.modal-recipient-contact-change>div>.body>.info {
	font-size: 16px;
	line-height: 19px
}

.modal-recipient-contact-change>div>.body>.info>div {
	margin-bottom: 1rem
}

.modal-order-review .order-review-product-all-content {
	padding-top: 20px;
	border-top: 1px solid var(--color-bg-border)
}

.modal-order-review .order-review-product-all-button {
	display: flex;
	align-items: center;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	color: var(--nm-color-brand);
	font-size: 14px;
	font-weight: 500;
	margin-right: 16px;
	cursor: pointer
}

.modal-order-review .order-review-product-all-button svg {
	margin-right: 6px
}

.product-modal {
	max-width: calc(100% - 48px);
	width: 1176px;
	padding: 0
}

.product-modal .modal-head {
	position: absolute;
	right: 0;
	top: 0
}

.product-modal .modal-close {
	border-radius: 50%
}

.product-modal__photo-wrap .product-page-photo__main-preview-item {
	height: auto;
	border-radius: 0;
	position: relative;
	display: flex;
	justify-content: center;
	overflow: hidden
}

.product-modal__photo-wrap .product-page-photo__main-preview-item:before {
	content: "";
	display: block;
	padding-top: 100%
}

.product-modal__photo-wrap .product-page-photo__main-preview-item img {
	position: absolute;
	top: 0;
	left: auto;
	right: auto;
	width: auto;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.product-modal__information {
	padding: 32px 24px 104px;
	overflow: auto;
	height: 100%
}

.product-modal__information-wrap {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	overflow: hidden
}

.product-modal .product-information__table-size {
	display: none!important
}

.product-modal-photo {
	width: 50%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.product-modal-photo__main-preview {
	border-radius: 0!important;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	border-radius: var(--border-radius-primary)
}

.quantity-product__available {
	color: var(--color-typo-secondary);
	margin-bottom: 8px;
	margin-top: 8px
}

.product-modal-photo {
	position: relative;
	height: 784px;
	max-height: inherit
}

.product-modal__container {
	display: flex;
	background: #fff;
	max-height: 90vh;
	overflow: hidden
}

.button-review {
	display: flex!important;
	align-items: center;
	justify-content: center
}

app-count {
	display: block
}

app-product-ul {
	display: flex;
	flex-flow: wrap;
	position: relative;
	margin: 0;
	justify-content: space-between
}

@media (min-width: 768px) {
	app-product-ul {
		justify-content:normal;
		width: 100%
	}

	.header-slogan a {

		padding-right:2rem;
	}

}

.catalog-header {
	display: flex;
	align-items: center
}

.catalog-header .catalog-head {
	font-size: 24px;
	line-height: 1.2;
	margin-bottom: .5rem;
	flex-grow: 1;
	color: #000
}

.catalog-param {
	display: flex;
	margin-bottom: .5rem;
	gap: .5rem;
	position: sticky;
	top: 56px;
	z-index: 100;
	background: #fff;
	padding-bottom: .5rem
}

@media (min-width: 768px) {
	.catalog-param {
		top:76px
	}
}

app-product-nav {
	display: none;
	position: relative;
	align-items: center;
	flex-wrap: nowrap;
	height: 32px;
	padding: 0 12px;
	background: var(--color-control-bg-ghost);
	color: var(--color-typo-ghost);
	border: 0;
	border-radius: var(--border-radius-primary);
	white-space: nowrap;
	user-select: none
}

app-product-nav:hover {
	cursor: pointer
}

app-product-nav:hover>* {
	color: var(--color-control-primary-hover)
}

app-product-nav svg {
	pointer-events: none
}

app-product-nav>* {
	margin-right: .25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 32px
}

app-product-nav>span {
	max-width: 150px;
	overflow: hidden;
	justify-content: start;
	pointer-events: none
}

app-product-nav>:last-child {
	margin-right: 0
}

.product-card app-product-cart {
	margin-top: .5rem
}

.product-card app-product-cart input {
	width: 1rem
}

.product-card app-product-cart .button-size-m {
	font-size: 14px;
	line-height: 32px;
	height: 32px;
	padding: 0 12px
}

app-product-size-ul {
	display: flex;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	gap: .25rem
}

app-product-size-li {
	display: flex;
	width: 125px;
	cursor: pointer;
	border-radius: var(--border-radius-primary);
	border: 1px solid var(--color-bg-border);
	background-color: #fff;
	padding: 8px 12px;
	flex-flow: column;
	align-items: center
}

app-product-size-li div {
	font-size: 16px;
	line-height: 1;
	color: var(--color-typo-primary);
	margin-bottom: 6px;
	white-space: nowrap
}

app-product-size-li span {
	font-size: 12px;
	line-height: 1;
	color: var(--color-typo-secondary)
}

app-product-size-li.disabled {
	pointer-events: none;
	user-select: none
}

app-product-size-li.disabled div,app-product-size-li.disabled span {
	color: var(--color-control-typo-disable)
}

app-product-size-li.active {
	border-color: #fff;
	box-shadow: 0 0 0 2px var(--color-control-bg-border-primary) inset
}

app-product-case-ul {
	display: flex;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	gap: .5rem
}

app-product-case-li {
	display: flex;
	border-radius: var(--border-radius-primary);
	background-color: #fff;
	flex-flow: column;
	align-items: center;
	position: relative;
	width: 90px;
	height: 120px;
	box-sizing: border-box;
	user-select: none;
	overflow: hidden;
	cursor: pointer;
	justify-content: center
}

app-product-case-li:after {
	border-radius: var(--border-radius-primary);
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0,0,0,.03);
	pointer-events: none;
	z-index: 1
}

app-product-case-li.active:after {
	border-color: #fff;
	box-shadow: 0 0 0 2px var(--color-control-bg-border-primary) inset
}

app-product-case-li:hover .option-open-photo {
	opacity: 1;
	visibility: visible
}

app-product-case-li img {
	border-radius: .4rem;
	width: 72px;
	height: 96px;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
	pointer-events: none
}

app-product-cart {
	display: flex;
	align-items: center;
	position: relative
}

@media (max-width: 1023.98px) {
	app-product-cart,app-product-cart button[name=productButtonMain] {
		flex:1
	}
}

app-modal-product-size app-product-cart {
	display: none
}

app-product-tags {
	display: flex;
	gap: .25rem;
	margin-bottom: .5rem
}

app-product-tag {
	display: none;
	font-size: 13px;
	line-height: 18px;
	padding: 4px 8px;
	background-color: var(--color-bg-secondary);
	color: var(--color-typo-secondary);
	border-radius: 8px;
	font-weight: 700;
	align-items: center;
	position: relative;
	justify-content: center;
	white-space: nowrap;
	height: 25px
}

app-product-tag.old {
	background: #9b9b9b;
	color: #fff;
	line-height: normal
}

app-product-tag.old:after {
	position: absolute;
	content: "";
	width: calc(100% + 6px);
	left: -3px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 1px;
	background: var(--color-alert);
	display: block;
	opacity: .7;
	-webkit-transform: rotate(-27deg);
	-ms-transform: rotate(-27deg);
	transform: rotate(-27deg)
}

app-product-tag.user {
	background-color: #e51a3c;
	color: #fff
}

app-product-tag.company {
	background-color: var(--color-typo-primary);
	color: #fff
}

app-product-tag.not {
	background-color: #b0b0b0;
	color: #fff
}

.checkbox-item {
	position: relative;
	margin-bottom: 1rem
}

.checkbox-head {
	padding-bottom: .5rem;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	line-height: 1.5;
	position: sticky;
	top: -1rem;
	background-color: #fff;
	z-index: 2
}

.checkbox-body {

	display:flex;
	flex-flow:column;
}

.checkbox-body.checkbox-body-half {

	flex-flow:wrap;
}

.checkbox-body .checkbox {
	margin: 0 0 5px 0;
	cursor: pointer
}

.checkbox-body .checkbox.checkbox-half {

	width:33%;
}

.checkbox-body .checkbox > i {

	background-color: #f5f5dc;
	display: flex;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 8px;
	border:1px solid var(--color-control-bg-ghost);
}

body.lk-page {
	overflow: hidden
}

.lk-page .main {
	margin-top: 0
}

.lk-page .footer {
	margin-top: 2rem
}

.lk-page .footer__top {
	border-top: 1px solid #d0d0d0
}

.lk-container {
	width: 100%;
	padding-right: 24px;
	padding-left: 24px;
	margin-right: auto;
	margin-left: auto;
	max-width: var(--max-width-xxl);
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.lk-content {
	display: flex;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column
}

.lk-head {
	padding: 0;
	margin-bottom: 1rem;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	font-family: var(--title-font);
	font-style: normal;
	letter-spacing: normal;
	text-decoration: none;
	text-transform: none;
	word-spacing: normal;
	display: flex
}

.lk-head a {
	display: flex;
	align-items: center
}

.lk-back {

	display:none;
	margin-right:0.5rem;
}

.lk-product {
	margin-bottom: 2.5rem;
	border-radius: var(--border-radius-primary)
}

.lk-product .product-card {
	margin: 0!important
}

.lk-product .products__list {
	margin: 0;
	padding: 0
}

.lk-product .product-card__container,.lk-product .product-card__top {
	padding: .5rem
}

.lk-product .product-card__tags-bottom {
	bottom: 20px!important
}

.dashboard {
	width: 100%;
	margin-left: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap
}

.dashboard-card {
	flex-flow: column;
	padding: 1rem;
	background-color: #fff;
	border-radius: var(--border-radius-primary);
	display: flex;
	flex: 1;
	height: 170px;
	min-width: 32%;
	max-width: 460px;
	-webkit-box-shadow: var(--shadow-primary);
	box-shadow: var(--shadow-primary)
}

.dashboard-card-head {
	display: flex;
	font-weight: 700;
	align-items: center;
	margin-bottom: .5rem
}

.dashboard-card-head>div:first-child {
	flex-grow: 1
}

.dashboard-card-head a {
	display: flex
}

.dashboard-card-head i {
	margin-left: .25rem
}

.dashboard-card-body {
	flex-flow: column;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
	min-height: 110px
}

.dashboard-card-body>div {
	margin-bottom: .5rem
}

.dashboard-card-body>div:last-child {
	margin-bottom: 0
}

.db-progress-wrapper {
	display: flex;
	width: 100%
}

.db-progress {
	display: flex;
	height: 1rem;
	overflow: hidden;
	font-size: .75rem;
	background-color: #e9ecef;
	border-radius: .375rem;
	flex-grow: 1
}

.db-progress-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: #86aa63;
	transition: width .6s
}

.db-discount-wrapper {
	display: flex;
	width: 100%
}

.db-discount-wrapper>div:first-child,.db-discount-wrapper>div:last-child {
	font-size: 24px
}

.db-discount-wrapper>div:nth-child(2) {
	flex-grow: 1
}

.db-fs-large {
	font-size: 24px
}

.db-setting-danger {
	background-color: #e5534f;
	color: #fff
}

.db-setting-danger .button {
	background-color: #fff;
	color: #444
}

.db-setting-start {
	text-align: start;
	align-items: start
}

.db-profile-user {
	background-color: #f1f1f5;
	border-radius: 50%;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	display: flex;
	overflow: hidden
}

.db-image-wrapper {
	display: flex;
	gap: .5rem;
	overflow: hidden;
	width: 100%
}

.db-image-wrapper>a {
	display: flex;
	flex-flow: column
}

.db-image-wrapper>a>div {
	display: flex;
	border-radius: .5rem;
	overflow: hidden;
	border: 1px solid var(--color-bg-border)
}

.db-image-wrapper>a>span {
	font-size: 80%;
	color: #6c757d!important;
	white-space: nowrap
}

.bs-w-100 {
	width: 100%
}

.bs-justify-content-between {
	justify-content: space-between
}

.bs-badge {
	display:flex;
	font-size: 10px;
	font-weight: 500;
	padding: 0 4px;
	color: #fff;
	background-color: var(--color-typo-primary);
	border-radius: 6px;
	overflow: hidden;
	margin-right: .25rem;
	height: fit-content;
}

@media (max-width: 768px) {

	.lk-container {
		padding-left:16px;
		padding-right:16px;
		margin-bottom: 90px
	}

	.dashboard {
		gap: .5rem;
		flex-flow: column
	}

	.dashboard-card-head {
		margin-bottom: 1rem
	}

	.dashboard-card {
		height: auto!important;
		min-width: auto!important;
		max-width: none!important
	}
}
