/* Font */
@font-face {
	font-family: 'Inter';
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/Inter-Regular.woff2") format("woff2"),
		url("../fonts/Inter-Regular.woff") format("woff");
}
@font-face {
	font-family: 'Inter';
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/Inter-Medium.woff2") format("woff2"),
		url("../fonts/Inter-Medium.woff") format("woff");
}
@font-face {
	font-family: 'Inter';
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/Inter-SemiBold.woff2") format("woff2"),
		 url("../fonts/Inter-SemiBold.woff") format("woff");
}

/* Grid system */
.grid,
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
}
.grid--inline {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
.grid--items-top {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.grid--items-middle {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.grid--items-bottom {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.grid--items-baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.grid--items-left {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.grid--items-center,
.justify-content-lg-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.grid--items-right {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.grid--items-justify {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.grid--padding > .grid__col {
	padding-left: 10px;
	padding-right: 10px;
}
.grid--fluid-padding {
	margin-left: -10px;
	margin-right: -10px;
}
.grid--fluid-padding > .grid__col {
	padding-left: 10px;
	padding-right: 10px;
}
.grid--nowrap {
	flex-wrap: nowrap;
}
.grid--wrap {
	flex-wrap: wrap
}
.row__col {
	padding-left: 10px;
	padding-right: 10px;
}
.grid__col {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.grid__col--1 {
	-ms-flex-preferred-size: 8.33%;
	flex-basis: 8.33%;
	max-width: 8.33%;
}
.grid__col--2 {
	-ms-flex-preferred-size: 16.66%;
	flex-basis: 16.66%;
	max-width: 16.66%;
}
.grid__col--3 {
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	max-width: 25%;
}
.grid__col--4 {
	-ms-flex-preferred-size: 33.3%;
	flex-basis: 33.3%;
	max-width: 33.3%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.grid__col--5 {
	-ms-flex-preferred-size: 41.66%;
	flex-basis: 41.66%;
	max-width: 41.66%;
}
.grid__col--6 {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	max-width: 50%;
}
.grid__col--7 {
	-ms-flex-preferred-size: 58.33%;
	flex-basis: 58.33%;
	max-width: 58.33%;
}
.grid__col--8 {
	-ms-flex-preferred-size: 66.66%;
	flex-basis: 66.66%;
	max-width: 66.66%;
}
.grid__col--9 {
	-ms-flex-preferred-size: 75%;
	flex-basis: 75%;
	max-width: 75%;
}
.grid__col--10 {
	-ms-flex-preferred-size: 83.33%;
	flex-basis: 83.33%;
	max-width: 83.33%;
}
.grid__col--11 {
	-ms-flex-preferred-size: 91.66%;
	flex-basis: 91.66%;
	max-width: 91.66%;
}
.grid__col--12 {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}
.grid__col--autowidth {
	flex: 0 0 auto;
}
.grid__col--autofill {
	flex: 1 1 0;
}
.grid__col--mrgn-left-1 {
	margin-left: 8.33%;
}
.grid__col--mrgn-left-2 {
	margin-left: 16.66%;
}
.grid__col--mrgn-left-3 {
	margin-left: 25%;
}

/* Row */
.row__col--body {
	order: 1;
}
.row__col--menu {
	order: 2;
}

/* Inputs */
.input {
	display: block !important;
	position: relative;
}
.input__field,
.checkout-city .input__field {
	border: 1px solid;
	border-color: transparent;
	border-radius: 4px;
	color: #141414;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	height: 48px;
	outline: none;
	padding: 12px 16px;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	width: 100%;
}
.input__field::placeholder,
.checkout-city .input__field::placeholder {
	color: #8E8E93;
}
.input__field[disabled]{
	background-color: #F5F7F9;
	border: none;
	color: #8E8E93;
	cursor: default;
	opacity: 1;
}
.input__field--select,
select#shipping_address_zone_id {
	background-image: url('../images/input__field-triangle.svg');
	background-position: calc(100% - 16px) 50%;
	background-repeat: no-repeat;
	background-size: 8px 8px;
}
.input__field--select[disabled] {
	background-image: url('../images/input__field-grey-triangle.svg');
}
.input__field:focus,
.input__field--select:focus {
	outline: none;
}
.checkout-city select.form-control {
	border: 1px solid;
	border-color: #E5E5EA;
	border-radius: 4px;
	color: #141414;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	height: 48px;
	outline: none;
	padding: 12px 16px;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	width: 100%;
	background-image: url('../images/input__field-triangle.svg');
	background-position: calc(100% - 16px) 50%;
	background-repeat: no-repeat;
	background-size: 8px 8px;
}
.input__field--textarea {
	height: 120px;
	resize: none;
}
.input--error .input__field {
	border-color: #FF3B30;
	color: #FF3B30;
}
.input__error {
	color: #FF3B30;
	display: none;
	font-size: 12px;
	line-height: 16px;
	margin-top: 8px;
}
.input--error .input__caption {
	display: none;
}
.input--error .input__error {
	display: block;
}
.input__field--border-grey,
.checkout-city .input__field--border-grey {
	border-color: #E5E5EA;
}
.input__field::-webkit-outer-spin-button,
.input__field::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.input__field[type=number] {
	-moz-appearance: textfield;
}
.input__label {
	color: #141414;
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 4px;
}
.input__label-link {
	color: #007AFF;
}
.input__label-link:hover {
	color: #006BE0;
	text-decoration: underline;
}
.input__caption {
	color: #8E8E93;
	display: block;
	font-size: 12px;
	line-height: 16px;
	margin-top: 8px;
}
.input__helper {
	background-color: #FFF;
	border: 1px solid #E5E5EA;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 8px 12px rgba(20, 20, 20, .12);
	display: none;
	left: 0;
	max-height: 338px;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: calc(100% - 4px);
	z-index: 2;
}
.input__helper::-webkit-scrollbar {
	width: 4px;
}
.input__helper::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 2px;
}
.input__helper::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 2px;
}
.input__helper:hover::-webkit-scrollbar-track {
	background-color: #E5E5EA;
}
.input__helper:hover::-webkit-scrollbar-thumb {
	background-color: #C7C7CC;
}
.input__helper:hover::-webkit-scrollbar-thumb:active {
	background-color: #8E8E93;
}
.input__helper-item {
	color: #141414;
	cursor: pointer;
	display: block;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 12px;
}
.input__helper-item:hover {
	background-color: #EEF2F7;
}
.input--show-helper .input__helper {
	display: block;
}
input[type='text'],
input[type='password'],
textarea {
	background: none repeat scroll 0 0 #FFF;
	border-color: #D8D8D8;
	border-style: solid;
	border-width: 1px;
	border-radius: 4px;
	height: 48px;
	font-size: 16px;
	line-height: 24px;
	padding: 12px 16px;
}
input[type='submit'] {
	box-shadow: none;
}

/* Checkbox */
.checkbox {
	cursor: pointer;
	display: block;
	padding: 0;
}
.checkbox__input {
	display: none !important;
}
.checkbox__fake {
	background-color: #FFF;
	border: 2px solid #D1D1D6;
	border-radius: 50%;
	display: block;
	height: 24px;
	margin-right: 12px;
	position: relative;
	width: 24px;
}
.checkbox__fake::after {
	background-color: #007AFF;
	border-radius: 50%;
	content: '';
	display: none;
	height: 16px;
	left: 2px;
	position: absolute;
	top: 2px;
	width: 16px;
}
.checkbox__input:checked + .checkbox__fake {
	border-color: #007AFF;
}
.checkbox__input:checked + .checkbox__fake::after {
	display: block;
}
.checkbox__label {
	color: #141414;
	display: block;
	font-size: 16px;
	line-height: 24px;
}

/* Buttons */
a.button, input.button {
	background-color: #00ad70;
	border: none;
	border-radius: 4px;
	color: #FFFFFF!important;
	cursor: pointer;
	display: inline-block;
	line-height: 28px;
	padding: 10px 20px;
	text-transform: uppercase;
}
a.button:hover, input.button:hover, .ei-title h4 a.button:hover {
	background-color: #008657;
	color: #FFFFFF!important;
	text-decoration: none;
}

/* Other styles */
.icon {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background: inherit;
	fill: inherit;
	text-align: center;
}

/* Midsection */
#midsection {
	min-height: calc(100vh - 565px);
}

/* Login */
#lrc + #content-home, #lrc + #content {
	padding-left: 10px;
	width: 75%;
}
.login-content {
	margin-bottom: 20px;
	overflow: auto;
	padding-left: 10px;
	width: 100%;
}
.hidden-phone {
	display: block;
}
.zoom-b {
	display: none;
}
#column-right {
	float: right;
	width: 216px!important;
	margin-left: 20px;
	margin-bottom: 25px;
	position: relative;
	z-index: 10;
}
.box {
	background-color: #FFF;
	box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
	margin-top: 15px;
}
.box .box-heading {
	background-color: #007AFF!important;
	background-image: none;
	border-radius: 0;
	color: #FFF:
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
	padding: 0 15px;
}
.box .box-heading h2 {
	color: #FFF;
	font-size: 16px;
	line-height: 40px;
	margin: 0;
}
.box .box-content {
	padding: 0 0 10px;
}
.box-content-account {
	padding-top:10px;
}
.box .box-content .box-content-information ul,
.box .box-content .box-content-account ul {
	list-style: none;
	margin: 0;
	padding: 0 15px;
}
.box .box-content .box-content-information ul li,
.box .box-content .box-content-account ul li {
	line-height: 30px;
}
.login-content .left,
.checkout-content .left,
.contact-info .left,
.contact-info .right,
.sitemap-info .left,
.sitemap-info .right {
	float: left;
	width: 48%;
}
.login-content .right,
.checkout-content .right {
	float: right;
	width: 48%;
}

/* Header */
.header {
	background-color: #FFF;
	position: relative;
}
.header-market {
	display: none;
}
.header-topper {
	padding: 0;
}
.header-topper__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.header-location {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding-right: 8px;
}
.header-location::after {
	background-color: #8E8E93;
	content: '';
	height: 16px;
	position: absolute;
	right: 0;
	width: 1px;
}
.header-location__icon,
.header__location-location {
	flex: 0 0 auto;
}
.header-location__icon-svg {
	height: 16px;
	fill: #C7C7CC;
	width: 16px;
}
.header-location__label {
	font-size: 12px;
	line-height: 16px;
	margin-left: 4px;
}
.header-location:hover .header-location__label {
	color: #007AFF;
}
.header-location:hover .header-location__icon-svg {
	fill: #007AFF;
}
.header-rating {
	padding-left: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-rating:hover {
	text-decoration: none;
}
.header-rating__label,
.header-rating__stars {
	flex: 0 0 auto;
}
.header-rating__label {
	color: #8E8E93;
	font-size: 12px;
	line-height: 16px;
	margin-right: 4px;
	white-space: nowrap;
}
.header-rating__stars-image {
	display: block;
	height: 12px;
	width: auto;
}
.header-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-right: 6px;
}
.header-menu__link {
	color: #8E8E93;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	padding: 0 6px;
	text-align: center;
}
.header-menu__link:hover {
	color: #007AFF;
	text-decoration: none;
}
.header-login {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding-left: 6px;
}
.header-login::before {
	background-color: #8E8E93;
	content: '';
	height: 16px;
	left: 0;
	position: absolute;
	width: 1px;
}
.header-login__link {
	color: #101010;
	cursor: pointer;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	padding: 10px 6px;
	position: relative;
}
.header-login__link:hover {
	color: #007AFF;
	text-decoration: none;
}
.header-login__link:last-child {
	padding-right: 0;
}
.header-login__link-label {
	display: block;
}
.header-profile {
	background-color: #FFF;
	border-radius: 4px;
	box-shadow: 0 0 16px rgba(20, 20, 20, .1);
	display: none;
	padding: 8px 0;
	position: absolute;
	right: 0;
	top: 40px;
	width: 220px;
	z-index: 4;
}
.header-login__triangle {
	border-style: solid;
	border-width: 0 8px 8px 8px;
	border-color: transparent transparent #ffffff transparent;
	display: none;
	height: 0;
	left: 50%;
	position: absolute;
	top: 32px;
	transform: translateX(-50%);
	width: 0;
	z-index: 4;
}
.header-login__link:hover .header-login__triangle {
	display: block;
}
.header-profile__link {
	color: #141414;
	display: block;
	font-size: 14px;
	line-height: 20px;
	padding: 8px 20px;
}
.header-login__link:hover .header-profile {
	display: block;
}
.header-profile__link:hover {
	background-color: #EBF4FE;
}
.header-body {
	background-color: #FFF;
	box-shadow: 0 -1px 0 #F2F2F2;
	padding: 24px 0;
	position: relative;
}
.header-body__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.header-logo,
.header-logo__image {
	display: block;
}
.header-logo__image {
	height: 48px;
	width: auto;
}
.header-catalogbtn {
	background-color: #007AFF;
	border-radius: 4px;
	cursor: pointer;
	display: inline-block;
	padding: 12px;
}
.header-catalogbtn:hover {
	background-color: #0070EB;
}
.header-catalogbtn--is-active {
	background-color: #0070EB;
}
.header-catalogbtn--is-active .header-catalogbtn__icon--default {
	display: none;
}
.header-catalogbtn--is-active .header-catalogbtn__icon--is-open {
	display: block;
}
.header-catalogbtn__icon {
	display: block;
	fill: #FFF;
	height: 24px;
	margin-right: 8px;
	width: 24px;
}
.header-catalogbtn__icon--is-open {
	display: none;
}
.header-catalogbtn__label {
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.header-catalogbtn--is-open,
.header-catalogbtn--is-open:hover {
	background-color: #0070EB;
}
.header-catalogbtn--is-open .header-catalogbtn__icon--default {
	display: none;
}
.header-catalogbtn--is-open .header-catalogbtn__icon--is-open {
	display: block;
}
.header-search {
	display: block!important;
	position: relative;
}
.header-search__input {
	background-color: #F5F7F9!important;
	border: none !important;
	border-radius: 4px;
	color: #101010;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 14px;
	height: 48px !important;
	line-height: 20px;
	outline: none;
	padding: 16px 48px 16px 16px!important;
	width: 100%;
	box-sizing: border-box;
}
.header-search__input::placeholder {
	color: #8E8E93;
}
.header-search__button {
	cursor: pointer;
	display: block;
	height: 48px;
	padding: 12px;
	position: absolute;
	right: 0;
	top: 0;
	width: 48px;	
	box-sizing: border-box;
}
.header-search__button-svg {
	height: 24px;
	fill: #007AFF;
	width: 24px;
}
.header-search__button:hover .header-search__button-svg {
	fill: #0070EB;
}
.header-phone__number {
	color: #101010;
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 2px;
	margin-top: 2px;
	margin-left: 6px;
	transition: all 0.3s ease;
}





.header-phone__worktime {
	display: block;
	font-size: 15px;
	line-height: 12px;
}
.header-phone__callback {
	display: block;
	font-size: 0;
	line-height: 0;
}
.header-phone__callback-label {
	border-bottom: 1px solid rgba(0, 122, 255, .4);
	color: #007AFF;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	line-height: 19px;
}
.header-phone__callback-label:hover {
	border-bottom-color: rgba(0, 122, 255, .8);
	color: #0070EB;
}
.header-cart {
	cursor: pointer;
	display: block;
	position: relative;
}
.header-cart__button {
	background-color: #007AFF;
	border-radius: 50%;
	display: block;
	fill: #FFF;
	height: 48px;
	padding: 12px;
	width: 48px;
	box-sizing: border-box;
	transition: background-color 0.3s ease;
}
.header-cart__label {
	background-color: #fd8948;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #FFF;
	color: #FFF;
	display: block;
	font-size: 12px;
	font-weight: 600;
	height: 24px;
	line-height: 24px;
	position: absolute;
	right: -4px;
	text-align: center;
	top: -4px;
	width: 24px;
	z-index: 2;
}
.header-cart:hover .header-cart__button {
	background-color: #0063D1;
	fill: #FFF;
}
.header-body__col--menubutton {
	display: none;
}
.header-cartbox {
	background-color: #FFF;
	border-radius: 4px;
	box-shadow: 0 0 16px rgba(20, 20, 20, .12);
	cursor: default;
	display: none;
	position: absolute;
	right: 0;
	top: 48px;
	width: 420px;
	z-index: 102;
}
.header-cart:hover .header-cartbox {
	display: block;
}
.header-cartbox__row {
	display: block;
	padding: 16px 56px 16px 16px;
	position: relative;
}
.header-cartbox__row::after {
	background-color: #F2F2F2;
	bottom: 0;
	content: '';
	height: 1px;
	left: 16px;
	position: absolute;
	right: 16px;
}
.header-cartbox__image {
	display: block;
	height: 48px;
	width: 48px;
}
.header-cartbox__name {
	color: #141414;
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin-left: 8px;
}
.header-cartbox__name:hover {
	color: #8E8E93;
}
.header-cartbox__quantity {
	display: block;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	width: 40px;
}
.header-cartbox__price {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}
.header-cartbox__remove {
	cursor: pointer;
	display: block;
	height: 32px;
	fill: #8E8E93;
	position: absolute;
	right: 16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 32px;
}
.header-cartbox__remove:hover {
	fill: #141414;
}
.header-cartbox__bottom {
	display: block;
	padding: 20px 16px;
	position: relative;
}
.header-cartbox__bottom::before {
	background-color: #F2F2F2;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: -1px;
}
.header-cartbox__captionprice {
	color: #616166;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 4px;
}
.header-cartbox__valueprice {
	color: #141414;
	display: block;
	font-size: 24px;
	font-weight: 600;
	line-height: 24px;
}
.header-cartbox__button {
	background-color: #16C67A;
	border-radius: 4px;
	color: #FFF;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 12px 20px;
	text-align: center;
	text-transform: uppercase;
}
.header-cartbox__button:hover {
	background-color: #009E55;
	text-decoration: none;
}
.header-searchbox {
	background-color: #FFF;
	box-shadow: 0 -1px 0 #F2f2f2, 0 8px 12px rgba(16, 16, 16, .08);
	display: none;
	left: 0;
	position: absolute;
	right: 0;
	top: 136px;
	z-index: 10000000;
}
.header-searchbox--is-active {
	display: block;
}
.header-searchbox__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	padding: 0 10px;
	width: 100%;
}
.header-searchbox__section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 20px 0;
}
.header-searchbox__col {
	flex: 0 0 auto;
	padding: 0 10px;
}
.header-searchbox__col--caption {
	-ms-flex-preferred-size: 378px;
	flex-basis: 378px;
	max-width: 378px;
}
.header-searchbox__col--results {
	flex: 1 1 0;
}
.header-searchbox__section-caption {
	color: #8E8E93;
	font-size: 14px;
	line-height: 24px;
	text-align: right;
}
.header-searchbox__section-result {
	color: #101010;
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin-top: 12px;
}
.header-searchbox__section-result:first-child {
	margin-top: 0;
}
.header-searchbox__section-result:hover {
	color: #007AFF;
	text-decoration: underline;
}
.header-searchbox__section-link {
	color: #007AFF;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin: 4px 0;
}
.header-searchbox__section-link:hover {
	color: #0070EB;
	text-decoration: underline;
}
.header-catalog {
	background-color: #FFF;
	box-shadow: 0 -1px 0 #F2f2f2, 0 8px 12px rgba(16, 16, 16, .08);
	display: none;
	left: 0;
	padding-bottom: 24px;
	position: absolute;
	right: 0;
	top: 136px;
	z-index: 101;
	max-height: calc(100vh - 136px);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #D1D5DB transparent;
	overflow-x: hidden;
	scrollbar-gutter: stable;
}
.header-catalog--is-active {
	display: block;
}
.header-catalog__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	padding: 0 10px;
	width: 100%;
}
.header-catalog__body {
	columns: 6 auto;
	padding-bottom: 16px;
	padding-left: 30px;
}
.header-catalog__body--hidden {
	display: none;
}
/* body-wrap container */
.header-catalog__body-wrap {
	position: relative;
}

/* Popular brands grid in header catalog */
.header-catalog__popular {
	padding: 20px 0 8px;
}
.header-catalog__popular-title {
	font-size: 15px;
	font-weight: 500;
	color: #6B7280;
	margin-bottom: 14px;
}
.header-catalog__popular-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.header-catalog__popular-item {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #141414;
	text-decoration: none;
	transition: all 0.15s;
}
.header-catalog__popular-item:hover {
	background-color: #007AFF;
	border-color: #007AFF;
	color: #FFF;
}
.header-catalog__divider {
	padding: 12px 0;
	border-top: 1px solid #E5E7EB;
	text-align: center;
}
.header-catalog__toggle {
	font-size: 15px;
	color: #007AFF;
	cursor: pointer;
	font-weight: 600;
	display: inline-block;
	padding: 8px 20px;
	border: 1px solid #007AFF;
	border-radius: 8px;
	transition: all 0.15s;
}
.header-catalog__toggle:hover {
	background: #007AFF;
	color: #FFF;
}

.catalog-item {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin-bottom: 20px;
}
.catalog-item__link {
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-top: 8px;
}
.catalog-item__link-body {
	color: #141414;
	display: inline;
	font-size: 14px;
	line-height: 20px;
}
.catalog-item__link-body.bold {
	font-weight: 600;
}
.catalog-item__link-body--primary {
	font-weight: 600;
}
.catalog-item__link-body:hover {
	color: #007AFF;
	text-decoration: underline;
}
.catalog-item__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: #007AFF;
}
.header-mobile {
	display: none;
}
.models {
	padding: 0;
}
.models-content__headline {
	font-size: 32px;
	font-weight: 600;
	line-height: 36px;
	margin: 0 0 20px;
	padding: 0;
}
.models-content__text {
	color: rgba(22, 22, 22, .8);
	font-size: 16px;
	line-height: 24px;
}
.models-tv {
	position: relative;
	text-align: center;
}
.models-tv__image {
	display: block;
	height: auto;
	margin: 0;
	padding: 0;
	width: 100%;
}
.models-tv__button {
	cursor: pointer;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 12px;
}
.models-tv__button-label,
.models-tv__button-icon {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.models-tv__button-icon {
	fill: #2196F3;
	height: 12px;
	-ms-flex-preferred-size: 12px;
	flex-basis: 12px;
	max-width: 12px;
}
.models-tv__button-label {
	color: #2196F3;
	font-size: 12px;
	line-height: 16px;
	margin-right: 4px;
	flex: 1 1 0;
}
.models-tv__button:hover .models-tv__button-label {
	color: #006BD8;
}
.models-tv__button:hover .models-tv__button-icon {
	fill: #006BD8;
}
.models-tv__info {
	background-color: #FFF;
	border-radius: 4px;
	box-shadow: 0 2px 10px 0 rgba(0, 25, 52, .16);
	display: none;
	left: 0;
	padding: 8px;
	position: absolute;
	right: 0;
	top: calc(100% + 20px);
	z-index: 3;
}
.models-tv__info--active {
	display: block;
}
.models-tv__info-body {
	height: 100%;
	position: relative;
	width: 100%;
}
.models-tv__info-title {
	display: none;
}
.models-tv__info-body:before {
	background-color: #FFF;
	box-shadow: -0.3rem -0.3rem 1rem -0.5rem rgba(0,0,0,.6);
	content: '';
	height: 20px;
	position: absolute;
	left: 50%;
	top: -12px;
	width: 20px;
	-webkit-transform: rotate(45deg) translateX(-50%);
	transform: rotate(45deg) translateX(-50%);
}
.models-tv__info-ul,
.n-product-spec-list {
	margin: 0;
	padding: 0;
	text-align: left;
}
.models-tv__info-li,
.n-product-spec-list__item {
	font-size: 12px;
	line-height: 16px;
	list-style-type: none;
	margin: 8px 0;
	padding-left: 12px;
	position: relative;
}
.models-tv__info-li:before,
.n-product-spec-list__item:before {
	color: #999999;
	content: '\2022';
	font-size: 12px;
	left: 0;
	line-height: 16px;
	position: absolute;
}
.models-table {
	margin-top: 40px;
}
.models-product {
	display: block;
	padding: 24px 0;
	position: relative;
}
.models-product:hover {
	text-decoration: none;
}
.models-product:before,
.models-product:after {
	background-color: #E0E0E0;
	content: '';
	height: 1px;
	position: absolute;
	width: 100%;
}
.models-product:before {
	top: 0;
}
.models-product:after {
	bottom: -1px;
}
.models-product__image {
	display: block;
	height: 190px;
	width: 190px;
}
.model-product__status {
	background-color: #8E8E93;
	border-radius: 2px;
	color: #FFF;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	padding: 0 4px;
	text-align: center;
}
.models-product__sale {
	background-color: #FFA726;
	border-radius: 2px;
	color: #FFF;
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 4px;
	margin-right: 4px;
	padding: 0 4px;
	text-transform: uppercase;
}
.models-product__title {
	color: #161616;
	display: block;
	font-size: 20px;
	line-height: 32px;
}
.models-product__rating {
	display: block;
	margin-top: 4px;
}
.models-product__rating-label {
	color: #161616;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-left: 16px;
}
.models-product__caption {
	color: #999;
	display: block;
	font-size: 12px;
	line-height: 16px;
	margin-top: 16px;
}
.models-product__col--info {
	flex: 1 1 0;
}
.models-product__col--price {
	-ms-flex-preferred-size: 168px;
	flex-basis: 168px;
	max-width: 168px;
}
.models-product__oldprice {
	color: #999;
	display: block;
	font-size: 16px;
	line-height: 24px;
	text-decoration: line-through;
}
.models-product__price {
	color: #161616;
	display: block;
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 12px;
	width: 160px;
	white-space: nowrap;
}
.models-product__price--discount {
	color: #F73D34;
}
.models-product__add .add_card {
	display: block;
	float: none;
	width: auto
}
.models-product__add .add_cart input[type="button"] {
	background-color: #2196F3;
	border: none;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 8px 0;
	position: relative;
	text-align: center;
	width: 140px;
	z-index: 2;
}
.models-product__add .add_cart input[type="button"]:hover {
	background-color: #0C81DF;
}

/* Delivery */
.delivery {
	padding: 8px 0 64px;
}
.delivery__wrapper {
	margin: 0 auto;
	width: 1100px;
}
.delivery-city__headline {
	font-size: 30px;
	font-weight: 700;
	line-height: 38px;
	margin-bottom: 24px;
	padding: 0 !important;
}
/* Компактная плашка выбора города */
.delivery-geo {
	align-items: center;
	background: #FFFFFF;
	border: 1px solid #E7EAEE;
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
	cursor: pointer;
	display: inline-flex;
	gap: 14px;
	max-width: 100%;
	padding: 14px 18px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.delivery-geo:hover {
	border-color: #007AFF;
	box-shadow: 0 4px 14px rgba(0, 122, 255, .10);
}
.delivery-geo__icon {
	align-items: center;
	background: #EAF2FF;
	border-radius: 50%;
	color: #007AFF;
	display: flex;
	flex: 0 0 auto;
	height: 44px;
	justify-content: center;
	width: 44px;
}
.delivery-geo__icon svg {
	display: block;
	height: 24px;
	width: 24px;
}
.delivery-geo__label {
	color: #8A94A6;
	font-size: 13px;
	line-height: 18px;
}
.delivery-geo__city {
	color: #161616;
	font-size: 20px;
	font-weight: 600;
	line-height: 26px;
}
.delivery-geo__action {
	color: #007AFF;
	font-size: 15px;
	font-weight: 600;
	margin-left: auto;
	padding-left: 12px;
	white-space: nowrap;
}
.delivery-city__caption {
	color: #98A2B3;
	font-size: 14px;
	line-height: 20px;
	margin: 14px 0 0;
	max-width: 580px;
}
.delivery-methods {
	margin-top: 48px;
}
.delivery-methods__headline {
	font-size: 26px;
	font-weight: 700;
	line-height: 34px;
}
.delivery-methods__section {
	margin-top: 36px;
}
.delivery-methods__section-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
}
.delivery-methods__section-logo {
    display: block;
    height: auto;
    margin-right: 14px;
    width: 88px;
}

/* Специфичное правило для иконки Яндекса */
.delivery-methods__section-logo[src*="ya-icon"] {
    width: 46px;
}
.delivery-methods__section-caption {
	color: #667085;
	font-size: 15px;
	line-height: 22px;
	margin: 12px 0 20px;
	max-width: 760px;
}
.delivery-method {
	background-color: #FFFFFF;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #E7EAEE;
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
	height: 100%;
	padding: 20px 22px;
	transition: box-shadow .15s ease;
}
.delivery-method:hover {
	box-shadow: 0 4px 16px rgba(16, 24, 40, .08);
}
.delivery-method__title {
	color: #161616;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}
.delivery-method__time {
	background: #F1F3F5;
	border-radius: 999px;
	color: #475569;
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	line-height: 18px;
	margin: 12px 0 16px;
	padding: 3px 12px;
}
.delivery-method__price {
	color: #0F172A;
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
}
.delivery-methods__section-map {
	margin-top: 24px;
}
.delivery-map__title {
	color: #161616;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 12px;
}
.delivery-map__body {
	border: 1px solid #E7EAEE;
	border-radius: 16px;
	overflow: hidden;
}
.delivery-payments {
	margin-top: 64px;
}
.delivery-payments__headline {
	font-size: 26px;
	font-weight: 700;
	line-height: 34px;
	margin-bottom: 28px;
}
.delivery-payment {
	background: #FFFFFF;
	border: 1px solid #E7EAEE;
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
	box-sizing: border-box;
	height: 100%;
	padding: 24px;
	transition: box-shadow .15s ease;
}
.delivery-payment:hover {
	box-shadow: 0 4px 16px rgba(16, 24, 40, .08);
}
.delivery-payment__logo {
	display: -webkit-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	margin-left: 20px;
}
.delivery-payment__logo-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-ms-flex-preferred-size: 56px;
	flex-basis: 56px;
	max-width: 56px;
	height: 56px;
	margin-left: -20px;
}
.delivery-payment__logo-svg {
	display: block;
	height: 56px;
	width: 56px;
}
.delivery-payment__title {
	color: #161616;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	margin: 20px 0 8px;
}
.delivery-payment__caption {
	color: #667085;
	font-size: 15px;
	line-height: 22px;
}
.delivery-info__caption {
	color: #8E8E93;
	display: block;
	font-size: 12px;
	line-height: 16px;
	margin-top: 8px;
}
.delivery-info--personal {
	margin-top: 20px;
}
#simplecheckout_shipping_address .delivery-info {
	margin: 0 -10px;
}
.delivery-info .form-group label.control-label {
	color: #141414;
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 0;
	margin-bottom: 4px;
	text-align: left;
	width: 100%;
}
.delivery-info .form-group.row-shipping_address_city label.control-label a {
	display: inline-block;
	margin-left: 12px;
}
.delivery-info .form-group .form-control {
	border: 1px solid;
	border-color: #E5E5EA;
	border-radius: 4px;
	color: #141414;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	height: 48px;
	outline: none;
	padding: 12px 16px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
}
.delivery-info .form-group .form-control#shipping_address_city {
	background-color: #F5F7F9;
	color: #8E8E93;
}
.delivery-info fieldset.form-horizontal {
	padding: 0;
}
.delivery-info .form-group.has-error .form-control {
	border-color: #EB5757;
}
.delivery-info .form-group.row-customer_lastname,
.delivery-info .form-group.row-customer_firstname,
.delivery-info .form-group.row-customer_email,
.delivery-info .form-group.row-customer_telephone,
.delivery-info .form-group.row-shipping_address_city,
.delivery-info .form-group.row-shipping_address_zone_id,
.delivery-info .form-group.row-shipping_address_address_1,
.delivery-info .form-group.row-shipping_address_postcode {
	padding: 0 10px;
	width: 50%;
}
.delivery-info .form-group.row-customer_lastname,
.delivery-info .form-group.row-customer_firstname,
.delivery-info .form-group.row-shipping_address_address_1,
.delivery-info .form-group.row-shipping_address_postcode {
	margin-top: 20px;
}
.delivery-info .form-group.row-customer_firstname .simplecheckout-tooltip {
	color: #8E8E93;
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	margin-top: 8px;
}
.simplecheckout-error-text {
	color: #EB5757;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	margin-top: 8px;
}
.delivery-info .form-group.row-shipping_address_zone_id select#shipping_address_zone_id {
	background-color: #F5F7F9;
	color: #8E8E93;
	cursor: not-allowed;
	pointer-events: none;
}
.delivery-info .form-group.row-shipping_address_zone_id label.control-label {
	cursor: not-allowed;
}

/* Article */
.article {
	padding: 32px 0;
}
.article__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 95%;
}
.article-content__headline {
	display: block;
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	padding: 0 !important;
	margin-bottom: 24px;
	margin-top: 40px;
}
.article-content {
	padding: 32px 0;
	width: 83.33%;
}
.article-content__paragraph {
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin-top: 20px;
}
.article-content__section-img {
	box-shadow: 0 32px 48px 0 rgba(17, 17, 22, .16);
	display: block;
	height: auto;
	margin: 20px 0 64px;
	padding: 0;
	width: 100%;
}

/* Breadcrumb (legacy — styled to match .breadcrumbs v2) */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 24px 10px 0;
	color: transparent;
}
.breadcrumb a {
	color: #808D9A;
	font-size: 12px;
	line-height: 16px;
	text-decoration: none;
	margin-bottom: 4px;
}
.breadcrumb a:hover {
	color: #141414;
}
.breadcrumb a::after {
	color: #808D9A;
	content: '/';
	font-size: 12px;
	line-height: 16px;
	opacity: .6;
	padding: 0 8px;
}
.breadcrumb a:last-of-type {
	color: #808D9A;
	cursor: default;
	pointer-events: none;
}
.breadcrumb a:last-of-type::after {
	content: none;
}
.breadcrumb-pp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	color: #999;
	font-size: 14px;
	float: none;
	line-height: 20px;
	margin: 0 -4px;
	max-width: 100%;
	padding: 0 !important;
	width: 100%;
}
.breadcrumb-pp a {
	color: #0096D6 !important;
	padding: 0 4px 4px 4px;
}
.breadcrumb-pp a:hover {
	text-decoration: none;
}

/* Breadcrumbs v2 */
.breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	line-height: 0;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	padding-top: 24px;
}
.breadcrumbs__item {
	margin-bottom: 4px;
}
.breadcrumbs__item-label {
	color: #808D9A;
	font-size: 12px;
	line-height: 16px;
	position: relative;
}
.breadcrumbs__item:hover .breadcrumbs__item-label {
	color: #141414;
}
.breadcrumbs__item::after {
	color: #808D9A;
	content: '/';
	font-size: 12px;
	line-height: 16px;
	opacity: .6;
	padding: 0 8px;
	position: relative;
	text-decoration: none;
}
.breadcrumbs__item:hover::after {
	text-decoration: none;
}
.breadcrumbs__item:last-child::after {
	content: none;
}
.breadcrumbs__item--inactive .breadcrumbs__item-label {
	cursor: default;
	text-decoration: none;
}
.breadcrumbs__item--inactive:hover .breadcrumbs__item-label {
	color: #8E8E93;
}

/* Catalog */
.catalog__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}
.catalog-container {
	padding: 32px 0 48px;
}
.catalog-top {
	margin-bottom: 40px;
}
.catalog-title {
	color: #141414;
	display: block;
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	margin: 0;
}
.catalog-categories__grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 4px;
	margin-left: -8px;
	margin-right: -8px;
}
.catalog-categories__item {
	padding: 16px 8px 0;
}
.catalog-categories__item-link {
	background-color: #EEF2F7;
	border-radius: 4px;
	color: #141414;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	padding: 8px 16px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}
.catalog-categories__item-link:hover {
	background-color: #242424;
	color: #FFF;
	text-decoration: none;
}
.catalog-search {
	background-color: #D9F0FA;
	background-image: url('../images/catalog-search__bg.svg');
	background-position: center center;
	border-radius: 4px;
	padding: 32px;
}
.catalog-search__title {
	font-size: 0;
	line-height: 0;
}
.catalog-search__title-label,
.catalog-search__title-link {
	display: inline-block;
	margin-bottom: 20px;
	vertical-align: middle;
}
.catalog-search__title-label {
	color: #141414;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
}
.catalog-search__title-link {
	border-bottom: 1px solid rgba(0, 122, 255, .2);
	color: #007AFF;
	font-size: 16px;
	font-weight: 500;
	line-height: 23px;
	margin-left: 12px;
}
.catalog-search--indexpage {
	text-align: center;
}
.catalog-search--indexpage .catalog-search__title-label {
	display: block;
	font-size: 36px;
	line-height: 44px;
	margin-bottom: 12px;
	text-align: center;
}
.catalog-search--indexpage .catalog-search__title-link {
	margin: 0 auto 24px;
}
.catalog-search__title-link:hover {
	border-bottom-color: rgba(0, 107, 224, .4);
	color: #006BE0;
	text-decoration: none;
}
.catalog-search__button {
	background-color: #242424;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 12px 24px;
	text-align: center;
}
.catalog-search__button:hover {
	background-color: #141414;
}
.catalog-body {
	margin-top: 40px;
}
.catalog-body__sorting {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	padding-bottom: 12px;
}
.catalog-body__grid {
	border-bottom: 1px solid #E5E5EA;
	border-top: 1px solid #E5E5EA;
	padding-bottom: 32px;
}
.catalog-body__sorting-title {
	color: #141414;
	font-size: 14px;
	line-height: 20px;
}
.catalog-body__sorting-item {
	color: #007AFF;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	padding: 0 8px;
}
.catalog-body__sorting-item:hover {
	color: #006BE0;
	text-decoration: none;
}
.catalog-body__sorting-item--disable,
.catalog-body__sorting-item--disable:hover {
	color: #141414;
	cursor: default;
	text-decoration: none;
}
.catalog-grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -10px;
	padding-top: 12px;
}
.catalog-grid__col {
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	max-width: 25%;
	padding: 20px 10px 0;
}
.catalog-product {
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 10px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.catalog-product .highslide {
	display: block;
}
.catalog-product:hover {
	text-decoration: none;
	border-color: #007AFF;
	box-shadow: 0 2px 8px rgba(0,122,255,0.1);
}
.catalog-product__imagewrapper {
	background-color: #F5F7F9;
	border-radius: 6px;
	aspect-ratio: .84;
	display: block;
	padding: 32px 0;
	position: relative;
	width: 100%;
}
/*
.catalog-product__image {
	display: block;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	mix-blend-mode: multiply;
	top: 50%;
}
*/
.catalog-product__image {
    display: block;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    top: 50%;
}
.catalog-product__noitem {
	background-color: #8E8E93;
	border-radius: 12px;
	color: #FFF;
	display: block;
	font-size: 12px;
	font-weight: 600;
	left: 8px;
	line-height: 16px;
	padding: 4px 8px;
	position: absolute;
	top: 8px;
}
.catalog-product__options {
	bottom: 8px;
	display: block;
	left: 8px;
	position: absolute;
}
.catalog-product__sale {
	background-color: #FFE5EB;
	border-radius: 12px;
	color: #FF3F68;
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	margin-right: 4px;
	padding: 4px 6px;
}
.catalog-product__video {
	background-color: #E5E5EA;
	border-radius: 12px;
	display: block;
	padding: 4px 8px 4px 6px;
}
.catalog-product__video-icon {
	display: block;
	fill: #141414;
	height: 12px;
	margin-right: 2px;
	width: 12px;
}
.catalog-product__video-label {
	color: #141414;
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
}
.catalog-product__price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 12px 0 4px;
}
.catalog-product__price-value {
	color: #141414;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
}
.catalog-product__price-value--new {
	color: #FF3F68;
}
.catalog-product__price-oldprice {
	color: #8E8E93;
	font-size: 14px;
	line-height: 20px;
	margin-left: 8px;
	text-decoration: line-through;
}
.catalog-product__title {
	color: #616166;
	display: block;
	font-size: 14px;
	line-height: 20px;
}
.catalog-product:hover .catalog-product__title {
	color: #141414;
}
.catalog-product:hover .catalog-product__imagewrapper {
	background-color: #EEF2F7;
}
.catalog-product__rating {
	display: block;
	margin-top: 4px;
}
.catalog-product__rating-stars {
	display: block;
	height: 12px;
	margin-right: 4px;
}
.catalog-product__rating-label {
	color: #808D9A;
	display: block;
	font-size: 14px;
	line-height: 20px;
}
.catalog-product__button {
	background-color: #007AFF;
	border-radius: 4px;
	bottom: 0;
	color: #FFF;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	left: 0;
	line-height: 24px;
	margin-top: 24px;
	padding: 8px 20px;
	position: absolute;
	text-align: center;
}
.catalog-product__label {
	border-radius: 2px;
	color: #FFF;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	left: 0;
	line-height: 16px;
	padding: 4px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 0;
	z-index: 2;
}
.catalog-product__label:first-child {
	margin-right: 8px;
}
.catalog-product__label--sale {
	background-color: #FF3F68;
}
.catalog-product__label--sale + .catalog-product__label--video {
	left: 60px;
}
.catalog-product__label--video {
	background-color: #242424;
	padding: 4px 8px 4px 24px;
}
.catalog-product__label--video::before {
	background-image: url('../images/catalog-product__label-icon.svg');
	background-repeat: no-repeat;
	content: '';
	height: 12px;
	left: 8px;
	position: absolute;
	top: 6px;
	width: 12px;
}
.catalog-body__pagination {
	padding-top: 20px;
}
.catalog-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.catalog-pagination__item {
	border-radius: 4px;
	color: #141414;
	height: 40px;
	font-size: 16px;
	font-weight: 500;
	line-height: 40px;
	margin-right: 8px;
	text-align: center;
	width: 40px;
}
.catalog-pagination__item:hover,
.catalog-pagination__item--is-change {
	background-color: #EEF2F7;
}
.catalog-pagination__item:last-child {
	margin-right: 0;
}
.catalog-pagination__item-icon {
	display: block;
	height: 24px;
	fill: #141414;
	margin: 8px;
	width: 24px;
}
.catalog-seotrash {
	margin-top: 40px;
}
.catalog-seotrash > p {
	color: #141414;
	font-size: 14px;
	line-height: 20px;
	margin: 12px 0 0;
}

/* Catalog filter fix */
.input #model_chosen {
	width: 100% !important;
}
.input .chosen-container {
	display: block;
	font-size: 16px;
}
.input .chosen-container-single .chosen-single {
	background-image: url('../images/input__field-triangle.svg');
	background-position: calc(100% - 16px) 50%;
	background-repeat: no-repeat;
	background-size: 8px 8px;
	border: 1px solid;
	border-color: transparent;
	border-radius: 4px;
	box-shadow: none;
	height: 48px;
	padding: 12px 16px;
	position: relative;
	display: block;
	overflow: hidden;
	background-color: #FFF;
	color: #444;
	text-decoration: none;
	white-space: nowrap;
	line-height: 34px;
	cursor: default;
}
.input .chosen-container-single .chosen-single span {
	color: #141414;
	height: 24px;
	line-height: 24px;
	text-align: left;
	display: block;
	overflow: hidden;
	margin-right: 26px;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.input .chosen-container-active.chosen-with-drop .chosen-single {
	background-image: none;
	border: 1px solid #EAEAEA;
	box-shadow: none;
}
.chosen-container.chosen-container-multi, .chosen-container.chosen-container-single {
	width: 100% !important;
}
.input .chosen-container-single .chosen-drop {
	background-color: #FFF;
	border: 1px solid #E5E5EA;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 8px 12px rgba(20, 20, 20, .12);
	position: absolute;
	top: 100%;
	z-index: 1010;
	width: 100%;
	clip: rect(0,0,0,0);
	-webkit-clip-path: inset(100% 100%);
	clip-path: inset(100% 100%);
	background-clip: padding-box;
	margin-top: -1px;
}
.chosen-container.chosen-with-drop .chosen-drop {
	clip: auto;
	-webkit-clip-path: none;
	clip-path: none;
}
.chosen-disabled {
	opacity: .5 !important;
	cursor: default;
}
.input .chosen-container-single .chosen-search {
	padding: 8px 12px;
	z-index: 3;
	position: relative;
	margin: 0;
	white-space: nowrap;
}
.input .chosen-container .chosen-results {
	margin: 0;
	padding: 0;
	color: #444;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	max-height: 240px;
	-webkit-overflow-scrolling: touch;
}
.input .chosen-container .chosen-results li {
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 12px;
	text-align: left;
}
.input .chosen-container .chosen-results li:first-child {
	color: #616166;
	font-size: 14px;
	line-height: 20px;
}
.input .chosen-container .chosen-results li.highlighted {
	background-color: #EEF2F7;
	background-image: none;
	color: #141414;
}
.input .chosen-container .chosen-results li:first-child.highlighted {
	background-color: #FFF;
	color: #616166;
}
.input .chosen-container-single .chosen-search input[type=text] {
	background-image: url('../images/catalog-search__input-icon.svg') !important;
	background-position: calc(100% - 6px) 6px !important;
	background-repeat: no-repeat !important;
	background-size: 16px !important;
	border: 1px solid #E5E5EA;
	border-radius: 4px;
	height: 32px;
	margin: 1px 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
	outline: 0;
	background: url('chosen-sprite.png') no-repeat 100% -20px;
	font-size: 1em;
	font-family: Inter, sans-serif;
	line-height: normal;
}
.chosen-container-single .chosen-single div {
	position: absolute;
	top: 0;
	right: 0;
	width: 18px;
	height: 100%;
}
.input .chosen-container-single .chosen-single div {
	display: none;
}

/* Pagination without new HTML fix */
.catalog-pagination .links {
	isplay: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.catalog-pagination .links b,
.catalog-pagination .links a {
	border-radius: 4px;
	color: #141414;
	height: 40px;
	font-size: 16px;
	font-weight: 500;
	line-height: 40px;
	margin-right: 8px;
	text-align: center;
	width: 40px;
}
.catalog-pagination .links b,
.catalog-pagination .links a:hover {
	background-color: #EEF2F7;
}
.catalog-pagination .links a:hover {
	text-decoration: none;
}
.catalog-pagination .results {
	display: none;
}

/* Checkout */
.checkout {
	padding: 25px 0;
}
.checkout__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}
.checkout-section {
	margin-bottom: 30px;
}
.checkout-section__title,
.checkout-heading {
	color: #141414;
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
	margin-bottom: 25px;
}
/* Popular cities grid in checkout */
.checkout-popular-cities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.checkout-popular-cities__item {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid #E5E5EA;
	border-radius: 20px;
	color: #333;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
	transition: all 0.15s ease;
	cursor: pointer;
}
.checkout-popular-cities__item:hover {
	border-color: #007AFF;
	color: #007AFF;
	text-decoration: none;
}
.checkout-popular-cities__item--active {
	background: #007AFF;
	border-color: #007AFF;
	color: #fff;
}
.checkout-popular-cities__item--active:hover {
	background: #006BE0;
	border-color: #006BE0;
	color: #fff;
}

.checkout-section__title .zone {
	color: #007AFF;
	cursor: pointer;
}
.checkout-section__title .zone:hover {
	border-bottom: 2px solid rgba(0, 107, 224, 1);
	color: #006BE0;
}
.checkout-heading {
	border: none;
	color: #141414;
	padding: 0;
}
.checkout-summary__row {
	position: relative;
	margin-bottom: 24px;
}
.checkout-summary__row:last-child {
	margin-bottom: 0;
}
.checkout-summary__image {
	display: block;
	height: 96px;
	margin-right: 16px;
	width: 96px;
}
.checkout-summary__title {
	color: #141414;
	display: block;
	font-size: 16px;
	line-height: 24px;
}
.checkout-summary__title:hover {
	color: #8E8E93;
	text-decoration: none;
}
.checkout-summary__status {
	color: #16C67A;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-top: 8px;
}
.checkout-summary__quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.checkout-summary__quantity-button,
.checkout-summary__quantity-value {
	-ms-flex-preferred-size: 32px;
	flex-basis: 32px;
	max-width: 32px;
	height: 32px;
	font-size: 16px;
	font-weight: 500;
	line-height: 32px;
	text-align: center;
}
.checkout-summary__quantity-button {
	background-color: #EEF2F7;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.checkout-summary__quantity-button:hover {
	background-color: #E5E5EA;
}
.checkout-summary__quantity-value {
	cursor: default;
}
.checkout-summary__price {
	color: #141414;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
}
.checkout-summary__price--sale {
	color: #FF3F68;
}
.checkout-summary__oldprice {
	color: #8E8E93;
	font-size: 16px;
	line-height: 24px;
	margin-top: 4px;
	text-decoration: line-through;
}
.checkout-summary__row-remove {
	cursor: pointer;
	display: block;
	fill: #8E8E93;
	height: 32px;
	position: absolute;
	right: 0;
	top: -4px;
	width: 32px;
	z-index: 2;
}
.checkout-summary__row-remove:hover {
	fill: #141414;
}
.checkout-summary__row-remove svg {
	outline: 0 !important;
}
.checkout-delivery {
	margin-bottom: 32px;
}
.checkout-delivery:last-child {
	margin-bottom: 0;
}
.checkout-delivery__title-image {
	display: block;
	height: auto;
	margin-right: 16px;
	width: 96px;
}
.checkout-delivery__title-text {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
}
.checkout-delivery__title-caption {
	font-size: 16px;
	line-height: 24px;
	margin-top: 16px;
}
.checkout-delivery__col {
	padding-top: 12px;
}
.checkout-delivery__col--pickpoint {
	order: 1;
}
.checkout-delivery__col--courier {
	order: 2;
}
.checkout-delivery__col--information {
	order: 3;
}
.checkout-delivery__method {
	cursor: pointer;
	display: block;
	height: 100%;
	margin-top: 20px;
}
.checkout-delivery__method:first-child {
	
}
.checkout-delivery__method-label {
	display: none !important;
}
.checkout-delivery__method-item {
	border: 2px solid #E5E5EA;
	border-radius: 4px;
	display: block;
	height: 100%;
	padding: 20px;
	position: relative;
}
.checkout-delivery__method-item:hover {
	border-color: #D1D1D6;
}
.checkout-delivery__method-logo {
	display: block;
	height: auto;
	max-height: 48px;
	width: 112px;
}

.checkout-delivery__method-title {
	color: #141414;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}

.checkout-delivery__method-col--logo {
	padding-right: 32px;
}
.checkout-delivery__method-col--text {
	flex: 1 1 0;
}

.checkout-delivery__method-item-caption {
	color: #8E8E93;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin: 4px 0 0;
}
.checkout-delivery__method-item-price {
	color: #141414;
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
}

.checkout-delivery__method-button {
	background-color: #242424;
	border-radius: 18px;
	color: #FFF;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-top: 12px;
	padding: 8px 16px;
}
.checkout-delivery__method-button:hover {
	background-color: #141414;
}

.checkout-delivery__method-item-label {
	bottom: 20px;
	display: none;
	height: 24px;
	fill: #007AFF;
	position: absolute;
	right: 20px;
	width: 24px;
}
.checkout-delivery__method-label:checked + .checkout-delivery__method-item {
	border-color: #007AFF;
}
.checkout-delivery__method-label:checked + .checkout-delivery__method-item .checkout-delivery__method-button {
	display: inline-block;
}
.checkout-delivery__method-label:checked + .checkout-delivery__method-item .checkout-delivery__method-item-label {
	display: block;
}
.checkoutDelivery-method__img {
	display: block;
}
.checkoutDelivery-method__title {
	color: #141414;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin: 12px 0 4px;
}
.checkoutDelivery-method__caption {
	color: #8E8E93;
	display: block;
	font-size: 14px;
	line-height: 20px;
}
.checkoutDelivery-method__price {
	color: #141414;
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	margin-left: 16px;
	text-align: right;
}
.checkoutDelivery-method__point {
	border-top: 1px solid #E5E5EA;
	display: none;
	margin-top: 12px;
	padding-top: 12px;
}
.checkout-delivery__method-label:checked + .checkout-delivery__method-item .checkoutDelivery-method__point {
	display: block;
}
.checkoutDelivery-method__point-address {
	color: #141414;
	display: block;
	font-size: 14px;
	line-height: 20px;
}
.checkoutDelivery-method__point-btn {
	background-color: #EEF2F7;
	border-radius: 4px;
	color: #141414;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-top: 12px;
	padding: 8px 16px;
	text-align: center;
}
.checkoutDelivery-method__point-btn:hover {
	background-color: #E5E5EA;
}
.checkout-delivery-points {
	margin-top: 36px;
}
.checkout-delivery-points__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: Inter, sans-serif;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 16px;
}
.checkout-delivery-points__title-label {
	font-family: Inter, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
}
.checkout-delivery-points__title-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 -6px;
}
.checkout-delivery-points__title-linklabel {
	font-size: 14px;
	line-height: 20px;
}
.checkout-delivery-points__title-linkitem {
	color: #007AFF;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin: 0 6px;
}
.checkout-delivery-points__title-linkitem:hover {
	color: #006BE0;
	text-decoration: none;
}
.checkout-delivery-points__title-linkitem--disable,
.checkout-delivery-points__title-linkitem--disable:hover {
	color: #141414;
	cursor: default;
}
.checkout-delivery-points__body {
	visibility: hidden;
	height:0px;
}
.checkout-delivery-points__body--active {
	visibility: visible;
	height:auto;
}
.checkout-map {
	background-color: #EEF2F7;
	border-radius: 4px;
	display: block;
	height: 400px;
	padding-bottom: 56%;
	width: 100%;
}
.checkout-pickup {
	margin-right: -8px;
	max-height: 420px;
	overflow-y: auto;
}
.checkout-pickup::-webkit-scrollbar {
	width: 4px;
}
.checkout-pickup::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 2px;
}
.checkout-pickup::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 2px;
}
.checkout-pickup:hover::-webkit-scrollbar-track {
	background-color: #E5E5EA;
}
.checkout-pickup:hover::-webkit-scrollbar-thumb {
	background-color: #C7C7CC;
}
.checkout-pickup:hover::-webkit-scrollbar-thumb:active {
	background-color: #8E8E93;
}
.dmenu-scrollbar__wrapper:hover::-webkit-scrollbar-button {
	background-color: #FFF;
	display: block;
	height: 16px;
	pointer-events: none;
	width: 0;
}
.checkout-pickup__item {
	cursor: pointer;
	display: block;
	padding: 16px 0;
	position: relative;
}
.checkout-pickup__item::before,
.checkout-pickup__item::after {
	background-color: #E5E5EA;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	right: 8px;
}
.checkout-pickup__item::before {
	top: 0;
}
.checkout-pickup__item::after {
	bottom: -1px;
}
.checkout-pickup__item:last-child:after {
	bottom: 0;
}
.checkout-pickup__input {
	display: none !important;
}
.checkout-pickup__item-title {
	color: #141414;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.checkout-pickup__item-date {
	color: #8E8E93;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-top: 4px;
}
.checkout-pickup__item-text {
	color: #141414;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 14px;
	line-height: 20px;
	margin-top: 16px;
}
.checkout-pickup__item-label {
	background-color: #FFF;
	border: 2px solid #D1D1D6;
	border-radius: 50%;
	display: block;
	height: 24px;
	position: absolute;
	right: 8px;
	top: 16px;
	width: 24px;
}
.checkout-pickup__item-label::after {
	background-color: #007AFF;
	border-radius: 50%;
	content: '';
	display: none;
	height: 16px;
	left: 2px;
	position: absolute;
	top: 2px;
	width: 16px;
}
.checkout-pickup__input:checked + .checkout-pickup__item-label {
	border-color: #007AFF;
}
.checkout-pickup__input:checked + .checkout-pickup__item-label::after {
	display: block;
}
/* === Выбранный ПВЗ === */
.list-group-item.selected .checkout-pickup__item-title {
	font-weight: 600;
}
/* === Поиск ПВЗ === */
.yandex-pvz-search {
	padding: 10px 10px 15px;
	border-bottom: 1px solid #E5E5EA;
}
.yandex-pvz-search__field {
	position: relative;
}
#yandex-pvz-search-input {
	width: 100%;
	padding: 10px 120px 10px 12px;
	border: 1px solid #D1D1D6;
	border-radius: 8px;
	font-size: 14px;
	font-family: Inter, sans-serif;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}
#yandex-pvz-search-input:focus {
	border-color: #007AFF;
	box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}
#yandex-pvz-search-clear {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	padding: 8px 16px;
	background: #EEF2F7;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-family: Inter, sans-serif;
	color: #141414;
	transition: background-color 0.15s;
}
#yandex-pvz-search-clear:hover {
	background: #E5E5EA;
}
.yandex-pvz-search__counter {
	margin-top: 8px;
	font-size: 13px;
	color: #8E8E93;
}
.yandex-pvz-not-found {
	padding: 20px;
	text-align: center;
	color: #8E8E93;
}
/* === Подсветка совпадений === */
.checkout-pickup mark {
	background: #FFEB3B;
	padding: 0 2px;
	border-radius: 2px;
	color: inherit;
}
.checkout-payment__item {
	margin-bottom: 10px;
}
.checkout-payment__item:last-child {
	margin-bottom: 0;
}
.checkout-result {
	height: 100%;
	position: relative;
}
.checkout-result__body {
	background-color: #FFF;
	box-shadow: 0 8px 20px rgba(20, 20, 20, .12), 0 0 2px rgba(20, 20, 20, .1);
	border-radius: 4px;
	padding: 32px 24px;
	position: sticky;
	top: 48px;
}
.summary-price__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 8px;
}
.summary-price__row--main {
	padding-bottom: 12px;
}
.summary-price__row-label,
.summary-price__row-value {
	color: #8E8E93;
	font-size: 16px;
	line-height: 24px;
}
.summary-price__row-value {
	font-weight: 600px;
	text-align: right;
}
.summary-price__row--main .summary-price__row-label,
.summary-price__row--main .summary-price__row-value {
	color: #141414;
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
}
.checkout-result__body-delivery {
	margin: 20px 0 0;
}
.checkout-result__body-payment {
	margin-top: 0;
}
/* Summary cards — доставка и оплата */
.summary-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #F5F7FA;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 8px;
}
.summary-card__icon {
	flex-shrink: 0;
	margin-top: 1px;
}
.summary-card__icon svg {
	display: block;
}
.summary-card__content {
	flex: 1;
	min-width: 0;
}
.summary-card__link {
	color: #141414;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-decoration: none;
	border: none;
}
.summary-card__link:hover {
	color: #007AFF;
	text-decoration: none;
}
.summary-card__caption {
	color: #8E8E93;
	font-size: 13px;
	line-height: 18px;
	margin-top: 3px;
}
.summary-delivery__date {
	color: #8E8E93;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	margin-top: 3px;
}
/* Legacy compat */
.summary-delivery__method-caption {
	color: #8E8E93;
	font-size: 13px;
	line-height: 18px;
	margin-top: 3px;
}
.summary-payment__link {
	color: #141414;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-decoration: none;
	border: none;
}
.summary-payment__link:hover {
	color: #007AFF;
	text-decoration: none;
}
.summary-button {
	margin-top: 24px;
}
.summary-button_item {
	background-color: #007AFF;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 16px 0;
	text-align: center;
}

input.summary-button_item {
	border: none !important;
	width:100%;
	background-color: #007AFF;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	display: block!important;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 16px 0;
	text-align: center;
}

.summary-button_item:hover {
	background-color: #006BE0;
	text-decoration: none;
}
.summary-button__caption {
	color: #8E8E93;
	font-size: 12px;
	line-height: 16px;
	margin-top: 16px;
}
.summary-button__caption-link {
	color: #8E8E93;
	text-decoration: underline;
}
.summary-button__caption-link:hover {
	color: #616166;
}
.summary-promo {
	margin: 16px 0 24px;
}
.summary-promo__input {
	display: block !important;
	position: relative;
}
.summary-promo__input-field {
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	border: 1px solid;
	border-color: #E5E5EA;
	border-radius: 4px;
	color: #141414;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	height: 48px;
	outline: none;
	padding: 12px 64px 12px 16px;
	width: 100%;
	-webkit-appearance: none;
	margin: 0;
}
.summary-promo__input-field[type=number] {
	-moz-appearance: textfield;
}
.summary-promo__input-field::placeholder {
	color: #8E8E93;
}
.summary-promo__input-button {
	background-color: #E5E5EA;
	border-radius: 0 4px 4px 0;
	bottom: 0;
	cursor: pointer;
	display: block;
	fill: #8E8E93;
	height: 48px;
	padding: 14px;
	position: absolute;
	right: 0;
	top: 0;
	width: 48px;
}
.summary-promo__input-error {
	color: #EB5757;
	display: none;
	font-size: 12px;
	line-height: 16px;
	margin-top: 8px;
}
.summary-promo__input--error .summary-promo__input-error {
	display: block;
}
.summary-promo__input--error .summary-promo__input-button {
	cursor: default;
}
.summary-promo__input--check .summary-promo__input-button {
	fill: #007AFF;
}
#simplecheckout_comment .form-control {
	border: 1px solid;
	border-color: #E5E5EA;
	border-radius: 4px;
	color: #141414;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	height: 120px;
	outline: none;
	padding: 12px 16px;
	resize: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
}
.checkout-pay__col {
	padding-bottom: 20px;
}
.pay-checkbox {
	display: block;
	height: 100%;
	width: 100%;
}
.pay-checkbox__input {
	display: none;
}
.pay-checkbox__input:checked + .pay-checkbox__item,
.pay-checkbox__input:checked + .pay-checkbox__item:hover {
	border-color: #007AFF;
	cursor: default;
} 
.pay-checkbox__item {
	border: 2px solid #E5E5EA;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pay-checkbox__item:hover {
	border-color: #D1D1D6;
}
.pay-checkbox__item-img {
	display: block;
	height: 36px;
	margin: 0 auto 12px;
	width: auto;
}
.pay-checkbox__item-label {
	color: #141414;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
}

/* Orderinfo */
.orderinfo {
	padding: 12px 0 48px;
}
.orderinfo__headline {
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 32px;
}
.orderinfo-table {
	border: 1px solid #E0E0E0;
	border-radius: 4px;
}
.orderinfo-table__title {
	background-color: #F5F7F9;
	border-bottom: 1px solid #E0E0E0;
	padding: 32px;
}
.orderinfo-table__number {
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
}
.orderinfo-table__status {
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin-top: 4px;
	padding-left: 20px;
	position: relative;
}
.orderinfo-table__status:before {
	background-color: #3EC28F;
	border-radius: 50%;
	content: '';
	height: 12px;
	left: 0;
	position: absolute;
	top: 50%;
	width: 12px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.orderinfo-table__button {
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #FFF;
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: 500;
	height: 56px;
	line-height: 24px;
	padding: 16px 0;
	text-align: center;
	width: 200px;
}
.orderinfo-table__button--blue {
	background-color: #007AFF;
}
.orderinfo-table__button--blue:hover {
	background-color: #006ADB;
}
.orderinfo-table__button--green {
	background-color: #3EC28F;
}
.orderinfo-table__button--green:hover {
	background-color: #13AE6B;
}
.orderinfo-table__button--red {
	background-color: #FF564E;
}
.orderinfo-table__button--red:hover {
	background-color: #FF3C33;
}
.orderinfo__col--none {
	display: none;
}
.ordertable-delivery {
	display: none;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
	margin-top: 24px;
	padding-left: 10px;
	padding-right: 10px;
}
.ordertable-delivery--show {
	display: block;
}
.ordertable-delivery__content {
	position: relative;
}
.ordertable-delivery__content:after {
	background-color: #3EC28F;
	bottom: 6px;
	content: '';
	left: 5px;
	position: absolute;
	top: 6px;
	width: 2px;
}
.ordertable-delivery__number {
	color: #9E9E9E;
	font-size: 16px;
	line-height: 24px;
}
.ordertable-delivery__number-link {
	color: #006BD8;
}
.ordertable-delivery__number-link:hover {
	text-decoration: underline;
}
.ordertable-delivery__row {
	margin-bottom: 24px;
}
.ordertable-delivery__status {
	color: #161616;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding-left: 44px;
	position: relative;
}
.ordertable-delivery__status:before {
	background-color: #3EC28F;
	border-radius: 50%;
	content: '';
	height: 12px;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 12px;
}
.ordertable-delivery__date {
	color: #9E9E9E;
	font-size: 16px;
	line-height: 24px;
}
.orderinfo-table__body {
	padding: 32px;
}
.ordertabl-products__image {
	display: block;
	height: 72px;
	margin: 0 8px 0 0;
	width: 72px;
}
.ordertable-products__name {
	color: #006BD8;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 4px;
	word-wrap: break-word;
}
.ordertable-products__price {
	color: #161616;
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}
.ordertable-products__cols {
	color: #9E9E9E;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-left: 8px;
}
.ordertable-products__item {
	display: block;
	margin-bottom: 24px;
	width: 230px;
}
.ordertable-products__item:last-child {
	margin-bottom: 0;
}
.ordertable-products__item:hover .ordertable-products__name {
	text-decoration: underline;
}
.ordertable-products__item:hover .ordertable-products__price,
.ordertable-products__item:hover .ordertable-products__cols {
	text-decoration: none !important;
}
.ordertable__section {
	margin-bottom: 32px;
}
.ordertable__section:last-child {
	margin-bottom: 0;
}
.ordertable__section-caption {
	color: #9E9E9E;
	font-size: 16px;
	line-height: 24px;
	width: 170px;
}
.ordertable__section-value {
	color: #161616;
	font-size: 16px;
	line-height: 24px;
}
.ordertable__section-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.ordertable__section-grid {
	margin-bottom: 20px;
}
.ordertable__section-map {
	color: #006BD8;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	margin-top: 8px;
}
.ordertable__section-map:hover {
	text-decoration: underline;
}
.ordertable__section-price {
	color: #161616;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}
.orderinfo-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 32px;
}
.orderinfo-button__item {
	background-color: #EFEFF4;
	border-radius: 4px;
	color: #161616;
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 16px 32px;
}
.orderinfo-button__item:hover {
	background-color: #E7E7EE;
}

/* Order track page */
.order-track-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 15px 48px;
	width: 100%;
	box-sizing: border-box;
}
.order-track-page__title {
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
	margin: 16px 0 24px;
}

/* Order track form */
.order-track-form {
	max-width: 400px;
}
.order-track-form__field {
	margin-bottom: 20px;
}
.order-track-form__label {
	color: #333;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 6px;
}
.order-track-form__hint {
	color: #808D9A;
	font-size: 13px;
	line-height: 18px;
	margin-top: 6px;
}
.order-track-form__input {
	background-color: #FFF;
	border: 1px solid #D0D5DD;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 16px;
	height: 48px;
	line-height: 24px;
	padding: 12px 14px;
	transition: border-color 0.15s;
	width: 100%;
}
.order-track-form__input:focus {
	border-color: #007AFF;
	outline: none;
}
.order-track-form__actions {
	margin-top: 24px;
	position: relative;
}
.order-track-form__loader {
	display: none;
	left: 220px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.order-track-form__again {
	margin-top: 16px;
	text-align: center;
}
.order-track-form__again a {
	color: #007AFF;
	cursor: pointer;
	display: none;
	font-size: 15px;
}
.order-track-form__again a:hover {
	text-decoration: underline;
}
.order-track-form .error {
	color: #FF564E;
	font-size: 13px;
	line-height: 18px;
	margin-top: 6px;
}
.order-track-page .order_track_info--error {
	background-color: #FFF5F5;
	border: 1px solid #FED7D7;
	border-radius: 6px;
	color: #C53030;
	font-size: 15px;
	line-height: 22px;
	margin-top: 16px;
	max-width: 400px;
	padding: 12px 16px;
}
.order-track-page .order_track_info--prompt {
	margin-top: 16px;
	max-width: 400px;
}
.order-track-page .last4phone span {
	color: #333;
	font-size: 15px;
	font-weight: 500;
	line-height: 22px;
}
.order-track-page .last4phone input[name="last4phone"] {
	background-color: #FFF;
	border: 1px solid #D0D5DD;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 16px;
	height: 48px;
	line-height: 24px;
	margin: 12px 0;
	padding: 12px 14px;
	width: 100%;
}
.order-track-page .last4phone input[name="last4phone"]:focus {
	border-color: #007AFF;
	outline: none;
}
.order-track-page .last4phone #last4phone {
	background-color: #007AFF;
	border: none;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	height: 48px;
	padding: 0 24px;
}
.order-track-page .last4phone #last4phone:hover {
	background-color: #006ADB;
}
.order-track-page .last4phone__error {
	color: #FF564E;
	font-size: 14px;
	line-height: 20px;
	margin-top: 8px;
}

/* Product page */
.product__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.product-mobileprice {
	display: none;
}
.product-title {
	margin: 0 0 24px;
}
.product-info {
	padding-bottom: 48px;
	padding-top: 0;
}
#midsection h1.product-title__headline,
.product-title__headline {
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	margin: 20px 0 16px;
	padding: 0;
}
.product-title__headline {
	margin: 24px 0 12px;
}
.product-title__rating-img {
	display: block;
	height: 16px;
	margin-right: 8px;
}
.product-title__rating-caption {
	color: #8E8E93;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
}
.product-title__rating-caption a {
	border-bottom: 1px dashed rgba(142, 142, 147, .4);
	color: #8E8E93;
	display: block;
	cursor: pointer;
}
.product-title__rating-caption a:hover {
	border-bottom: 1px dashed #616166;
	color: #616166;
	text-decoration: none;
}
.product-title__vencode {
	color: #8E8E93;
	font-size: 14px;
	line-height: 20px;
	margin-left: 24px;
}
.product-title__vencode-value {
	color: #161616;
}
.product-preview__item {
	margin-bottom: 16px;
	margin-right: 20px;
}
.product-info .image-additional {
	padding: 0 !important;
}
.product-preview__item-link,
.product-preview__item-image {
	display: block;
}
.product-preview__item-link {
	background-color: #F5F7F9;
	border-radius: 8px;
	border: 2px solid transparent !important;
	opacity: .6;
	padding: 6px !important;
}
.product-preview__item-link.active,
.product-preview__item-link.active:hover {
	border-color: #007AFF !important;
	opacity: 1;
}
.product-preview__item-link:hover {
	border-color: #99CAFF !important;
	opacity: 1;
}
.product-preview__item-image {
	height: 64px;
	mix-blend-mode: multiply;
	width: 64px;
}
.product-videopreview {
	background-color: #F5F7F9;
	border-radius: 8px;
	cursor: pointer;
	display: block;
	padding: 18px 0;
	width: 80px;
}
.product-videopreview__icon {
	display: block;
	fill: #141414;
	height: 20px;
	margin: 0 auto;
	width: 20px;
}
.product-videopreview__label {
	color: #141414;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-top: 4px;
	text-align: center;
}
.product-videopreview:hover {
	background-color: #E5E5EA;
}
.product-image__preview {
	display: inline-block !important;
	height: 100%;
	position: relative;
	outline:none;
}
.product-image__preview-img {
	display: block;
	height: 100%;
	mix-blend-mode: multiply;
}
.product-image__col--image {
	aspect-ratio: 1;
	background-color: #F5F7F9;
	border-radius: 12px;
	margin: 0 28px;
	padding: 32px 0;
	text-align: center;
}
.product-image__col--image .wrap {
	display: inline-block;
}

.mousetrap, .cloud-zoom-lens {
	left: 50%!important;
	transform: translateX(-50%);
}
.cloud-zoom-lens {
	background-size: cover !important;
}

.cloud-zoom-big {
	left: 100%!important;
}
.product-price__statusblock {
	margin-top: 4px;
}
.product-price__statusitem {
	color: #00AA5B;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}
.product-price__statusicon {
	fill: #00AA5B;
	height: 12px;
	margin-right: 6px;
	width: 12px;
}
.product-price__value {
	color: #161616;
	font-size: 36px;
	font-weight: 600;
	line-height: 40px;
}
.product-price__value--sale {
	color: #F91155;
}

.product-mobprice {
	display: none;
}
.product-places {
	margin: 32px 0;
	width: 320px;
}
.product-places__title {
	color: #141414;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.product-places__block {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
}
.product-places__block-item {
	border-radius: 6px;
	color: #FFF;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-right: 12px;
	margin-top: 12px;
	padding: 8px 16px;
	text-align: center;
}
.product-places__block-item--ozon {
	background-color: #005bff;
}
.product-places__block-item--ozon:hover {
	background-color: #004EDB;
}
.product-places__block-item--yandex {
	background-color: #fc0;
	color: #141414;
}
.product-places__block-item--yandex:hover {
	background-color: #F5C400;
}
.product-places__block-item--wb {
	background-color: #cb11ab;
}
.product-places__block-item--wb:hover {
	background-color: #A90E8F;
}
.product-places__row {
	border-bottom: 1px solid #E5E5EA;
	padding: 16px 0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-places__row-img {
	display: block;
	height: 20px;
}
.product-places__row-btn {
	background-color: #141414;
	border-radius: 6px;
	color: #FFF;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	padding: 8px 16px;
	text-align: center;
}
.product-places__row-btn:hover {
	background-color: #343434;
}

.product-noitem {
	margin-bottom: 40px;
}
.product-noitem__caption {
	color: #616166;
	font-size: 16px;
	line-height: 24px;
	margin: 24px 0 4px;
}
.product-noitem__text {
	color: #141414;
	font-size: 16px;
	line-height: 24px;
	margin: 24px 0 20px;
}
.product-noitem__input {
	width: 320px;
}
.product-noitem__input-button {
	background-color: #EEF2F7;
	border-radius: 6px;
	color: #007AFF;
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 16px;
	padding: 16px 0;
	text-align: center;
}
.product-noitem__input-button:hover {
	background-color: #E5E5EA;
}
.product-noitem__price {
	color: #616166;
	font-size: 36px;
	font-weight: 600;
	line-height: 40px;
}
.product-price__old {
	color: #8E8E93;
	font-size: 16px;
	line-height: 24px;
	margin-left: 8px;
	text-decoration: line-through;
}
.product-price__status {
	color: rgba(22, 22, 22, .8);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 8px;
}
.product-price__status .orange {
	color: #FD8948;
}
.product-fixbutton {
	display: none;
}
.product-button {
	margin-top: 20px;
}
#button-cart.product-button__item,
#button-cart1.product-button__item,
#button-cart3.product-button__item,
#feedbackpro_sendform1.button-exclusive1 {
	background-color: #00AA5B;
	border: none;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.4px;
	line-height: 24px;
	outline: none;
	margin: 0;
	padding: 16px 0;
	text-align: center;
	text-transform: uppercase;
	width: 320px;
	-webkit-appearance: none;
}
#feedbackpro_sendform1.button-exclusive1 {
	background-color: #FD8948;
}
#button-cart.product-button__item:hover,
#button-cart1.product-button__item:hover,
#button-cart3.product-button__item:hover {
	background-color: #009E55;
}
#feedbackpro_sendform1.button-exclusive1:hover {
	background-color: #FD803A;
}
#button-cart.product-button__item, #button-cart1.product-button__item, #button-cart3.product-button__item {
	background-color: #007AFF;
}
#button-cart.product-button__item:hover, #button-cart1.product-button__item:hover, #button-cart3.product-button__item:hover {
	background-color: #0070EB;
}
.product-option {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	margin: 24px 0;
}
.product-option__title {
	-ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
	color: #8E8E93;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 12px;
}
.product-option__item {
	border: 2px solid #E5E5EA;
	border-radius: 6px;
	color: #616166;
	display: block;
	margin-right: 12px;
	padding: 8px 24px;
	text-align: center;
}
.product-option__item:last-child {
	margin-right: 0;
}
.product-option__item-label {
	color: #141414;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}
.product-option__item-price {
	color: #616166;
	display: block;
	font-size: 14px;
	line-height: 20px;
}
.product-option__item:hover {
	border-color: #808D9A;
}
.product-option__item--active,
.product-option__item--active:hover {
	border-color: #141414;
	cursor: default;
}
.product-add {
	margin-top: 24px;
	width: 320px;
}
.product-add__title {
	color: #8E8E93;
	font-size: 14px;
	line-height: 20px;
}
.product-add__option {
	display: block;
	margin-top: 12px;
}
.product-add__label {
	cursor: pointer;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	width: 100%;
}
.product-add__checkbox {
	display: none;
}
.product-add__fakecheckbox {
	border: 2px solid #E5E5EA;
	border-radius: 4px;
	height: 24px;
	padding: 4px;
	width: 24px;
}
.product-add__checkbox:checked + .product-add__fakecheckbox,
.product-add__label:hover .product-add__checkbox:checked + .product-add__fakecheckbox {
	border-color: #141414;
}
.product-add__fakecheckbox-icon {
	display: none;
	fill: #141414;
	height: 12px;
	width: 12px;
}
.product-add__checkbox:checked + .product-add__fakecheckbox .product-add__fakecheckbox-icon {
	display: block;
}
.product-add__label:hover .product-add__fakecheckbox {
	border-color: #808D9A;
}
.product-add__name {
	flex: 1 1 0;
	font-size: 14px;
	line-height: 20px;
	padding: 0 8px 0 12px;
}
.product-add__price {
	color: #141414;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: right;
	width: 48px;
}

.product-additional {
	margin-top: 24px;
	width: 320px;
}
.product-additional__title {
	color: #8B8B8B;
	font-size: 14px;
	line-height: 20px;
}
.product-additional__option {
	margin-top: 12px;
}
.product-additional__option-name,
.product-additional__option-price {
	color: #161616;
	font-size: 16px;
	line-height: 24px;
}
.product-additional__option-price {
	font-weight: 600;
}
.product-additional__label {
	cursor: pointer;
	display: block;
}
.product-additional__checkbox {
	display: none!important;
}
.product-additional__fakecheckbox {
	background-color: #E5E5EA;
	border-radius: 14px;
	display: block;
	height: 28px;
	position: relative;
	width: 44px;
}
.product-additional__fakecheckbox::after {
	background-color: #FFF;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 3px 0 0 rgba(0, 0, 0, 0.05), 0 5px 5px 0 rgba(0, 0, 0, 0.1);
	content: '';
	height: 26px;
	left: 1px;
	margin-top: -13px;
	position: absolute;
	top: 50%;
	transition: transform .2s ease;
	width: 26px;
}
.product-additional__checkbox:checked + .product-additional__fakecheckbox {
	background-color: #00AA5B;
}
.product-additional__checkbox:checked + .product-additional__fakecheckbox::after {
	transform: translateX(16px);
}
.product-delivery {
	margin-top: 40px;
}
.product-delivery__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 8px;
}
.product-delivery__city {
	color: #141414;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 12px;
}
.product-delivery__city .geoip-module {
	margin: 0;
}
.product-delivery__city-change,
.product-delivery__city .geoip-module .zone {
	border-bottom: 1px solid rgba(0, 122, 255, .4);
	color: #007AFF;
	cursor: pointer;
	display: inline-block;
	font-weight: 500;
	line-height: 23px;
	margin-left: 8px;
}
.product-delivery__city-change:hover,
.product-delivery__city .geoip-module .zone:hover {
	border-bottom-color: rgba(0, 122, 255, .8);
	color: #0070EB;
	text-decoration: none;
}
.product-delivery__label {
	color: #141414;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 12px;
}
.product-delivery__label:first-child {
	margin-top: 0;
}

.product-delivery__label-span {
	color: #8E8E93;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	margin: 0 !important;
}
.product-delivery__infolink {
	border-bottom: 1px solid #E5E5EA;
	color: #141414;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 500;
	line-height: 23px;
	margin-top: 16px;
	text-decoration: none;
}
.product-delivery__infolink:hover {
	border-bottom: 1px solid rgba(0, 122, 255, .8);
	color: #0070EB;
}
.product-delivery__item {
	margin-top: 12px;
}
.product-delivery__item-icon {
	height: 24px;
	margin-right: 12px;
	width: 24px;
}
.product-delivery__item-row {
	color: #141414;
	font-size: 16px;
	line-height: 24px;
}
.product-delivery__item-link,
.product-delivery__item-link:visited {
	border-bottom: 1px solid #D1D1D6;
	color: #161616;
}
.product-delivery__item-link:hover,
.product-delivery__item-link:visited:hover {
	border-bottom-color: rgba(0, 122, 255, .4);
	color: #007AFF !important;
	text-decoration: none;
}
.product-delivery__item-price {
	font-weight: 600;
}
.product-delivery__item-caption {
	color: #8B8B8B;
	font-size: 14px;
	line-height: 20px;
	margin-top: 4px;
}
.product-content {
	background-color: #FFF;
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 48px 0;
	position: relative;
	width: 100vw;
}
.product-tabs {
	background-color: #FFF;
	border-radius: 8px;
	box-shadow: 0 3px 8px 0 rgba(22, 22, 22, .12), 0 3px 1px 0 rgba(22, 22, 22, .04);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.product-tabs__item {
	color: #161616;
	flex: 1 1 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 16px 0;
	position: relative;
	text-align: center;
}
.product-tabs__item:hover {
	color: #007AFF;
}

.product-tabs__item::after {
	background-color: #E0E0E0;
	bottom: 0;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
}
.product-tabs__item:last-child::after {
	content: none;
}
.product-tabinfo {
	background-color: #FFF;
	border-radius: 8px;
	box-shadow: 0 3px 8px 0 rgba(22, 22, 22, .12), 0 3px 1px 0 rgba(22, 22, 22, .04);
	display: none;
	padding: 40px 24px;
}
.product-tabinfo--active {
	display: block;
}
.product-tabinfo__headline-1 {
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
	margin-bottom: 4px;
}
.product-tabinfo__headline-h2 {
	display: block;
	font-family: Inter, sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin: 32px 0 16px;
	padding: 0;
}
.product-tabinfo__list {
	list-style: disc outside;
	margin: 0;
	padding: 0 0 0 20px;
}
.product-tabinfo__list-item {
	font-size: 16px;
	line-height: 24px;
	margin: 8px 0;
}
.product-description__section {
	display: block;
	font-size: 16px;
	line-height: 24px;
}
.product-description__section p {
	margin: 16px 0 0;
}
.product-description__section--hidden {
	display: none;
}
.product-description__button {
	color: #007AFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 16px;
}
.product-description__button:hover {
	text-decoration: underline;
}
.product-description__button--close {
	display: none;
}
.product-description--showcontent .product-description__button--open {
	display: none;
}
.product-description--showcontent .product-description__button--close {
	display: inline-block;
}
.product-description--showcontent .product-description__section--hidden {
	display: block;
}
.product-answers {
	margin-top: 28px;
}
.product-answers__item {
	padding: 32px 0;
	position: relative;
}
.product-answers__item::after,
.product-answers__item::before {
	background-color: #E0E0E0;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	width: 100%;
}
.product-answers__item::after {
	bottom: -1px;
}
.product-answers__item::before {
	top: 0;
}
.product-question__name {
	color: #808D9A;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.product-question__date {
	color: #808D9A;
	font-size: 14px;
	line-height: 20px;
	margin-left: 16px;
}
.product-question__text {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-top: 12px;
}
.product-answer {
	margin-top: 24px;
	padding-left: 64px;
}
.product-answer__name {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.product-answer__verification {
	background-image: url('../images/product-answer__verification-icon.svg');
	background-size: cover;
	display: block;
	height: 16px;
	margin: 0 16px 0 8px;
	width: 16px;
}
.product-answer__date {
	color: #808D9A;
	font-size: 14px;
	line-height: 20px;
}
.product-answer__text {
	font-size: 16px;
	line-height: 24px;
	margin-top: 12px;
}

div#qa {
	margin-left: 10px;
}

a#button-qa{
	text-decoration:none;
}
.product-tabinfo__headline-2 {
	color: #161616;
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
}
.product-tech__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 16px;
}
.product-tech__caption,
.product-tech__value {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	max-width: 50%;
}
.product-tech__caption {
	color: #808D9A;
	font-size: 16px;
	line-height: 24px;
}
.product-tech__value {
	color: #161616;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-align: right;
}
.product-tabinfo__title {
	display: none;
}
.product-tabinfo__subtext {
	color: #161616;
	font-size: 16px;
	line-height: 24px;
	margin-top: 20px;
}
.product-compatible {
	margin-top: 16px;
}
.product-compatible__list {
	list-style: none;
	margin: 0 -10px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
}
.product-compatible__list-item {
	flex: 0 0 auto;
	-ms-flex-preferred-size: 33.33%;
	flex-basis: 33.33%;
	max-width: 33.33%;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.product-compatible__list-link {
	display: inline-block;
	color: #161616;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 16px;
}
.product-compatible__list-link:hover {
	color: #007AFF;
	text-decoration: underline;
}
.product-analogs__item {
	display: block;
	margin-top: 32px;
}
.product-analogs__item-image {
	display: block;
	height: 120px;
	width: auto;
}
.product-analogs__item-price {
	color: #161616;
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
}
.product-analogs__rating {
	display: block;
}
.product-analogs__rating-stars {
	display: block;
	height: 12px;
	width: auto
}
.product-analogs__rating-value {
	color: #8B8B8B;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-left: 8px;
}
.product-analogs__title {
	color: #161616;
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin-top: 8px;
}

a.product-analogs__unit {
	display: block;
	margin-top: 32px;
	text-decoration: none;
}
.product-analogs__unit:hover .product-analogs__unit-name {
	text-decoration: underline;
} 
.product-analogs__unit-image {
	display: block;
	height: auto;
	margin-right: 8px;
	width: 120px;
}
.product-analogs__unit-name {
	color: #2196F3;
	display: block;
	font-size: 16px;
	line-height: 24px;
}
.product-analogs__unit-text {
	color: #161616;
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin: 4px 0 8px;
}
.product-analogs__unit-price {
	color: #161616;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
}

.product-analogs__unit-price-old {
	color: #aaa;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 32px;
	margin-left:10px;
	text-decoration:line-through;
}

a.product-review__button {
	background-color: #2196F3;
	border-radius: 4px;
	color: #FFF;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 12px 24px;
	text-align: center;
}

a.product-review__button:hover, a.product-review__button:visited {
	color: #FFF!important;
	text-decoration:none;
}


.product-review__button:hover {
	background-color: #0D8AED;
}
.product-rate__value {
	color: #161616;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-right: 16px;
}
.product-rate__stars {
	display: block;
	height: 24px;
	width: auto;
}
.product-rate__caption {
	color: #808D9A;
	font-size: 16px;
	line-height: 24px;
	margin-top: 12px;
	text-align: right;
}
.product-reviews {
	margin-top: 40px;
}
.product-reviews__item {
	padding: 32px 0;
	position: relative;
}
.product-reviews__item::before,
.product-reviews__item::after {
	background-color: #E0E0E0;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	width: 100%;
}
.product-reviews__item::before {
	top: 0;
}
.product-reviews__item::after {
	bottom: -1px;
}
.product-reviews__item-name {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 8px;
}
.product-reviews__item-date {
	color: #808D9A;
	font-size: 14px;
	line-height: 20px;
}
.product-reviews__item-stars {
	display: block;
	height: 16px;
	width: auto;
}
.product-reviews__item-comment {
	color: #161616;
	font-size: 16px;
	line-height: 24px;
	margin-top: 12px;
}
.product-write {
	margin-top: 40px;
}
.product-write__title {
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
	margin-bottom: 32px;
}
.product-write__caption {
	font-size: 16px;
	line-height: 24px;
	width: 120px;
}
.product-write__rating {
	background-image: url('../images/product-write__rating-star--grey.svg');
	background-size: 28px auto;
	background-repeat: repeat-x;
	height: 24px;
	position: relative;
	width: 140px;
}
.product-write__rating-star {
	border: none;
	border-radius: 0;
	cursor: pointer;
	height: 24px!important;
	left: 0;
	margin: 0!important;
	padding: 0!important;
	position: absolute;
	top: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-size: 28px auto;
	background-repeat: repeat-x;
	-webkit-tap-highlight-color: transparent;
	outline:none!important;
}
.product-write__rating-star:focus {
	outline: none;
}
.product-write__rating-star:hover,
.product-write__rating-star:checked {
	background-image: url('../images/product-write__rating-star--orange.svg');
}
.product-write__rating-star:hover ~ .product-write__rating-star {
	background-image: url('../images/product-write__rating-star--grey.svg');;
}
.product-write__rating-star:nth-of-type(1) {
	z-index: 5;
	width: 28px;
}
.product-write__rating-star:nth-of-type(2) {
	z-index: 4;
	width: 56px;
}
.product-write__rating-star:nth-of-type(3) {
	z-index: 3;
	width: 84px;
}
.product-write__rating-star:nth-of-type(4) {
	z-index: 2;
	width: 112px;
}
.product-write__rating-star:nth-of-type(5) {
	z-index: 1;
	width: 140px;
}
.product-write__row {
	margin-bottom: 28px;
}
.product-write__row:last-child {
	margin-bottom: 0;
}
.product-write__label {
	display: block !important; 
	position: relative;
}
.product-write__input,
.product-write__input:focus {
	display: block !important;
	background-color: #EEF2F7 !important;
	border: none !important;
	border-radius: 4px;
	color: #161616;
	font-family: Inter ,-apple-system, BlinkMacSystemFont, SF Pro Display, Segoe UI, Tahoma, Sans-Serif;
	font-size: 16px;
	height: 56px !important;
	line-height: 24px;
	outline: none;
	padding: 16px 20px !important;
	width: 100%;
	box-sizing: border-box;
}
.product-write__textarea,
.product-write__textarea:focus {
	background-color: #EEF2F7 !important;
	border: none !important;
	border-radius: 4px;
	color: #161616;
	display: block !important;
	font-family: Inter ,-apple-system, BlinkMacSystemFont, SF Pro Display, Segoe UI, Tahoma, Sans-Serif;
	font-size: 16px;
	height: 192px;
	line-height: 24px;
	outline: none;
	padding: 16px 20px;
	resize: none;
	width: 100%;
	box-sizing: border-box;
}
.product-write__button {
	background-color: #2196F3;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-left: 140px;
	padding: 16px 32px;
	text-align: center;
}
.product-write__button:hover {
	background-color: #0D8AED;
}

a.product-tabs__item, a.product-tabs__item:visited{
	color: #161616; 
	
	text-decoration:none;
}

a.product-tabs__item.selected,
a.product-tabs__item.selected:visited
a.product-tabs__item.selected:hover {
	color: #007AFF;
	cursor: default;
}

.product-image{
	position:relative;
}

.product-mobileimage {
	display: none;
}
.product-mobimage,
.product-mobilegallery {
	display: none !important;
}
.sale-icon {
	background-color: #FFA431;
	border-radius: 2px;
	color: #FFF;
	display: block;
	font-size: 14px;
	left: 10px;
	line-height: 20px;
	padding: 0 4px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 10px;
	z-index: 3;
}

.product-image__col #wrap{
	height:100%;
}

/* Reviews pagination */
.reviews-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 16px;
}
.reviews-pagination__item {
	border: 2px solid;
	border-color: transparent;
	border-radius: 4px;
	color: #161616;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-ms-flex-preferred-size: 40px;
	flex-basis: 40px;
	max-width: 40px;
	font-size: 14px;
	font-weight: 500;
	line-height: 36px;
	text-align: center;
	margin-bottom: 4px;
}
.reviews-pagination__item:hover {
	color: #8B8B8B;
}
.reviews-pagination__item:hover .reviews-pagination__item-icon {
	fill: #8B8B8B;
}
.reviews-pagination__item-icon {
	display: block;
	height: 16px;
	margin-left: 4px;
	width: 16px;
}
.reviews-pagination__item--active {
	border-color: #007AFF;
}
.reviews-pagination__item--active:hover {
	color: #161616;
}

/* Reviews answer fix */
.product-reviews__item .textadmin {
	background-color: #F5F7F9;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	line-height: 24px;
	margin: 16px 0 0 0;
	padding: 16px;
}

/* Product search */
.product-search__wrapper {
	margin: 0 auto;
	padding: 0 10px;
	width: 100%;
}
.product-search__paragraph {
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin-top: 16px;
}

/* Simple register fix */
.simpleregister-block-content .form-horizontal {
	padding: 0;
}
.simpleregister-block-content .form-horizontal .form-group {
	padding: 0 10px;
}
.simpleregister-block-content .form-horizontal .form-group.row-address_country_id,
.simpleregister-block-content .form-horizontal .form-group.row-address_zone_id,
.simpleregister-block-content .form-horizontal .form-group.row-address_city,
.simpleregister-block-content .form-horizontal .form-group.row-address_postcode,
.simpleregister-block-content .form-horizontal .form-group.row-address_address_1,
.simpleregister-block-content .form-horizontal .form-group.row-address_default {
	padding-top: 10px;
} 
.simpleregister-block-content .form-horizontal .control-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 4px;
	padding-top: 0;
	text-align: left;
	width: 100%;
}
#column-right {
	z-index: 1 !important;
}

/* Footer */
.footer {
	background-color: #F5F7F9;
	border-top: 1px solid #E5E5EA;
	margin-top: 0 !important;
}
.footer__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.footer-body {
	padding: 40px 0;
}
.footer-list__title {
	color: #8E8E93;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
}
.footer-list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 16px;
}
.footer-list__item-link {
	border-bottom: 1px solid #E5E5EA;
	color: #141414;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 23px;
	text-decoration: none;
}
.footer-list__item-link:hover {
	border-bottom-color: rgba(0, 122, 255, .4);
	color: #007AFF;
	text-decoration: none;
}
.footer-contact {
	margin-bottom: 28px;
}
.footer-contact__caption {
	color: #8E8E93;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 4px;
}
.footer-contact__value {
	color: #141414;
	display: inline-block;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	text-decoration: none;
}
.footer-contact__value:hover {
	color: #007AFF;
}
.footer-social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -8px;
}
.footer-social__col {
	flex: 0 0 auto;
	-ms-flex-preferred-size: 60px;
	flex-basis: 60px;
	max-width: 60px;
	padding: 0 8px;
}
.footer-social__button {
	border-radius: 12px;
	display: block;
	height: 44px;
	padding: 10px;
	width: 44px;
}
.footer-social__button--vk {
	background-color: #2787F5;
}
.footer-social__button--vk:hover {
	background-color: #0B78F4;
}
.footer-social__button--telegram {
	background-color: #27A7E7;
}
.footer-social__button--telegram:hover {
	background-color: #1E96D1;
}
.footer-social__button--max {
	background-color: #6E1AFF;
}
.footer-social__button--max:hover {
	background-color: #5C10E0;
}
/* Instagram (отключён)
.footer-social__button--instagram {
	background-color: #F56040;
}
.footer-social__button--instagram:hover {
	background-color: #F44925;
}
*/
.footer-social__button-svg {
	display: block;
	fill: #FFF;
	height: 24px;
	width: 24px;
}
.footer-bottom {
	padding: 24px 0;
	position: relative;
}
.footer-bottom::before {
	background-color: #E5E5EA;
	content: '';
	height: 1px;
	left: 10px;
	position: absolute;
	right: 10px;
	top: 0;
}
.footer-bottom__copyright {
	color: #141414;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 8px;
}
.footer-bottom__text {
	color: #8E8E93;
	font-size: 16px;
	line-height: 24px;
}

/* span.sale-icon {
	border-radius: 2px;
	font-size: 14px;
	left: 112px;
	line-height: 20px;
	padding: 0 4px;
	text-align: center;
} */

/* Sale label */
/* .sale-icon {
	background-color: #FFA431;
	border-radius: 2px;
	color: #FFF;
	display: block;
	font-size: 14px;
	line-height: 20px;
	padding: 0 4px;
	position: absolute;
	right: 10px;
	text-align: center;
	text-transform: uppercase;
	top: 10px;
	z-index: 5;
} */

/* Product card push fix */
#feedback-body-head {
	box-sizing: border-box;
	font-family: Inter, sans-serif;
	font-size: 14px !important;
	line-height: 20px !important;
	margin-bottom: 4px !important;
	text-align: left !important;
}
input.feedback-body-forma-inputreq,
input.feedback-body-forma-inputreq:focus {
	border: 1px solid #D8D8D8 !important;
	border-radius: 4px;
	display: block !important;
	font-family: Inter, sans-serif !important;
	height: 48px !important;
	box-sizing: border-box;
}

#feedbackpro_modal_fon input.feedback-body-forma-inputreq,
#feedbackpro_modal_fon input.feedback-body-forma-inputreq:focus,
#feedbackpro_modal_fon #feedback-body-forma #pdata {
	/*width: 269px  !important;*/
}


input.feedback-body-forma-inputreq:focus {
	border-color: #CCC !important;
}
input.button-exclusive1 {
	border: none !important;
	border-radius: 4px;
	display: block !important;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 16px 0;
	box-sizing: border-box;
	width: 320px;
}
#feedback-body-forma #pdata {
	color: #8B8B8B;
	font-size: 14px;
	line-height: 20px;
	width: 100%;
	box-sizing: border-box;
}
#feedback-body-forma #pdata a {
	color: #007AFF;
}

/* Display */
.display--none {
	display: none;
}
.display--block {
	display: block;
}

/* Cart popup — overrides moved to cartpopup.css */

#tab-reviews .pagination .links, #tab-qa .pagination .links{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 16px;
	float: none;
}
#tab-reviews .pagination .results, #tab-qa .pagination .results{
	display:none;
}
#tab-reviews .pagination .links a, #tab-reviews .pagination .links b, #tab-qa .pagination .links a, #tab-qa .pagination .links b {
	border: 2px solid;
	border-color: transparent;
	border-radius: 4px;
	color: #161616;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-ms-flex-preferred-size: 40px;
	flex-basis: 40px;
	max-width: 40px;
	font-size: 14px;
	font-weight: 500;
	line-height: 36px;
	text-align: center;
	margin-bottom: 4px;
	display:inline;
	background: unset;
	padding:0;
}

#tab-reviews .pagination .links b, #tab-qa .pagination .links b {
	border-color: #007AFF;
}

.dropzone {
	min-height: 128px;
	border: 2px dashed rgba(0, 0, 0, 0.3);
}

/* Search result page */
.search-result {
	padding-bottom: 48px;
}
.search-result__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.search-result__section {
	border-bottom: 1px solid #E5E5EA;
	padding: 48px 0;
}
.search-result__headline {
	color: #141414;
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	margin: 0;
}
.searchresult-videobox {
	background-color: #EEF2F7;
	background-image: url('../images/catalog-search__bg.svg');
	background-position: 60% top;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	height: 100%;
	padding: 32px 24px;
	text-decoration:none!important;
	align-content: space-between;
}
.searchresult-videobox__title {
	color: #141414;
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
	text-decoration: none;
}
.searchresult-videobox__button {
	background-color: #141414;
	border-radius: 50%;
	display: block;
	height: 64px;
	padding: 16px;
	width: 64px;
}
.searchresult-videobox__button-icon {
	display: block;
	height: 32px;
	fill: #FFF;
	width: 32px;
}
.searchresult-videobox__button-icon--mobile {
	display: none;
}
.searchresult-videobox:hover .searchresult-videobox__title {
	color: #FF3F68;
}
.searchresult-videobox:hover .searchresult-videobox__button {
	background-color: #FF3F68;
}
.searchresult-videobox__link {
	background-color: #242424;
	border-radius: 20px;
	color: #FFF;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 8px 16px;
	text-align: center;
}
.searchresult-videobox:hover .searchresult-videobox__link {
	background-color: #FF3F68;
}

.result-grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.result-grid__col {
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	max-width: 25%;
	padding: 48px 10px 0;
}
.result-product {
	display: block;
	position: relative;
	text-decoration:none!important;
}
.result-product__image {
	display: block;
	height: 164px;
	width: 164px;
}
.result-product__title {
	color: #141414;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 16px;
	text-decoration: none;
}
.result-product:hover .result-product__title {
	color: #007AFF;
	text-decoration: underline;
}
.noresult {
	min-height: calc(100vh - 565px);
	padding: 48px 0 96px;
	text-align: center;
}
.noresult__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.noresult__headline {
	color: #141414;
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	margin: 32px 0 20px;
	text-align: center;
}
.noresult__text {
	font-size: 20px;
	line-height: 32px;
	text-align: center;
}
.noresult__image {
	display: block;
	height: auto;
	width: 100%;
}
.noresult__button {
	background-color: #242424;
	border-radius: 6px;
	cursor: pointer;
	display: inline-block;
	margin-top: 40px;
	padding: 16px 24px 16px 32px;
}
.noresult__button:hover {
	background-color: #141414;
}
.noresult__button-label {
	color: #FFF;
	display: block;
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	margin-right: 8px;
}
.noresult__button-icon {
	display: block;
	fill: #FFF;
	height: 20px;
	width: 20px;
}

/* Index page */
.index-search {
	padding-top: 48px;
	width: 100%;
}
.index-search__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.index-brands {
	padding: 64px 0;
	width: 100%;
}
.index-brands__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.index-brands__title {
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	margin-bottom: 8px;
	text-align: center;
}
.indexbrands-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.indexbrands-row__item {
	padding: 24px 10px 0;
}
.indexbrands-row__item-link {
	background-color: #EEF2F7;
	border-radius: 20px;
	color: #141414;
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	padding: 8px 16px;
	text-align: center;
}
.indexbrands-row__item-link:hover {
	background-color: #242424;
	color: #FFF;
	text-decoration: none;
}
.index-brands__link {
	padding-top: 32px;
	text-align: center;
}
.indexbrands-link {
	display: inline-block;
}
.indexbrands-link__grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.indexbrands-link__grid-label {
	color: #007AFF;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	margin-right: 4px;
}
.indexbrands-link__grid-icon {
	height: 16px;
	fill: #007AFF;
	width: 16px;
}
.indexbrands-link:hover .indexbrands-link__grid-label {
	color: #006BE0;
	text-decoration: underline;
}
.indexbrands-link:hover .indexbrands-link__grid-icon {
	fill: #006BE0;
}
.index-catalog {
	padding: 64px 0;
	width: 100%;
}
.index-catalog--new {
	padding-bottom: 32px;
}
.index-catalog__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.index-catalog__headline {
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
}
.index-video {
	background-color: #FFEBE4;
	background-image: url('../images/index-video__bg.svg');
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
	margin: 0 auto;
	max-width: 1080px;
	padding: 64px 48px;
	width: 100%;
}
.index-video__wrapper {
	width: 100%;
}
.index-video__headline {
	color: #141414;
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	margin: 0 0 24px 0;
}
.index-video__text {
	color: #616166;
	font-size: 16px;
	line-height: 24px;
}
.index-video__player {
	background-color: #FFF;
	background-image: url('../images/index-video__player-bg--desktop.jpg');
	background-size: cover;
	border-radius: 10px;
	display: block;
	height: 1px;
	padding-bottom: 100%;
	position: relative;
}
.index-video__player-button {
	background-color: #FFF;
	border-radius: 50%;
	cursor: pointer;
	display: block;
	height: 64px;
	left: 50%;
	padding: 16px;
	position: absolute;
	top: 50%;
	width: 64px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.index-video__player-button .icon {
	fill: #141414;
	height: 32px;
	width: 32px;
}
.index-video__player-button:hover {
	background-color: #007AFF;
}
.index-video__player-button:hover .icon {
	fill: #FFF;
}
.index-points {
	background-color: #D9F0FA;
	background-image: url('../images/index-points__bg.svg');
	background-position: center bottom;
	background-repeat: no-repeat;
	border-radius: 10px;
	margin: 0 auto;
	max-width: 1080px;
	overflow: hidden;
	padding: 64px 48px;
	position: relative;
}
.index-points__headline {
	color: #141414;
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	margin: 0 0 24px 0;
}
.index-points__text {
	color: #616166;
	font-size: 16px;
	line-height: 24px;
}
.index-points__item {
	margin-top: 48px;
}
.index-points__item-value {
	color: #141414;
	font-size: 80px;
	font-weight: 600;
	line-height: 80px;
	margin-bottom: 8px;
}
.index-points__item-value--link {
	display: inline-block;
	position: relative;
}
.index-points__item-valueicon {
	background-color: #808D9A;
	border-radius: 50%;
	bottom: 10px;
	display: block;
	fill: #FFF;
	height: 24px;
	padding: 6px;
	position: absolute;
	right: -36px;
	width: 24px;
}
.index-points__item-value--link:hover {
	color: #007AFF;
}
.index-points__item-value--link:hover .index-points__item-valueicon {
	background-color: #007AFF;
}
.index-points__item-valuepsan {
	font-size: 56px;
	line-height: 56px;
}
.index-points__item-caption {
	color: #616166;
	display: block;
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
}
.index-reviews {
	background-color: #E1F0F0;
	background-image: url('../images/index-reviews__bg.svg');
	background-position: center bottom;
	background-repeat: no-repeat;
	border-radius: 10px;
	margin: 0 auto 64px auto;
	max-width: 1080px;
	overflow: hidden;
	padding: 64px 48px;
}
.index-reviews__headline {
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
}
.index-reviews__headline-span {
	display: block;
	margin-left: 0 !important; 
}
.index-reviews__text {
	color: #616166;
	font-size: 16px;
	line-height: 24px;
	margin: 24px 0 48px;
}
.indexreviews-scroll {
	overflow: hidden;
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	-webkit-overflow-scrolling: touch;
	position: relative;
	width: 100vw;
}
.indexreviews-scroll__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	flex-wrap: nowrap;
	padding-bottom: 20px;
	position: relative;
	animation: animationScrollReviews 120s linear infinite;
}
.indexreviews-scroll__row--2 {
	transform: translateX(-100px);
}
@-webkit-keyframes animationScrollReviews {
	to {
		-webkit-transform: translateX(-116%);
	}
}
@keyframes animationScrollReviews {
	to {
		transform: translateX(-116%);
	}
}
.indexreviews-scroll__row-item {
	-ms-flex-preferred-size: 400px;
	flex-basis: 400px;
	max-width: 400px;
	flex: 0 0 auto;
	padding-left: 10px;
	padding-right: 10px;
}
.indexreview {
	background-color: #FFF;
	border-radius: 6px;
	display: block;
	height: 100%;
	padding: 16px;
}
.indexreview__text {
	font-size: 16px;
	line-height: 24px;
	margin-top: 16px;
}
.indexreview__user-name {
	color: #8E8E93;
	font-size: 16px;
	line-height: 24px;
}
.indexreview__user-rating {
	display: block;
	height: 16px;
	width: auto;
}

/* Account */
.pagination {
	padding-top:10px;
	display:inline-block;
	width:100%;
	margin:15px 0 0;
}
.pagination .links a {
	display:inline-block;
	color:#000;
	border-radius:15px;
	line-height:inherit;
	float:none;
	background:#EEEEEE;
	padding:9px 15px;
}
.pagination .links a:hover {
	background:#F5F5F5;
}
.pagination .links b {
	display:inline-block;
	color:#fff;
	border-radius:15px;
	font-weight:400;
	background:#45B2EF;
	padding:10px 15px;
}
.pagination .results {
	float:right;
	padding-top:3px;
}
.order-list,.return-list,.download-list {
	margin-bottom:10px;
}
	
.order-list .order-id,.return-list .return-id,.download-list .download-id {
	width:49%;
	float:left;
	margin-bottom:2px;
}	
.order-list .order-status,.return-list .return-status,.download-list .download-status {
	width:49%;
	float:right;
	text-align:right;
	margin-bottom:2px;
}
.order-list .order-content,.return-list .return-content,.download-list .download-content {
	display:inline-block;
	width:100%;
	margin-bottom:20px;
	border-top:1px solid #EEE;
	border-bottom:1px solid #EEE;
	padding:10px 0;
}
.order-list .order-content div,.return-list .return-content div,.download-list .download-content div {
	float:left;
	width:33.3%;
}
[class*="span"] {
	margin-left: 20px;
}
.pagination .links,
.product-info > .right,
.right-sm-related .image img,
.return-captcha,
#footer_cr_content #payment_logos {
	float: left;
}
.buttons {
	overflow:auto;
	margin-bottom:20px;
	padding:6px;
}
.buttons .left {
	float:left;
	text-align:left;
}
.buttons .center {
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}
.buttons .right,
#footer_cr_content #follow_us {
	float: right;
	text-align: right;
}
table.form, .wishlist-info table, .checkout-product table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
table.form td {
	padding: 4px;
}
.category-list a, table.form > * > * > td {
	color: #292929;
}
input[type='text'], input[type='password'], input[type='email'], input[type='tel'], textarea {
	background: none repeat scroll 0 0 #FFF;
	border-color: #D8D8D8;
	border-style: solid;
	border-width: 1px;
	border-radius: 4px;
	height: 48px;
	font-size: 16px;
	line-height: 24px;
	padding: 12px 16px;
}

/* Catalog pagination */
.scroll-links {
	font-size: 8px;
	line-height: 24px;
}
.scroll-links > b {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}
.scroll-links > a {
	font-size: 16px;
	line-height: 24px;
}

/* Simple checkout*/
fieldset.form-horizontal {
	display: block;
	position: relative;
	list-style: none outside;
	font-size: 0;
	line-height: 0;
	letter-spacing : -.36em;
	box-sizing: border-box;
	padding: 0 10px;
	max-width: 740px;
	width: 100%;
}
fieldset.form-horizontal > .form-group {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: normal;
	box-sizing: border-box;
	text-align: left;
	vertical-align: top;
}
.form-group.row-customer_register {
	width: 100%;
}
.form-group.row-shipping_address_lastname,
.form-group.row-customer_email,
.form-group.row-shipping_address_firstname,
.form-group.row-customer_telephone,
.form-group.row-shipping_address_zone_id,
.form-group.row-shipping_address_city,
.form-group.row-customer_password,
.form-group.row-customer_confirm_password {
	padding: 10px;
	width: 50%;
}
.form-group.row-customer_confirm_password {
	margin-bottom: 30px;
}
.form-group.row-shipping_address_address_1 {
	padding: 10px;
	width: 66.66%;
}
.form-group.row-shipping_address_postcode {
	padding: 10px;
	width: 33.33%;
}
.form-group .form-control {
	box-sizing: border-box;
	border-radius: 2px;
	height: 40px;
	padding: 9px 10px;
	width: 100%;
	-webkit-transition: border-color .35s ease;
	transition: border-color .35s ease;
}
.form-group .form-control:focus {
	border-color: #2196F3;
}
.form-group.row-shipping_address_lastname .control-label,
.form-group.row-customer_email .control-label,
.form-group.row-shipping_address_firstname .control-label,
.form-group.row-customer_telephone .control-label,
.form-group.row-shipping_address_zone_id .control-label,
.form-group.row-shipping_address_city .control-label,
.form-group.row-shipping_address_address_1 .control-label,
.form-group.row-shipping_address_postcode .control-label,
.form-group.row-customer_password .control-label,
.form-group.row-customer_confirm_password .control-label {
	color: #9E9E9E;
	font-weight: 400;
	padding-top: 0;
	text-align:left;
}
.form-group.row-customer_register .radio {
	display: inline-block;
}
.form-group.row-customer_register .radio:first-child {
	padding-left: 0;
}
.form-group.row-customer_register .control-label {
	margin-bottom: 5px;
	text-align:left;
}
.form-group.row-customer_register .radio input[type="radio"] {
	margin-right: 5px;
}
.form-group .form-control:focus {
	border-color: #007AFF;
}

/* Cart popup */
#cartpopup .icon_success_27x27 {
	background: url("../images/icon_success_27x27_24.png") no-repeat scroll 0 50% transparent;
	display: inline;
	line-height: 27px;
	min-height: 27px;
	padding: 5px 0 0 35px;
}

#cartpopup {
	max-width:100%; 
	display:none;
	box-sizing: border-box;
}

#cartpopup .cart {
	padding-top: 10px;
}
#cartpopup .cart-header {
	font-size: 16px; padding-left: 5px;
}
#cartpopup .cart-total {
	display: inline;
	float: right;
	border-top: medium none;
	margin-bottom: 0;
	padding-top: 0;
}
#cartpopup .mini-cart-info {
	margin-bottom: 5px;
	max-height: 300px;
	min-height: 60px;
	overflow-y: auto;
}

#cartpopup .mini-cart-info td {
	padding: 3px 5px;
}

#cartpopup *{
	-moz-box-sizing: border-box;
}

#cartpopup.well, #cartpopup .well {
	background-color: #FFFFFF;
		-webkit-box-shadow: 0 7px 8px -4px rgba(0,0,0,0.2), 0 13px 19px 2px rgba(0,0,0,0.14), 0 5px 24px 4px rgba(0,0,0,0.12);
	box-shadow: 0 7px 8px -4px rgba(0,0,0,0.2), 0 13px 19px 2px rgba(0,0,0,0.14), 0 5px 24px 4px rgba(0,0,0,0.12);
	padding: 30px 30px 15px;
	margin-bottom: 20px;
	min-height: 20px;
	border-left: none;
	border-right: none;
	width:700px;
	border-top: solid 7px #3498db;
}
#cartpopup .btn-success {
	background-color: #5CB85C;
	border-color: #4CAE4C;
	color: #FFFFFF;
}
#cartpopup .btn {
	-moz-user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px 4px 4px 4px;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857;
	margin-bottom: 0;
	padding: 6px 12px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}
#cartpopup a {
	color: #428BCA;
	text-decoration: none;
}
#cartpopup h4, .h4 {
	font-size: 18px;
	color: #00A930;
}
#cartpopup h4, h5, h6 {
	margin-bottom: 10px;
	margin-top: 10px;
}
#cartpopup h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	color: inherit;
	font-family: Inter,Helvetica,Arial,sans-serif;
	font-weight: 500;
	line-height: 1.1;
}

#cartpopup p {
	margin: 0 0 10px;
}
#cartpopup .btn-default {
	background-color: #FFFFFF;
	border-color: #CCCCCC;
	color: #333333;
}

/* Dropzone */
.dropzone, .dropzone * {
	box-sizing: border-box;
}
  
.dropzone {
	min-height: 128px;
	border: 2px dashed rgba(0, 0, 0, 0.3);
	background: white;
	padding: 20px 20px;
}
.dropzone.dz-clickable {
	cursor: pointer;
}
.dropzone.dz-clickable * {
	cursor: default;
}
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
	cursor: pointer;
}
.dropzone.dz-started .dz-message {
	display: none;
}
.dropzone.dz-drag-hover {
	border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
	opacity: 0.5;
}
.dropzone .dz-message {
	text-align: center;
	margin: 2em 0;
}
.dropzone .dz-message .dz-button {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
.dropzone .dz-preview {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 16px;
	min-height: 100px;
}
.dropzone .dz-preview:hover {
	z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
	opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
	border-radius: 20px;
	background: #999;
	background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
	opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
	background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
	-webkit-transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	-ms-transition: opacity 0.2s linear;
	-o-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
	font-size: 14px;
	text-align: center;
	display: block;
	cursor: pointer;
	border: none;
}
.dropzone .dz-preview .dz-remove:hover {
	text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
	opacity: 1;
}
.dropzone .dz-preview .dz-details {
	z-index: 20;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	font-size: 13px;
	min-width: 100%;
	max-width: 100%;
	padding: 2em 1em;
	text-align: center;
	color: rgba(0, 0, 0, 0.9);
	line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
	margin-bottom: 1em;
	font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
	white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
	border: 1px solid rgba(200, 200, 200, 0.8);
	background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
	overflow: hidden;
	text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
	border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
	background-color: rgba(255, 255, 255, 0.4);
	padding: 0 0.4em;
	border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
	-webkit-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
	-webkit-filter: blur(8px);
	filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
	border-radius: 20px;
	overflow: hidden;
	width: 120px;
	height: 120px;
	position: relative;
	display: block;
	z-index: 10;
}
.dropzone .dz-preview .dz-image img {
	display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
	-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
	opacity: 1;
	-webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	-ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	-o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
	pointer-events: none;
	opacity: 0;
	z-index: 500;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	margin-left: -27px;
	margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
	display: block;
	width: 54px;
	height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
	opacity: 1;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-in;
	-moz-transition: opacity 0.4s ease-in;
	-ms-transition: opacity 0.4s ease-in;
	-o-transition: opacity 0.4s ease-in;
	transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
	-webkit-animation: pulse 6s ease infinite;
	-moz-animation: pulse 6s ease infinite;
	-ms-animation: pulse 6s ease infinite;
	-o-animation: pulse 6s ease infinite;
	animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
	opacity: 1;
	z-index: 1000;
	pointer-events: none;
	position: absolute;
	height: 16px;
	left: 50%;
	top: 50%;
	margin-top: -8px;
	width: 80px;
	margin-left: -40px;
	background: rgba(255, 255, 255, 0.9);
	-webkit-transform: scale(1);
	border-radius: 8px;
	overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
	background: #333;
	background: linear-gradient(to bottom, #666, #444);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	-webkit-transition: width 300ms ease-in-out;
	-moz-transition: width 300ms ease-in-out;
	-ms-transition: width 300ms ease-in-out;
	-o-transition: width 300ms ease-in-out;
	transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
	display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
	opacity: 1;
	pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
	pointer-events: none;
	z-index: 1000;
	position: absolute;
	display: block;
	display: none;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	border-radius: 8px;
	font-size: 13px;
	top: 130px;
	left: -10px;
	width: 140px;
	background: #be2626;
	background: linear-gradient(to bottom, #be2626, #a92222);
	padding: 0.5em 1.2em;
	color: white;
}
.dropzone .dz-preview .dz-error-message:after {
	content: '';
	position: absolute;
	top: -6px;
	left: 64px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #be2626;
}

/* PVZS */
.pvzs table {
	width:100%;
	border:#ddd 1px solid;
	border-collapse:collapse;
	margin:20px 0 20px 0;
}
.pvzs table td{
	padding:10px 5px 10px 5px;
	border-bottom:#ddd 1px solid;
}
.pvzs table thead td{
	padding:10px;
	font-weight:bold;
}
.pvzs table td b{
	font-weight:bold;
}
.pvzs table td a{
	border-bottom: 1px dotted;
	text-decoration:none;
	line-height:25px;
}
.pvzs table td a:hover{
	border-bottom: none;
	text-decoration:none;
}
.shipping-cost-info{

}
.shipping-cost-info b{
	font-weight:bold;
}
.shipping-cost-info .shipping-cost-head{
	padding: 10px;
	font-weight: bold;
		border-bottom: #ddd 1px solid;
}
.shipping-cost-info .shipping-cost-body{
	padding:10px;
}
.box-content p{
	margin-bottom:10px;
}

/* GeoIP */
.geoip-module,
.geoip-text {
	display: inline-block;
}
.checkout-heading .geoip-module {
	color: #007AFF;
	cursor: pointer;
}
.checkout-heading .geoip-module:hover .zone {
	text-decoration: underline;
}
.geoip-block
{
	position: relative;
}
.geoip-block .ui-autocomplete
{
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-left: 0;
	left: 0 !important;  /* <-- добавь эту строку */
}

* html .geoip-block .ui-autocomplete
{
	height: 300px;
}

.geoip-choose-region .i {
	display: block;
	margin-bottom: 0;
}
.geoip-choose-region .i a {
	color: #141414;
	cursor: pointer;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	padding: 8px 12px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color .15s;
}
.geoip-choose-region .i a:hover {
	background-color: #F5F7F9;
	color: #007AFF;
}
.geoip-choose-region h2 {
	color: #141414;
	font-family: Inter, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin: 0;
	padding: 0 0 20px;
}
.geoip-choose-region .geoip-block {
	margin: 0 0 16px;
}
.geoip-choose-region .geoip-block .geoip-popup-input {
	background-color: #F5F7F9;
	border: 1px solid #E5E5EA;
	border-radius: 10px;
	box-sizing: border-box;
	color: #141414;
	font-family: Inter, sans-serif;
	font-size: 15px;
	line-height: 22px;
	min-width: 150px;
	outline: none;
	padding: 12px 16px;
	transition: border-color .2s, background-color .2s;
	width: 100%;
}
.geoip-choose-region .geoip-block .geoip-popup-input:focus {
	background-color: #fff;
	border-color: #007AFF;
	box-shadow: 0 0 0 3px rgba(0, 122, 255, .12);
}
.geoip-choose-region .geoip-block .geoip-popup-input::placeholder {
	color: #8E8E93;
}
.geoip-choose-region .border {
	border-bottom: 1px solid #E5E5EA;
	margin: 0 0 8px;
}

.geoip-confirm-region
{
	text-align: center;
	font-size: 16px;
	line-height: 20px;
}

.geoip-confirm-region.geoip-custom-popup
{
	border-radius: 4px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
	position: absolute;
	top: 24px;
	left: 0;
	background: #FFF;
	padding: 16px 24px;
	min-width: 200px;
	max-width: 400px;
	z-index: 106;
	}
.header-location:hover .geoip-confirm-region.geoip-custom-popup {
	color: #141414;
}
.geoip-custom-popup .geoip-confirm-buttons
{
	margin-top: 15px;
}

.geoip-custom-popup .geoip-confirm-buttons input[type=button]
{	
	border: none;
	border-radius: 4px;
	font-family: Inter, sans-serif;
	color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
	padding: 4px 14px;
	cursor: pointer;
	width: 64px;
}

.geoip-custom-popup .geoip-confirm-buttons input[type=button].geoip-confirm-yes
{
	background-color: #007AFF;
}

.geoip-custom-popup .geoip-confirm-buttons input[type=button].geoip-confirm-yes:hover
{
	background-color: #0070EB;
}

.geoip-custom-popup .geoip-confirm-buttons input[type=button].geoip-confirm-no
{
	background-color: #F5F7F9;
	color: #141414;
}

.geoip-custom-popup .geoip-confirm-buttons input[type=button].geoip-confirm-no:hover
{
	background-color: #EEE;
}

.geoip-choose-region.geoip-custom-popup {
	padding: 32px;
	z-index: 9999;
}
.geoip-modal-open {
	overflow: hidden;
}
.geoip-modal {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	outline: 0 none;
	overflow: hidden;
	right: 0;
	top: 0;
	z-index: 9999;
}
.geoip-modal-open .geoip-modal {
	overflow-x: hidden;
	overflow-y: auto;
}
.geoip-backdrop {
	background-color: #000;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}
.geoip-backdrop.geoip-fade {
	opacity: 0;
}
.geoip-fade.geoip-in {
	opacity: 1;
}
.geoip-backdrop.geoip-in {
	opacity: .4;
}
.geoip-modal-dialog {
	margin: 60px auto 30px;
	max-width: 560px;
	position: relative;
	width: auto;
}
.geoip-modal-content {
	background-clip: padding-box;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
	min-height: 240px;
	outline: 0 none;
	position: relative;
}
.geoip-modal-dialog .geoip-close {
	align-items: center;
	background: #F5F7F9;
	border: none;
	border-radius: 50%;
	color: #8E8E93;
	cursor: pointer;
	display: flex;
	font-size: 20px;
	height: 32px;
	justify-content: center;
	line-height: 1;
	opacity: 1;
	position: absolute;
	right: 16px;
	top: 16px;
	transition: background-color .15s, color .15s;
	width: 32px;
	z-index: 1;
}
.geoip-modal-dialog .geoip-close:hover {
	background: #E5E5EA;
	color: #141414;
	opacity: 1;
}
.geoip-modal-dialog .geo-col {
	box-sizing: border-box;
	float: left;
	width: 33.333%;
}

  /* Фикс отступа для autocomplete */
  .geoip-block .ui-autocomplete {
      left: 0 !important;
  }

  /* Фикс для мобильных */
  @media (max-width: 768px) {
      .geoip-modal .ui-autocomplete,
      .geoip-block .ui-autocomplete {
          position: fixed !important;
          left: 15px !important;
          right: 15px !important;
          width: auto !important;
          max-width: calc(100vw - 30px);
          max-height: 50vh;
          z-index: 10001;
      }
  }

.ui-menu {
	border: 1px solid #E5E5EA;
	border-radius: 4px;
	box-shadow: 0 8px 12px rgba(20, 20, 20, .12);
	list-style: none;
	margin: 0;
	max-height: 338px;
	overflow-y: auto;
	padding: 0;
}
.ui-menu::-webkit-scrollbar {
	width: 4px;
}
.ui-menu::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 2px;
}
.ui-menu::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 2px;
}
.ui-menu:hover::-webkit-scrollbar-track {
	background-color: #E5E5EA;
}
.ui-menu:hover::-webkit-scrollbar-thumb {
	background-color: #C7C7CC;
}
.ui-menu:hover::-webkit-scrollbar-thumb:active {
	background-color: #8E8E93;
}

.ui-menu .ui-menu {
margin-top:-3px;
}

.ui-menu .ui-menu-item {
	color: #141414;
	cursor: pointer;
	display: block;
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 12px;
}
.ui-menu .ui-menu-item:hover {
	background-color: #EEF2F7;
}

.ui-menu .ui-menu-item a {
text-decoration:none;
display:block;
line-height:1.5;
zoom:1;
padding:.2em .4em;
}

/* Categories list */
.manufacturer-list {
	display: inline-block;
	vertical-align: top;
	width: 24%;
}
.manufacturer-heading {
	background: #F8F8F8;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
	padding: 5px 8px;
}
.manufacturer-content ul {
	list-style: none;
	padding: 0;
}
.manufacturer-content {
	padding-top: 8px;
}

/* Account */
.account {
	min-height: calc(100vh - 595px);
	padding: 48px 0;
	width: 100%;
}
.account__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.account__headline {
	border-bottom: 2px solid #141414;
	color: #141414;
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	padding-bottom: 24px;
}
.account__title {
	color: #141414;
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	margin: 0 0 24px;
}
.account-menu {
	position: sticky;
	top: 48px;
}
.account-menu__item {
	display: flex;
	margin-bottom: 20px;
}
.account-menu__item:last-child {
	margin-bottom: 0;
}
.account-menu__item-label {
	color: #141414;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	position: relative;
	z-index: 1;
}
.account-menu__item-label:hover {
	color: #007AFF;
	text-decoration: none;
}
.account-menu__item-label--is-change {
	cursor: default;
	font-weight: 400;
}
.account-menu__item-label--is-change:hover {
	color: #141414;
}
.account-menu__item-label--is-change::before {
	background-color: #D9F0FA;
	border-radius: 4px;
	bottom: -4px;
	content: '';
	left: -8px;
	position: absolute;
	right: -8px;
	top: -4px;
	z-index: -1;
}
.account-orderlist__empty {
	display: block;
	font-size: 16px;
	line-height: 24px;
	margin-top: 40px;
	width: 100%;
}
.account-orderlist__row {
	border-bottom: 1px solid #E5E5EA;
	display: block;
	padding: 24px 0;
	position: relative;
}
.account-orderlist__item {
	display: block;
}
.account-orderlist__item-caption {
	color: #8E8E93;
	display: block;
	font-size: 14px;
	line-height: 20px;
}
.account-orderlist__item-value {
	color: #141414;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.account-orderlist__row:hover .account-orderlist__item-value--number {
	color: #007AFF;
}
.account-orderlist__item-value--accent-01 {
	color: #16C67A;
}
.account-orderlist__item-value--accent-03 {
	color: #FD8948;
}
.account-profile__section {
	margin-top: 40px;
}
.account-profile__section-title {
	color: #141414;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
}
.accout-profile__input {
	margin-top: 24px;
}
.accout-profile__input .input__label {
	white-space: nowrap;
}
.account-profile__input-label {
	font-size: 16px;
	line-height: 24px;
}
.account-profile__button {
	background-color: #007AFF;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 40px;
	padding: 12px 24px;
	text-align: center;
}
.account-profile__button:hover {
	background-color: #0070EB;
}
.account-addresses {
	margin-top: 40px;
}
.account-addresses__item {
	background-color: #F5F7F9;
	border-radius: 4px;
	display: block;
	margin-bottom: 20px;
	padding: 20px
}
.account-addresses__item-title {
	color: #141414;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 8px;
}
.account-addresses__item-caption {
	color: #141414;
	display: block;
	font-size: 16px;
	line-height: 24px;
}
.account-addresses__item-link {
	color: #007AFF;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 12px;
}
.account-addresses__item-link:hover {
	color: #0070EB;
	text-decoration: underline;
}
.account-addresses__item-remove {
	cursor: pointer;
	display: block;
	fill: #8E8E93;
	height: 32px;
	margin-left: 12px;
	width: 32px;
}
.account-addresses__item-remove:hover {
	fill: #141414;
}
.account-addresses__button {
	background-color: #007AFF;
	border-radius: 4px;
	cursor: pointer;
	display: inline-block;
	padding: 12px 24px;
}
.account-addresses__button:hover {
	background-color: #0070EB;
}
.account-addresses__button-label {
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.account-addresses__button-icon {
	display: block;
	fill: #FFF;
	height: 24px;
	margin-right: 8px;
	width: 24px;
}

/* Colorbox */
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:hidden; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
#cboxOverlay{background:url(../images/overlay.png) repeat 0 0;}
#colorbox{outline:0;}
#cboxTopLeft{width:21px; height:21px; background:url(../images/controls.png) no-repeat -101px 0;}
#cboxTopRight{width:21px; height:21px; background:url(../images/controls.png) no-repeat -130px 0;}
#cboxBottomLeft{width:21px; height:21px; background:url(../images/controls.png) no-repeat -101px -29px;}
#cboxBottomRight{width:21px; height:21px; background:url(../images/controls.png) no-repeat -130px -29px;}
#cboxMiddleLeft{width:21px; background:url(../images/controls.png) left top repeat-y;}
#cboxMiddleRight{width:21px; background:url(../images/controls.png) right top repeat-y;}
#cboxTopCenter{height:21px; background:url(../images/border.png) 0 0 repeat-x;}
#cboxBottomCenter{height:21px; background:url(../images/border.png) 0 -29px repeat-x;}
#cboxContent{background:#fff; overflow:hidden;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{/* margin-bottom:28px; */margin-bottom:0px;}
#cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
#cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
#cboxLoadingOverlay{background:url(../images/loading_background.png) no-repeat center center;}
#cboxLoadingGraphic{background:url(../images/loading.gif) no-repeat center center;}
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}
#cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
#cboxPrevious{position:absolute; bottom:0; left:0; background:url(../images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
#cboxPrevious:hover{background-position:-75px -25px;}
#cboxNext{position:absolute; bottom:0; left:27px; background:url(../images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
#cboxNext:hover{background-position:-50px -25px;}
#cboxClose{position:absolute; top:0; right:0; background:url(../images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
#cboxClose:hover{background-position:-25px -25px;}
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/* Content fix */
.span12 {
	width: 100%;
}

/* Brandlist */
.brands-list {
	padding: 48px 0;
}
.brands-list__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}
.brands-list__headline {
	color: #141414;
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	margin: 0 0 24px;
}

/* Search */
.brands-search {
	margin-bottom: 24px;
}
.brands-search__input {
	width: 100%;
	max-width: 400px;
	padding: 10px 16px;
	border: 1px solid #D1D5DB;
	border-radius: 8px;
	font-size: 15px;
	outline: none;
	box-sizing: border-box;
}
.brands-search__input:focus {
	border-color: #007AFF;
	box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Popular brands */
.brands-popular {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #E5E7EB;
}
.brands-popular__title {
	font-size: 15px;
	font-weight: 500;
	color: #6B7280;
	margin-bottom: 14px;
}
.brands-popular__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.brands-popular__item {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #141414;
	text-decoration: none;
	transition: all 0.15s;
}
.brands-popular__item:hover {
	background-color: #007AFF;
	border-color: #007AFF;
	color: #FFF;
}

/* Horizontal alphabet nav */
.brands-alphabet--horizontal {
	display: flex !important;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #E5E7EB;
}
.brands-alphabet--horizontal a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #141414;
	text-decoration: none;
	transition: all 0.15s;
	position: static;
	margin: 0;
	line-height: normal;
}
.brands-alphabet--horizontal a::after {
	content: none !important;
}
.brands-alphabet--horizontal a:hover {
	background-color: #007AFF;
	color: #FFF;
}

/* Brand list */
.brandslist {
	columns: 6 auto;
}
.brandslist__item-body {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 24px;
	width: 100%;
}
.brandslist__item-headline {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: #007AFF;
}
.brandslist__item-block {
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-top: 8px;
}
.brandslist__item-link {
	color: #141414;
	display: inline;
	font-size: 14px;
	line-height: 20px;
}
.brandslist__item-link--popular {
	font-weight: 600;
}
.brandslist__item-link--tagged {
	font-weight: 600;
}
.brandslist__item-link:hover {
	color: #007AFF;
	text-decoration: underline;
}
.brands-alphabet {
	display: none;
}

/* Registration */
.registration {
	padding-bottom: 64px;
}
.registration__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.registration__headline {
	color: #141414;
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	margin: 44px 0 20px;
}
.registration__subtext {
	color: #141414;
	font-size: 16px;
	line-height: 24px;
}
.registration__subtext-link:hover {
	text-decoration: underline;
}
.registration-section {
	margin-top: 40px;
}
.registration-section__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
}
.registration-section__input {
	margin-top: 24px;
}
.registration-section__input .error {
	color: #FF3B30;
	display: block;
	font-size: 12px;
	line-height: 16px;
	margin-top: 4px;
}
.registration-section__input-label {
	font-size: 16px;
	line-height: 20px;
	padding-top: 14px;
}
.registration-checkbox__label {
	background-color: #E5E5EA;
	border-radius: 4px;
	cursor: pointer;
	display: block;
	height: 24px;
	position: relative;
	width: 24px;
}
.registration-checkbox__label-item,
.registration-checkbox__label-icon {
	display: none;
}
.registration-checkbox__label-icon {
	fill: #141414;
	height: 12px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
}
.registration-checkbox__label-item:checked + .registration-checkbox__label-icon {
	display: block;
}
.registration-checkbox__text {
	color: #8E8E93;
	font-size: 14px;
	line-height: 20px;
	margin-left: 12px;
}
.registration-checkbox__text-link {
	color: #8E8E93;
	text-decoration: underline;
}
.registration-checkbox__text-link:hover {
	color: #616166;
}
.registration-checkbox__error {
	color: #FF3B30;
	display: none;
	font-size: 12px;
	line-height: 16px;
	margin-top: 8px;
}
.registration-checkbox--error .registration-checkbox__error {
	display: block;
}
.registration-button {
	background-color: #007AFF;
	border-radius: 6px;
	color: #FFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 20px;
	padding: 16px 32px;
	text-align: center;
}
.registration-button:hover {
	background-color: #0070EB;
}

/* Contacts */
.contacts {
	padding-bottom: 64px;
}
.contacts__wrapper {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}
.contacts-section {
	margin-top: 48px;
}
.contacts-section__title {
	color: #141414;
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
	margin: 0;
}
.contacts-section__subhead {
	font-size: 20px;
	line-height: 32px;
	margin: 20px 0 32px;
}
.contacts-methods__item {
	background-color: #F5F7F9;
	border-radius: 6px;
	display: block;
	padding: 20px
}
.contacts-methods__item-icon {
	background-color: #F56040;
	border-radius: 50%;
	display: block;
	fill: #FFF;
	height: 48px;
	padding: 12px;
	width: 48px;
}

/* Для MAX делаем фиолетовый фон и белую иконку */
.contacts-methods__item[href*="max.ru"] .contacts-methods__item-icon {
    background-color: #6E1AFF;
    fill: #FFF;
}

.contacts-methods__item:hover .contacts-methods__item-icon {
	background-color: #141414;
}
/* У TG фон задан градиентом (background-image) — гасим его, иначе ховер-затемнение не видно */
.contacts-methods__item:hover .header-telegram-icon {
	background: #141414;
}
.contacts-methods__item-value {
	color: #141414;
	display: block;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin: 16px 0 4px;
}
.contacts-methods__item-caption {
	color: #616166;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.contacts-delivery {
	margin-top: 32px;
}
.contacts-delivery__info-logo {
	display: block;
	height: auto;
	margin-right: 16px;
	width: 96px;
}
.contacts-delivery__info-title {
	color: #141414;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
}
.contacts-delivery__info-text {
	color: #141414;
	font-size: 16px;
	line-height: 24px;
	margin-top: 16px;
}
.contacts-delivery__method {
	border: 2px solid #E5E5EA;
	border-radius: 6px;
	display: block;
	margin-top: 24px;
	padding: 20px;
}
.contacts-delivery__method-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.contacts-delivery__method-caption {
	color: #8E8E93;
	font-size: 14px;
	line-height: 20px;
	margin: 4px 0 24px;
}
.contacts-delivery__method-price {
	color: #141414;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
}
.contacts-section__link {
	color: #007AFF;
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	margin-top: 32px;
}
.contacts-section__link:hover {
	text-decoration: underline;
}
.contacts-form {
	margin-top: 48px;
}
.contacts-form__title {
	color: #141414;
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
}
.contacts-form__item {
	margin-top: 20px;
}
.contacts-form__captcha {
	margin-top: 20px;
}
.contacts-form__button {
	background-color: #007AFF;
	border-radius: 4px;
	color: #FFF;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 20px;
	padding: 16px 0;
	text-align: center;
	cursor: pointer;
}
.contacts-form__button:hover {
	background-color: #0070EB;
}
.contacts-delivery-points {
	margin-top: 32px;
}
.contacts-delivery-points__title {
	border-bottom: 1px solid #E5E5EA;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: Inter, sans-serif;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 16px;
}
.contacts-delivery-points__title-label {
	color: #141414;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
}
.contacts-delivery-points__title-links {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -6px;
}
.contacts-delivery-points__title-linklabel {
	font-size: 14px;
	line-height: 20px;
}
.contacts-delivery-points__title-linkitem {
	color: #007AFF;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 6px;
}
.contacts-delivery-points__title-linkitem--disable {
	color: #141414;
}
.contacts-delivery-points__body {
	display: none;
}
.contacts-delivery-points__body--active {
	display: block;
}
.delivery-points {
	border-bottom: 1px solid #E5E5EA;
	overflow-y: auto;
	max-height: 400px;
	position: relative;
}
.delivery-points::-webkit-scrollbar {
	width: 4px;
}
.delivery-points::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 2px;
}
.delivery-points::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 2px;
}
.delivery-points:hover::-webkit-scrollbar-track {
	background-color: #E5E5EA;
}
.delivery-points:hover::-webkit-scrollbar-thumb {
	background-color: #C7C7CC;
}
.delivery-points:hover::-webkit-scrollbar-thumb:active {
	background-color: #8E8E93;
}
.dmenu-scrollbar__wrapper:hover::-webkit-scrollbar-button {
	background-color: #FFF;
	display: block;
	height: 16px;
	pointer-events: none;
	width: 0;
}
.delivery-points__item {
	padding: 20px 0;
	position: relative;
}
.delivery-points__item::before {
	background-color: #E5E5EA;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
}
.delivery-points__item::before {
	top: -1px;
}
.delivery-points__item-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 4px;
}
.delivery-points__item-caption {
	color: #8E8E93;
	font-size: 14px;
	line-height: 20px;
}
.delivery-points__item-calendar {
	color: #141414;
	font-size: 14px;
	line-height: 20px;
}
.delivery-points__item-calendarspan {
	color: #8E8E93;
	display: block;
	margin: 0;
}
.contacts-info {
	margin-top: 48px;
}
.contacts-info__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 16px;
}
.contacts-into__row {
	font-size: 16px;
	line-height: 24px;
	margin-top: 12px;
}

.contacts-section__title .geoip-module{
	cursor: pointer;
	color: #007AFF;
}

/* Products model list */
.product-models-list {
	columns: 4 auto;
	list-style: none;
	padding: 0;
}
.product-models-list > li {
	display: block;
	padding: 4px 0;
}

#rp-russianpost2_rp3 > div, #rp-russianpost2f1_rp3 > div, .rp_opis, #rp-russianpost2_rp4 > div{
	display:none!important;
}
#russianpost2_rp3, #russianpost2f1_rp3, #russianpost2_rp4{
	display:none!important;
}

@media screen and (min-width: 768px) {
	.geoip-modal-dialog {
		margin: 60px auto 30px;
		max-width: 560px;
	}
}
@media screen and (max-width: 767px) {
	.geoip-modal-dialog {
		margin: 16px;
	}
	.geoip-choose-region.geoip-custom-popup {
		padding: 24px 20px;
	}
	.geoip-modal-dialog .geo-col {
		width: 50%;
	}
	.geoip-choose-region .i a {
		font-size: 14px;
		padding: 7px 10px;
	}
}

@media screen and (max-width: 992px) {
	/* Midsection */
	#midsection {
		min-height: calc(100vh - 657px);
	}

	.grid__col--1-mt {
		-ms-flex-preferred-size: 8.33%;
		flex-basis: 8.33%;
		max-width: 8.33%;
	}
	.grid__col--2-mt {
		-ms-flex-preferred-size: 16.66%;
		flex-basis: 16.66%;
		max-width: 16.66%;
	}
	.grid__col--3-mt {
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.grid__col--4-mt {
		-ms-flex-preferred-size: 33.3%;
		flex-basis: 33.3%;
		max-width: 33.3%;
	}
	.grid__col--5-mt {
		-ms-flex-preferred-size: 41.66%;
		flex-basis: 41.66%;
		max-width: 41.66%;
	}
	.grid__col--6-mt {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.grid__col--7-mt {
		-ms-flex-preferred-size: 58.33%;
		flex-basis: 58.33%;
		max-width: 58.33%;
	}
	.grid__col--8-mt {
		-ms-flex-preferred-size: 66.66%;
		flex-basis: 66.66%;
		max-width: 66.66%;
	}
	.grid__col--9-mt {
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.grid__col--10-mt {
		-ms-flex-preferred-size: 83.33%;
		flex-basis: 83.33%;
		max-width: 83.33%;
	}
	.grid__col--11-mt {
		-ms-flex-preferred-size: 91.66%;
		flex-basis: 91.66%;
		max-width: 91.66%;
	}
	.grid__col--12-mt {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.grid__col--nomrgn-mt {
		margin: 0;
	}
	.grid__col--autofill-mt {
		flex: 1 1 0;
	}
	.grid--padding-mt {
		margin-left: 0;
		margin-right: 0;
	}
	.grid--padding-mt > .grid__col {
		padding-left: 10px;
		padding-right: 10px;
	}
	.grid--items-justify-mt {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.grid--items-center-mt {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	/* Display */
	.display--none-mt {
		display: none;
	}

	/* Login */
	.hidden-phone {
		display: none;
	}
	#lrc + #content-home,
	#lrc + #content {
		padding: 0 10px;
		width: 100%;
	}

	/* Header */
	.header-market {
		display: block;
		padding: 12px 0;
	}
	.header-market__wrapper {
		margin: 0 auto;
		padding: 0 10px;
		width: 100%;
	}
	.header-market__label {
		color: #8E8E93;
		display: block;
		font-size: 14px;
		line-height: 16px;
		margin-right: 8px;
	}
	.header-market__image {
		display: block;
		height: 12px;
		width: auto;
	}
	.header-topper {
		display: none;
	}
	.header-body__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.header-body__col--catalog {
		display: none;
	}
	.header-body__col--menubutton {
		display: block;
	}
	.header-menubtn {
		display: block;
		height: 40px;
		padding: 8px;
		width: 40px;
	}
	.header-menubtn__icon {
		height: 24px;
		fill: #101010;
		width: 24px;
	}
	.header-cart {
		-webkit-tap-highlight-color: transparent;
	}
	.header-cart__button {
		background-color: transparent;
		fill: #101010;
		height: 40px;
		padding: 8px;
		width: 40px;
	}
	.header-cart__label {
		height: 20px;
		line-height: 20px;
		width: 20px;
	}
	.header-logo__image {
		height: 40px;
	}
	.header-body__col--menubutton {
		order: 1;
	}
	.header-body__col--logo {
		order: 2;
	}
	.header-body__col--cart {
		order: 3;
	}
	.header-body__col--search {
		order: 4;
	}
	.header-body {
		padding: 20px 0;
	}
	.header-search {
		margin-top: 20px;
	}
	.header-searchbox {
		top: 188px;
	}
	.header-searchbox__wrapper {
		max-width: 100%;
		padding: 0;
	}
	.header-searchbox__section {
		margin: 16px 0;
	}
	.header-searchbox__col {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.header-searchbox__section-caption {
		text-align: left;
	}
	.header-searchbox__section-result:first-child {
		margin-top: 12px;
	}
	.header-catalog,
	.header-catalog--is-active {
		display: none;
	}
	.header-cartbox {
		top: 40px;
	}
	.header-mobile {
		background-color: #FFF;
		box-shadow: 0 -1px 0 #F2F2F2;
		height: calc(100vh - 76px);
		left: 0;
		position: absolute;
		right: 0;
		top: 112px;
		z-index: 102;
	}
	.header-mobile--is-active {
		display: block;
	}
	.header-mobile__wrapper {
		padding: 0 20px;
	}
	.header-mobile__link {
		display: block;
		padding: 16px 0;
		position: relative;
	}
	.header-mobile__link::after {
		background-color: #F2F2F2;
		bottom: 0;
		content: '';
		height: 1px;
		left: 0;
		position: absolute;
		right: 0;
	}
	.header-mobile__link:hover .header-mobile__link-label {
		color: #007AFF;
	}
	.header-mobile__link-icon {
		display: block;
		fill: #C7C7CC;
		height: 16px;
		margin-right: 8px;
		width: 16px;
	}
	.header-mobile__link-label {
		color: #101010;
		display: block;
		font-size: 16px;
		font-weight: 500;
		line-height: 24px;
	}
	.header-mobile__buttons {
		padding-top: 40px;
	}
	.header-mobile__button {
		border-radius: 4px;
		display: block;
		font-size: 16px;
		font-weight: 500;
		line-height: 24px;
		margin-bottom: 24px;
		padding: 16px 0;
		text-align: center;
		text-transform: uppercase;
	}
	.header-mobile__button--primary {
		background-color: #007AFF;
		color: #FFF;
	}
	.header-mobile__button--primary:hover {
		background-color: #0070EB;
	}
	.header-mobile__button--grey {
		background-color: #EEF2F7;
		color: #101010;
	}
	.header-mobile__button--grey:hover {
		background-color: #EEE;
	}

	/* Models page */
	.models {
		padding: 0 20px 32px;
	}
	/* .breadcrumb__link {
		font-size: 14px;
		line-height: 20px;
	} */
	.models-content__headline {
		font-size: 28px;
		line-height: 32px;
		margin: 0 0 16px;
	}
	.models-content__text {
		font-size: 14px;
		line-height: 20px;
	}
	.models-tv__button {
		margin-top: 8px;
	}
	.models-tv__info {
		top: calc(100% + 16px);
	}
	.models-product {
		padding: 20px 0;
	}
	.models-product__image {
		height: 148px;
		width: 148px;
	}
	.models-product__caption {
		font-size: 12px;
		line-height: 16px;
	}
	.models-product__price {
		font-size: 28px;
		line-height: 32px;
	}

	/* Delivery */
	.delivery {
		padding: 48px 0;
	}
	.delivery__wrapper {
		padding-left: 10px;
		padding-right: 10px;
		width: 100%;
	}
	.delivery-city__headline {
		font-size: 27px;
		line-height: 35px;
		margin: 0 0 24px;
	}
	.delivery-methods {
		margin-top: 48px;
	}
	.delivery-methods__headline {
		font-size: 24px;
		line-height: 32px;
	}
	.delivery-methods__section {
		margin-top: 32px;
	}
	.delivery-methods__section-caption {
		font-size: 14px;
		line-height: 20px;
		margin: 8px 0 16px;
	}
	.delivery-methods__section-title {
		font-size: 20px;
		line-height: 28px;
	}
	.delivery-payments {
		margin-top: 48px;
	}
	.delivery-payments__headline {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 24px;
	}
	.delivery-payment__title {
		font-size: 16px;
		line-height: 24px;
		margin: 16px 0 8px;
	}
	.delivery-payment__caption {
		font-size: 14px;
		line-height: 20px;
	}
	.delivery-payment__logo-item {
		flex-basis: 48px;
		max-width: 48px;
		height: 48px;
	}
	.delivery-payment__logo-svg {
		height: 48px;
		width: 48px;
	}

	/* Article */
	.article-content__headline {
		font-size: 32px;
		line-height: 40px;
		margin-top: 32px;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	/* Orderinfo */
	.orderinfo {
		padding: 20px 0 40px;
	}
	.orderinfo__headline {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 28px;
	}
	.orderinfo-table__title {
		padding: 24px;
	}
	.orderinfo-table__status {
		font-size: 14px;
		line-height: 20px;
	}
	.orderinfo-table__button {
		height: 48px;
		padding: 12px 0;
	}
	.orderinfo-table__body {
		padding: 24px;
	}
	.ordertabl-products__image {
		margin-right: 4px;
	}
	.ordertable-products__item {
		margin-bottom: 20px;
		width: 226px;
	}
	.ordertable__section {
		margin-bottom: 24px;
	}
	.ordertable__section-caption,
	.ordertable__section-value {
		font-size: 14px;
		line-height: 20px;
	}
	.ordertable__section-map {
		font-size: 12px;
		line-height: 16px;
	}
	.ordertable-delivery__status,
	.ordertable-delivery__date {
		font-size: 14px;
		line-height: 20px;
	}
	.ordertable-delivery__status {
		padding-left: 32px;
	}
	.ordertable-delivery__row {
		margin-bottom: 20px;
	}
	.ordertable-delivery__number {
		font-size: 14px;
		line-height: 20px;
	}
	.orderinfo-button {
		margin-top: 28px;
	}
	.orderinfo-button__item {
		padding: 12px 24px;
	}
	.order-track-form__input {
		height: 44px;
		font-size: 15px;
	}
	.order-track-form__loader {
		left: auto;
		right: 0;
	}

	/* Product page */
	.product__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.product-info {
		padding-bottom: 40px;
	}
	#midsection h1.product-title__headline,
	.product-title__headline {
		font-size: 24px;
		line-height: 32px;
		margin: 20px 0 8px;
	}
	.product-title__vencode {
		font-size: 12px;
		line-height: 16px;
		margin-right: 12px;
	}
	.product-title__rating-img {
		height: 12px;
		margin-right: 8px;
	}
	.product-noitem__caption {
		margin-top: 20px;
	}
	.product-noitem__text {
		margin: 20px 0 16px;
	}
	.product-noitem__input {
		width: 100%;
	}
	.product-noitem__price {
		font-size: 32px;
		line-height: 36px;
	}
	.product-title {
		margin: 0 0 24px;
	}
	.product-title__rating-caption {
		font-size: 12px;
		line-height: 16px;
	}
	.product-add__price {
		font-size: 14px;
		line-height: 20px;
	}
	.product-preview {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: 0;
		margin-left: -6px;
		margin-right: -6px;
		margin-top: 20px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.product-image__col--image {
		margin: 0;
		order: 1;
	}
	.product-image__col--previews {
		order: 2;
	}
	.product-preview__item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		-ms-flex-preferred-size: 92px;
		flex-basis: 92px;
		max-width: 92px;
		padding-left: 6px;
		padding-right: 6px;
		margin-bottom: 0;
		margin-right: 0;
	}
	.product-price {
		margin-top: 20px;
	}
	.product-price__value {
		font-size: 32px;
		line-height: 36px;
	}
	.product-price__old {
		font-size: 16px;
		line-height: 24px;
	}
	.product-price__status {
		font-size: 14px;
		line-height: 20px;
		margin-top: 4px;
	}
	.product-button {
		margin-top: 20px;
	}
	#button-cart.product-button__item,
	#button-cart1.product-button__item,
	#button-cart3.product-button__item,
	.product-additional {
		width: 260px;
	}
	.product-additional__title,
	.product-additional__option-name,
	.product-additional__option-price {
		font-size: 14px;
		line-height: 20px;
	}
	.product-places {
		width: 292px;
	}
	.product-add {
		width: 292px;
	}
	.product-delivery {
		margin-top: 32px;
	}
	.product-delivery__city,
	.product-delivery__item-row {
		font-size: 14px;
		line-height: 20px;
	}
	.product-delivery__city {
		margin-bottom: 8px;
	}
	.product-delivery__label {
		font-size: 14px;
		line-height: 20px;
	}
	.product-delivery__label-span {
		font-size: 12px;
		line-height: 12px;
	}
	.product-delivery__infolink {
		font-size: 14px;
		line-height: 20px;
	}
	.product-delivery__item-caption {
		font-size: 12px;
		line-height: 16px;
	}
	.product-delivery__item-icon {
		margin-right: 8px;
	}
	.product-content {
		padding: 40px 0;
	}
	.product-tabs {
		margin-bottom: 28px;
	}
	.product-tabs__item {
		font-size: 14px;
		line-height: 20px;
	}
	.product-tabinfo {
		padding: 32px 20px
	}
	.product-tabinfo__headline-1 {
		font-size: 24px;
		line-height: 32px;
	}
	.product-tabinfo__headline-h2 {
		font-size: 20px;
		line-height: 28px;
		margin: 24px 0 12px;
	}
	.product-description {
		margin-bottom: 24px;
	}
	.product-description__section,
	.product-description__button {
		font-size: 14px;
		line-height: 20px;
	}
	.product-description__section p {
		margin: 12px 0 0;
	}
	.product-description__button {
		margin-top: 12px;
	}
	.product-tabinfo__headline-2 {
		font-size: 16px;
		line-height: 24px;
	}
	.product-tech__row {
		margin-top: 12px;
	}
	.product-tech__caption,
	.product-tech__value {
		font-size: 14px;
		line-height: 20px;
	}
	.product-tabinfo__subtext {
		font-size: 14px;
		line-height: 20px;
		margin-top: 16px;
	}
	.product-compatible {
		margin-top: 12px;
	}
	.product-compatible__list-item {
		-ms-flex-preferred-size: 33.33%;
		flex-basis: 33.33%;
		max-width: 33.33%;
	}
	.product-compatible__list-link {
		font-size: 14px;
		line-height: 20px;
	}
	.product-analogs__item {
		margin-top: 28px;
	}
	.product-analogs__item-price {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 4px;
		margin-top: 12px;
	}
	.product-analogs__rating-value {
		font-size: 12px;
		line-height: 16px;
	}
	.product-analogs__title {
		font-size: 14px;
		line-height: 20px;
	}
	.product-rate__value {
		font-size: 20px;
		line-height: 32px;
		margin-right: 12px;
	}
	.product-rate__stars {
		height: 20px;
	}
	.product-rate__caption {
		font-size: 14px;
		line-height: 20px;
		margin-top: 8px;
	}
	.product-reviews {
		margin-top: 32px;
	}
	.product-reviews__item {
		padding: 28px 0;
	}
	.product-reviews__item-date {
		font-size: 12px;
		line-height: 16px;
	}
	.product-reviews__item-comment {
		font-size: 14px;
		line-height: 20px;
	}
	.product-write {
		margin-top: 32px;
	}
	.product-write__title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 24px;
	}
	.product-write__caption {
		font-size: 14px;
		line-height: 20px;
		width: 98px;
	}
	.product-write__row {
		margin-bottom: 24px;
	}
	.product-write__input,
	.product-write__input:focus {
		font-size: 14px;
		height: 52px !important;
		line-height: 20px !important;
		padding: 16px !important;
	}
	.product-write__textarea,
	.product-write__textarea:focus {
		font-size: 14px !important;
		line-height: 20px !important;
	}
	.product-write__button {
		margin-left: 118px;
	}


	/* Product card push fix */
	input.feedback-body-forma-inputreq,
	input.feedback-body-forma-inputreq:focus,
	input.button-exclusive1,
	#feedback-body-forma #pdata {
		/*width: 260px !important;*/
	}
	
	/* Reviews answer fix */
	.product-reviews__item .textadmin {
		font-size: 14px;
		line-height: 20px;
		margin: 16px 0 0 0;
		padding: 12px;
	}

	/* Breadcrumbs */
	.breadcrumbs {
		padding-top: 20px;
	}

	/* Catalog */
	.catalog__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.catalog-container {
		padding: 28px 0;
	}
	.catalog-title {
		font-size: 28px;
		line-height: 36px;
	}
	.catalog-top {
		margin-bottom: 32px;
	}
	.catalog-search {
		background-size: 1024px auto;
		padding: 24px;
	}
	.catalog-search__title-label {
		font-size: 20px;
		line-height: 28px;
	}
	.catalog-search--indexpage .catalog-search__title-label {
		font-size: 32px;
		line-height: 40px;
	}
	.catalog-search__button--indexpage {
		margin-top: 20px;
		width: 100%;
	}
	.catalog-body {
		margin-top: 32px;
	}
	.catalog-body__grid {
		padding-bottom: 28px;
	}
	.catalog-grid__col {
		-ms-flex-preferred-size: 33.33%;
		flex-basis: 33.33%;
		max-width: 33.33%;
		padding-top: 20px;
	}
	.index-catalog__grid .catalog-grid__col {
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.catalog-seotrash {
		margin-top: 36px;
	}
	.catalog-grid {
		padding-top: 8px;
	}

	/* Checkout */
	.checkout {
		padding: 40px 0;
	}
	.checkout__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.checkout-section {
		margin-bottom: 48px;
	}
	.checkout-section:last-child,
	#simplecheckout_comment {
		margin-bottom: 40px;
	}
	.checkout-section__title,
	.checkout-heading {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 28px;
	}
	.checkout-summary__row {
		margin-bottom: 20px;
	}
	.checkout-delivery__title-caption {
		margin: 16px 0 0;
	}
	.checkout-delivery-points {
		margin-top: 28px;
	}
	.checkout-pay__col {
		padding-bottom: 20px;
	}
	.pay-checkbox__item {
		padding: 20px;
	}
	.pay-checkbox__item-label {
		font-size: 14px;
		line-height: 20px;
	}
	.pay-checkbox__item-img {
		height: 36px;
		margin-bottom: 12px;
		width: 36px;
	}

	.checkout-result {
		height: auto;
		margin-top: 40px;
	}
	.checkout-delivery__method-col--logo {
		padding-right: 24px;
	}
	.checkout-result__body {
		box-shadow: none;
		padding: 0;
		position: relative;
		top: 0;
	}
	.checkout__col--info {
		position: relative;
	}
	.checkout__col--info:after {
		background-color: #E5E5EA;
		bottom: 0;
		content: '';
		height: 2px;
		left: 10px;
		position: absolute;
		right: 10px;
	}
	.checkout-result__body-delivery {
		margin: 12px 0 0;
	}
	/* .summary-delivery__method-caption,
	.summary-delivery__date {
		display: none;
	} */
	.summary-price__row--main .summary-price__row-label,
	.summary-price__row--main .summary-price__row-value {
		font-size: 24px;
		line-height: 32px;
	}
	.summary-button {
		margin-top: 16px;
	}

	/* Footer */
	.footer__col--contacts {
		order: 1;
	}
	.footer__col--info {
		order: 2;
	}
	.footer__col--clients {
		order: 3;
	}
	.footer-social {
		display: none;
	}
	.footer-contact {
		margin-bottom: 40px;
	}
	.footer-bottom {
		padding: 20px 0;
	}

	/* Search result page */
	.search-result {
		padding-bottom: 40px;
	}
	.search-result__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.search-result__section {
		padding: 40px 0;
	}
	.search-result__headline {
		font-size: 36px;
		line-height: 44px;
	}
	.searchresult-videobox {
		padding: 32px 20px;
	}
	.result-grid__col {
		-ms-flex-preferred-size: 33.33%;
		flex-basis: 33.33%;
		max-width: 33.33%;
		padding-top: 40px;
	}
	.noresult {
		min-height: calc(100vh - 629px);
		padding: 40px 0 80px;
	}
	.noresult__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.noresult__headline {
		font-size: 28px;
		line-height: 36px;
		margin: 24px 0 20px;
	}
	.noresult__button {
		margin-top: 28px;
	}
	.noresult__button-label {
		font-size: 16px;
		line-height: 24px;
	}

	/* Index page */
	.index-search {
		padding-top: 40px;
	}
	.index-search__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.index-brands {
		padding: 48px 0;
	}
	.index-brands__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.index-brands__title {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 4px;
	}
	.indexbrands-row__item {
		padding: 24px 10px 0;
	}
	.index-brands__link {
		padding-top: 28px;
	}
	.index-catalog {
		padding: 48px 0;
	}
	.index-catalog__wrapper {
		max-width: 100%;
	}
	.index-catalog__headline {
		font-size: 32px;
		line-height: 40px;
	}
	.index-video {
		max-width: calc(100% - 20px);
		padding: 48px 24px;
		text-align: center;
	}
	.index-video__headline {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 20px;
	}
	.index-video__player {
		background-image: url('../images/index-video__player-bg--tablet.jpg');
		background-size: cover;
		margin-top: 32px;
		padding-bottom: 56.3%;
	}
	.index-points {
		max-width: calc(100% - 20px);
		padding: 48px 24px;
	}
	.index-points__headline {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 20px;
	}
	.index-points__item {
		margin-top: 40px;
	}
	.index-points__item-value {
		font-size: 64px;
		line-height: 64px;
	}
	.index-points__item-valuepsan {
		font-size: 48px;
		line-height: 48px;
	}
	.index-points__item-caption {
		font-size: 16px;
		line-height: 24px;
	}
	.index-reviews {
		margin-bottom: 48px;
		max-width: calc(100% - 20px);
		padding: 48px 24px;
	}
	.index-reviews__headline {
		font-size: 32px;
		line-height: 40px;
	}
	.index-reviews__text {
		margin: 20px 0 40px;
	}

	/* Simple checkout */
	.form-group.row-shipping_address_lastname,
	.form-group.row-customer_email,
	.form-group.row-shipping_address_firstname,
	.form-group.row-customer_telephone,
	.form-group.row-shipping_address_zone_id,
	.form-group.row-shipping_address_city,
	.form-group.row-shipping_address_address_1,
	.form-group.row-shipping_address_postcode,
	.form-group.row-customer_password,
	.form-group.row-customer_confirm_password {
		padding: 10px 0;
		width: 100%;
	}

	/* Account */
	.account {
		min-height: calc(100vh - 657px);
		padding: 40px 0;
	}
	.account__wrapper {
		max-width: 100%;
	}
	.account__headline {
		font-size: 32px;
		line-height: 40px;
		padding-bottom: 24px;
	}
	.account__title {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 20px;
	}
	.account-orderlist__row {
		padding: 14px 0;
	}
	.account-orderlist__item {
		padding: 10px 0;
	}
	.account-orderlist__empty {
		margin-top: 32px;
	}

	/* Content */
	.row__col .box {
		display: none !important;
	}

	/* Registration */
	.registration {
		padding-bottom: 48px;
	}
	.registration__wrapper {
		max-width: 100%;
	}
	.registration__headline {
		font-size: 28px;
		line-height: 36px;
		margin: 40px 0 16px;
	}
	.registration-section {
		margin-top: 32px;
	}
	.registration-section__title {
		font-size: 20px;
		line-height: 28px;
	}

	/* Brandlist */
	.brands-list {
		padding: 40px 0;
	}
	.brands-list__wrapper {
		max-width: 100%;
	}
	.brands-list__headline {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 0;
	}
	.brandslist {
		columns: auto;
	}
	.brandslist__item {
		margin-top: 32px;
	}
	.brandslist__item-body {
		display: block;
	}
	.brandslist__item-headline {
		font-size: 24px;
		line-height: 32px;
	}
	.brandslist__item-block {
		margin-top: 12px;
	}
	.brands-alphabet {
		display: block;
		position: sticky;
		top: 50%;
		transform: translateY(-50%);
		width: 12px;
	}
	.brands-alphabet__item {
		color: #007AFF;
		display: block;
		font-size: 14px;
		line-height: 16px;
		margin-bottom: 16px;
		position: relative;
		text-align: center;
		width: 12px;
	}
	.brands-alphabet__item:last-child {
		margin-bottom: 0;
	}
	.brands-alphabet__item::after {
		bottom: -16px;
		color: #007AFF;
		content: "\00B7";
		font-size: 14px;
		left: 0;
		line-height: 16px;
		position: absolute;
		right: 0;
		text-align: center;
	}
	.brands-alphabet__item:last-child::after {
		content: none;
	}

	/* Products model list */
	.product-models-list {
		columns: 3 auto;
	}
}

@media screen and (max-width: 767px) {
	/* Row */
	.row__col--menu {
		order: 1;
	}
	.row__col--body {
		order: 2;
	}

	/* Midsection */
	#midsection {
		min-height: calc(100vh - 879px);
	}

	/* Grid system */
	.grid--fluid-padding-m {
		margin-left: -10px;
		margin-right: -10px;
	}
	.grid--fluid-padding-m > .grid__col {
		padding-left: 10px;
		padding-right: 10px;
	}
	.grid__col--1-m {
		-ms-flex-preferred-size: 8.33%;
		flex-basis: 8.33%;
		max-width: 8.33%;
	}
	.grid__col--2-m {
		-ms-flex-preferred-size: 16.66%;
		flex-basis: 16.66%;
		max-width: 16.66%;
	}
	.grid__col--3-m {
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.grid__col--4-m {
		-ms-flex-preferred-size: 33.3%;
		flex-basis: 33.3%;
		max-width: 33.3%;
	}
	.grid__col--5-m {
		-ms-flex-preferred-size: 41.66%;
		flex-basis: 41.66%;
		max-width: 41.66%;
	}
	.grid__col--6-m {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.grid__col--7-m {
		-ms-flex-preferred-size: 58.33%;
		flex-basis: 58.33%;
		max-width: 58.33%;
	}
	.grid__col--8-m {
		-ms-flex-preferred-size: 66.66%;
		flex-basis: 66.66%;
		max-width: 66.66%;
	}
	.grid__col--9-m {
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.grid__col--10-m {
		-ms-flex-preferred-size: 83.33%;
		flex-basis: 83.33%;
		max-width: 83.33%;
	}
	.grid__col--11-m {
		-ms-flex-preferred-size: 91.66%;
		flex-basis: 91.66%;
		max-width: 91.66%;
	}
	.grid__col--12-m {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.grid__col--nomrgn-m {
		margin: 0;
	}
	.grid__col--autofill-m {
		flex: 1 1 0;
	}

	/* Login */
	.login-content__item {
		width: 100% !important;
	}
	
	/* Header */
	.header-market {
		padding: 8px 0;
	}
	.header-market__label {
		font-size: 12px;
		line-height: 16px;
	}
	.header-body {
		padding: 16px 0;
	}
	.header-logo__image {
		height: 36px;
	}
	.header-cart__label {
		height: 16px;
		line-height: 16px;
		right: 0;
		top: 0;
		width: 16px;
	}
	.header-search {
		margin-top: 16px;
	}
	.header-search__input {
		font-size: 12px !important;
		height: 40px !important;
		line-height: 16px;
		padding: 12px 48px 12px 16px;
	}
	.header-search__button {
		height: 40px;
		padding: 8px;
		width: 40px;
	}
	.header-searchbox {
		top: 160px;
	}
	.header-searchbox__section-caption {
		font-size: 12px;
		line-height: 16px;
	}
	.header-searchbox__section-result,
	.header-searchbox__section-link {
		font-size: 14px;
		line-height: 20px;
	}
	.header-mobile {
		height: calc(100vh - 64px);
		overflow-y: auto;
		top: 96px;
	}
	.header-mobile__wrapper {
		padding: 0 10px;
	}
	.header-mobile__link {
		padding: 12px 0;
	}
	.header-mobile__buttons {
		padding-top: 24px;
	}
	.header-mobile__button {
		margin-bottom: 16px;
		padding: 12px 0;
	}
	.header-cartbox {
		width: calc(100vw - 20px)
	}
	.header-cartbox__row {
		padding: 16px 52px 16px 16px;
	}
	.header-cartbox__name {
		margin-bottom: 4px;
		margin-left: 0;
	}
	.header-cartbox__quantity {
		text-align: left;
		width: auto;
	}
	.header-cartbox__price {
		margin-left: 12px;
	}
	.header-cartbox__remove {
		right: 12px;
		top: 16px;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	.header-cartbox__bottom {
		padding: 16px 12px;
	}
	.header-cartbox__captionprice {
		font-size: 12px;
		line-height: 16px;
	}
	.header-cartbox__valueprice {
		font-size: 20px;
		line-height: 24px;
	}
	.header-cartbox__button {
		margin-top: 12px;
		padding: 12px 0;
		width: 100%;
	}
	
	/* Models page */
	.models {
		padding: 0 16px 32px;
	}
	/* .breadcrumb__link {
		font-size: 12px;
		line-height: 16px;
	} */
	.models-content__col--headline {
		order: 1;
	}
	.models-content__col--table {
		order: 2;
	}
	.models-content__col--text {
		order: 3;
	}
	.models-content__col--preview {
		order: 4;
	}
	.models-content__headline {
		font-size: 24px;
		line-height: 32px;
		margin: 0 0 24px;
	}
	.models-table {
		margin-top: 0;
	}
	.models-product {
		padding: 16px 0;
	}
	.models-product__image {
		height: auto;
		width: 100%;
	}
	.models-product__title {
		font-size: 16px;
		line-height: 24px;
	}
	.models-product__rating-label {
		font-size: 12px;
		line-height: 16px;
		margin-left: 8px;
	}
	.models-product__caption {
		display: none;
	}
	.models-product__price {
		font-size: 24px;
		line-height: 32px;
		margin: 0 0 8px;
	}
	.models-product__col--price {
		padding-top: 32px;
	}
	.models-content__text {
		margin: 24px 0;
	}
	.models-tv__button {
		display: none;
	}
	.models-tv__info {
		box-shadow: none;
		left: 0;
		margin-top: 20px;
		padding: 0;
		position: relative;
		top: 0;
	}
	.models-tv__info-body:before {
		content: none;
	}
	.models-tv__info-title {
		display: block;
		font-size: 14px;
		font-weight: 500;
		line-height: 20px;
		text-align: left;
	}

	/* Delivery */
	.delivery {
		padding: 32px 0;
	}
	.delivery__wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	.delivery-city__headline {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 20px;
	}
	.delivery-geo {
		display: flex;
		width: 100%;
	}
	.delivery-city__caption {
		font-size: 12px;
		line-height: 16px;
		margin: 12px 0 0;
	}
	.delivery-methods {
		margin-top: 32px;
	}
	.delivery-methods__headline {
		font-size: 24px;
		line-height: 32px;
	}
	.delivery-methods__section {
		margin-top: 24px;
	}
	.delivery-methods__section-title {
		font-size: 16px;
		line-height: 24px;
	}
	.delivery-methods__section-caption {
		margin: 12px 0 0;
	}
	.delivery-methods__section-logo {
		margin-right: 12px;
		width: 72px;
	}
	.delivery-method {
		height: auto;
		margin-top: 16px;
		padding: 16px;
	}
	.delivery-method__time {
		font-size: 12px;
		line-height: 16px;
		margin: 4px 0 20px;
	}
	.delivery-method__price {
		font-size: 16px;
		line-height: 24px;
	}
	.delivery-methods__section-map {
		margin-top: 20px;
	}
	.delivery-payments {
		margin-top: 32px;
	}
	.delivery-payments__headline {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 0;
	}
	.delivery-payment {
		margin-top: 24px;
	}
	.delivery-payment__title {
		margin-top: 12px;
	}

	/* Article */
	.article-content__headline {
		font-size: 28px;
		line-height: 36px;
	}
	.article-content__section-p {
		font-size: 14px;
		line-height: 20px;
		margin-top: 16px;
	}
	.article-content__section-img {
		box-shadow: 0 16px 24px 0 rgba(17, 17, 22, .16);
		margin: 16px 0 40px;
	}

	/* Pop up cart */
	#cartpopup .mini-cart-info {
		min-width: auto !important;
	}

	/* Breadcrumb */
	.breadcrumb-pp {
		font-size: 12px;
		line-height: 16px;
	}

	/* Orderinfo */
	.orderinfo {
		padding: 16px 0 32px;
	}
	.orderinfo__headline {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 24px;
	}
	.orderinfo-table__title {
		padding: 24px 16px;
	}
	.orderinfo-table__number {
		font-size: 16px;
		line-height: 24px;
	}
	.orderinfo-table__status {
		font-size: 12px;
		line-height: 16px;
		padding-left: 16px;
	}
	.orderinfo-table__status::before {
		height: 8px;
		width: 8px;
	}
	.orderinfo-table__button {
		font-size: 14px;
		height: 44px;
		line-height: 20px;
		margin-top: 16px;
		padding: 12px 0;
		width: 100%;
	}
	.orderinfo-table__body {
		padding: 24px 16px;
	}
	.ordertable-products__item {
		margin-bottom: 16px;
		width: 100%;
	}
	.ordertable-products__item:last-child {
		margin-bottom: 24px;
	}
	.ordertable__section {
		margin-bottom: 24px;
	}
	.ordertable__section-grid {
		margin-bottom: 16px;
	}
	.ordertable__section-caption {
		margin-bottom: 4px;
		width: 100%;
	}
	.ordertable__section-title {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 16px;
	}
	.ordertable__section-price {
		font-size: 14px;
		line-height: 20px;
	}
	.ordertable-delivery {
		margin-top: 20px;
	}
	.ordertable-delivery__status:before {
		height: 8px;
		width: 8px;
	}
	.ordertable-delivery__status,
	.ordertable-delivery__date {
		padding-left: 16px;
	}
	.ordertable-delivery__date {
		margin-top: 4px;
	}
	.ordertable-delivery__content:after {
		content: none;
	}
	.ordertable-delivery__row {
		margin-bottom: 16px;
	}
	.ordertable-delivery__number {
		margin-top: 20px;
	}
	.orderinfo-button {
		margin-top: 24px;
	}
	.orderinfo-button__item {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		font-size: 14px;
		line-height: 20px;
		padding: 12px 0;
		text-align: center;
	}
	
	/* Product page */
	.product-imagebox {
		display: flex;
		flex: 0 0 auto;
		flex-wrap: wrap;
		margin-top: 24px;
	}
	
	.product-mobilegallery {
		display: block;
		position: relative;
		width: 100%;
	}
	.product-mobilegallery__video {
		background-color: #FFF;
		border-radius: 50%;
		box-shadow: 0 0px 1px 0 rgb(17 17 22 / 4%), 0 0px 6px 0 rgb(17 17 22 / 12%);
		bottom: 64px;
		display: block;
		height: 40px;
		padding: 8px 7px 8px 9px;
		position: absolute;
		right: 20px;
		width: 40px;
		z-index: 2;
	}
	.product-mobilegallery__video-icon {
		height: 24px;
		width: 24px;
	}
	.product-mobilegallery__video-icon .icon {
		fill: #141414;
	}
	
	.product-image {
		order: 1;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	
	.product-image {
		display: none;
	}
	.product-mobilegallery {
		display: block !important;
	}
	.product-mobimage {
		display: block !important;
		margin-bottom: 8px;
	}
	.product-mobimage__item {
		aspect-ratio: 1;
		background-color: #F5F7F9;
		border-radius: 12px;
		display: block;
		height: 100%;
		padding: 20px 0;
	}
	.product-mobimage .product-mobimage__item-img {
		display: block;
		height: 100% !important;
		margin: 0 auto;
		mix-blend-mode: multiply;
		width: auto !important;
	}
	
	.product-title {
		order: 2;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.product .product-info {
		padding-bottom: 32px;
		padding-left: 0;
		padding-right: 0;
	}
	.product__wrapper {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}
	.product-title {
		border-bottom: 1px solid #E5E5EA;
		margin-bottom: 0;
		padding-bottom: 20px;
	}
	.product-button {
		/*display: none;*/
		margin-top:20px;
	}
	.product-places {
		width: 100%;
	}
	.product-places__row {
		padding: 12px 0;
	}
	.product-places__title {
		margin-bottom: 4px;
	}
	.product-option {
		margin: 20px 0; 
	}
	.product-option__item {
		padding: 8px 20px;
	}
	.product-option__item-label {
		font-size: 14px;
		line-height: 20px;
	}
	.product-additional {
		margin-top: 20px;
	}
	.product-delivery {
		border-top: 1px solid #E5E5EA;
		margin-top: 20px;
		padding-top: 20px;
	}
	.product-delivery__title {
		font-size: 16px;
		line-height: 24px;
	}
	.product-delivery__city-change,
	.product-delivery__city .geoip-module .zone {
		line-height: 19px;
	}
	.product-delivery__city {
		margin-bottom: 8px;
	}
	.product-fixbutton {
		background-color: #FFF;
		box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
		bottom: 0;
		display: block;
		left: 0;
		padding: 16px;
		position: fixed;
		right: 0;
		z-index: 2;
	}
	.product-fixbutton__item {
		background-color: #007AFF;
		border-radius: 6px;
		color: #FFF;
		display: block;
		padding: 8px 0;
		text-align: center;
	}
	.product-fixbutton__item:hover {
		background-color: #0070EB;
	}
	.product-fixbutton__item-label {
		display: block;
		font-size: 14px;
		font-weight: 500;
		line-height: 20px;
	}
	.product-fixbutton__item-price {
		display: block;
		font-size: 12px;
		line-height: 16px;
	}
	#midsection h1.product-title__headline,
	.product-title__headline {
		font-size: 16px;
		font-weight: 500;
		line-height: 24px;
		margin: 0 0 4px;
	}
	.product-noitem__caption {
		font-size: 14px;
		line-height: 20px;
	}
	.product-noitem__price {
		font-size: 28px;
		line-height: 32px;
	}
	.product-noitem__text {
		font-size: 14px;
		line-height: 20px;
		margin: 16px 0 12px;
	}
	.product-noitem__input-button {
		font-size: 14px;
		line-height: 24px;
		margin-top: 12px;
		padding: 12px 0;
	}
	.product-title__vencode {
		margin-bottom: 0;
	}
	.product-title__vencode,
	.product-title__rating-caption {
		font-size: 12px;
		line-height: 16px;
	}
	.product-title__rating-img {
		height: 12px;
		margin-right: 8px;
	}
	.product-image__col--image {
		border-radius: 8px;
		order: 1;
	}
	.product-image__col--previews {
		order: 2;
	}
	.product-col--breadcrumbs {
		order: 1;
	}
	.product-col--image {
		order: 2;
	}
	.product-col--title {
		order: 3;
	}
	.product-col--info {
		order: 4;
	}
	.product-preview {
		margin-bottom: 24px;
		margin-left: -8px;
		margin-right: -8px;
		margin-top: 16px;
	}
	.product-preview__item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 8px;
		padding-right: 8px;
		margin-bottom: 0;
		margin-right: 0;
	}
	.product-preview__item-link {
		border-radius: 6px;
		height: 60px;
		padding: 4px !important;
		width: 60px;
	}
	.product-preview__item-image {
		height: 48px;
		width: 48px;
	}
	.product-info .image-additional a {
		margin: 0 !important;
	}
	.product-videopreview {
		padding: 12px 0;
		width: 60px;
	}
	.product-videopreview__label {
		font-size: 12px;
		line-height: 16px;
	}
	.product-videopreview__icon {
		height: 16px;
		width: 16px;
	}
	
	.product-image__preview {
		margin-bottom: 0;
	}
	.product-image__preview-img {
		max-height: 304px;
	}
	.product-mobileprice {
		display: block;
		order: 2;
		margin-top: 0px;
	}
	.product-mobileprice__status {
		color: #00AA5B;
		display: block;
		font-size: 12px;
		font-weight: 500;
		line-height: 16px;
		margin-top: 2px;
	}
	.product-mobileprice__value {
		color: #141414;
		font-size: 28px;
		font-weight: 600;
		line-height: 32px;
	}
	.product-mobileprice__value--sale {
		color: #F91155;
	}
	.product-mobileprice__old {
		color: #8E8E93;
		font-size: 14px;
		line-height: 20px;
		margin-left: 8px;
		text-decoration: line-through;
	}
	.product-price {
		
	}
	#feedback-body-head{
		visibility: hidden;
	}
	.product-noitem__price, .product-noitem__caption{
		display:none;
	}
	.product-price__value {
		font-size: 28px;
		line-height: 32px;
	}
	.product-price__old {
		font-size: 14px;
		line-height: 20px;
	}
	#button-cart.product-button__item,
	#button-cart1.product-button__item,
	#button-cart3.product-button__item,
	.product-additional {
		width: 100%;
	}
	#button-cart.product-button__item,
	#button-cart1.product-button__item,
	#button-cart3.product-button__item	{
		padding: 12px 0;
	}
	.product-tabs {
		display: none;
	}
	.product-content {
		background-color: #F5F7F9;
		padding: 24px 0 32px;
	}
	.product-tabinfo {
		box-shadow: none;
		padding: 0;
	}
	.product-tabinfo__title {
		display: block;
	}
	.product-tabinfo__title-label {
		font-size: 16px;
		font-weight: 500;
		line-height: 24px;
	}
	.product-tabinfo__title-icon {
		fill: #8E8E93;
		height: 16px;
		width: 16px;
	}
	.product-tabinfo__headline-1 {
		display: none;
	}
	.product-tabinfo {
		background-color: #FFF;
		border-radius: 12px;
		display: block;
		margin: 12px 0;
		padding: 16px;
		position: relative;
	}
	/* .product-tabinfo::before,
	.product-tabinfo::after {
		background-color: #E0E0E0;
		content: '';
		height: 1px;
		position: absolute;
		left: 0;
		right: 0;
	} */
	.product-tabinfo::before {
		top: 0;
	}
	.product-tabinfo::after {
		bottom: -1px;
	}
	.product-tabinfo:last-child.product-tabinfo--active::after {
		content: none;
	}
	.product-tabinfo__content {
		display: none;
	}
	.product-tabinfo--active .product-tabinfo__content {
		display: block;
	}
	.product-tabinfo--active .product-tabinfo__title-icon {
		transform: rotate(180deg);
	}
	.product-compatible {
		margin-top: 4px;
	}
	.product-compatible__list-item {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.product-analogs__item {
		margin-top: 20px;
	}
	.product-analogs__item-image {
		height: 96px;
		margin: 0 auto;
		width: 96px;
	}
	.product-analogs__item-price {
		font-size: 14px;
		line-height: 20px;
		margin: 8px 0 0;
	}
	.product-analogs__rating-stars {
		height: 8px;
	}
	.product-analogs__title {
		font-size: 12px;
		line-height: 16px;
		margin-top: 8px;
	}
	.product-review__col--rating {
		order: 1;
	}
	.product-review__col--button {
		order: 2;
	}
	.product-rate {
		margin: 16px 0 24px;
	}
	.product-rate__caption {
		text-align: left;
	}
	.product-rate__value {
		font-size: 16px;
		line-height: 24px;
		margin: 0 0 0 8px;
	}
	.product-rate__stars {
		height: 16px;
	}
	.product-rate__caption {
		font-size: 12px;
		line-height: 16px;
	}
	.product-rate__col--stars {
		order: 1;
	}
	.product-rate__col--value {
		order: 2;
	}
	.product-review__button {
		display: block;
	}
	.product-reviews {
		margin-top: 24px;
	}
	.product-reviews__item {
		padding: 20px 0;
	}
	.product-reviews__item-name {
		margin-bottom: 4px;
	}
	.product-reviews__item-date {
		font-size: 12px;
		line-height: 16px;
	}
	.product-reviews__item-stars {
		height: 12px;
		margin: 16px 0 8px;
	}
	.product-reviews__item-comment {
		margin-top: 0;
	}
	.product-write {
		margin-top: 24px;
	}
	.product-write__title {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 20px;
	}
	.product-write__caption {
		margin-bottom: 8px;
		width: 100%;
	}
	.product-write__input,
	.product-write__input:focus,
	.product-write__textarea,
	.product-write__textarea:focus {
		padding: 16px 12px !important;
	}
	.product-write__button {
		display: block;
		margin-left: 0;
		padding: 12px 0;
	}

	/* Product card push fix */
	input.feedback-body-forma-inputreq,
	input.feedback-body-forma-inputreq:focus,
	input.button-exclusive1,
	#feedback-body-forma #pdata {
		width: 100% !important;
	}

	/* Breadcrumb */
	.breadcrumb {
		margin: 0 0 24px 0;
	}

	/* Sale label fix */


	/* Cart popup — overrides moved to cartpopup.css */

	/* Breadcrumbs */
	.breadcrumbs {
		padding-top: 16px;
	}

	/* Catalog */
	.catalog-container {
		padding: 32px 0;
	}
	.catalog-title {
		font-size: 24px;
		line-height: 32px;
	}
	.catalog-categories__grid {
		margin-left: -6px;
		margin-right: -6px;
	}
	.catalog-categories__item {
		padding: 12px 6px 0;
	}
	.catalog-categories__item-link {
		font-size: 12px;
		line-height: 16px;
	}
	.catalog-top {
		margin-bottom: 28px;
	}
	.catalog-search {
		padding: 24px 16px;
	}
	.catalog-search__title-label {
		display: block;
		margin-bottom: 12px;
	}
	.catalog-search--indexpage .catalog-search__title-label {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 12px;
	}
	.catalog-search__title-link {
		font-size: 14px;
		line-height: 19px;
		margin-bottom: 24px;
		margin-left: 0;
	}
	.catalog-search__col {
		padding-bottom: 16px;
	}
	.catalog-search__col--button {
		padding-bottom: 0;
		padding-top: 0;
	}
	.catalog-search__button--indexpage {
		margin-top: 0;
	}
	.catalog-search__button {
		display: block;
		font-size: 14px;
		line-height: 20px;
		padding: 12px 0;
	}
	.catalog-body {
		margin-top: 28px;
	}
	.catalog-body__sorting {
		margin: 0 -8px;
	}
	.catalog-body__sorting-title {
		display: none;
	}
	.catalog-grid {
		padding-top: 4px;
	}
	.catalog-product__sale {
		border-radius: 2px;
		font-size: 10px;
		line-height: 12px;
		padding: 2px;
	}
	.catalog-product__noitem {
		border-radius: 2px;
		font-size: 10px;
		line-height: 12px;
		padding: 2px 4px;
	}
	.catalog-product__video {
		border-radius: 2px;
		padding: 2px 4px;
	}
	.catalog-product__video-icon {
		height: 8px;
		margin-right: 2px;
		width: 8px;
	}
	.catalog-product__video-label {
		font-size: 10px;
		line-height: 12px;
	}
	.catalog-product__price {
		margin: 8px 0 4px;
	}
	.catalog-grid__col,
	.index-catalog__grid .catalog-grid__col {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
		padding-top: 16px;
	}
	.catalog-grid__col--videobox {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.catalog-product {
		padding-bottom: 0;
	}
	.catalog-product__label {
		margin-bottom: 4px;
	}
	.catalog-product__image {
		height: auto;
		width: 95%;
	}
	.catalog-product__price-value {
		font-size: 14px;
		line-height: 20px;
	}
	.catalog-product__label--sale + .catalog-product__label--video {
		left: 0;
		top: 32px;
	}
	.catalog-product__title {
		font-size: 12px;
		line-height: 16px;
	}
	.catalog-product__rating-label {
		font-size: 10px;
		line-height: 12px;
	}
	.catalog-product__rating-stars {
		height: 8px;
	}
	.catalog-product__price-oldprice {
		font-size: 12px;
		line-height: 16px;
		margin-left: 4px;
	}
	.catalog-product__button {
		font-size: 14px;
		line-height: 20px;
		margin-top: 16px;
		position: relative;
	}
	.catalog-body__grid {
		padding-bottom: 20px;
	}
	.catalog-pagination__item,
	.catalog-pagination .links b,
	.catalog-pagination .links a {
		font-size: 14px;
	}
	.catalog-pagination__item-icon {
		height: 20px;
		margin: 10px;
		width: 20px;
	}
	.catalog-seotrash {
		margin-top: 32px;
	}
	.catalog-seotrash > p {
		font-size: 12px;
		line-height: 16px;
	}

	/* Catalog filter fix */
	.input .chosen-container-single .chosen-single {
		height: 44px;
		padding: 12px 16px;
	}
	.input .chosen-container-single .chosen-single span {
		font-size: 14px;
		height: 20px;
		line-height: 20px;
	}
	.input .chosen-container .chosen-results li {
		font-size: 14px;
		line-height: 20px;
	}

	/* Checkout */
	.checkout {
		padding: 32px 0;
	}
	.checkout-section {
		margin-bottom: 40px;
	}
	.checkout-section:last-child,
	#simplecheckout_comment {
		margin-bottom: 32px;
	}
	.checkout-section__title,
	.checkout-heading {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 24px;
	}
	.checkout-summary__image {
		height: 80px;
		margin-right: 12px;
		width: 80px;
	}
	.checkout-summary__title {
		font-size: 14px;
		line-height: 20px;
		margin-top: 8px;
	}
	.checkout-summary__status {
		font-size: 12px;
		line-height: 16px;
	}
	.checkout-summary__col--price {
		order: 1;
	}
	.checkout-summary__col--title {
		order: 2;
	}
	.checkout-summary__col--quantity {
		order: 3;
	}
	.checkout-summary__quantity {
		margin-top: 16px;
	}
	.checkout-summary__row {
		border-bottom: 1px solid #E5E5EA;
		margin: 0;
		padding: 16px 0;
	}
	.checkout-summary__row:first-child {
		padding-top: 0;
	}
	.checkout-summary__row:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.checkout-summary__row-remove {
		bottom: 16px;
		top: auto;
	}
	.checkout-summary__row:last-child .checkout-summary__row-remove {
		bottom: 0;
	}
	.delivery-info .form-group.row-customer_lastname,
	.delivery-info .form-group.row-customer_firstname,
	.delivery-info .form-group.row-customer_email,
	.delivery-info .form-group.row-customer_telephone,
	.delivery-info .form-group.row-shipping_address_city,
	.delivery-info .form-group.row-shipping_address_zone_id,
	.delivery-info .form-group.row-shipping_address_address_1,
	.delivery-info .form-group.row-shipping_address_postcode {
		margin-top: 16px;
		width: 100%;
	}
	.delivery-info .form-group.row-customer_email,
	.delivery-info .form-group.row-shipping_address_city {
		margin-top: 0;
	}
	.delivery-info .form-group label.control-label {
		font-size: 14px;
		line-height: 20px;
	}
	.delivery-info .form-group .form-control {
		font-size: 14px;
		height: 44px;
		line-height: 20px;
		padding: 12px 16px;
	}
	.checkout-delivery__title-image {
		margin-right: 12px;
		width: 72px;
	}
	.checkout-delivery__title-text {
		font-size: 16px;
		line-height: 24px;
	}
	.checkout-delivery__title-caption {
		font-size: 14px;
		line-height: 20px;
		margin-top: 12px;
	}
	.checkout-delivery__col--courier {
		order: 1;
	}
	.checkout-delivery__col--pickpoint {
		order: 2;
	}
	.checkout-delivery__method-item {
		padding: 16px;
	}
	.checkout-delivery__method-logo {
		width: 60px;
	}
	.checkout-delivery__method-title {
		font-size: 14px;
		line-height: 20px;
		margin-top: 12px;
	}
	.checkout-delivery__method-button {
		font-size: 12px;
		line-height: 16px;
		margin-top: 12px;
	}
	.checkout-delivery__method-item-caption {
		font-size: 12px;
		line-height: 16px;
	}
	.checkout-delivery__method-item-price {
		font-size: 16px;
		line-height: 24px;
	}
	.checkout-delivery__method-item-label {
		bottom: 16px;
		right: 16px;
	}
	.checkout-delivery__method {
		margin-top: 12px;
	}
	.checkoutDelivery-method__title {
		font-size: 14px;
		line-height: 20px;
		margin: 8px 0 4px;
	}
	.checkoutDelivery-method__caption {
		font-size: 12px;
		line-height: 16px;
	}
	.checkoutDelivery-method__price {
		font-size: 16px;
		line-height: 24px;
		margin-left: 0;
	}
	.checkoutDelivery-method__point {
		margin-top: 8px;
		padding-top: 8px;
	}
	.checkoutDelivery-method__point-address {
		font-size: 14px;
		line-height: 20px;
	}
	.checkoutDelivery-method__point-btn {
		font-size: 12px;
		line-height: 16px;
		margin-top: 12px;
	}
	.checkout-delivery-points__title-links {
		margin: 12px 0 0;
	}
	.checkout-pickup__item-title {
		font-size: 14px;
		line-height: 20px;
	}
	.checkout-pickup__item-date,
	.checkout-pickup__item-text {
		font-size: 12px;
		line-height: 16px;
	}
	.checkout-pickup__item-text {
		margin-top: 12px;
	}
	.checkout-pickup {
		margin-right: 0;
		max-height: 50vh;
	}
	.checkout-delivery-points__body .list-group {
		position: relative;
	}
	.checkout-delivery-points__body .list-group::after,
	.checkout-delivery-points__body .list-group::before {
		content: '';
		left: 0;
		position: absolute;
		right: 0;
	}
	.checkout-delivery-points__body .list-group::after {
		background-image: radial-gradient(50% 100% at 50% 100%, rgba(20, 20, 20, .12) 0%, rgba(20, 20, 20, 0) 100%);
		bottom: 0;
		height: 16px;
	}
	.checkout-delivery-points__body .list-group::before {
		background-color: rgba(20, 20, 20, .04);
		bottom: 0;
		height: 1px;
	}
	.checkout-pickup::-webkit-scrollbar {
		all: unset;
	}
	.checkout-pickup__item {
		padding: 16px 48px 16px 0;
	}
	.checkout-pickup__item::before,
	.checkout-pickup__item::after,
	.checkout-pickup__item-label {
		right: 0;
	}
	.delivery-info--personal,
	.delivery-info--personal-m {
		margin-top: 16px;
	}
	.checkout-payment__item {
		margin-bottom: 12px;
	}
	.checkout-result {
		margin-top: 32px;
	}
	.pay-checkbox__item {
		padding: 16px 20px;
	}
	.pay-checkbox__item-img {
		height: 32px;
		margin-bottom: 8px;
	}
	.pay-checkbox__item-label {
		font-size: 12px;
		line-height: 16px;
	}
	.checkout-pay__col {
		padding-bottom: 16px;
	}
	.summary-price__row--main .summary-price__row-label,
	.summary-price__row--main .summary-price__row-value {
		font-size: 20px;
		line-height: 24px;
	}
	.summary-price__row-label,
	.summary-price__row-value {
		font-size: 14px;
		line-height: 20px;
	}
	.summary-button {
		margin-top: 12px;
	}
	.summary-button_item {
		font-size: 16px;
		line-height: 24px;
		padding: 12px 0;
	}
	.summary-button__caption {
		margin-top: 12px;
	}
	.summary-promo {
		margin: 12px 0 20px;
	}
	.summary-promo__input-field {
		height: 44px !important;
		font-size: 14px !important;
		line-height: 20px !important;
		padding: 12px 60px 12px 16px !important;
	}
	.summary-promo__input-button {
		height: 44px;
		padding: 12px;
		width: 44px;
	}
	.summary-promo__input-error {
		margin-top: 4px;
	}

	/* Popular cities on mobile */
	.checkout-popular-cities {
		gap: 6px;
		margin-bottom: 12px;
	}
	.checkout-popular-cities__item {
		padding: 5px 10px;
		font-size: 13px;
	}

	/* Input */
	.input__field,
	.checkout-city .input__field,
	.checkout-city select.form-control,
	#simplecheckout_comment .form-control {
		font-size: 14px;
		height: 44px;
		line-height: 20px;
		padding: 12px 16px;
	}
	.input__label {
		font-size: 14px;
		line-height: 20px;
	}
	.input__helper {
		max-height: 260px;
	}
	.input__helper-item {
		font-size: 14px;
		line-height: 20px;
	}
	.input__helper::-webkit-scrollbar {
		all: unset;
	}
	.input__caption {
		margin-top: 4px;
	}
	.input__field--textarea,
	#simplecheckout_comment .form-control {
		height: 96px;
	}

	/* Checkbox */
	.checkbox__label {
		font-size: 14px;
		line-height: 20px;
	}

	/* Footer */
	.footer-body {
		padding: 32px 0;
	}
	.footer-contact {
		margin-bottom: 20px;
	}
	.footer-contact__caption {
		font-size: 14px;
		line-height: 20px;
	}
	.footer-contact__value {
		font-size: 20px;
		line-height: 24px;
	}
	.footer-social {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.footer-list {
		margin-top: 32px;
	}
	.footer-list__title {
		font-size: 14px;
		line-height: 20px;
	}
	.footer-list__item-link {
		font-size: 14px;
		line-height: 19px;
	}
	.footer-bottom {
		padding: 16px 0;
	}
	.footer-bottom__copyright,
	.footer-bottom__text {
		font-size: 12px;
		line-height: 16px;
	}

	/* Search result page */
	.search-result {
		padding-bottom: 32px;
	}
	.search-result__section {
		padding: 32px 0;
	}
	.search-result__headline {
		font-size: 28px;
		line-height: 36px;
	}
	.searchresult-videobox {
		border-radius: 4px;
		padding: 24px 16px;
	}
	.searchresult-videobox__title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 48px;
	}
	.searchresult-videobox__button {
		height: 48px;
		padding: 14px;
		width: 48px;
	}
	.searchresult-videobox__button-icon {
		display: none;
	}
	.searchresult-videobox__button-icon--mobile {
		display: block;
		height: 20px;
		width: 20px;
	}
	.searchresult-videobox__link {
		border-radius: 18px;
		font-size: 14px;
		line-height: 20px;
	}
	.result-grid__col {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
		padding-top: 24px;
	}
	.result-product__image {
		height: 120px;
		margin: 0 auto;
		width: 120px;
	}
	.result-product__title {
		font-size: 14px;
		line-height: 20px;
		text-align: center;
	}
	.noresult {
		min-height: auto;
		padding: 40px 0;
	}
	.noresult__headline {
		font-size: 24px;
		line-height: 32px;
		margin: 20px 0 16px;
	}
	.noresult__text {
		font-size: 16px;
		line-height: 24px;
	}
	.noresult__button {
		margin-top: 20px;
		padding: 12px 16px 12px 24px;
	}

	/* Index page */
	.index-search {
		padding-top: 32px;
	}
	.index-brands {
		padding: 32px 0;
	}
	.index-brands__title {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 4px;
	}
	.indexbrands-row__item {
		padding: 20px 8px 0;
	}
	.indexbrands-row__item-link {
		background-color: transparent;
		border-bottom: 1px solid rgba(0, 122, 255, .2);
		border-radius: 0;
		color: #007AFF;
		font-size: 16px;
		line-height: 24px;
		padding: 0;
	}
	.indexbrands-row__item-link:hover {
		background-color: transparent;
		border-bottom-color: rgba(0, 107, 224, .4);
		box-shadow: none;
		color: #006BE0;
		text-decoration: none;
	}
	.index-brands__link {
		padding-top: 24px;
	}
	.indexbrands-link {
		background-color: #EEF2F7;
		border-radius: 20px;
		padding: 8px 12px 8px 16px;
	}
	.indexbrands-link__grid-label {
		color: #141414;
		font-size: 14px;
		line-height: 20px;
		margin-right: 4px;
	}
	.indexbrands-link__grid-icon {
		fill: #141414;
		height: 12px;
		width: 12px;
	}
	.indexbrands-link:hover {
		background-color: #242424;
	}
	.indexbrands-link:hover .indexbrands-link__grid-label {
		border-bottom: none;
		color: #FFF;
		text-decoration: none;
	}
	.indexbrands-link:hover .indexbrands-link__grid-icon {
		fill: #FFF;
	}
	.index-catalog {
		padding: 32px 0;
	}
	.index-catalog__headline {
		font-size: 28px;
		line-height: 36px;
	}
	.index-video {
		border-radius: 0;
		max-width: 100%;
		padding: 40px 0;
		text-align: left;
	}
	.index-video__wrapper {
		padding: 0 10px;
	}
	.index-video__headline {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 16px;
	}
	.index-video__text {
		font-size: 14px;
		line-height: 20px;
	}
	.index-video__player {
		border-radius: 4px;
	}
	.index-points {
		border-radius: 0;
		max-width: 100%;
		padding: 40px 0;
	}
	.index-points__wrapper {
		padding: 0 10px;
	}
	.index-points__headline {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 16px;
	}
	.index-points__text {
		font-size: 14px;
		line-height: 20px;
	}
	.index-points__item {
		margin-top: 32px;
	}
	.index-reviews {
		border-radius: 0;
		margin-bottom: 40px;
		max-width: 100%;
		padding: 40px 10px;
		width: 100%;
	}
	.index-reviews__headline {
		font-size: 28px;
		line-height: 36px;
	}
	.index-reviews__text {
		font-size: 14px;
		line-height: 20px;
		margin: 16px 0 32px;
	}
	.indexreviews-scroll__row-item {
		-ms-flex-preferred-size: 240px;
		flex-basis: 240px;
		max-width: 240px;
	}
	.indexreview {
		padding: 12px;
	}
	.indexreview__user-name {
		font-size: 12px;
		line-height: 16px;
	}
	.indexreview__user-rating {
		height: 12px;
	}
	.indexreview__text {
		font-size: 14px;
		line-height: 20px;
		margin-top: 12px;
	}

	/* Account */
	[class*="span"] {
		margin-left: 0;
	}

	/* Categories list */
	.manufacturer-list {
		display: block;
		width: 100%;
	}

	/* GeoIP */
	.geoip-modal-dialog .geo-col{
		width:50%;
		float:left;
	}
	.ui-menu {
		max-height: 260px;
	}
	.ui-menu .ui-menu-item {
		font-size: 14px;
		line-height: 20px;
	}

	/* Account */
	.account {
		min-height: calc(100vh - 871px);
		padding: 32px 0;
	}
	.account__col--menu {
		order: 1;
	}
	.account__col--body {
		order: 2;
	}
	.account-menu {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -8px;
		position: relative;
		top: 0;
	}
	.account-menu__item {
		margin-bottom: 12px;
	}
	.account-menu__item-label {
		font-size: 14px;
		line-height: 20px;
		padding: 4px 8px;
	}
	.account-menu__item-label--is-change {
		background-color: #D9F0FA;
		border-radius: 4px;
	}
	.account-menu__item-label--is-change::before {
		content: none;
	}
	.account-menu__item:first-child .account-menu__item-label--is-change {
		margin-left: 8px;
	}
	.account__headline {
		font-size: 28px;
		line-height: 36px;
		margin-top: 20px;
		padding-bottom: 20px;
	}
	.account__title {
		font-size: 28px;
		line-height: 36px;
		margin: 20px 0;
	}
	.account__paragraph {
		font-size: 14px;
		line-height: 20px;
		margin: 16px 0 0;
	}
	.account-orderlist__item-caption {
		font-size: 12px;
		line-height: 16px;
	}
	.account-orderlist__item--status .account-orderlist__item-value {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.account-orderlist__item {
		padding: 8px 0;
	}
	.account-orderlist__row {
		padding: 12px 0;
	}
	.account-orderlist__empty {
		font-size: 14px;
		line-height: 20px;
	}

	/* Registration */
	.registration {
		padding-bottom: 40px;
	}
	.registration__headline {
		font-size: 24px;
		line-height: 32px;
		margin: 32px 0 16px;
	}
	.registration__subtext {
		font-size: 14px;
		line-height: 20px;
	}
	.registration-section__title {
		font-size: 20px;
		line-height: 28px;
	}
	.registration-section__input {
		margin-top: 16px;
	}
	.registration-section__input-label {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 4px;
		padding-top: 0;
	}
	.registration-checkbox__text {
		font-size: 12px;
		line-height: 16px;
	}
	.registration-checkbox__error {
		font-size: 10px;
		line-height: 12px;
	}
	.registration-button {
		display: block;
		margin-top: 16px;
		padding: 12px 0;
	}
	
	/* Contacts */
	.contacts {
		padding-bottom: 40px;
	}
	.contacts-section {
		margin-top: 32px;
	}
	.contacts-section__title {
		font-size: 24px;
		line-height: 32px;
	}
	.contacts-section__subhead {
		font-size: 16px;
		line-height: 24px;
		margin: 16px 0 8px;
	}
	.contacts-methods__item {
		height: auto;
		margin-top: 16px;
	}
	.contacts-methods__item-value {
		font-size: 20px;
		line-height: 28px;
		margin: 12px 0 4px;
	}
	.contacts-methods__item-caption {
		font-size: 16px;
		line-height: 24px;
	}
	.contacts-delivery__info-logo {
		margin-right: 12px;
		width: 72px;
	}
	.contacts-delivery__info-title {
		font-size: 16px;
		line-height: 24px;
	}
	.contacts-delivery__info-text {
		font-size: 14px;
		line-height: 20px;
		margin-top: 12px;
	}
	.contacts-delivery__method {
		margin-top: 16px;
	}
	.contacts-delivery__method-title {
		font-size: 14px;
		line-height: 20px;
	}
	.contacts-delivery__method-caption {
		font-size: 12px;
		line-height: 16px;
		margin: 4px 0 16px;
	}
	.contacts-delivery__method-price {
		font-size: 16px;
		line-height: 24px;
	}
	.contacts-section__link {
		font-size: 16px;
		line-height: 24px;
		margin-top: 24px;
	}
	.contacts-form {
		margin-top: 32px;
	}
	.contacts-form__title {
		font-size: 24px;
		line-height: 32px;
	}
	.contacts-form__item {
		margin-top: 16px;
	}
	.contacts-form__button {
		padding: 12px 0;
	}
	.contacts-delivery-points__title-links {
		margin: 12px 0 0;
	}
	.contacts-delivery-points__title-label {
		font-size: 16px;
		line-height: 24px;
	}
	.delivery-points {
		max-height: none;
	}
	.delivery-points__item-title {
		font-size: 14px;
		line-height: 20px;
	}
	.delivery-points__item-caption,
	.delivery-points__item-calendar {
		font-size: 12px;
		line-height: 16px;
	}
	.delivery-points__item-calendar {
		margin-top: 12px;
	}
	.contacts-info {
		margin-top: 32px;
	}
	.contacts-info__title {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 0;
	}
	.contacts-into__row {
		font-size: 14px;
		line-height: 20px;
	}

	/* Brandlist */
	.brands-list {
		padding: 32px 0;
	}
	.brands-list__headline {
		font-size: 24px;
		line-height: 32px;
	}
	.brandslist__item {
		margin-top: 24px;
	}
	.brandslist__item-headline {
		font-size: 20px;
		line-height: 28px;
	}
	.brands-alphabet {
		/*top: 220px;*/
		width: 30px;
		top: 160px;
		height: calc(100vh - 200px);
		overflow: scroll;
		transform: translateY(0);
	}
	
	/*
	.brands-alphabet::-webkit-scrollbar { 
		width: 0;
		height: 0;
	}
	*/
	
	.brands-alphabet__item {
		font-size: 12px;
		line-height: 12px;
		margin-bottom: 12px;
	}

	/* Products model list */
	.product-models-list {
		columns: 1 auto;
		padding: 0;
	}
	.manufacturer-page {
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media screen and (max-width: 375px) {
	.brands-alphabet {
		top: 164px;
	}
}

@media screen and (max-width: 320px) {
	.brands-alphabet {
		top: 96px;
	}
}

/*serg*/
#cart .content {
	background-color: #FFFFFF;
	border-radius: 4px;
	clear: both;
	display: none;
	position: absolute;
	top: 48px;
	right: 0;
	min-height: 150px;
	min-width: 350px;
	box-shadow: -4px 4px 12px rgba(0,0,0,.08);
	padding: 16px;
	width: 420px;
	margin: 0;
}

#cart.active .content{
	display: block;
	z-index: 105;
	margin-left: 0px !important;
}

#cart .content .empty {
	font-size: 16px;
	font-weight: 500;
	left: 16px;
	line-height: 24px;
	position: absolute;
	right: 16px;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}
#cart .content .checkout {
	padding-top: 16px;
	text-align: center;
}


.catalog-item__link-body.bold {
	font-weight:bold;
}

div.last4phone{
	padding:20px;
}

input[name="last4phone"]{
	margin-top:16px;
}

#last4phone{
	margin-left:10px;
	margin-top:16px;
	background-color: #00AA5B;
	border: none;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.4px;
	outline: none;
	padding: 16px 10px;
	text-align: center;
	text-transform: uppercase;
}

.video-container {
	overflow: hidden;
	position: relative;
	width:100%;
}

.video-container::after {
	padding-top: 56.25%;
	display: block;
	content: '';
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 480px) {
	#last4phone{
		margin-left:0px;
		margin-top:16px;
		width:100%;
	}
	
	input[name="last4phone"]{
		width:100%;
	}
	
	div.last4phone{
		text-align:center;
	}
	
	.product-noitem__text{
		display:none;
	}
}


.error{
	color:red;
}

.alert-info {
background-color:#fff;
max-width: 1100px;
    width: 100%;
color:#292929;
text-align:center;
border:2px solid #FF9C2A;
border-radius: 0;
margin:15px 0;
text-shadow: none;
padding:10px;
}


label[for="ozon.ozoncourier"]{
	display:none;
}


.spl-theme{
	display:none!important;
}

.cloud-zoom-loading{
	display:none!important;
}

.header-whatsapp-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 4px;
    margin-right: 8px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.header-whatsapp-icon .icon {
    fill: #FFF;
    width: 100%;
    height: 100%;
}

.header-telegram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.header-telegram-icon svg {
    width: 17px;
    height: 17px;
}

.header-max-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #6E1AFF;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.header-max-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Выравнивание текста по центру иконок */
.header-phone__number {
    display: inline-flex;
    align-items: center;
}

/* Свечение иконок при наведении убрано (21.07.2026) — ховер только окрашивает текст TG/MAX */

/* Ховер в шапке: текст TG/MAX окрашивается в цвет иконки, мгновенно, без плавных переходов */
.header-phone .header-phone__messengers a.header-phone__number,
.header-phone .header-phone__messengers a.header-phone__number .header-telegram-icon,
.header-phone .header-phone__messengers a.header-phone__number .header-max-icon {
    transition: none;
}
.header-phone .header-phone__messengers a.header-phone__number[href*="t.me"]:hover {
    color: #0088CC !important;
    text-shadow: none !important;
}

.header-phone .header-phone__messengers a.header-phone__number[href*="max.ru"]:hover {
    color: #6E1AFF !important;
    text-shadow: none !important;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-phone__messengers {
    display: flex;
    gap: 16px;
    margin-bottom: 4px;
}

/* Убираем сдвиг и вертикальные поля от старого стиля телефона; подписи крупнее.
   Итоговая высота блока = 32 (иконки) + 4 (зазор) + 12 (время) = 48px, как у поиска */
.header-phone__messengers .header-phone__number {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 22px;
}

/* Подписи прижаты к своим иконкам (зазор между кнопками задаёт gap контейнера).
   У TG на 2px теснее — оптическая компенсация «воздушной» буквы T */
.header-phone__messengers .header-telegram-icon {
    margin-right: 4px;
}

.header-phone__messengers .header-max-icon {
    margin-right: 6px;
}

.contacts-methods__item .header-telegram-icon {
    background-color: #0088CC;
    border-radius: 50%;
    padding: 0; /* убираем отступы */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contacts-methods__item .header-telegram-icon svg {
    width: 26px;
    height: 26px;
    transform: translateX(-3px); /* сдвиг влево на 2px */
}

/* Спиннер на кнопке "Добавить в корзину" */
.btn-cart-wrap {
    position: relative;
    display: block;
    width: 100%;
}
.btn-cart-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-cart-spin 0.6s linear infinite;
    pointer-events: none;
    z-index: 10;
}
@keyframes btn-cart-spin {
    to { transform: rotate(360deg); }
}

/* Пустая корзина на чекауте */
.checkout-empty {
    padding: 0 0 60px;
}
.checkout-empty__hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 40px;
    background: #F8F9FB;
    border-radius: 16px;
    margin-bottom: 40px;
}
.checkout-empty__icon-wrap {
    flex-shrink: 0;
}
.checkout-empty__content {
    flex: 1;
}
.checkout-empty__title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}
.checkout-empty__text {
    font-size: 15px;
    color: #8C8C8C;
    margin-bottom: 24px;
    line-height: 1.5;
}
.checkout-empty__button {
    display: inline-block;
    padding: 12px 32px;
    background: #007AFF;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
.checkout-empty__button:hover {
    background: #0066D6;
    color: #fff;
    text-decoration: none;
}
.checkout-empty__viewed-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}
.checkout-empty__viewed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.viewed-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #ECEEF2;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.viewed-card:hover {
    border-color: #007AFF;
    box-shadow: 0 2px 8px rgba(0,122,255,0.1);
    text-decoration: none;
    color: inherit;
}
.viewed-card__img {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 8px;
    background: #F8F9FB;
}
.viewed-card__info {
    flex: 1;
    min-width: 0;
}
.viewed-card__name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.viewed-card__price {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    white-space: nowrap;
}
.viewed-card__price--old {
    font-size: 13px;
    font-weight: 400;
    color: #AAA;
    text-decoration: line-through;
    margin-right: 4px;
}
.viewed-card__price--new {
    color: #E53935;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .checkout-empty__hero {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
        gap: 20px;
    }
    .checkout-empty__hero svg { width: 90px; height: 90px; }
    .checkout-empty__title { font-size: 20px; }
    .checkout-empty__viewed-grid { grid-template-columns: 1fr; }
}


/* 2026-07-20: воздух между блоком чекаута и summary-сайдбаром на десктопе —
   левая колонка упиралась почти вплотную в карточку "Итого" */
@media screen and (min-width: 993px) {
	.grid--fluid-padding > .checkout__col--info {
		padding-right: 50px;
	}
}

/* 2026-07-20: переключатель "на карте / списком" у ПВЗ — сегмент-контрол
   вместо текстовых ссылок (клиенты не замечали, что вид можно сменить).
   --disable = ТЕКУЩИЙ вид (исторически "отключённая ссылка") = синий сегмент */
.checkout-delivery-points__title-links {
	margin: 0; /* было 0 -6px под текстовые ссылки — кнопки вылезали за край блока */
}
.checkout-delivery-points__title-linkitem {
	background: #fff;
	border: 2px solid #E5E5EA;
	margin: 0;
	padding: 6px 14px;
	user-select: none;
}
.checkout-delivery-points__title-linkitem:first-of-type {
	border-radius: 4px 0 0 4px;
	border-right-width: 1px;
}
.checkout-delivery-points__title-linkitem:last-of-type {
	border-radius: 0 4px 4px 0;
	border-left-width: 1px;
}
.checkout-delivery-points__title-linkitem:hover {
	border-color: #D1D1D6;
}
.checkout-delivery-points__title-linkitem--disable,
.checkout-delivery-points__title-linkitem--disable:hover {
	background: #007AFF;
	border-color: #007AFF;
	color: #fff;
}
.checkout-delivery-points__title-linklabel {
	margin-right: 10px;
}

/* 2026-07-20: поле "Поиск по адресу ПВЗ" — на всю ширину блока (боковые
   отступы убраны, правый край совпадает с карточками) + радиус 4px как у темы */
.yandex-pvz-search {
	padding: 10px 0 15px;
}
#yandex-pvz-search-input {
	border-radius: 4px;
}

/* 2026-07-21: мобильный вид переключателя "на карте / списком" — подпись
   "Показать:" скрыта, сегмент-контрол на всю ширину 50/50 с отступом от
   заголовка (было: прижат к "Пункты самовывоза" с невнятным выравниванием) */
@media screen and (max-width: 767px) {
	.checkout-delivery-points__title-linklabel {
		display: none;
	}
	.checkout-delivery-points__title-links {
		width: 100%;
		margin-top: 12px;
	}
	.checkout-delivery-points__title-linkitem {
		flex: 1 1 50%;
		text-align: center;
	}
}

/* Телефон в футере — компактная строка */
.footer-phone {
	margin-bottom: 20px;
	white-space: nowrap;
}
.footer-phone a {
	color: #1C1C1E;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}
.footer-phone a:hover {
	color: #007AFF;
}
.footer-phone__note {
	color: #8E8E93;
	font-size: 13px;
	margin-left: 8px;
}

/* Логотипы платёжных систем в футере (требования эквайринга) */
.footer-payments {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	height: 100%;
	opacity: .75;
}
.footer-payments__logo {
	width: auto;
	display: block;
}
.footer-payments__logo--mir {
	height: 14px;
}
.footer-payments__logo--visa {
	height: 15px;
}
.footer-payments__logo--mc {
	height: 28px;
}
@media screen and (max-width: 767px) {
	.footer-payments {
		justify-content: flex-start;
		margin-top: 16px;
	}
}
.footer-bottom__oferta-link {
	color: #8E8E93;
	text-decoration: underline;
}
.footer-bottom__oferta-link:hover {
	color: #007AFF;
}

/* Ховер мессенджеров (шапка + контакты) — затемнение фирменного цвета, как в футере.
   Переопределяет старые правила: чёрный #141414 на контактах и "свечения" в шапке. */
.header-phone__number:hover {
	text-shadow: none;
}
.contacts-methods__item-icon {
	transition: background-color 0.3s ease;
}
.contacts-methods__item:hover .contacts-methods__item-icon {
	background-color: #F44925;
}
.contacts-methods__item:hover .header-telegram-icon {
	background: #1E96D1;
}
.contacts-methods__item[href*="max.ru"]:hover .contacts-methods__item-icon {
	background-color: #5C10E0;
}

/* Футер: компактная колонка «Контакты» в ритме соседних колонок */
.footer-contacts__row {
	margin-top: 16px;
}
.footer-contacts__value {
	color: #141414;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 23px;
	text-decoration: none;
}
.footer-contacts__value:hover {
	color: #007AFF;
}
.footer-contacts__note {
	color: #8E8E93;
	font-size: 13px;
	line-height: 18px;
	margin-top: 2px;
}
.footer-contacts__row .footer-social {
	margin-top: 4px;
}
.footer-contacts__note--social {
	margin-top: 8px;
}

/* === Правая колонка карточки товара: траст-блок (07.2026) === */

/* Цена: тёмная жирная + розовый бейдж скидки (вместо розовой цены) */
.product-price__value,
.product-price__value--sale {
	color: #161616;
	font-weight: 700;
	letter-spacing: -0.6px;
}
.product-price__old {
	margin-bottom: 5px;
}
.product-price__discount {
	background-color: #F91155;
	border-radius: 8px;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 5px;
	margin-left: 12px;
	padding: 3px 8px;
}

/* Статус-чипы: «В наличии» + «Отправим сегодня/завтра» */
.product-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
.product-chip {
	align-items: center;
	border-radius: 8px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 500;
	gap: 6px;
	line-height: 18px;
	padding: 5px 10px;
	white-space: nowrap;
}
.product-chip--stock {
	background-color: rgba(0, 170, 91, .12);
	color: #009457;
}
.product-chip--ship {
	background-color: rgba(0, 122, 255, .1);
	color: #007AFF;
}
/* На совсем узких экранах разрешаем перенос текста внутри чипа,
   чтобы не вылезал за колонку */
@media (max-width: 360px) {
	.product-chip {
		white-space: normal;
	}
}

/* Допы (батарейки) карточкой */
.product-additional {
	margin-top: 16px;
}
.product-places {
	margin: 16px 0;
	width: 100%;
}
.product-places__block-item {
	font-size: 13px;
	margin-right: 8px;
	margin-top: 8px;
	padding: 6px 12px;
}
/* «Тип пульта» компактно: имя и цена в одну строку, у активного цена скрыта
   (она уже показана крупно над кнопкой) */
.product-option {
	margin: 16px 0;
}
.product-option__title {
	margin-bottom: 8px;
}
.product-option__item {
	border-radius: 8px;
	margin-right: 8px;
	padding: 6px 14px;
}
.product-option__item-label,
.product-option__item-price {
	display: inline;
}
.product-option__item-price {
	font-size: 13px;
	margin-left: 5px;
}
.product-option__item--active .product-option__item-price {
	display: none;
}
.product-dopcard {
	align-items: center;
	background-color: #F6F7F9;
	border-radius: 10px;
	display: flex;
	gap: 10px;
	margin-top: 8px;
	padding: 7px 10px;
}
.product-dopcard__imglink {
	flex-shrink: 0;
	line-height: 0;
}
.product-dopcard__img {
	border-radius: 6px;
	height: 34px;
	object-fit: contain;
	width: 34px;
}
.product-dopcard__info {
	flex: 1 1 auto;
	min-width: 0;
}
.product-dopcard__name {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #141414;
	display: -webkit-box;
	font-size: 13px;
	line-height: 17px;
	overflow: hidden;
	text-decoration: none;
}
.product-dopcard__name:hover {
	color: #007AFF;
	text-decoration: none;
}
.product-dopcard__price {
	color: #8E8E93;
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
}
.product-dopcard__btn {
	cursor: pointer;
	flex-shrink: 0;
	margin: 0;
	position: relative;
}
.product-dopcard__checkbox {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}
.product-dopcard__btn-add,
.product-dopcard__btn-added {
	border-radius: 7px;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	padding: 5px 10px;
	white-space: nowrap;
}
.product-dopcard__btn-add {
	border: 1px solid rgba(0, 122, 255, .5);
	color: #007AFF;
}
.product-dopcard__btn:hover .product-dopcard__btn-add {
	background-color: rgba(0, 122, 255, .08);
}
.product-dopcard__btn-added {
	background-color: #00AA5B;
	border: 1px solid #00AA5B;
	color: #FFF;
	display: none;
}
.product-dopcard__checkbox:checked ~ .product-dopcard__btn-add {
	display: none;
}
.product-dopcard__checkbox:checked ~ .product-dopcard__btn-added {
	display: inline-block;
}

/* Блок доставки карточкой */
.product-delivery--card {
	background-color: #F6F7F9;
	border-radius: 10px;
	border-top: none;
	margin-top: 16px;
	padding: 10px 14px;
}
.product-delivery--card .product-delivery__title {
	font-size: 15px;
	line-height: 21px;
	margin-bottom: 4px;
}
.product-delivery--card .product-delivery__title .fa {
	color: #007AFF;
	margin-right: 6px;
}
.product-delivery--card .product-delivery__city {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 4px;
}
.product-delivery--card .product-delivery__label {
	border-top: 1px solid #E9EAEE;
	font-size: 14px;
	line-height: 20px;
	margin-top: 0;
	padding: 6px 0;
}
.product-delivery--card .product-delivery__label:first-child {
	border-top: none;
}
.product-delivery--card .product-delivery__infolink {
	font-size: 14px;
	line-height: 20px;
	margin-top: 6px;
}

/* Крошки на инфо-страницах — в один уровень с верхом бокового блока */
.breadcrumbs--info {
	margin: 6px 0 20px;
}

/* Боковой блок «Информация» на инфо-страницах — карточка в стиле магазина
   (вместо синей шапки из старой темы) */
.row__col--menu .box {
	background-color: #F6F7F9 !important;
	border: none;
	border-radius: 12px;
	box-shadow: none !important;
	margin-top: 9px;
	padding: 6px 8px 10px;
}
.row__col--menu .box .box-heading {
	background-color: transparent !important;
	line-height: 24px;
	padding: 10px 10px 4px;
}
.row__col--menu .box .box-heading h2 {
	color: #141414;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 0;
}
.row__col--menu .box .box-content {
	padding: 0;
}
.row__col--menu .box .box-content-account ul,
.row__col--menu .box .box-content-information ul {
	padding: 0;
}
.row__col--menu .box .box-content-account ul li,
.row__col--menu .box .box-content-information ul li {
	line-height: 20px;
}
.row__col--menu .box .box-content-account ul li a,
.row__col--menu .box .box-content-information ul li a {
	border-radius: 8px;
	color: #141414;
	display: block;
	font-size: 14px;
	padding: 8px 10px;
	text-decoration: none;
}
.row__col--menu .box .box-content-account ul li a:hover,
.row__col--menu .box .box-content-information ul li a:hover {
	background-color: rgba(0, 122, 255, .08);
	color: #007AFF;
}

/* Меньше воздуха между карточкой товара и табами (было 48+48px) */
.product-info {
	padding-bottom: 24px;
}
.product-content {
	padding-top: 24px;
}

/* Иконки в табах карточки товара — через ::before по href, НЕ через разметку:
   VQMod questions_and_answers.xml ищет точную строку таба отзывов */
.product-tabs__item::before {
	font-family: FontAwesome;
	font-weight: 400;
	margin-right: 7px;
	opacity: .55;
}
.product-tabs__item.selected::before {
	opacity: 1;
}
.product-tabs__item[href="#tab-description"]::before { content: "\f05a"; }
.product-tabs__item[href="#tab-compatible"]::before { content: "\f108"; }
.product-tabs__item[href="#tab-related"]::before { content: "\f0ec"; }
.product-tabs__item[href="#tab-reviews"]::before { content: "\f006"; }
.product-tabs__item[href="#tab-qa"]::before { content: "\f059"; }

/* Кнопка корзины и допы — на всю ширину колонки, чтобы блоки были одной ширины */
#button-cart.product-button__item,
#button-cart1.product-button__item,
#button-cart3.product-button__item,
.product-additional {
	width: 100%;
}

/* Логотипы платёжных систем */
.product-payicons {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
.product-payicons__logo {
	display: block;
	height: 14px;
	width: auto;
}
.product-payicons__label {
	color: #8E8E93;
	font-size: 13px;
	line-height: 16px;
	margin-left: 2px;
}
.product-payicons__label .fa {
	margin-right: 4px;
}
