@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap);
:root {
	--vertical-offset: 5rem
}

html {
	height: 100%;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
	height: 100%;
	font-family: "Inter", sans-serif;
	color: #02070d;
	font-size: 14px;
	line-height: 20px;
	background-color: #fff
}

body.dark-background {
	background-color: #02070d;
	color: #f7f7f7
}

body.dark-background .loader {
	fill: #ff0
}

body.dark-background .header__user .btn {
	background-color: #ff0;
	border: 1px solid #ff0
}

body.dark-background .header__backorder .btn {
	background-color: #ff0;
	border: 1px solid #ff0
}

dl>*,
address,
cite {
	font-style: normal
}

*,
*::before,
*::after {
	box-sizing: inherit
}

button {
	padding: 0;
	border: none;
	background: none;
	cursor: pointer
}

abbr[title] {
	border: none
}

a {
	text-decoration: none;
	color: #f7f7f7
}

a:hover {
	text-decoration: underline
}

a:focus {
	outline: 0
}

ul,
ol {
	padding: 0;
	margin: 0;
	list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0
}

p {
	margin: 0
}

a {
	background: none
}

svg g {
	clip-path: inherit
}

input::-moz-placeholder {
	transition: all .25s ease;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-o-transition: all .25s ease;
	color: #7c7c7c
}

input::placeholder {
	transition: all .25s ease;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-o-transition: all .25s ease;
	color: #7c7c7c
}

input:focus::-moz-placeholder {
	opacity: 0
}

input:focus::placeholder {
	opacity: 0
}

.container {
	max-width: 1456px;
	margin: 0 auto
}

@media screen and (max-width: 1470px) {
	.container {
		max-width: 100%;
		margin: 0 8px
	}
}

#wraper {
	display: flex;
	min-height: 100vh;
	flex-direction: column
}

#wraper main {
	flex: 1
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(2, 7, 13, .5);
	z-index: 100;
	cursor: pointer
}

.section {
	margin-bottom: 96px
}

@media screen and (max-width: 992px) {
	.section {
		margin-bottom: 64px
	}
}

.nowrap {
	white-space: nowrap
}

.accentuated-text {
	color: #ff0
}

.mb-40 {
	margin-bottom: 40px !important
}

.mb-32 {
	margin-bottom: 32px !important
}

.mb-28 {
	margin-bottom: 28px !important
}

.mb-24 {
	margin-bottom: 24px !important
}

.mb-16 {
	margin-bottom: 16px !important
}

.mb-12 {
	margin-bottom: 12px !important
}

.mb-8 {
	margin-bottom: 8px !important
}

.mb-4 {
	margin-bottom: 4px !important
}

.mb-0 {
	margin-bottom: 0 !important
}

.text-center {
	text-align: center !important
}

.text-left {
	text-align: left !important
}

.text-right {
	text-align: right !important
}

.text-decoration {
	text-decoration: underline !important
}

.text-decoration-none {
	text-decoration: none !important
}

.w-100 {
	width: 100% !important
}

.d-flex {
	display: flex !important
}

.align-items-center {
	align-items: center !important
}

.d-grid {
	display: grid !important
}

.justify-content-between {
	justify-content: space-between !important
}

.hidden {
	display: none !important
}

body.fixed {
	overflow: hidden !important;
	padding-right: 7px
}

.page-404 {
	margin-top: -128px;
	padding-top: 128px;
	background-image: url("/assets/images/404-bg.png");
	background-repeat: no-repeat;
	padding-bottom: 251px;
	background-position: center;
	background-size: cover
}

@media screen and (max-width: 992px) {
	.page-404 {
		background-position: inherit
	}
}

.page-404__image img {
	max-width: 100%
}

.page-404__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 56px;
	font-weight: 700;
	line-height: 64px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	margin-bottom: 8px
}

@media screen and (max-width: 576px) {
	.page-404__title {
		font-size: 32px
	}
}

.page-404__title span {
	color: #ff0
}

.page-404__description {
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	max-width: 440px;
	margin: 0 auto
}

.loader {
	width: 46px;
	height: 46px;
	transition: all .3s ease;
	animation: animation-loader 1.2s ease infinite;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	display: none;
	z-index: 20
}

.loader.loader--block {
	position: absolute
}

@keyframes animation-loader {
	0% {
		opacity: 1;
		transform: scale(1)
	}
	100% {
		opacity: 0;
		transform: scale(0.9)
	}
}


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

main {
	display: block
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: rgba(0, 0, 0, 0)
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: bold
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -0.25em
}

sup {
	top: -0.5em
}

img {
	border-style: none
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0
}

button,
input {
	overflow: visible;
	outline: none
}

button,
select {
	text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border: 0;
	padding: 0
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText
}

fieldset {
	padding: .35em .75em .625em
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

details {
	display: block
}

summary {
	display: list-item
}

template {
	display: none
}

[hidden] {
	display: none
}

.btn {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	transition: all .25s ease;
	padding: 0 20px
}

.btn span {
	padding: 0 0 0 10px
}

.btn-large {
	border-radius: 12px;
	height: 56px;
	font-size: 22px;
	line-height: 32px
}

.btn-large svg {
	width: 16px;
	height: 21px
}

.btn-large.btn-only-icon {
	padding: 0 16px
}

.btn-medium {
	border-radius: 8px;
	height: 48px;
	font-size: 18px;
	line-height: 20px
}

.btn-medium svg {
	width: 16px;
	height: 21px
}

.btn-medium.btn-only-icon {
	padding: 0 16px
}

.btn-small {
	border-radius: 8px;
	height: 40px;
	font-size: 16px;
	line-height: 16px
}

.btn-small svg {
	width: 11px;
	height: 14px
}

.btn-small.btn-only-icon {
	padding: 0 12px
}

.btn-yellow {
	background-color: #ff0;
	color: #02070d
}

.btn-yellow:hover {
	background-color: #fff30a
}

.btn-additional-yellow {
	background-color: #ffc400;
	color: #02070d
}

.btn-green {
	background-color: #3c3;
	color: #02070d
}

.btn-green.btn-green--text-white {
	color: #fff
}

.btn-blue {
	background-color: #238dff;
	color: #02070d
}

.btn-blue.btn-blue--text-white {
	color: #fff
}

.btn-red {
	background-color: #ff2727;
	color: #02070d
}

.btn-red.btn-red--text-white {
	color: #fff
}

.btn-black {
	background-color: #02070d;
	color: #f7f7f7
}

.btn-black:hover {
	background-color: #171717
}

.btn-black svg {
	fill: #fff
}

.btn-white {
	background-color: #f7f7f7;
	color: #02070d
}

.btn-grey {
	background-color: #f7f7f7;
	color: #02070d
}

.btn-outline {
	background-color: #fff;
	border: 1px solid #d0d0d0;
	color: #02070d
}

.btn-outline:hover {
	border: 1px solid #171717
}

.btn-disabled {
	background-color: #ededed;
	color: #7c7c7c;
	pointer-events: none
}

.input-group {
	position: relative
}

.input-group svg {
	width: 11px;
	height: 14px;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	z-index: 1;
	pointer-events: none
}

.input-group--left .form-input {
	padding-left: 32px
}

.input-group--left svg {
	left: 14px
}

.input-group .input-phone-wrap {
	display: grid;
	grid-template-columns: 99px 1fr;
	gap: 8px
}

.input-group .input-phone-wrap .form-select-custom__tooltip {
	width: auto
}

.input-group.form-error:after {
	content: "";
	display: block;
	position: absolute;
	width: 13.33px;
	height: 13.33px;
	background-image: url("/assets/images/svg/error-input-icon.svg");
	right: 13px;
	top: 41px
}

.input-group.form-error .form-input,
.input-group.form-error .form-select-custom__current {
	border-color: #ff2727;
	box-shadow: 0 0 6px rgba(255, 39, 39, .3)
}

.input-group.form-error .form-input:hover,
.input-group.form-error .form-select-custom__current:hover {
	border-color: #ff2727
}

.input-group.form-error .input-error {
	display: block
}

.input-group.form-error--select:after {
	right: 30px;
	z-index: 5
}

.input-group.input-group--double .form-input-group {
	position: absolute;
	height: 20px;
	width: 48px;
	border: none;
	border-right: 1px solid #d0d0d0;
	top: 38px;
	left: 5px;
	padding-left: 12px
}

.input-group.input-group--double .form-input {
	padding-left: 71px
}

.input-group.input-group--disabled .input-label {
	color: #7c7c7c
}

.input-group.input-group--disabled .form-input {
	border: 1px solid #d0d0d0;
	background-color: #ededed;
	color: #7c7c7c
}

.input-group.input-group--disabled .form-input-group {
	background-color: #ededed;
	color: #7c7c7c
}

.input-group.input-group--disabled .form-select-custom__current {
	background-color: #ededed;
	color: #7c7c7c
}

.input-group.input-group--dark svg {
	fill: #ededed
}

.input-icon {
	position: relative
}

.input-icon svg {
	position: absolute;
	top: 50%;
	margin-top: -5px;
	z-index: 1;
	pointer-events: none;
	width: 12px;
	height: 12px
}

.input-icon.input-icon--right svg {
	right: 10px
}

.input-icon.input-icon--right .form-input {
	padding-right: 32px
}

.input-error {
	color: #ff2727;
	font-weight: 400;
	display: none
}

.input-text {
	color: #02070d;
	font-weight: 400
}

.input-label {
	font-weight: 500;
	line-height: 20px;
	color: #02070d;
	display: inline-block;
	margin-bottom: 4px;
	width: 100%
}

.form-input {
	border: 1px solid #d0d0d0;
	border-radius: 12px;
	height: 48px;
	width: 100%;
	color: #02070d;
	padding: 0 12px;
	transition: all .3s ease
}

.form-input:hover:enabled {
	border: 1px solid #171717
}

.form-input:focus {
	outline: none;
	border-color: #212121;
	box-shadow: 0 0 6px rgba(2, 7, 13, .3)
}

.form-input::-ms-expand {
	display: none
}

.form-input:disabled {
	background: #ededed;
	border-color: #d0d0d0;
	color: #7c7c7c
}

.form-input.form-input--dark {
	border: 1px solid #7c7c7c;
	color: #7c7c7c;
	background-color: #02070d
}

.form-input.form-input--dark:hover:enabled {
	border: 1px solid #ededed
}

.form-input.form-input--dark:focus {
	border-color: #ededed;
	box-shadow: 0 0 6px rgba(237, 237, 237, .3)
}

.form-input.form-input--dark::-ms-expand {
	display: none
}

.form-input.form-input--dark:disabled {
	background: #262626;
	border-color: #494949;
	color: #7c7c7c
}

.form-input[type=date]::-webkit-calendar-picker-indicator {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 24px;
	height: 24px;
	color: rgba(0, 0, 0, 0);
	background: rgba(0, 0, 0, 0);
	z-index: 1
}

.form-input[type=date]:after {
	content: "";
	display: block;
	position: absolute;
	width: 24px;
	height: 24px;
	background-image: url("/assets/images/svg/calendar-icon-bw.svg");
	top: 50%;
	right: 12px
}

.form-input--small {
	height: 40px
}

.form-textarea {
	border: 1px solid #d0d0d0;
	border-radius: 12px;
	color: #02070d;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 12px 0 12px;
	width: 100%;
	transition: all .3s ease;
	resize: none
}

.form-textarea:hover:enabled {
	border: 1px solid #171717
}

.form-textarea:hover:enabled {
	border: 1px solid #171717
}

.form-textarea:focus {
	outline: none;
	border-color: #212121;
	box-shadow: 0 0 6px rgba(2, 7, 13, .3)
}

.form-textarea:disabled {
	background: #ededed;
	border-color: #d0d0d0;
	color: #7c7c7c
}

.form-select {
	position: relative
}

.form-select:before {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -5px;
	display: block;
	border: 1px solid #494949;
	border-width: 0 1px 1px 0;
	padding: 2.5px;
	transform: rotate(45deg);
	transition: all .3s ease;
	pointer-events: none
}

.form-select select {
	width: 100%;
	height: 48px;
	border: 1px solid #d0d0d0;
	border-radius: 12px;
	color: #7c7c7c;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
	z-index: 10;
	padding: 0 8px;
	background: #fff;
	cursor: pointer
}

.form-select select:hover:enabled {
	border: 1px solid #171717
}

.form-select select:focus {
	outline: none;
	border-color: #212121;
	box-shadow: 0 0 6px rgba(2, 7, 13, .3)
}

.form-select select::-ms-expand {
	display: none
}

.form-select select:disabled {
	background: #ededed;
	border-color: #d0d0d0;
	color: #7c7c7c
}

.form-select.form-select--black:before {
	border-right: 1px solid #ededed;
	border-bottom: 1px solid #ededed
}

.form-select.form-select--black select {
	background-color: #02070d;
	border: 1px solid #7c7c7c;
	color: #7c7c7c
}

.form-select.form-select--black select:hover:enabled {
	border-color: #ededed
}

.form-select.form-select--black select:disabled {
	background-color: #262626;
	border: 1px solid #494949
}

.form-select-custom__select {
	position: relative;
	width: 100%
}

.form-select-custom__select.form-select-custom__select--disabled .form-select-custom__current {
	background-color: #ededed;
	border-color: #d0d0d0;
	color: #7c7c7c
}

.form-select-custom__select.form-select-custom__select--disabled .form-select-custom__current:after {
	border-right: 1px solid #7c7c7c;
	border-bottom: 1px solid #7c7c7c
}

.form-select-custom__current {
	width: 100%;
	height: 48px;
	border: 1px solid #d0d0d0;
	border-radius: 12px;
	color: #7c7c7c;
	position: relative;
	box-sizing: border-box;
	z-index: 5;
	padding: 0 30px 0 8px;
	background: #fff;
	cursor: pointer;
	transition: all .3s ease
}

.form-select-custom__current:hover {
	border: 1px solid #171717
}

.form-select-custom__current.disabled {
	background: #ededed;
	border-color: #d0d0d0;
	color: #7c7c7c;
	pointer-events: none
}

.form-select-custom__current.disabled:after {
	border-right: 1px solid #7c7c7c;
	border-bottom: 1px solid #7c7c7c
}

.form-select-custom__current:after {
	content: "";
	position: absolute;
	right: 13px;
	margin-top: -5px;
	border-right: 1px solid #494949;
	border-bottom: 1px solid #494949;
	pointer-events: none;
	top: 50%;
	height: 6px;
	width: 6px;
	transition: all .3s ease;
	transform: rotate(45deg)
}

.form-select-custom__current-body {
	display: flex;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
	font-weight: 400;
	height: 100%
}

.form-select-custom__current-body.select {
	color: #02070d
}

.form-select-custom__current.active:after {
	transform: rotate(225deg);
	margin-top: -2px
}

.form-select-custom__tooltip {
	box-shadow: 0 2px 2px rgba(19, 37, 48, .08), 0 0 3px rgba(19, 37, 48, .12);
	border-radius: 12px;
	padding: 14px 8px 14px 8px;
	background-color: #fff;
	margin-top: 4px;
	position: absolute;
	z-index: 11;
	display: none
}

.form-select-custom__tooltip-scroll {
	max-height: 348px;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.form-select-custom__tooltip-scroll::-webkit-scrollbar-track {
	border-radius: 12px;
	background-color: #fff
}

.form-select-custom__tooltip-scroll::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.form-select-custom__tooltip-scroll::-webkit-scrollbar-thumb {
	border-radius: 12px;
	background-color: #b0b0b0
}

.form-select-custom__tooltip-scroll {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0;
	overflow-y: scroll
}

.form-select-custom__tooltip-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #02070d;
	padding: 6px 0
}

.form-select-custom__list-item {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	padding: 6px 0 6px 8px;
	cursor: pointer;
	transition: all .3s ease;
	color: #02070d;
	white-space: nowrap
}

.form-select-custom__list-item:hover {
	background-color: #f7f7f7
}

.form-checkbox {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0
}

.form-checkbox+.form-checkbox-label {
	cursor: pointer;
	display: block;
	align-items: center;
	position: relative;
	font-size: 16px;
	padding-left: 26px;
	min-height: 20px;
	color: #02070d
}

.form-checkbox+.form-checkbox-label:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border: 1px solid #d0d0d0;
	border-radius: 2px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .3s ease
}

.form-checkbox+.form-checkbox-label:after {
	content: "";
	display: none;
	width: 12px;
	height: 7px;
	top: 5px;
	left: 4px;
	border-left: 2px solid #494949;
	border-bottom: 2px solid #494949;
	position: absolute;
	transform: rotate(-57deg)
}

.form-checkbox:checked+.form-checkbox-label:before {
	border-color: #02070d
}

.form-checkbox:checked+.form-checkbox-label:after {
	display: block
}

.form-checkbox:hover+.form-checkbox-label:before {
	border-color: #02070d
}

.form-checkbox:hover+.form-checkbox-label:after {
	opacity: 1
}

.form-checkbox:disabled+.form-checkbox-label {
	color: #7c7c7c
}

.form-checkbox:disabled+.form-checkbox-label:before {
	background-color: #ededed;
	border-color: #d0d0d0
}

.form-checkbox:disabled+.form-checkbox-label:after {
	opacity: 1;
	border-color: #b0b0b0
}

.form-radio {
	position: absolute;
	left: -9999px
}

.form-radio+.form-radio-label {
	cursor: pointer;
	display: block;
	align-items: center;
	position: relative;
	font-size: 16px;
	padding-left: 26px;
	min-height: 20px
}

.form-radio+.form-radio-label:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #d0d0d0;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .3s ease
}

.form-radio+.form-radio-label:after {
	content: "";
	display: none;
	width: 14px;
	height: 14px;
	top: 3px;
	border-radius: 50%;
	left: 3px;
	position: absolute;
	background-color: #02070d
}

.form-radio:checked+.form-radio-label:before {
	border-color: #02070d
}

.form-radio:checked+.form-radio-label:after {
	display: block
}

.form-radio:hover+.form-radio-label:before {
	border-color: #02070d
}

.form-radio:disabled+.form-radio-label {
	color: #7c7c7c
}

.form-radio:disabled+.form-radio-label:before {
	background-color: #ededed;
	border-color: #d0d0d0
}

.form-radio:disabled+.form-radio-label:after {
	opacity: 1;
	background-color: #b0b0b0
}

.form-radio.form-radio--black+.form-radio-label:before {
	border-color: #7c7c7c;
	background-color: #02070d
}

.form-radio.form-radio--black:checked+.form-radio-label:before {
	border-color: #ededed
}

.form-radio.form-radio--black:checked+.form-radio-label:after {
	background-color: #ff0
}

.form-file {
	visibility: hidden;
	position: absolute;
	opacity: 0;
	z-index: -9999;
	width: 1px;
	height: 1px
}

.form-file:disabled+.form-file-label {
	border: 1px solid #d0d0d0;
	color: #7c7c7c
}

.form-file:disabled+.form-file-label svg {
	fill: #b0b0b0
}

.form-file-label {
	border: 1px solid #d0d0d0;
	background-color: #fff;
	border-radius: 8px;
	padding: 12px 20px;
	width: 100%;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4px
}

.form-file-label svg {
	position: relative;
	margin-top: 0;
	margin-right: 8px;
	width: 16px;
	height: 16px
}

.file-name {
	display: flex;
	align-items: center;
	margin-right: 16px;
	position: relative;
	background-color: #f7f7f7;
	padding: 6px 12px;
	width: 393px;
	justify-content: space-between;
	margin-bottom: 8px
}

@media screen and (max-width: 576px) {
	.file-name {
		width: 100%
	}
}

.file-name .file-name__remove {
	background-image: url("/assets/images/svg/trash-icon-bw.svg");
	background-position: center;
	width: 16px;
	height: 16px;
	cursor: pointer;
	background-size: 100%
}

.file-name__text {
	max-width: 90%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

@media screen and (max-width: 576px) {
	.file-name__text {
		white-space: normal
	}
}

.input-text-file {
	font-size: 14px;
	color: #7c7c7c;
	font-weight: 400;
	line-height: 20px
}

.slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	border: none;
	z-index: 5;
	background-color: rgba(0, 0, 0, 0);
	cursor: pointer
}

.slick-arrow:before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 2px solid #494949;
	transform: rotate(-45deg);
	background: rgba(0, 0, 0, 0);
	box-sizing: border-box;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	right: 50%;
	margin-top: -3px;
	margin-right: -2px
}

.slick-arrow.slick-prev {
	left: -15px
}

.slick-arrow.slick-prev:before {
	border-bottom-color: rgba(0, 0, 0, 0);
	border-right-color: rgba(0, 0, 0, 0)
}

.slick-arrow.slick-next {
	right: -15px
}

.slick-arrow.slick-next:before {
	border-top-color: rgba(0, 0, 0, 0);
	border-left-color: rgba(0, 0, 0, 0)
}

.slick-dots {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: 0;
	bottom: -36px
}

.slick-dots li {
	margin: 0 10px;
	border: 1.25px solid #d0d0d0;
	box-sizing: border-box;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0);
	font-size: 0;
	width: 10px;
	height: 10px;
	cursor: pointer
}

.slick-dots li button {
	font-size: 0;
	border: none;
	opacity: 0
}

.slick-dots li.slick-active {
	background: #02070d
}

.page-title {
	font-weight: 700;
	font-size: 44px;
	line-height: 56px;
	font-family: "Roboto Condensed", sans-serif;
	margin-bottom: 24px;
	text-transform: uppercase
}

@media screen and (max-width: 768px) {
	.page-title {
		font-size: 36px;
		line-height: 40px
	}
}

.choose-lang {
	height: 100%;
	background-image: url("/img/main-bg-1.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover
}

.choose-lang-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding-top: 10%;
	background-size: cover;
	height: 100%
}

@media screen and (max-width: 840px) {
	.choose-lang-wrap {
		margin: 0 10px
	}
}

@media screen and (max-width: 650px) {
	.choose-lang-wrap {
		padding-top: 44px
	}
}

.choose-lang__logo {
	position: relative;
	margin-bottom: 120px
}

@media screen and (max-width: 650px) {
	.choose-lang__logo {
		margin-bottom: 64px
	}
}

.choose-lang__logo img {
	width: 250px
}

.choose-lang__body {
	max-width: 867px;
	padding: 32px 32px 48px 32px;
	background-color: #f7f7f7;
	border-radius: 32px;
	position: relative
}

@media screen and (max-width: 650px) {
	.choose-lang__body {
		padding: 32px 22px
	}
}

.choose-lang__body-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	text-align: center;
	margin-bottom: 16px;
	color: #02070d
}

.choose-lang__body-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c;
	margin-bottom: 32px;
	text-align: center
}

.choose-lang__body-item {
	text-align: center
}

.choose-lang__body-item .flag {
	margin-bottom: 16px
}

.choose-lang__body-item .flag img {
	border-radius: 8px
}

@media screen and (max-width: 650px) {
	.choose-lang__body-item:last-child {
		grid-column: 2/3
	}
}

.choose-lang__body-items {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	width: 100%;
	margin: 0 auto
}

@media screen and (max-width: 650px) {
	.choose-lang__body-items {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px 0
	}
}

.choose-lang__body-items .name {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #02070d
}

.choose-lang__copy {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c;
	position: relative;
	margin-top: auto;
	margin-bottom: 32px;
	padding-bottom: 32px
}

@media screen and (max-width: 768px) {
	.choose-lang__copy {
		margin-bottom: 0
	}
}

.arrow-top {
	cursor: pointer;
	width: 64px;
	height: 64px;
	background-color: #ff0;
	position: fixed;
	bottom: 50px;
	right: 20px;
	z-index: 10;
	border-radius: 8px;
	display: none;
	transition: all .25s ease
}

.arrow-top:hover {
	background-color: #fff30a
}

.arrow-top svg {
	width: 24px;
	height: 24px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto
}

.scale-image,
.animation-title,
.animation-description,
.animation-btn,
.animation-show {
	transition: opacity .8s ease 0s, transform .8s ease 0s;
	opacity: 0
}

.scale-image._active,
.animation-title._active,
.animation-description._active,
.animation-btn._active,
.animation-show._active {
	opacity: 1
}

.scale-image {
	transform: scale(0.8)
}

.scale-image._active {
	transition: transform .8s ease .8s, opacity .8s ease .8s;
	transform: scale(1)
}

.animation-title {
	transform: translate(0px, -40px)
}

.animation-title._active {
	transition: transform .8s ease .6s, opacity .8s ease .6s;
	transform: translate(0px, 0px)
}

.animation-description {
	transform: translate(0px, -20px)
}

.animation-description._active {
	transition: transform .8s ease .8s, opacity .8s ease .8s;
	transform: translate(0px, 0px)
}

.animation-btn {
	transform: translate(0px, -10px)
}

.animation-btn._active {
	transition: transform .8s ease 1s, opacity .8s ease 1s;
	transform: translate(0px, 0px)
}

.animation-show._active {
	opacity: 1;
	transition: opacity .8s ease .2s
}

body:not(.dark-background) .header.fixed-header {
	background-color: #fff
}

@media screen and (min-width: 1200px) {
	body:not(.dark-background) .header.fixed-header {
		padding: 20px
	}
}

body .header.fixed-header {
	background-color: #02070d
}

@media screen and (min-width: 1200px) {
	body .header.fixed-header {
		padding: 20px
	}
}

.header {
	padding: 48px 0 40px 0;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 100;
	transition: all .3s ease
}

@media screen and (max-width: 1200px) {
	.header {
		padding: 8px 0
	}
}

@media screen and (max-width: 1200px) {
	.header [data-header-mobile] {
		display: none
	}
}

.header .header-col {
	display: flex
}

.header .header-wrap {
	display: flex;
	align-items: center;
	position: relative
}

@media screen and (max-width: 1200px) {
	.header .header-wrap {
		flex-wrap: wrap;
		justify-content: space-between
	}
}

@media screen and (max-width: 1200px) {
	.header .header-col-1 {
		order: 1;
		width: 50%
	}
}

@media screen and (max-width: 1200px) {
	.header .header-col-2 {
		order: 2;
		width: 50%;
		margin-left: auto
	}
}

@media screen and (max-width: 1200px) {
	.header .header-col-3 {
		order: 4
	}
}

@media screen and (max-width: 1200px) {
	.header .header-col-4 {
		order: 6
	}
}

@media screen and (max-width: 650px) {
	.header .header-col-4 {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap
	}
}

.header.active {
	background-color: #f7f7f7
}

.header__logo {
	margin-right: 32px;
	display: flex;
	align-items: center
}

@media screen and (max-width: 1200px) {
	.header__logo {
		margin-right: 16px
	}
}

@media screen and (max-width: 1200px)and (max-width: 350px) {
	.header__logo {
		margin-right: 8px
	}
}

@media screen and (max-width: 650px) {
	.header__logo img,
	.header__logo svg {
		width: 110px
	}
}

@media screen and (max-width: 380px) {
	.header__logo img,
	.header__logo svg {
		width: 90px
	}
}

@media screen and (max-width: 350px) {
	.header__logo img,
	.header__logo svg {
		width: 70px
	}
}

.header__catalog {
	margin-right: 8px
}

.header__catalog .btn {
	position: relative
}

@media screen and (max-width: 380px) {
	.header__catalog .btn {
		padding: 0 10px
	}
}

@media screen and (max-width: 700px) {
	.header__catalog .btn.active {
		opacity: 0;
		visibility: hidden
	}
}

.header__catalog svg {
	width: 10px;
	height: 10px
}

.header__menu {
	display: flex;
	white-space: nowrap;
	margin-right: 13px
}

.header__menu li a {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #02070d;
	padding: 4px 0;
	margin: 0 8px;
	text-decoration: none;
	position: relative;
	background-image: linear-gradient(to bottom, transparent 20%, currentColor 21%);
	background-position: 0 25px;
	background-repeat: no-repeat;
	background-size: 0 6px;
	text-transform: uppercase;
	transition: background-size .5s ease-in-out .2s
}

.header__menu li a:hover {
	background-size: 100% 6px;
	transition-delay: 0s
}

@media screen and (max-width: 650px) {
	.header__menu li {
		margin-bottom: 24px
	}
}

.header__menu li.active a {
	background-size: 100% 6px;
	transition-delay: 0s
}

@media screen and (max-width: 1200px) {
	.header__menu {
		order: 5
	}
}

@media screen and (max-width: 650px) {
	.header__menu {
		display: block;
		width: 100%
	}
}

@media screen and (max-width: 1200px) {
	.header__menu.open {
		display: flex
	}
}

@media screen and (max-width: 650px) {
	.header__menu.open {
		display: block;
		margin-right: 0
	}
}

.header__quickOrder {
	display: none;
	margin-right: 21px
}

.header__quickOrder .btn {
	white-space: nowrap;
	padding: 0 16px
}

.header__search {
	margin-left: auto;
	max-width: 100%;
	width: 100%;
	margin-right: 16px
}

.header__search .form-input {
	background-color: rgba(0, 0, 0, 0);
	width: 100%;
	height: 40px;
	cursor: pointer
}

@media screen and (max-width: 1200px) {
	.header__search .form-input {
		height: 40px
	}
}

@media screen and (max-width: 1200px) {
	.header__search {
		width: 100%;
		max-width: 100%;
		margin: 8px 0;
		order: 3
	}
}

@media screen and (max-width: 380px) {
	.header__search {
		min-width: 140px
	}
}

.header__login {
	margin-left: auto
}

.header__login .btn {
	white-space: nowrap
}

@media screen and (max-width: 650px) {
	.header__login .btn {
		width: 100%;
		height: 56px
	}
}

@media screen and (max-width: 650px) {
	.header__login {
		width: 100%;
		margin-bottom: 32px
	}
}

@media screen and (max-width: 1200px) {
	.header__login.open {
		display: block
	}
}

.header__user {
	display: none
}

.header__user svg {
	width: 16px;
	height: 16px
}

.header__user .btn {
	background-color: #fff;
	border: 1px solid #d0d0d0
}

.header__backorder {
	margin-left: 18px;
	display: none
}

.header__backorder .btn {
	padding: 0 7px;
	background-color: #fff;
	border: 1px solid #d0d0d0
}

.header__backorder svg {
	width: 24px;
	height: 24px
}

.header__cart {
	display: none;
	position: relative;
	margin-left: 18px
}

@media screen and (max-width: 440px) {
	.header__cart {
		position: static
	}
}

.header__cart>.btn {
	padding: 0 16px;
	white-space: nowrap;
	background-color: #02070d;
	color: #f7f7f7
}

.header__cart>.btn svg {
	width: 12px;
	height: 12px;
	fill: #f7f7f7
}

.header__cart:hover .header__cart-dropdown {
	display: block
}

.header__cart-dropdown {
	width: 411px;
	position: absolute;
	right: 0;
	z-index: 15;
	top: 100%;
	display: none
}

.header__cart-dropdown-wrapper {
	box-shadow: 0 6px 16px rgba(0, 0, 0, .05);
	border: 1px solid #dbdbdb;
	background-color: #fff;
	border-radius: 16px;
	padding: 10px 8px 16px 0;
	position: relative;
	top: 32px
}

@media screen and (max-width: 1370px) {
	.header__cart-dropdown-wrapper {
		top: 4px
	}
}

@media screen and (max-width: 440px) {
	.header__cart-dropdown {
		width: 100%;
		top: auto
	}
}

.header__cart-dropdown.active {
	position: fixed;
	top: 0;
	right: 0
}

.header__cart-dropdown.active .header__cart-dropdown-wrapper {
	top: 0
}

.header__cart-body {
	max-height: 308px;
	overflow-y: scroll;
	scrollbar-color: #02070d #d0d0d0;
	scrollbar-width: thin
}

.header__cart-body::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #d0d0d0
}

.header__cart-body::-webkit-scrollbar {
	width: 4px;
	height: auto;
	background-color: #f5f5f5
}

.header__cart-body::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #02070d
}

.header__cart-body {
	scrollbar-base-color: #d0d0d0;
	scrollbar-face-color: #02070d;
	scrollbar-3dlight-color: #02070d;
	scrollbar-highlight-color: #02070d;
	scrollbar-track-color: #d0d0d0;
	scrollbar-arrow-color: #d0d0d0;
	scrollbar-shadow-color: #02070d;
	scrollbar-dark-shadow-color: #02070d
}

@media screen and (max-width: 440px) {
	.header__cart-body {
		max-height: 238px
	}
}

.header__cart-item {
	display: flex;
	align-items: center;
	padding: 10px 8px 10px 16px;
	transition: all .3s ease
}

@media screen and (max-width: 440px) {
	.header__cart-item {
		padding: 12px 8px 12px 16px
	}
}

.header__cart-item:hover {
	background-color: #f7f7f7
}

.header__cart-item .image {
	min-width: 80px;
	max-width: 80px;
	height: 80px;
	border: 1px solid #dbdbdb;
	border-radius: 16px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	padding: 5px;
	background-color: #fff
}

@media screen and (max-width: 440px) {
	.header__cart-item .image {
		min-width: 52px;
		max-width: 52px;
		height: 52px;
		border-radius: 8px;
		margin-right: 16px
	}
}

.header__cart-item .image img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle
}

.header__cart-item .info {
	margin-right: 20px
}

@media screen and (max-width: 440px) {
	.header__cart-item .info {
		margin-right: 5px
	}
}

.header__cart-item .name {
	font-weight: 600;
	margin-bottom: 8px;
	color: #02070d
}

@media screen and (max-width: 440px) {
	.header__cart-item .name {
		font-size: 12px;
		line-height: 16px
	}
}

.header__cart-item .article {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c
}

.header__cart-item .price {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 28px;
	color: #02070d;
	white-space: nowrap
}

.header__cart-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 16px
}

@media screen and (max-width: 440px) {
	.header__cart-footer {
		flex-direction: column-reverse;
		align-items: center
	}
}

.header__cart-footer .btn {
	max-width: 250px
}

@media screen and (max-width: 440px) {
	.header__cart-footer .btn {
		width: 100%
	}
}

.header__cart-footer .btn svg {
	max-width: 11px
}

.header__cart-footer .total {
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	color: #02070d;
	white-space: nowrap
}

@media screen and (max-width: 440px) {
	.header__cart-footer .total {
		margin-bottom: 16px;
		margin-left: auto
	}
}

.header__lang {
	position: relative;
	padding: 8px;
	margin-left: 8px;
	cursor: pointer;
	z-index: 11
}

.header__lang img {
	border-radius: 5px;
	max-width: 100%;
	position: relative;
	z-index: 5
}

.header__lang-list-mob {
	display: none;
	color: #02070d;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px
}

@media screen and (max-width: 650px) {
	.header__lang-list-mob {
		display: block
	}
}

.header__lang-selected {
	display: flex;
	width: 28px
}

@media screen and (max-width: 650px) {
	.header__lang-selected {
		justify-content: center;
		width: auto
	}
}

.header__lang-dropdown {
	display: none;
	position: absolute;
	left: 0;
	z-index: 1
}

.header__lang-dropdown li {
	transition: all .3s ease
}

@media screen and (max-width: 650px) {
	.header__lang-dropdown li {
		margin-bottom: 16px
	}
}

.header__lang-dropdown li:last-child {
	border-radius: 0 0 8px 8px
}

.header__lang-dropdown li .header__lang-list-link {
	line-height: 0;
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 8px
}

.header__lang-dropdown li:hover {
	background-color: #dedede
}

@media screen and (max-width: 650px) {
	.header__lang-dropdown {
		width: calc(100%+ 16px);
		height: auto;
		background-color: #f7f7f7;
		top: -8px;
		left: -8px;
		z-index: 5;
		padding: 64px 8px 0 8px
	}
}

@media screen and (max-width: 650px) {
	.header__lang-list {
		display: flex;
		flex-wrap: wrap
	}
	.header__lang-list li {
		flex: 1 0 33.3%
	}
}

.header__lang-close {
	position: absolute;
	top: 15px;
	right: 15px;
	display: none
}

.header__lang-close svg {
	width: 24px;
	height: 24px
}

@media screen and (max-width: 650px) {
	.header__lang-close {
		display: block
	}
}

.header__lang-title {
	display: none;
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	margin-bottom: 16px;
	text-align: center
}

@media screen and (max-width: 650px) {
	.header__lang-title {
		display: block
	}
}

.header__lang-desc {
	display: none;
	color: #7c7c7c;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 32px;
	text-align: center;
	padding: 0 16px
}

@media screen and (max-width: 650px) {
	.header__lang-desc {
		display: block
	}
}

@media screen and (max-width: 1200px) {
	.header__lang.open {
		display: block
	}
}

@media screen and (max-width: 650px) {
	.header__lang.active {
		background-color: rgba(0, 0, 0, 0)
	}
}

.header__lang.active .header__lang-dropdown {
	background-color: #f7f7f7;
	border-radius: 8px;
	margin-top: 8px;
	top: -8px;
	padding-top: 35px
}

@media screen and (max-width: 650px) {
	.header__lang.active .header__lang-dropdown {
		margin-top: 0;
		border-radius: 0
	}
}

@media screen and (max-width: 1200px) {
	.header__lang {
		order: 9
	}
}

@media screen and (max-width: 650px) {
	.header__lang {
		position: static
	}
}

.header__logout {
	display: none
}

.header__logout .btn {
	white-space: nowrap
}

@media screen and (max-width: 650px) {
	.header__logout .btn {
		width: 100%;
		height: 56px
	}
}

@media screen and (max-width: 650px) {
	.header__logout {
		width: 100%;
		margin-bottom: 24px
	}
}

.header__burger {
	display: none;
	cursor: pointer
}

.header__burger svg {
	width: 16px;
	height: 16px
}

@media screen and (max-width: 1200px) {
	.header__burger {
		display: block;
		margin-left: auto
	}
}

.header__burger.active .btn {
	background-color: #ffeb0a
}

@media screen and (max-width: 1370px) {
	.header.header--logged {
		padding: 8px 0
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header-wrap {
		flex-wrap: wrap
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header__menu {
		display: none;
		order: 5;
		flex: 1 0 50%
	}
	.header.header--logged .header__menu.open {
		display: flex
	}
}

@media screen and (max-width: 1370px)and (max-width: 650px) {
	.header.header--logged .header__menu.open {
		display: block;
		margin-top: 12px
	}
}

@media screen and (max-width: 1370px)and (max-width: 650px) {
	.header.header--logged .header__menu {
		flex: 1 0 100%;
		margin-right: 0
	}
}

.header.header--logged .header__quickOrder {
	display: block
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header__quickOrder {
		display: none
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header__search {
		max-width: inherit;
		order: 3;
		flex: 1 0 40%;
		margin: 8px 0
	}
}

.header.header--logged .header__user,
.header.header--logged .header__backorder {
	display: block
}

.header.header--logged .header__login {
	display: none
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header-col-1 {
		order: 1;
		flex: 1 1 50%
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header-col-2 {
		justify-content: flex-end;
		order: 2;
		flex: 1 0 50%
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header-col-3 {
		order: 4
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header-col-4 {
		justify-content: flex-end;
		order: 6
	}
}

@media screen and (max-width: 650px) {
	.header.header--logged .header-col-4 {
		flex-wrap: wrap;
		justify-content: center
	}
	.header.header--logged .header-col-4 .btn {
		width: 100%
	}
	.header.header--logged .header-col-4 .header__login {
		margin-bottom: 32px
	}
}

.header.header--logged .header__cart {
	display: block
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header__cart>.btn {
		padding: 0 46px
	}
}

@media screen and (max-width: 650px) {
	.header.header--logged .header__cart .btn {
		padding: 0 12px
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header__lang {
		display: none
	}
	.header.header--logged .header__lang.open {
		display: block
	}
}

@media screen and (max-width: 650px) {
	.header.header--logged .header__lang {
		margin-left: 0
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header__logout.open {
		display: block
	}
}

@media screen and (max-width: 1370px)and (max-width: 650px) {
	.header.header--logged .header__logout.open {
		width: 100%
	}
}

@media screen and (max-width: 1370px) {
	.header.header--logged .header__burger {
		position: relative;
		display: block;
		margin-left: 16px
	}
}

.header.header--dark .header__menu li a {
	color: #f7f7f7
}

.header.header--dark .header__logo svg {
	fill: #fff
}

.header.header--dark.active {
	background-color: rgba(0, 0, 0, 0)
}

.header.header--dark .header__search svg {
	fill: #fff
}

.header.header--dark .header__search .form-input {
	border-color: #7c7c7c
}

.header.header--dark .header__search .form-input:hover {
	border-color: #ededed
}

@media screen and (max-width: 992px) {
	.header.header--dark {
		background-color: #02070d
	}
}

.header.header--dark .header__cart>.btn {
	background-color: #fff;
	color: #02070d
}

.header.header--dark .header__cart>.btn svg {
	fill: #02070d
}

.header.header--dark .header__lang-title {
	color: #02070d
}

.catalog-menu {
	background: #fff;
	border-radius: 16px;
	width: 848px;
	position: absolute;
	padding: 20px 20px 20px 20px;
	margin-top: 18px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .05);
	border: 1px solid #dbdbdb;
	z-index: 20;
	transform: translateY(20px);
	visibility: hidden;
	opacity: 0;
	transition: transform .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out
}

@media screen and (max-width: 1200px) {
	.catalog-menu {
		margin-top: 4px
	}
}

@media screen and (max-width: 1040px) {
	.catalog-menu {
		left: 0
	}
}

@media screen and (max-width: 870px) {
	.catalog-menu {
		width: 100%;
		margin-top: 4px
	}
}

@media screen and (max-width: 700px) {
	.catalog-menu {
		padding: 0;
		box-shadow: none;
		border: none
	}
}

.catalog-menu.show {
	visibility: visible;
	transform: translateY(0);
	opacity: 1
}

.catalog-menu__scroll {
	max-height: 545px;
	overflow-y: scroll;
	padding-right: 6px;
	scrollbar-color: #d0d0d0 #fff;
	scrollbar-width: thin
}

.catalog-menu__scroll::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #fff
}

.catalog-menu__scroll::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.catalog-menu__scroll::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #d0d0d0
}

.catalog-menu__scroll {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #d0d0d0;
	scrollbar-3dlight-color: #d0d0d0;
	scrollbar-highlight-color: #d0d0d0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #d0d0d0;
	scrollbar-dark-shadow-color: #d0d0d0
}

@media screen and (max-width: 700px) {
	.catalog-menu__scroll {
		max-height: 100%;
		overflow-y: auto
	}
}

.catalog-menu__select {
	background-color: #f7f7f7;
	height: 56px;
	padding: 16px 12px;
	border-radius: 8px;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px;
	color: #02070d;
	display: none
}

@media screen and (max-width: 700px) {
	.catalog-menu__select {
		display: flex
	}
}

.catalog-menu__select svg {
	width: 18px;
	height: 18px
}

.catalog-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px
}

.catalog-menu__head-title {
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	color: #02070d;
	text-transform: uppercase
}

@media screen and (max-width: 700px) {
	.catalog-menu__head-title {
		display: none
	}
}

.catalog-menu__head-link {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c;
	display: flex;
	align-items: center
}

@media screen and (max-width: 700px) {
	.catalog-menu__head-link {
		padding: 0 8px
	}
}

.catalog-menu__head-link svg {
	width: 17px;
	height: 16px;
	margin-left: 11px
}

.catalog-menu__items {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 22px
}

.catalog-menu__item {
	flex: 0 1 33.33%;
	padding-right: 9px
}

@media screen and (max-width: 700px) {
	.catalog-menu__item {
		flex: 0 1 100%
	}
}

.catalog-menu__item-link {
	padding: 8px 35px 8px 16px;
	font-weight: 600;
	color: #02070d;
	position: relative;
	width: 100%;
	display: block
}

.catalog-menu__item-link:hover {
	background-color: #f7f7f7;
	border-radius: 8px
}

.catalog-menu__item-link:after {
	content: "";
	top: 50%;
	right: 14px;
	margin-top: -4px;
	border-right: 2px solid #494949;
	border-bottom: 2px solid #494949;
	height: 9px;
	width: 9px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(45deg) translateY(-50%)
}

.catalog-menu__popular {
	padding: 0 8px
}

.catalog-menu__popular-title {
	font-weight: 700;
	font-size: 22px;
	line-height: 28px;
	color: #02070d;
	text-transform: uppercase;
	margin-bottom: 8px
}

.catalog-menu__popular-items {
	display: flex;
	justify-content: space-between
}

@media screen and (max-width: 700px) {
	.catalog-menu__popular-items {
		flex-wrap: wrap
	}
}

.catalog-menu__popular-item {
	flex: 0 1 135px;
	text-align: center
}

@media screen and (max-width: 700px) {
	.catalog-menu__popular-item {
		flex: 0 1 33.33%;
		margin-bottom: 24px
	}
}

@media screen and (max-width: 465px) {
	.catalog-menu__popular-item {
		flex: 0 1 50%;
		margin-bottom: 24px
	}
}

.catalog-menu__popular-item:last-child {
	display: none
}

@media screen and (max-width: 700px) {
	.catalog-menu__popular-item:last-child {
		display: block
	}
}

.catalog-menu__popular-item .image {
	width: 104px;
	height: 104px;
	border-radius: 16px;
	border: 1px solid #d9d9d9;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 5px
}

.catalog-menu__popular-item .image img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle
}

.catalog-menu__popular-item .name {
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	color: #02070d
}

.catalog-menu__sub {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 16px;
	padding: 20px 8px 20px 20px;
	background-color: #fff;
	display: none
}

@media screen and (max-width: 700px) {
	.catalog-menu__sub {
		top: 55px
	}
}

.catalog-menu__sub-back {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c;
	margin-bottom: 16px;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
	cursor: pointer
}

.catalog-menu__sub-back svg {
	width: 17px;
	height: 16px;
	margin-right: 11px;
	transform: rotate(180deg)
}

.catalog-menu__sub-title {
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	color: #02070d;
	margin-bottom: 10px
}

.catalog-menu__sub-row {
	display: flex;
	flex-wrap: wrap
}

.catalog-menu__sub-item {
	flex: 0 1 33.33%;
	padding-right: 9px
}

@media screen and (max-width: 700px) {
	.catalog-menu__sub-item {
		flex: 0 1 100%
	}
}

.catalog-menu__sub-link {
	padding: 10px 35px 10px 16px;
	font-weight: 400;
	color: #7c7c7c;
	position: relative;
	width: 100%;
	display: block;
	transition: all .3s ease
}

.catalog-menu__sub-link:hover {
	background-color: #f7f7f7;
	border-radius: 8px
}

.catalog-menu__sub-link.catalog-menu__sub-link--parent:after {
	content: "";
	top: 50%;
	right: 14px;
	margin-top: -4px;
	border-right: 2px solid #494949;
	border-bottom: 2px solid #494949;
	height: 9px;
	width: 9px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(45deg) translateY(-50%)
}

.catalog-menu__sub-link.catalog-menu__sub-link--parent.active {
	background-color: #f7f7f7;
	border-radius: 8px;
	font-weight: 600;
	color: #02070d
}

.catalog-menu__sub-link.catalog-menu__sub-link--parent.active:after {
	transform: rotate(225deg) translateY(-50%);
	right: 8px
}

.catalog-menu__sub-drop {
	width: 100%;
	padding-top: 14px;
	display: none
}

.catalog-menu__sub-drop .catalog-menu__sub-link {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #02070d;
	padding: 10px 35px 10px 16px;
	padding-left: 24px
}

.catalog-menu__sub-drop .catalog-menu__sub-link:first-letter {
	text-transform: uppercase
}

.catalog-menu__sub-drop .catalog-menu__sub-link.catalog-menu__sub-link--parent:after {
	border-right: 1px solid #494949;
	border-bottom: 1px solid #494949;
	height: 6px;
	width: 6px;
	right: 12px
}

.catalog-menu__sub-drop.catalog-menu__sub-drop-lvl2 {
	border: 1px solid #dbdbdb;
	border-radius: 16px;
	padding: 20px 0;
	margin: 24px 0
}

.catalog-menu__sub-drop.catalog-menu__sub-drop-lvl2 .catalog-menu__sub-link {
	padding: 4px 35px 4px 16px
}

.header-search {
	border-radius: 16px;
	background-color: #fff;
	width: 1162px;
	max-width: 1162px;
	position: fixed;
	padding: 32px;
	left: 0;
	right: 0;
	top: 32px;
	margin: auto;
	z-index: 101;
	display: none
}

@media screen and (max-width: 1190px) {
	.header-search {
		width: 98%
	}
}

@media screen and (max-width: 768px) {
	.header-search {
		padding: 32px 16px
	}
}

.header-search__input {
	margin-bottom: 32px
}

.header-search__input input.form-input {
	width: 100%;
	height: 56px
}

.header-search__input-dropdown {
	position: absolute;
	width: 100%;
	background-color: #fff;
	z-index: 11;
	padding-top: 28px;
	height: 340px;
	display: none
}

@media screen and (max-width: 1190px) {
	.header-search__input-dropdown {
		height: 400px
	}
}

@media screen and (max-width: 768px) {
	.header-search__input-dropdown {
		height: 528px
	}
}

.header-search__input-dropdown-scroll {
	max-height: 310px;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.header-search__input-dropdown-scroll::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #fff
}

.header-search__input-dropdown-scroll::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.header-search__input-dropdown-scroll::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #b0b0b0
}

.header-search__input-dropdown-scroll {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0;
	overflow-y: scroll
}

.header-search__input-dropdown-item {
	display: flex;
	align-items: center;
	padding: 4px 0
}

.header-search__input-dropdown-item .image {
	width: 54px;
	min-width: 54px;
	height: 55px;
	display: flex;
	align-items: center;
	margin-right: 16px
}

.header-search__input-dropdown-item .image img {
	max-width: 100%
}

.header-search__input-dropdown-item .name {
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	color: #02070d;
	display: block;
	width: 100%;
	padding: 10px 0
}

.header-search__select {
	margin-bottom: 20px
}

.header-search__select-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px;
	color: #02070d
}

.header-search__select-form {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px
}

@media screen and (max-width: 1190px) {
	.header-search__select-form {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media screen and (max-width: 768px) {
	.header-search__select-form {
		grid-template-columns: repeat(1, 1fr)
	}
}

.header-search__select-item {
	min-width: 0
}

.header-search__select-item .btn {
	width: 100%
}

.header-search__popular-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px;
	color: #02070d
}

.header-search__popular-items {
	display: grid;
	grid-template-columns: repeat(7, 1fr)
}

@media screen and (max-width: 1000px) {
	.header-search__popular-items {
		display: flex
	}
}

.header-search__popular .slick-arrow.slick-next {
	right: -10px
}

.header-search__popular .slick-arrow.slick-prev {
	left: -5px
}

.header-search__popular-item {
	text-align: center
}

.header-search__popular-item .image {
	width: 104px;
	height: 104px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center
}

.header-search__popular-item .image img {
	max-width: 100%;
	padding: 5px;
	transition: all .3s ease
}

.header-search__popular-item .image img:hover {
	transform: scale(1.1)
}

.header-search__popular-item .name {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #02070d
}

.breadcrumbs {
	margin-bottom: 8px
}

.breadcrumbs__items {
	display: flex;
	flex-wrap: wrap;
	align-items: center
}

.breadcrumbs__items li span {
	display: inline-block
}

.breadcrumbs__items li span:first-letter {
	text-transform: uppercase
}

.breadcrumbs__item {
	position: relative;
	margin-right: 34px
}

.breadcrumbs__item:after {
	content: "";
	display: block;
	position: absolute;
	width: 18px;
	height: 1px;
	background-color: #494949;
	right: -26px;
	top: 50%
}

.breadcrumbs__item a,
.breadcrumbs__item span {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c
}

.selector-car {
	width: 100%;
	background-color: #f7f7f7;
	padding: 32px 24px;
	border-radius: 8px;
	margin-bottom: 48px
}

@media screen and (max-width: 991px) {
	.selector-car {
		padding: 24px
	}
}

.selector-car__title {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px;
	color: #02070d
}

.selector-car__form {
	display: flex;
	gap: 32px
}

@media screen and (max-width: 991px) {
	.selector-car__form {
		flex-wrap: wrap;
		gap: 8px
	}
}

.selector-car__form.selector-car__form--whithoutbtn .selector-car__form-item {
	width: 33.3%
}

@media screen and (max-width: 991px) {
	.selector-car__form.selector-car__form--whithoutbtn .selector-car__form-item {
		width: 49%;
		gap: 8px
	}
}

@media screen and (max-width: 767px) {
	.selector-car__form.selector-car__form--whithoutbtn .selector-car__form-item {
		width: 100%
	}
}

.selector-car__form.selector-car__form--column {
	flex-direction: column
}

.selector-car__form-item {
	width: 25%
}

@media screen and (max-width: 991px) {
	.selector-car__form-item {
		width: 32%
	}
	.selector-car__form-item:last-child {
		width: 100%
	}
}

@media screen and (max-width: 767px) {
	.selector-car__form-item {
		width: 100%
	}
}

.selector-car__form-item .btn {
	width: 100%
}

.product-amount {
	display: flex;
	align-items: center;
	position: relative
}

.product-amount__minus,
.product-amount__plus {
	width: 24px;
	height: 24px;
	position: relative
}

.product-amount__minus:after,
.product-amount__minus:before,
.product-amount__plus:after,
.product-amount__plus:before {
	content: "";
	display: block;
	position: absolute;
	background-color: #02070d
}

.product-amount__minus.disabled,
.product-amount__plus.disabled {
	pointer-events: none;
	opacity: .5
}

.product-amount__minus:before {
	width: 18px;
	height: 2px;
	left: 0;
	right: 0;
	margin: auto;
	top: 0;
	bottom: 0
}

.product-amount__minus.product-amount__minus--disabled {
	cursor: not-allowed;
	opacity: .5
}

.product-amount input {
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	width: 48px;
	height: 24px;
	-webkit-appearance: none;
	-moz-appearance: textfield;
	margin: 0 4px;
	text-align: center
}

.product-amount input::-webkit-outer-spin-button,
.product-amount input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0
}

.product-amount__plus:before {
	width: 18px;
	height: 2px;
	left: 0;
	right: 0;
	margin: auto;
	top: 0;
	bottom: 0
}

.product-amount__plus:after {
	width: 2px;
	height: 18px;
	left: 0;
	right: 0;
	margin: auto;
	top: 0;
	bottom: 0
}

.product-amount__plus.product-amount__minus--disabled {
	cursor: not-allowed;
	opacity: .5
}

.product-amount__tooltip {
	background: #fff9e6;
	border: 1px solid #ffc400;
	border-radius: 16px;
	padding: 3px;
	text-align: center;
	position: absolute;
	min-width: 111px;
	margin: -8px auto;
	left: 0;
	right: 0;
	top: -100%
}

@media screen and (max-width: 1050px) {
	.product-amount__tooltip {
		margin-top: -12px
	}
}

@media screen and (max-width: 850px) {
	.product-amount__tooltip {
		right: 0;
		left: auto
	}
}

.product-amount.product-amount--disabled .product-amount__minus,
.product-amount.product-amount--disabled .product-amount__plus {
	cursor: not-allowed;
	opacity: .5
}

.product-amount.product-amount--disabled input {
	background-color: #ededed;
	color: #7c7c7c;
	cursor: not-allowed
}

.item-buy {
	display: flex;
	align-items: center;
	border: 1px solid #dbdbdb;
	border-radius: 16px;
	padding: 32px 24px;
	margin-bottom: 16px;
	position: relative;
	height: 168px;
	background-color: #fff
}

@media screen and (max-width: 1050px) {
	.item-buy {
		height: 120px;
		padding: 16px 24px 16px 16px
	}
}

@media screen and (max-width: 850px) {
	.item-buy {
		height: 383px;
		padding: 16px;
		align-items: flex-start
	}
}

.item-buy__check {
	margin-right: 26px
}

@media screen and (max-width: 1050px) {
	.item-buy__check {
		margin-right: 10px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__check {
		position: absolute;
		top: 20px;
		left: 18px
	}
}

.item-buy__image {
	min-width: 104px;
	max-width: 104px;
	height: 104px;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin-right: 19px
}

@media screen and (max-width: 1050px) {
	.item-buy__image {
		min-width: 60px;
		max-width: 60px;
		height: 60px;
		margin-right: 10px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__image {
		min-width: 166px;
		max-width: 166px;
		height: 166px;
		margin: 0 auto;
		position: relative;
		top: 50px
	}
}

.item-buy__image img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle
}

.item-buy__info {
	display: flex;
	flex-direction: column;
	max-width: 200px;
	min-width: 200px;
	margin-right: 30px;
	min-height: 104px;
	justify-content: space-between
}

@media screen and (max-width: 1050px) {
	.item-buy__info {
		min-height: 88px;
		max-width: 170px;
		min-width: 170px;
		margin-right: 15px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__info {
		position: absolute;
		top: 16px;
		left: 52px;
		max-width: 100%;
		min-height: auto;
		padding-right: 25px
	}
}

.item-buy__info-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px
}

@media screen and (max-width: 1050px) {
	.item-buy__info-title {
		font-size: 14px;
		line-height: 20px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__info-title {
		margin-bottom: 4px;
		font-size: 16px;
		line-height: 24px
	}
}

.item-buy__info-stock {
	font-size: 14px;
	line-height: 24px;
	color: #7c7c7c;
	display: flex;
	align-items: center
}

@media screen and (max-width: 1050px) {
	.item-buy__info-stock {
		font-size: 12px;
		line-height: 16px
	}
}

.item-buy__info-stock .out-of-stock__body {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 20px
}

@media screen and (max-width: 850px) {
	.item-buy__info-stock .out-of-stock__body {
		position: relative
	}
}

@media screen and (max-width: 576px) {
	.item-buy__info-stock .out-of-stock__body {
		position: relative;
		white-space: nowrap
	}
}

.item-buy__info-stock .out-of-stock__icon {
	height: 16px;
	position: relative;
	cursor: pointer
}

@media screen and (max-width: 850px) {
	.item-buy__info-stock .out-of-stock__icon {
		position: static
	}
}

.item-buy__info-stock .out-of-stock__icon:hover .out-of-stock__tooltip {
	display: block
}

.item-buy__info-stock .out-of-stock__tooltip {
	width: 278px;
	background-color: #f7f7f7;
	border: 1px solid #dbdbdb;
	border-radius: 16px;
	padding: 12px 24px 12px 12px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 100%;
	margin-bottom: 12px;
	display: none;
	z-index: 1;
	white-space: normal;
	text-align: center
}

@media screen and (max-width: 850px) {
	.item-buy__info-stock .out-of-stock__tooltip {
		transform: translateX(0);
		left: 0
	}
}

@media screen and (max-width: 450px) {
	.item-buy__info-stock .out-of-stock__tooltip {
		width: 240px
	}
}

.item-buy__info-stock svg {
	width: 16px;
	height: 16px;
	margin-left: 5px
}

.item-buy__info-stock.out-of-stock .out-of-stock__body {
	font-weight: 600;
	color: #02070d
}

.item-buy__info-stock.balance .out-of-stock__body {
	font-weight: 600;
	color: #fff;
	background-color: #ff2727;
	border-radius: 8px;
	padding-right: 13px;
	padding-left: 12px;
	display: flex
}

.item-buy__info-stock.balance svg {
	fill: #fff
}

.item-buy__info-stock.balance .out-of-stock__tooltip {
	color: #02070d;
	background-color: #ffe9e9;
	border-color: #ff2727
}

.item-buy__info-details {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	text-decoration: underline;
	color: #02070d
}

@media screen and (max-width: 850px) {
	.item-buy__info-details {
		display: none
	}
}

.item-buy__article {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	max-width: 278px;
	min-width: 278px;
	margin-right: 16px
}

@media screen and (max-width: 1190px) {
	.item-buy__article {
		font-size: 14px;
		line-height: 20px;
		max-width: 121px;
		min-width: 121px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__article {
		position: absolute;
		left: 16px;
		bottom: 99px;
		max-width: 130px;
		min-width: 130px
	}
}

.item-buy__article-found {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px
}

.item-buy__article-found .using {
	margin-bottom: 4px
}

@media screen and (max-width: 1190px) {
	.item-buy__article-found .oem {
		font-size: 12px
	}
}

.item-buy__article-found .oem span {
	font-weight: 600;
	margin-right: 4px;
	padding: 4px;
	background-color: #ff0;
	border-radius: 4px
}

.item-buy__single {
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	font-family: "Roboto Condensed", sans-serif;
	width: 131px;
	margin-right: 16px;
	white-space: nowrap
}

@media screen and (max-width: 1050px) {
	.item-buy__single {
		font-size: 16px;
		line-height: 24px;
		width: 100px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__single {
		position: absolute;
		font-size: 14px;
		line-height: 20px;
		right: 16px;
		bottom: 16px;
		color: #7c7c7c;
		margin-right: 0;
		width: auto;
		display: flex
	}
}

.item-buy__single p {
	color: #02070d;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400
}

@media screen and (max-width: 850px) {
	.item-buy__single p {
		margin-right: 8px
	}
}

.item-buy__amount {
	margin-right: 33px
}

@media screen and (max-width: 1050px) {
	.item-buy__amount {
		margin-right: 22px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__amount {
		position: absolute;
		right: 16px;
		bottom: 99px;
		margin-right: 0
	}
}

.item-buy__total {
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	font-family: "Roboto Condensed", sans-serif;
	white-space: nowrap
}

@media screen and (max-width: 1050px) {
	.item-buy__total {
		font-size: 16px;
		line-height: 24px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__total {
		position: absolute;
		font-size: 24px;
		line-height: 28px;
		width: 94%;
		text-align: right;
		left: 0;
		border-top: 1px solid #dbdbdb;
		padding-top: 12px;
		right: 0;
		margin: auto;
		bottom: 36px
	}
}

.item-buy__availability {
	max-width: 145px;
	min-width: 145px
}

@media screen and (max-width: 1400px) {
	.item-buy__availability {
		margin-left: auto;
		margin-right: 30px
	}
}

@media screen and (max-width: 1080px) {
	.item-buy__availability {
		max-width: 105px;
		min-width: 105px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__availability {
		position: absolute;
		bottom: 16px;
		left: 16px;
		max-width: 155px;
		min-width: 155px
	}
}

@media screen and (max-width: 576px) {
	.item-buy__availability {
		max-width: 200px;
		min-width: 200px;
		margin-right: 15px
	}
}

.item-buy__availability p,
.item-buy__availability span,
.item-buy__availability a {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #7c7c7c
}

.item-buy__availability span {
	color: #02070d
}

.item-buy__availability a {
	font-weight: 600;
	text-decoration: underline;
	color: #02070d
}

.item-buy__availability span.item-buy__availability-manager {
	font-weight: 600;
	text-decoration: underline;
	color: #02070d;
	cursor: pointer
}

.item-buy__availability span.item-buy__availability-manager:before {
	content: attr(data-check-text)
}

.item-buy__availability span.item-buy__availability-manager.disabled {
	pointer-events: none
}

.item-buy__availability span.item-buy__availability-manager.disabled:before {
	content: attr(data-contacted)
}

.item-buy__subscription {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	max-width: 278px;
	min-width: 278px;
	margin-left: 16px;
	text-align: center;
	cursor: pointer
}

@media screen and (max-width: 1190px) {
	.item-buy__subscription {
		font-size: 14px;
		line-height: 20px;
		max-width: 150px;
		min-width: 150px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__subscription {
		position: absolute;
		bottom: 30px;
		margin-left: 0
	}
}

.item-buy__subscription.item-buy__subscription--active {
	color: #3c3;
	cursor: default
}

.item-buy__backorder-header,
.item-buy__backorder-footer {
	display: flex;
	align-items: center
}

.item-buy__backorder-footer {
	color: #02070d;
	margin-top: 12px
}

@media screen and (max-width: 850px) {
	.item-buy__backorder-footer {
		position: absolute;
		left: 16px;
		bottom: 99px;
		width: 100%
	}
}

.item-buy__backorder-footer-wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 156px
}

@media screen and (max-width: 1050px) {
	.item-buy__backorder-footer-wrap {
		width: 127px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__backorder-footer-wrap {
		width: 156px
	}
}

.item-buy__backorder-footer-add {
	font-size: 10px;
	line-height: 13px;
	display: flex;
	align-items: center;
	padding-right: 8px
}

@media screen and (max-width: 850px) {
	.item-buy__backorder-footer-add {
		white-space: nowrap
	}
}

@media screen and (max-width: 359px) {
	.item-buy__backorder-footer-add {
		white-space: normal
	}
}

.item-buy__backorder-footer-icon {
	position: relative;
	cursor: pointer;
	margin-right: 16px
}

.item-buy__backorder-footer-icon .tooltip-block {
	position: absolute;
	z-index: 1;
	background-color: #e9f4ff;
	border: 1px solid #238dff;
	padding: 16px;
	min-width: 280px;
	border-radius: 16px;
	bottom: 100%;
	right: -140px;
	margin-bottom: 8px;
	display: none
}

@media screen and (max-width: 430px) {
	.item-buy__backorder-footer-icon .tooltip-block {
		right: -100px;
		min-width: 240px
	}
}

.item-buy__backorder-footer-icon:hover .tooltip-block {
	display: block
}

.item-buy__backorder-footer-icon svg {
	fill: #238dff;
	max-width: 16px;
	height: 16px;
	position: relative;
	top: 2px
}

.item-buy__backorder-footer-count {
	border-radius: 8px;
	border: 1px solid #d0d0d0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center
}

@media screen and (max-width: 1050px) {
	.item-buy__backorder-footer-count {
		width: 50px;
		height: 40px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__backorder-footer-count {
		position: absolute;
		right: 66px
	}
}

.item-buy__backorder-footer.hide {
	display: none
}

.item-buy__delete {
	position: absolute;
	width: 18px;
	height: 18px;
	right: 112px;
	cursor: pointer
}

@media screen and (max-width: 1270px) {
	.item-buy__delete {
		right: 29px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__delete {
		top: 16px;
		right: 16px
	}
}

.item-buy__delete:after,
.item-buy__delete:before {
	content: "";
	display: block;
	position: absolute;
	background-color: #02070d;
	height: 3.18px;
	width: 100%;
	top: 8px
}

.item-buy__delete:after {
	transform: rotate(45deg)
}

.item-buy__delete:before {
	transform: rotate(-45deg)
}

.item-buy__details {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #02070d;
	text-decoration: underline;
	position: absolute;
	right: 112px
}

@media screen and (max-width: 1310px) {
	.item-buy__details {
		right: 29px
	}
}

@media screen and (max-width: 850px) {
	.item-buy__details {
		display: none
	}
}

.item-buy.out-of-stock {
	background-color: #f7f7f7;
	color: #b0b0b0
}

.item-buy.out-of-stock .item-buy__info-details {
	color: #b0b0b0
}

.item-buy.out-of-stock .item-buy__article-found .oem span {
	color: #02070d
}

.item-buy.out-of-stock .form-checkbox+.form-checkbox-label:before {
	background-color: #f7f7f7
}

.item-buy.out-of-stock .product-amount .product-amount__minus:after,
.item-buy.out-of-stock .product-amount .product-amount__minus:before,
.item-buy.out-of-stock .product-amount .product-amount__plus:after,
.item-buy.out-of-stock .product-amount .product-amount__plus:before {
	background-color: #b0b0b0
}

.item-buy.out-of-stock .product-amount input {
	background-color: #ededed;
	color: #7c7c7c
}

@media screen and (max-width: 850px) {
	.item-buy.item-buy--backorder {
		height: 450px
	}
}

@media screen and (max-width: 850px) {
	.item-buy.item-buy--backorder .item-buy__article,
	.item-buy.item-buy--backorder .item-buy__amount {
		bottom: 150px
	}
}

.item-buy__button {
	margin-left: auto
}

@media screen and (max-width: 1150px) {
	.item-buy__button span {
		display: none
	}
}

@media screen and (max-width: 850px) {
	.item-buy__button {
		position: absolute;
		bottom: 16px;
		width: 94%
	}
	.item-buy__button .btn {
		width: 100%
	}
	.item-buy__button span {
		display: block
	}
}

.block-total {
	background-color: #f7f7f7;
	padding: 24px;
	border-radius: 16px;
	min-width: 426px;
	display: flex;
	flex-direction: column;
	align-self: flex-start;
	margin-left: auto
}

@media screen and (max-width: 576px) {
	.block-total {
		width: 100%;
		min-width: 100%
	}
}

.block-total__body-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #7c7c7c
}

.block-total__body-item span {
	font-family: "Roboto Condensed", sans-serif;
	color: #02070d;
	font-weight: 700
}

.block-total__body-item.block-total__body-item--small {
	font-size: 12px
}

.block-total__body-item.block-total__body-item--calculate a {
	font-weight: 600;
	font-size: 16px;
	color: #02070d;
	text-decoration: underline
}

.block-total__body-item.block-total__body-item--calculate span {
	font-size: 16px;
	color: #02070d;
	font-weight: 700
}

.block-total__body-item.block-total__body-item--little span {
	font-size: 16px
}

.block-total__body-item.block-total__body-item--medium span {
	font-size: 24px;
	line-height: 32px
}

.block-total__body-item.block-total__body-item--large span {
	font-size: 32px;
	line-height: 40px
}

@media screen and (max-width: 992px) {
	.block-total .block-total-item-hidden {
		display: none
	}
}

.block-total .block-total-item-hidden.show {
	display: block
}

.product-availability__text {
	font-weight: 600;
	line-height: 20px;
	margin-bottom: 5px
}

.product-availability__marker {
	display: flex
}

.product-availability__marker span {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	margin-right: 5px;
	background-color: #d0d0d0
}

.product-availability__marker.in-stock span {
	background-color: #3c3
}

.product-availability__marker.in-stock-yellow span:nth-child(-n+2) {
	background-color: #ffc400
}

.product-availability__marker.in-stock-red span:first-child {
	background-color: #ff2727
}

.product-availability.product-availability--line {
	display: flex;
	align-items: center
}

.product-availability.product-availability--line .product-availability__text {
	margin-right: 8px;
	margin-bottom: 0
}

.top-slider {
	display: flex
}

.top-slider .slick-arrow {
	top: 20%
}

.top-slider .slick-prev {
	left: -35px
}

.top-slider .slick-next {
	right: -35px
}

.top-slider .listing__item {
	margin: 0 7px;
	width: 20%
}

.top-slider .listing__item-head .brand {
	font-size: 18px;
	line-height: 30px
}

.top-slider .listing__item-head .title {
	font-size: 24px;
	line-height: 30px
}

.top-slider .listing__item-image .image {
	width: 246px;
	height: 246px
}

.body-form__row {
	display: grid;
	gap: 16px;
	margin-bottom: 28px
}

.body-form__row.body-form__double {
	grid-template-columns: repeat(2, 1fr)
}

@media screen and (max-width: 650px) {
	.body-form__row.body-form__double {
		grid-template-columns: repeat(1, 1fr)
	}
}

.body-form__row.body-form__send {
	grid-template-columns: 366px 1fr;
	padding-top: 32px;
	margin-bottom: 0
}

@media screen and (max-width: 650px) {
	.body-form__row.body-form__send {
		grid-template-columns: repeat(1, 1fr)
	}
}

.body-form__row.body-form__send .btn {
	align-self: flex-end
}

.body-form__row.body-form__send .btn svg {
	display: none
}

.body-form__row.body-form__send--popup {
	grid-template-columns: 1fr 245px;
	gap: 32px;
	align-items: center;
	padding-top: 0
}

@media screen and (max-width: 650px) {
	.body-form__row.body-form__send--popup {
		grid-template-columns: repeat(1, 1fr);
		gap: 8px
	}
}

.body-form__row .form-input,
.body-form__row .form-textarea {
	width: 100%
}

.body-form__row-wrap.body-form__row-wrap--checkbox .d-flex {
	flex-wrap: wrap
}

.body-form__row-wrap.body-form__row-wrap--checkbox .d-flex .checkbox {
	margin-right: 24px;
	margin-bottom: 16px
}

.body-form__row .input-group {
	min-width: 0
}

.body-form .checkbox {
	margin-bottom: 8px
}

.body-form .form-checkbox+.form-checkbox-label {
	color: #02070d
}

.body-form .form-checkbox+.form-checkbox-label a {
	color: #02070d;
	text-decoration: underline
}

.body-form .switch-wrapper {
	display: flex;
	align-items: center
}

.body-form .custom-switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 22px
}

.body-form .custom-switch__slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #d0d0d0;
	border-radius: 50px;
	transition: .4s
}

.body-form .custom-switch__slider::before {
	border-radius: 50%;
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 2px;
	background-color: #fff;
	transition: .4s
}

.body-form .custom-switch input {
	opacity: 0;
	width: 0;
	height: 0
}

.body-form .custom-switch input:checked+.custom-switch__slider {
	background-color: #3c3
}

.body-form .custom-switch input:checked+.custom-switch__slider::before {
	transform: translateX(20px)
}

.body-form .custom-switch__text {
	margin-left: 8px;
	font-size: 16px;
	line-height: 42px;
	color: #02070d
}

.menu-sidebar {
	background: #f7f7f7;
	border-radius: 24px;
	padding: 12px;
	max-width: 279px;
	position: relative;
	z-index: 10
}

@media screen and (max-width: 1200px) {
	.menu-sidebar {
		border-radius: 8px;
		max-width: 368px;
		padding: 11px 20px;
		border: 1px solid #d0d0d0;
		cursor: pointer
	}
}

.menu-sidebar__item {
	border-radius: 8px;
	transition: all .3s ease;
	cursor: pointer;
	padding: 8px 16px;
	margin-bottom: 4px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between
}

@media screen and (max-width: 1200px) {
	.menu-sidebar__item {
		padding: 8px 10px
	}
}

.menu-sidebar__item:hover {
	background-color: #d0d0d0
}

.menu-sidebar__item:last-child {
	margin-bottom: 0
}

.menu-sidebar__item .open {
	background-color: #d0d0d0
}

.menu-sidebar__item.active {
	background-color: #d0d0d0;
	font-weight: 600
}

@media screen and (max-width: 1200px) {
	.menu-sidebar__item.active:after {
		content: "";
		display: block;
		width: 12px;
		height: 7px;
		top: 12px;
		right: 9px;
		border-left: 2px solid #02070d;
		border-bottom: 2px solid #02070d;
		position: absolute;
		transform: rotate(-57deg)
	}
}

.menu-sidebar__item.sub-accounts .sub-accounts__icon {
	width: 16px;
	height: 16px
}

@media screen and (max-width: 1200px) {
	.menu-sidebar__item.sub-accounts .sub-accounts__icon {
		display: none
	}
}

.menu-sidebar__item.sub-accounts .sub-accounts__icon svg {
	width: 16px;
	height: 16px;
	fill: #238dff
}

.menu-sidebar__item.sub-accounts .sub-accounts__icon:hover .sub-accounts__drop {
	display: block
}

.menu-sidebar__item.sub-accounts .sub-accounts__drop {
	position: absolute;
	border-radius: 16px;
	border: 1px solid #238dff;
	background-color: #e9f4ff;
	padding: 16px;
	max-width: 280px;
	min-width: 200px;
	margin-left: 28px;
	top: -100%;
	display: none
}

@media screen and (max-width: 1200px) {
	.menu-sidebar__wrap {
		display: none;
		position: absolute;
		border: 1px solid #d0d0d0;
		cursor: pointer;
		background: #f7f7f7;
		left: -1px;
		border-radius: 0 0 8px 8px;
		max-width: 100%;
		border-top: none;
		min-width: 368px;
		padding: 20px 10px 0 10px
	}
}

@media screen and (max-width: 576px) {
	.menu-sidebar__wrap {
		min-width: calc(100%+ 2px);
		width: 100%
	}
}

.menu-sidebar__current {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	display: none;
	cursor: pointer;
	position: relative
}

@media screen and (max-width: 1200px) {
	.menu-sidebar__current {
		display: block
	}
}

.menu-sidebar__current:after {
	content: "";
	top: 50%;
	right: 4px;
	margin-top: -3px;
	border-right: 2px solid #02070d;
	border-bottom: 2px solid #02070d;
	height: 7px;
	width: 7px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(45deg) translateY(-50%)
}

.menu-sidebar.open .menu-sidebar__current:after {
	transform: rotate(225deg) translateY(-50%);
	right: -3px;
	margin-top: -4px
}

.menu-sidebar.open .menu-sidebar__wrap {
	display: block
}

.item-soon {
	padding: 32px 24px;
	border: 1px solid #dbdbdb;
	background-color: #fff;
	border-radius: 16px;
	display: flex;
	cursor: pointer
}

@media screen and (max-width: 576px) {
	.item-soon {
		flex-wrap: wrap
	}
}

.item-soon__info {
	display: flex;
	flex-direction: column;
	justify-content: center
}

@media screen and (max-width: 576px) {
	.item-soon__info {
		width: 100%;
		margin-bottom: 16px
	}
}

.item-soon__info-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	text-transform: uppercase
}

.item-soon__info-update {
	color: #7c7c7c
}

.item-soon__price {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto
}

.item-soon__price-total {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 4px
}

.item-soon__price-price {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 32px
}

.statistic {
	margin-bottom: 96px
}

@media screen and (max-width: 992px) {
	.statistic {
		margin-bottom: 64px
	}
}

@media screen and (max-width: 768px) {
	.statistic {
		margin-bottom: 32px
	}
}

.statistic__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 56px;
	text-transform: uppercase;
	margin-bottom: 32px
}

.statistic__title span {
	color: #ff0
}

.statistic__body {
	background-color: #212121;
	border-radius: 16px;
	padding: 48px
}

@media screen and (max-width: 1200px) {
	.statistic__body {
		padding: 48px 32px
	}
}

@media screen and (max-width: 1000px) {
	.statistic__body {
		padding: 32px 16px
	}
}

.statistic__items {
	display: flex;
	justify-content: space-between
}

@media screen and (max-width: 1200px) {
	.statistic__items {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 48px 0
	}
}

@media screen and (max-width: 1000px) {
	.statistic__items {
		gap: 32px 0
	}
}

@media screen and (max-width: 1200px) {
	.statistic__item {
		width: 33.3%
	}
}

@media screen and (max-width: 1000px) {
	.statistic__item {
		width: 100%
	}
}

.statistic__item-number {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 67px;
	margin-bottom: 12px;
	color: #ff0;
	overflow: hidden;
	display: flex
}

@media screen and (max-width: 576px) {
	.statistic__item-number {
		font-size: 40px;
		line-height: 54px
	}
}

.statistic__item-number span.digit {
	position: relative;
	top: calc(var(--vertical-offset)*-1)
}

.statistic__item-number._active span.digit {
	animation: move-items-into-view .5s .5s cubic-bezier(0.2, 0.82, 0.25, 1.5) forwards
}

.statistic__item-number span.digit span {
	position: absolute;
	top: var(--vertical-offset);
	left: 0
}

.statistic__item-number span.digit:nth-of-type(2) {
	animation-delay: .4s
}

.statistic__item-number span.digit:nth-of-type(3) {
	animation-delay: .5s
}

.statistic__item-number span.digit:nth-of-type(4) {
	animation-delay: .6s
}

.statistic__item-number span.digit:nth-of-type(5) {
	animation-delay: .7s
}

.statistic__item-number span.digit:nth-of-type(6) {
	animation-delay: .8s
}

.statistic__item-number span.digit:nth-of-type(7) {
	animation-delay: .9s
}

.statistic__item-number span.digit:nth-of-type(8) {
	animation-delay: 1s
}

.statistic__item-number span.digit:nth-of-type(9) {
	animation-delay: 1.1s
}

.statistic__item-number span.digit:nth-of-type(10) {
	animation-delay: 1.2s
}

.statistic__item-number span.digit:nth-of-type(11) {
	animation-delay: 1.3s
}

.statistic__item-number span.digit:nth-of-type(12) {
	animation-delay: 1.4s
}

.statistic__item-txt {
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #b0b0b0;
	text-transform: lowercase
}

.statistic__txt {
	color: #7c7c7c
}

@keyframes move-items-into-view {
	to {
		top: 0
	}
}

.graph {
	position: relative;
	margin-bottom: 96px
}

@media screen and (max-width: 992px) {
	.graph {
		margin-bottom: 64px
	}
}

@media screen and (max-width: 850px) {
	.graph {
		overflow-x: scroll
	}
}

@media screen and (max-width: 850px) {
	.graph__scroll {
		width: 720px
	}
}

.graph__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 40px;
	text-transform: uppercase;
	max-width: 395px;
	position: absolute;
	top: 0;
	left: 0
}

@media screen and (max-width: 1200px) {
	.graph__title {
		font-size: 36px
	}
}

.graph__title p {
	color: #ff0;
	font-size: 128px;
	line-height: 128px
}

@media screen and (max-width: 992px) {
	.graph__title p {
		font-size: 98px;
		line-height: 98px
	}
}

.graph__info {
	position: absolute;
	bottom: 160px;
	left: 0;
	color: #7c7c7c;
	font-size: 18px
}

.graph__info p {
	font-weight: 700
}

.graph__img {
	position: absolute;
	overflow: hidden;
	transition: all 1.6s ease 0s;
	opacity: 0;
	width: 0
}

@media screen and (max-width: 1050px) {
	.graph__img {
		top: 40px
	}
}

@media screen and (max-width: 900px) {
	.graph__img {
		top: 30px
	}
}

@media screen and (max-width: 768px) {
	.graph__img {
		top: 0
	}
}

@media screen and (max-width: 1420px) {
	.graph__img img {
		max-width: 100%
	}
}

@media screen and (max-width: 900px) {
	.graph__img img {
		transform: rotate(0)
	}
}

.graph__items {
	display: flex;
	justify-content: space-between;
	height: 661px;
	position: relative
}

@media screen and (max-width: 850px) {
	.graph__items {
		gap: 32px
	}
}

.graph__items._active .bar {
	animation: animate-height;
	animation-timing-function: cubic-bezier(0.35, 0.95, 0.67, 0.99);
	animation-duration: .8s;
	animation-fill-mode: forwards
}

.graph__items._active .graph__img {
	opacity: 1;
	transition: all 1.2s ease .9s;
	width: 100%
}

.graph__items._active .graph__item .title {
	opacity: 1;
	transition: all 1.2s ease .9s
}

.graph__item {
	height: 100%;
	min-width: 105px;
	max-width: 105px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end
}

@media screen and (max-width: 1050px) {
	.graph__item {
		min-width: 80px;
		max-width: 80px
	}
}

.graph__item .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 16px;
	transition: all .8s ease 0s;
	opacity: 0
}

@media screen and (max-width: 1050px) {
	.graph__item .title {
		font-size: 18px;
		line-height: 20px
	}
}

@media screen and (max-width: 900px) {
	.graph__item .title {
		font-size: 16px;
		line-height: 18px
	}
}

.graph__item .year {
	font-size: 16px;
	line-height: 24px
}

.graph__item .price {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 36px
}

@media screen and (max-width: 1150px) {
	.graph__item .price {
		font-size: 24px;
		line-height: 24px
	}
}

@media screen and (max-width: 1050px) {
	.graph__item .price {
		font-size: 20px;
		line-height: 20px
	}
}

@media screen and (max-width: 900px) {
	.graph__item .price {
		font-size: 12px;
		line-height: 14px
	}
}

.graph__item .bar {
	width: 100%;
	background: linear-gradient(180deg, #FF0 0%, rgba(255, 255, 0, 0) 100%);
	border-radius: 8px 8px 0 0;
	opacity: .75;
	visibility: hidden;
	height: 0
}

.graph__item .bar.bar-1 {
	animation-delay: .3s
}

.graph__item .bar.bar-2 {
	animation-delay: .4s
}

.graph__item .bar.bar-3 {
	animation-delay: .5s
}

.graph__item .bar.bar-4 {
	animation-delay: .6s
}

.graph__item .bar.bar-5 {
	animation-delay: .7s
}

.graph__item .bar.bar-6 {
	animation-delay: .8s
}

.graph__item .bar.bar-7 {
	animation-delay: .9s
}

.graph__item .bar.bar-8 {
	animation-delay: 1s
}

.graph__item .bar.bar-9 {
	animation-delay: 1.1s
}

.graph__item .bar.bar-10 {
	animation-delay: 1.2s
}

@keyframes animate-height {
	0% {
		height: 0
	}
	100% {
		visibility: visible
	}
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 132px
}

.pagination__items {
	display: flex;
	align-items: center
}

.pagination__item {
	margin: 0 6px
}

@media screen and (max-width: 475px) {
	.pagination__item {
		margin: 0 2px
	}
}

.pagination__item-link {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #02070d;
	padding: 0 12px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center
}

@media screen and (max-width: 475px) {
	.pagination__item-link {
		padding: 0 8px
	}
}

.pagination__item-link.active {
	color: #fff;
	background-color: #02070d;
	border-radius: 4px
}

.pagination__arrow {
	position: relative;
	margin: 0 6px
}

.pagination__arrow-link {
	padding: 0 12px;
	cursor: pointer;
	display: block;
	height: 40px
}

.pagination__arrow-link:after {
	content: "";
	top: 50%;
	right: 6px;
	margin-top: -5px;
	border-right: 2px solid #02070d;
	border-bottom: 2px solid #02070d;
	height: 9px;
	width: 9px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(135deg)
}

.pagination__arrow-link.next-link:after {
	transform: rotate(315deg);
	left: 5px
}

.pagination__arrow.disabled .pagination__arrow-link:after {
	border-right: 2px solid #b0b0b0;
	border-bottom: 2px solid #b0b0b0
}

.listing-advantages {
	margin: 32px 0 16px 0;
	background-color: #f7f7f7;
	box-sizing: border-box;
	padding: 20px 32px;
	border-radius: 16px
}

@media screen and (max-width: 992px) {
	.listing-advantages {
		padding: 16px
	}
}

.listing-advantages__title {
	font-weight: bold;
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 4px
}

.listing-advantages__subtitle {
	font-size: 14px;
	line-height: 20px;
	color: #7c7c7c;
	margin-bottom: 16px
}

.listing-advantages__items {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px
}

.listing-advantages__items-item {
	font-size: 14px;
	line-height: 20px;
	color: #02070d;
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 8px
}

.listing-advantages__items-item svg {
	width: 24px;
	height: 24px;
	fill: #02070d
}

@media screen and (max-width: 576px) {
	.listing-advantages__items-item {
		width: 100%
	}
}

.block-standards {
	padding: 32px;
	border-radius: 32px;
	background-color: #212121;
	margin-bottom: 80px;
	position: relative;
	z-index: 1
}

@media screen and (max-width: 992px) {
	.block-standards {
		margin-bottom: 48px
	}
}

@media screen and (max-width: 768px) {
	.block-standards {
		padding: 32px 16px;
		margin-bottom: 32px
	}
}

.block-standards__icon {
	display: grid;
	grid-template-columns: repeat(6, auto);
	justify-content: space-between;
	align-items: center
}

@media screen and (max-width: 1200px) {
	.block-standards__icon {
		grid-template-columns: repeat(3, auto);
		gap: 64px
	}
}

@media screen and (max-width: 567px) {
	.block-standards__icon {
		grid-template-columns: repeat(2, auto);
		justify-content: space-around
	}
}

.block-standards__icon-item {
	text-align: center
}

@media screen and (max-width: 575px) {
	.block-standards__icon-item img {
		max-width: 100%
	}
}

.block-standards__icon.block-standards__icon--page {
	grid-template-columns: repeat(6, auto)
}

@media screen and (max-width: 1100px) {
	.block-standards__icon.block-standards__icon--page {
		grid-template-columns: repeat(3, auto);
		gap: 64px
	}
}

.block-standards__txt {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 48px
}

@media screen and (max-width: 992px) {
	.block-standards__txt {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px
	}
}

.block-standards__txt-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 56px;
	padding-right: 100px
}

@media screen and (max-width: 992px) {
	.block-standards__txt-title {
		padding-right: 0
	}
}

@media screen and (max-width: 768px) {
	.block-standards__txt-title {
		font-size: 32px;
		line-height: 40px
	}
}

@media screen and (max-width: 576px) {
	.block-standards__txt-title {
		font-size: 26px;
		line-height: 30px
	}
}

.block-standards__txt-title.block-standards__txt-title--reman span {
	color: #3c3
}

.block-standards__txt-title.block-standards__txt-title--plus span {
	color: #ff0
}

.block-standards__txt-desc {
	font-size: 16px;
	color: #7c7c7c;
	font-weight: 400;
	line-height: 24px
}

.block-brands {
	margin-bottom: 96px;
	position: relative
}

@media screen and (max-width: 1250px) {
	.block-brands {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 96px
	}
}

@media screen and (max-width: 992px) {
	.block-brands {
		margin-bottom: 64px
	}
	.block-brands:before {
		content: "";
		display: block;
		background-color: #02070d;
		width: calc(100%+ 16px);
		height: 100%;
		position: absolute;
		left: -8px
	}
}

@media screen and (max-width: 768px) {
	.block-brands {
		margin-bottom: 48px
	}
}

.block-brands__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 56px;
	margin-bottom: 32px
}

@media screen and (max-width: 992px) {
	.block-brands__title {
		display: none
	}
}

.block-brands__item {
	position: relative;
	display: flex;
	margin-bottom: 64px
}

@media screen and (max-width: 1250px) {
	.block-brands__item {
		display: flex
	}
}

@media screen and (max-width: 992px) {
	.block-brands__item {
		flex-direction: column
	}
}

.block-brands__item-image {
	margin-right: 16px;
	position: relative;
	min-width: 426px
}

@media screen and (max-width: 1250px) {
	.block-brands__item-image {
		min-width: 368px;
		margin-right: 16px;
		margin-bottom: 0
	}
}

@media screen and (max-width: 992px) {
	.block-brands__item-image {
		margin-right: 0;
		margin-bottom: 16px;
		text-align: center;
		min-width: 100%
	}
}

.block-brands__item-image img {
	border-radius: 16px;
	max-width: 100%
}

.block-brands__item-body .logo {
	position: relative;
	margin-bottom: 32px
}

@media screen and (max-width: 1250px) {
	.block-brands__item-body .logo {
		margin-bottom: 16px
	}
}

.block-brands__item-body .logo img,
.block-brands__item-body .logo svg {
	max-width: 100%;
	max-height: 55px
}

.block-brands__item-body .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 38px;
	margin-bottom: 8px;
	position: relative;
	text-transform: uppercase
}

@media screen and (max-width: 1250px) {
	.block-brands__item-body .title {
		margin-bottom: 16px
	}
}

@media screen and (max-width: 576px) {
	.block-brands__item-body .title {
		font-size: 32px;
		line-height: 36px
	}
}

.block-brands__item-body .title span {
	color: #ff0
}

.block-brands__item-body .title span.reman {
	color: #3c3
}

.block-brands__item-body .text {
	font-size: 16px;
	line-height: 24px;
	position: relative;
	margin-bottom: 24px
}

@media screen and (max-width: 768px) {
	.block-brands__item-body .more {
		width: 100%
	}
}

.selector-car-vertical__item {
	margin-bottom: 16px
}

.selector-car-vertical__item.selector-car-vertical__item--btn {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

@media screen and (max-width: 992px) {
	.selector-car-vertical__item.selector-car-vertical__item--btn {
		grid-template-columns: 1fr 220px
	}
}

@media screen and (max-width: 576px) {
	.selector-car-vertical__item.selector-car-vertical__item--btn {
		grid-template-columns: 1fr
	}
}

.selector-car-vertical__recent-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 8px
}

.selector-car-vertical__recent-item {
	border-radius: 8px;
	border: 1px solid #dbdbdb;
	background-color: #f7f7f7;
	color: #7c7c7c;
	padding: 8px;
	margin-bottom: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	max-width: 100%
}

.selector-car-vertical__recent-item:last-child {
	margin-bottom: 0
}

.selector-car-vertical__recent-item span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.selector-car-vertical__recent-item svg {
	max-width: 16px;
	height: 16px;
	cursor: pointer
}

.selector-car-vertical__recent-item._active {
	border-color: #02070d;
	background-color: #02070d;
	color: #fff
}

.selector-car-vertical__recent-item._active svg {
	fill: #fff
}

.add-qty {
	display: flex;
	gap: 8px
}

.add-qty__item {
	height: 25px;
	background-color: #02070d;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	line-height: 25px;
	padding: 0 4px;
	cursor: pointer;
	border-radius: 4px
}

.tabs {
	display: flex;
	overflow-x: auto;
	flex-wrap: nowrap
}

.tabs__item {
	font-size: 16px;
	line-height: 24px;
	padding: 12px;
	border-bottom: 1px solid #7c7c7c;
	cursor: pointer;
	white-space: nowrap
}

.tabs__item._active {
	color: #ff0;
	font-weight: 600;
	border-bottom: 1px solid #ff0
}

.tabs-content__item {
	display: none
}

.tabs-content__item._active {
	display: flex
}

.block-pallets {
	border-radius: 16px;
	border: 1px solid #dbdbdb;
	padding: 24px;
	align-self: start
}

.block-pallets__title {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-right: 40px
}

.block-pallets__title:after {
	content: "";
	top: 50%;
	right: 8px;
	margin-top: -4px;
	border-right: 2px solid #494949;
	border-bottom: 2px solid #494949;
	height: 9px;
	width: 9px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(45deg) translateY(-50%)
}

.block-pallets__title.show:after {
	transform: rotate(225deg) translateY(-50%);
	right: 0
}

.block-pallets .table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}

.block-pallets__body {
	display: none
}

.block-pallets__table {
	min-width: 700px;
	width: 100%;
	margin-top: 24px;
	border-collapse: collapse
}

.block-pallets__table-head td {
	padding: 6px;
	color: #7c7c7c;
	text-transform: lowercase
}

.block-pallets__table-head td:first-letter {
	text-transform: uppercase
}

.block-pallets__table-body td {
	padding: 6px;
	font-size: 16px;
	font-weight: 600;
	white-space: nowrap;
	min-width: 140px
}

.block-pallets__table-body tr:nth-child(odd) {
	background-color: #f7f7f7
}

.know-info-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 16px;
	margin-bottom: 96px
}

@media(max-width: 992px) {
	.know-info-block {
		margin-bottom: 64px;
		grid-template-columns: 1fr;
		gap: 36px
	}
}

@media(max-width: 768px) {
	.know-info-block {
		margin-bottom: 32px
	}
}

@media(max-width: 1250px) {
	.know-info-block.know-info-block--form {
		margin-bottom: 64px;
		grid-template-columns: 1fr;
		gap: 36px
	}
}

@media(max-width: 768px) {
	.know-info-block.know-info-block--form {
		margin-bottom: 32px
	}
}

.know-info-block__content {
	padding-right: 12px
}

@media(max-width: 992px) {
	.know-info-block__content {
		padding-right: 0
	}
}

.know-info-block__content:not(:has(.know-info-block__content-button)) .know-info-block__content-text {
	margin-bottom: 0
}

.know-info-block__content-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 88px;
	font-weight: 700;
	line-height: 86px;
	text-transform: uppercase;
	margin-bottom: 32px
}

@media(max-width: 768px) {
	.know-info-block__content-title {
		font-size: 40px;
		line-height: normal;
		margin-bottom: 16px
	}
}

.know-info-block__content-title.know-info-block__content-title--reman span {
	color: #3c3
}

.know-info-block__content-text {
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 32px
}

@media(max-width: 768px) {
	.know-info-block__content-text {
		margin-bottom: 16px
	}
}

.know-info-block__content-text.know-info-block__content-text--weak {
	color: #7c7c7c
}

.know-info-block__content-button {
	min-width: 279px
}

@media screen and (max-width: 768px) {
	.know-info-block__content-button {
		width: 100%;
		min-width: auto
	}
	.know-info-block__content-button .btn {
		width: 100%
	}
}

.know-info-block__body img {
	max-width: 100%
}

.know-info-block__body-title {
	font-family: "Roboto Condensed", sans-serif;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	margin-bottom: 32px;
	color: #02070d
}

.know-info-block__body .form-select-custom__tooltip {
	width: 100%
}

.know-info-block__body.know-info-block__body--form {
	border-radius: 32px;
	padding: 32px;
	background-color: #f7f7f7;
	position: relative
}

.oil-selector {
	background-color: #121417;
	border-radius: 32px;
	padding: 40px 64px;
	margin-bottom: 96px;
	position: relative
}

@media screen and (max-width: 992px) {
	.oil-selector {
		padding: 40px;
		margin-bottom: 64px
	}
}

@media screen and (max-width: 768px) {
	.oil-selector {
		padding: 32px 8px
	}
}

.oil-selector__refresh {
	position: absolute;
	right: 64px;
	top: 68px;
	cursor: pointer
}

.oil-selector__refresh svg {
	width: 15px;
	height: 15px;
	fill: #ededed
}

.oil-selector__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 56px;
	font-weight: 700;
	line-height: 64px;
	margin-bottom: 24px;
	text-align: center
}

@media screen and (max-width: 992px) {
	.oil-selector__title {
		font-size: 44px;
		line-height: 56px;
		margin-bottom: 16px
	}
}

@media screen and (max-width: 768px) {
	.oil-selector__title {
		font-size: 36px;
		line-height: 44px
	}
}

.oil-selector__form {
	display: grid;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	gap: 16px 24px;
	margin-bottom: 40px
}

@media screen and (max-width: 992px) {
	.oil-selector__form {
		grid-template-columns: repeat(2, minmax(200px, 1fr))
	}
}

@media screen and (max-width: 768px) {
	.oil-selector__form {
		grid-template-columns: repeat(1, minmax(200px, 1fr))
	}
}

.oil-selector__form .form-select-custom__current-body.select {
	color: #7c7c7c
}

.oil-selector__form-item {
	position: relative
}

.oil-selector__btn {
	display: flex;
	justify-content: center
}

.oil-selector__btn .btn {
	min-width: 279px
}

@media screen and (max-width: 768px) {
	.oil-selector__btn .btn {
		min-width: auto;
		width: 100%
	}
}

.oil-selector__result {
	margin-top: 16px
}

.oil-selector__result-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	margin-bottom: 8px
}

.oil-selector__result-capacity {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #7c7c7c;
	margin-bottom: 16px
}

.oil-selector__result-select {
	display: grid;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	gap: 16px 24px;
	margin-bottom: 16px
}

@media screen and (max-width: 992px) {
	.oil-selector__result-select {
		grid-template-columns: repeat(2, minmax(200px, 1fr))
	}
}

@media screen and (max-width: 768px) {
	.oil-selector__result-select {
		grid-template-columns: repeat(1, minmax(200px, 1fr))
	}
}

.oil-selector__result-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 32px
}

.oil-selector__result-items {
	display: flex;
	overflow-x: auto;
	flex-wrap: nowrap;
	gap: 35px
}

@media screen and (max-width: 992px) {
	.oil-selector__result-items {
		gap: 16px
	}
}

.oil-selector .oil-selector-result__item {
	padding: 16px;
	background-color: #212121;
	border-radius: 16px;
	flex: 0 0 calc(25% - 70px)
}

@media screen and (max-width: 992px) {
	.oil-selector .oil-selector-result__item {
		flex: 0 0 calc(33.3% - 16px)
	}
}

@media screen and (max-width: 768px) {
	.oil-selector .oil-selector-result__item {
		flex: 0 0 calc(50% - 16px)
	}
}

@media screen and (max-width: 576px) {
	.oil-selector .oil-selector-result__item {
		flex: 0 0 100%
	}
}

.oil-selector .oil-selector-result__item-image {
	text-align: center;
	margin: 0 auto 16px
}

.oil-selector .oil-selector-result__item-image img {
	max-width: 100%;
	border-radius: 16px
}

@media screen and (max-width: 992px) {
	.oil-selector .oil-selector-result__item-image {
		max-width: 175px
	}
}

@media screen and (max-width: 768px) {
	.oil-selector .oil-selector-result__item-image {
		max-width: 313px
	}
}

.oil-selector .oil-selector-result__item-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 4px
}

@media screen and (max-width: 992px) {
	.oil-selector .oil-selector-result__item-title {
		font-size: 20px
	}
}

@media screen and (max-width: 768px) {
	.oil-selector .oil-selector-result__item-title {
		font-size: 24px
	}
}

.oil-selector .oil-selector-result__item-desc {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px
}

@media screen and (max-width: 992px) {
	.oil-selector .oil-selector-result__item-desc {
		font-size: 14px;
		line-height: 20px
	}
}

.oil-selector .oil-selector-result__item-btn {
	width: 100%
}

.oil-selector__empty {
	font-size: 20px;
	line-height: 26px;
	text-align: center
}

.oil-selector .oil-selector__result-group {
	display: none
}

.oil-selector .oil-selector__result-type {
	display: none
}

.block-quality {
	padding: 40px 64px;
	border-radius: 32px;
	background-color: #121417;
	margin-bottom: 96px
}

@media screen and (max-width: 992px) {
	.block-quality {
		padding: 40px;
		margin-bottom: 64px
	}
}

@media screen and (max-width: 768px) {
	.block-quality {
		padding: 32px 8px
	}
}

.block-quality__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 56px;
	margin-bottom: 32px
}

@media screen and (max-width: 992px) {
	.block-quality__title {
		margin-bottom: 24px
	}
}

@media screen and (max-width: 768px) {
	.block-quality__title {
		font-size: 36px;
		line-height: 44px
	}
}

.block-quality__images {
	display: grid;
	grid-template-columns: repeat(4, auto);
	justify-content: space-between;
	align-items: center;
	list-style: none
}

@media screen and (max-width: 768px) {
	.block-quality__images {
		grid-template-columns: repeat(2, auto);
		gap: 48px;
		justify-content: inherit
	}
}

.block-quality__images img {
	max-width: 100%
}

@media screen and (max-width: 992px) {
	.block-quality__images img {
		max-width: 73%
	}
}

@media screen and (max-width: 900px) {
	.block-quality__images li {
		text-align: center
	}
}

.ordered-goods .ordered-goods-item {
	display: grid;
	align-items: center;
	grid-template-columns: 32px 1fr 200px 130px 130px 140px 24px;
	grid-template-areas: "item-check item-product item-status item-price item-qty item-total item-delete";
	padding: 16px;
	border-radius: 4px;
	position: relative;
	gap: 8px
}

@media screen and (max-width: 1400px) {
	.ordered-goods .ordered-goods-item {
		grid-template-columns: 32px 1fr 145px 100px 120px 110px 24px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item {
		gap: 16px 0;
		grid-template-columns: 36px 1fr 1fr;
		grid-template-areas: "item-check item-product item-product" "item-check item-status item-qty" "item-check item-price item-total";
		align-items: flex-start
	}
}

.ordered-goods .ordered-goods-item.ordered-goods-item--bg:nth-child(even) {
	background-color: #f7f7f7
}

.ordered-goods .ordered-goods-item__check {
	grid-area: item-check;
	margin-right: 8px
}

.ordered-goods .ordered-goods-item__check .checkbox {
	width: 24px
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__check {
		align-self: flex-start
	}
}

.ordered-goods .ordered-goods-item__product {
	grid-area: item-product;
	display: flex;
	align-items: center
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__product {
		padding-right: 32px
	}
}

.ordered-goods .ordered-goods-item__product-image {
	min-width: 64px;
	width: 64px;
	height: 64px;
	background-color: #fff;
	border: 1px solid #dbdbdb;
	border-radius: 8px;
	margin-right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px
}

.ordered-goods .ordered-goods-item__product-image img {
	max-width: 100%
}

.ordered-goods .ordered-goods-item__product-info .article {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item__product-info .article {
		font-size: 14px;
		line-height: 20px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__product-info .article {
		font-size: 16px;
		line-height: 24px
	}
}

.ordered-goods .ordered-goods-item__product-info .article__plus {
	padding: 0 4px;
	color: #ff0;
	text-transform: uppercase;
	font-weight: 600;
	background-color: #02070d;
	border-radius: 4px;
	font-size: 14px;
	height: 18px;
	line-height: 18px
}

.ordered-goods .ordered-goods-item__product-info .article.article--plus {
	display: flex;
	align-items: center;
	gap: 8px
}

.ordered-goods .ordered-goods-item__product-info .title {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #7c7c7c
}

.ordered-goods .ordered-goods-item__status {
	grid-area: item-status
}

.ordered-goods .ordered-goods-item__status-text {
	font-size: 12px;
	font-weight: 600;
	line-height: 16px
}

.ordered-goods .ordered-goods-item__status-visible {
	display: flex;
	gap: 6px
}

.ordered-goods .ordered-goods-item__status-visible span {
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #b0b0b0
}

.ordered-goods .ordered-goods-item__status-visible.in-stock span {
	background-color: #3c3
}

.ordered-goods .ordered-goods-item__status-visible.low-stock span:nth-child(-n+2) {
	background-color: #ffc400
}

.ordered-goods .ordered-goods-item__status-visible.only-left span:first-child {
	background-color: #ff2727
}

.ordered-goods .ordered-goods-item__status .out-of-stock__body {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 20px;
	font-size: 12px
}

@media screen and (max-width: 850px) {
	.ordered-goods .ordered-goods-item__status .out-of-stock__body {
		position: relative
	}
}

@media screen and (max-width: 576px) {
	.ordered-goods .ordered-goods-item__status .out-of-stock__body {
		position: relative;
		white-space: nowrap
	}
}

.ordered-goods .ordered-goods-item__status .out-of-stock__body svg {
	width: 16px;
	height: 16px;
	margin-left: 5px
}

.ordered-goods .ordered-goods-item__status .out-of-stock__icon {
	height: 16px;
	position: relative;
	cursor: pointer
}

@media screen and (max-width: 850px) {
	.ordered-goods .ordered-goods-item__status .out-of-stock__icon {
		position: static
	}
}

.ordered-goods .ordered-goods-item__status .out-of-stock__icon:hover .out-of-stock__tooltip {
	display: block
}

.ordered-goods .ordered-goods-item__status .out-of-stock__tooltip {
	width: 278px;
	background-color: #f7f7f7;
	border: 1px solid #dbdbdb;
	border-radius: 16px;
	padding: 12px 24px 12px 12px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 100%;
	margin-bottom: 12px;
	display: none;
	z-index: 1;
	white-space: normal;
	text-align: center
}

@media screen and (max-width: 850px) {
	.ordered-goods .ordered-goods-item__status .out-of-stock__tooltip {
		transform: translateX(0);
		left: 0
	}
}

@media screen and (max-width: 450px) {
	.ordered-goods .ordered-goods-item__status .out-of-stock__tooltip {
		width: 240px
	}
}

.ordered-goods .ordered-goods-item__price {
	grid-area: item-price;
	font-size: 16px;
	line-height: 24px
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item__price {
		font-size: 12px;
		line-height: 16px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__price {
		display: flex;
		flex-direction: column;
		font-size: 16px;
		line-height: 24px;
		font-weight: 600
	}
}

.ordered-goods .ordered-goods-item__price-nowrap {
	white-space: nowrap
}

.ordered-goods .ordered-goods-item__price-txt {
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c;
	display: none;
	font-weight: 400
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__price-txt {
		display: block
	}
}

.ordered-goods .ordered-goods-item__qty {
	grid-area: item-qty
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__qty {
		display: flex;
		justify-content: flex-end
	}
}

.ordered-goods .ordered-goods-item__qty-txt {
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c;
	display: none;
	font-weight: 400
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__qty-txt {
		display: block
	}
}

.ordered-goods .ordered-goods-item__total {
	grid-area: item-total;
	font-size: 16px;
	line-height: 24px
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item__total {
		font-size: 12px;
		line-height: 16px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__total {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-end;
		font-size: 16px;
		line-height: 24px;
		font-weight: 600
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__total-wrap {
		text-align: right
	}
}

.ordered-goods .ordered-goods-item__total-nowrap {
	white-space: nowrap
}

.ordered-goods .ordered-goods-item__total-txt {
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c;
	display: none;
	font-weight: 400
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__total-txt {
		display: block
	}
}

.ordered-goods .ordered-goods-item__total-deposit {
	display: flex;
	align-items: center;
	gap: 8px
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item__total-deposit {
		gap: 4px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__total-deposit {
		text-align: right;
		margin-bottom: 12px;
		flex-wrap: wrap;
		justify-content: end
	}
}

.ordered-goods .ordered-goods-item__total-deposit span {
	font-size: 14px;
	line-height: 14px;
	color: #7c7c7c
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item__total-deposit span {
		font-size: 12px;
		line-height: 12px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__total-deposit span {
		display: block;
		width: 100%;
		font-weight: 400
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__total-deposit .nowrap {
		display: flex;
		align-items: center
	}
}

.ordered-goods .ordered-goods-item__total-deposit .nowrap span {
	font-size: 16px;
	color: #02070d
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item__total-deposit .nowrap span {
		font-size: 12px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__total-deposit .nowrap span {
		font-size: 16px;
		font-weight: 700
	}
}

.ordered-goods .ordered-goods-item__date {
	grid-area: item-date;
	font-size: 16px;
	line-height: 24px
}

.ordered-goods .ordered-goods-item__date-txt {
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c;
	display: none
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__date-txt {
		display: block
	}
}

.ordered-goods .ordered-goods-item__date-manager {
	text-decoration: underline;
	cursor: pointer
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item__date {
		font-size: 12px;
		line-height: 16px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__date {
		font-size: 16px;
		line-height: 24px
	}
}

.ordered-goods .ordered-goods-item__details {
	grid-area: item-details;
	display: flex;
	align-items: center;
	justify-content: flex-end
}

.ordered-goods .ordered-goods-item__details-link {
	text-decoration: underline;
	font-size: 16px;
	line-height: 16px;
	color: #02070d
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item__details-link {
		font-size: 12px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__details-link {
		font-size: 16px;
		line-height: 24px
	}
}

.ordered-goods .ordered-goods-item__delete {
	grid-area: item-delete
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item__delete {
		position: absolute;
		top: 16px;
		right: 16px
	}
}

.ordered-goods .ordered-goods-item__delete-icon {
	width: 24px;
	height: 24px;
	position: relative;
	cursor: pointer
}

.ordered-goods .ordered-goods-item__delete-icon:after,
.ordered-goods .ordered-goods-item__delete-icon:before {
	content: "";
	display: block;
	position: absolute;
	background-color: #02070d;
	height: 2px;
	width: 95%;
	top: 8px
}

.ordered-goods .ordered-goods-item__delete-icon:after {
	transform: rotate(45deg)
}

.ordered-goods .ordered-goods-item__delete-icon:before {
	transform: rotate(-45deg)
}

.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__product-image {
	width: auto;
	height: auto;
	border: none
}

.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__delete:after,
.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__delete:before {
	display: none
}

.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__product-info,
.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__status,
.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__price,
.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__qty,
.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__total,
.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__date {
	color: #7c7c7c;
	font-size: 14px;
	font-weight: 400
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__product-info,
	.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__status,
	.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__price,
	.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__qty,
	.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__total,
	.ordered-goods .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__date {
		font-size: 12px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item.ordered-goods-item--header {
		display: none
	}
}

.ordered-goods .ordered-goods-item.ordered-goods-item--disabled {
	color: #7c7c7c
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder-wrap {
	display: block;
	padding: 0
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item.ordered-goods-item--backorder-wrap .ordered-goods-item:first-child {
		border-bottom: 1px solid #dbdbdb
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item.ordered-goods-item--backorder {
		grid-template-columns: 36px 1fr 1fr;
		grid-template-areas: "item-check item-product item-qty" "item-check item-price item-total" "item-check item-status item-status"
	}
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__product-image {
	width: auto;
	height: auto;
	border: none;
	background: none;
	display: flex;
	justify-content: flex-end
}

@media screen and (max-width: 992px) {
	.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__product-image {
		padding-right: 8px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__product-image {
		position: absolute;
		left: 16px;
		min-width: auto;
		width: 16px;
		padding: 0
	}
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__product-image svg {
	min-width: 16px;
	width: 16px;
	height: 16px
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .product-amount__plus,
.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .product-amount__minus {
	opacity: 0;
	visibility: hidden
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__status {
	display: flex
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__status .ordered-goods-item__status-wrap {
	display: flex;
	align-items: center
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__status .ordered-goods-item__status-txt {
	font-size: 10px;
	line-height: 13px;
	margin-right: 4px
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__status .ordered-goods-item__status-icon {
	cursor: pointer;
	position: relative
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__status .ordered-goods-item__status-icon svg {
	fill: #238dff;
	max-width: 16px;
	height: 16px;
	position: relative;
	top: 2px
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__status .ordered-goods-item__status-icon .tooltip-block {
	position: absolute;
	z-index: 1;
	background-color: #e9f4ff;
	border: 1px solid #238dff;
	padding: 16px;
	min-width: 280px;
	border-radius: 16px;
	margin-left: 8px;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	transition: opacity .2s;
	opacity: 0;
	visibility: hidden
}

@media screen and (max-width: 768px) {
	.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__status .ordered-goods-item__status-icon .tooltip-block {
		bottom: 100%;
		right: -140px;
		margin-bottom: 8px;
		top: auto;
		left: auto;
		transform: translateY(0)
	}
}

.ordered-goods .ordered-goods-item.ordered-goods-item--backorder .ordered-goods-item__status .ordered-goods-item__status-icon:hover .tooltip-block {
	opacity: 1;
	visibility: visible
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item {
	grid-template-columns: 32px 1fr 130px 120px 130px 130px 180px 24px;
	grid-template-areas: "item-check item-product item-status item-price item-qty item-total item-date item-delete"
}

@media screen and (max-width: 1250px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item {
		grid-template-columns: 32px 1fr 130px 105px 120px 105px 150px 24px
	}
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item {
		grid-template-columns: 32px 1fr 80px 80px 110px 90px 130px 24px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item {
		grid-template-columns: 36px 1fr 1fr;
		grid-template-areas: "item-check item-product item-product" "item-check item-status item-qty" "item-check item-price item-total" "item-check item-date item-date"
	}
}

@media screen and (max-width: 1250px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__date {
		font-size: 12px
	}
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__body {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 20px
}

@media screen and (max-width: 850px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__body {
		position: relative
	}
}

@media screen and (max-width: 576px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__body {
		position: relative;
		white-space: nowrap
	}
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__icon {
	height: 16px;
	position: relative;
	cursor: pointer
}

@media screen and (max-width: 850px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__icon {
		position: static
	}
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__icon:hover .out-of-stock__tooltip {
	display: block
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__tooltip {
	width: 278px;
	background-color: #f7f7f7;
	border: 1px solid #dbdbdb;
	border-radius: 16px;
	padding: 12px 24px 12px 12px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 100%;
	margin-bottom: 12px;
	display: none;
	z-index: 1;
	white-space: normal;
	text-align: center
}

@media screen and (max-width: 850px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__tooltip {
		transform: translateX(0);
		left: 0
	}
}

@media screen and (max-width: 450px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status .out-of-stock__tooltip {
		width: 240px
	}
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__status svg {
	width: 16px;
	height: 16px;
	margin-left: 5px
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__date-manager {
	text-decoration: underline;
	color: #02070d;
	cursor: pointer
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__date-manager:before {
	content: attr(data-check-text)
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__date-manager.disabled {
	pointer-events: none
}

.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__date-manager.disabled:before {
	content: attr(data-contacted)
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--backorder .ordered-goods-item .ordered-goods-item__total {
		flex-direction: column
	}
}

.ordered-goods.ordered-goods--purchase .ordered-goods-item {
	grid-template-columns: 1fr 160px 160px 160px 160px;
	grid-template-areas: "item-product item-price item-qty item-total item-details"
}

@media screen and (max-width: 1300px) {
	.ordered-goods.ordered-goods--purchase .ordered-goods-item {
		grid-template-columns: 1fr 120px 90px 120px 120px
	}
}

@media screen and (max-width: 1000px) {
	.ordered-goods.ordered-goods--purchase .ordered-goods-item {
		grid-template-columns: 1fr 105px 70px 105px 120px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--purchase .ordered-goods-item {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "item-product item-product" "item-qty item-price" "item-total item-details"
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item .ordered-goods-item__total {
		align-items: flex-start
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item .ordered-goods-item__total-txt {
		text-align: left
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item .ordered-goods-item__price {
		align-items: flex-end
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item .ordered-goods-item__details {
		align-self: center
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item .ordered-goods-item__details-link {
		text-decoration: underline;
		font-size: 16px;
		line-height: 16px;
		color: #02070d;
		font-weight: 600
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item.ordered-goods-item--deposit {
		grid-template-areas: "item-product item-product" "item-qty item-price" "item-total item-total" "item-details item-details"
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item.ordered-goods-item--deposit .ordered-goods-item__total {
		align-items: flex-start;
		flex-direction: row-reverse;
		justify-content: space-between
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item.ordered-goods-item--deposit .ordered-goods-item__total .ordered-goods-item__total-wrap {
		text-align: right;
		justify-content: flex-end
	}
	.ordered-goods.ordered-goods--purchase .ordered-goods-item.ordered-goods-item--deposit .ordered-goods-item__total .ordered-goods-item__total-deposit {
		text-align: left;
		justify-content: flex-start;
		margin-bottom: 0
	}
}

.ordered-goods.ordered-goods--purchase .ordered-goods-item .ordered-goods-item__qty {
	font-size: 16px;
	line-height: 24px
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--purchase .ordered-goods-item .ordered-goods-item__qty {
		font-size: 12px;
		line-height: 16px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--purchase .ordered-goods-item .ordered-goods-item__qty {
		flex-direction: column;
		font-size: 16px;
		line-height: 24px;
		font-weight: 600
	}
}

.ordered-goods.ordered-goods--purchase .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__qty {
	font-size: 14px
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--purchase .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__qty {
		font-size: 12px;
		line-height: 16px
	}
}

.ordered-goods.ordered-goods--order .ordered-goods-item {
	grid-template-columns: 1fr 140px 130px 145px 145px;
	grid-template-areas: "item-product item-price item-qty item-total item-details"
}

.ordered-goods.ordered-goods--order .ordered-goods-item .ordered-goods-item__qty {
	font-size: 16px;
	line-height: 24px
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--order .ordered-goods-item .ordered-goods-item__qty {
		font-size: 12px;
		line-height: 16px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--order .ordered-goods-item .ordered-goods-item__qty {
		flex-direction: column;
		text-align: right;
		font-size: 16px;
		font-weight: 600;
		line-height: 24px
	}
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--order .ordered-goods-item {
		grid-template-columns: 1fr 130px 120px 135px 135px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--order .ordered-goods-item {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "item-product item-product" "item-price item-qty" "item-details item-total"
	}
	.ordered-goods.ordered-goods--order .ordered-goods-item .ordered-goods-item__total {
		align-items: flex-end
	}
}

@media screen and (max-width: 768px)and (max-width: 768px) {
	.ordered-goods.ordered-goods--order .ordered-goods-item .ordered-goods-item__total .ordered-goods-item__total-wrap,
	.ordered-goods.ordered-goods--order .ordered-goods-item .ordered-goods-item__total .ordered-goods-item__total-deposit {
		text-align: right
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--order .ordered-goods-item .ordered-goods-item__price {
		align-items: flex-start
	}
	.ordered-goods.ordered-goods--order .ordered-goods-item .ordered-goods-item__details {
		justify-content: flex-start;
		align-self: self-end
	}
}

.ordered-goods.ordered-goods--order .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__qty {
	font-size: 14px;
	font-weight: 400
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--order .ordered-goods-item.ordered-goods-item--header .ordered-goods-item__qty {
		font-size: 12px;
		line-height: 16px
	}
}

.ordered-goods.ordered-goods--bulkorder .ordered-goods-item.ordered-goods-item--bulkorder-wrap {
	display: block;
	padding: 0
}

.ordered-goods.ordered-goods--bulkorder .ordered-goods-item__product {
	padding-right: 0
}

.ordered-goods.ordered-goods--bulkorder .ordered-goods-item__product-image {
	margin-right: 31px
}

.ordered-goods.ordered-goods--bulkorder .ordered-goods-item {
	grid-template-columns: 32px 1fr 100px 140px 140px 160px;
	grid-template-areas: "item-check item-product item-status item-price item-qty item-total"
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--bulkorder .ordered-goods-item {
		grid-template-columns: 32px 1fr 90px 90px 110px 90px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--bulkorder .ordered-goods-item {
		grid-template-columns: 32px 1fr 1fr;
		grid-template-areas: "item-check item-product item-product" "item-check item-status item-qty" "item-check item-price item-total"
	}
}

.ordered-goods.ordered-goods--bulkorder .ordered-goods-item.ordered-goods-item--bulkorder .ordered-goods-item__product-image {
	position: relative
}

.ordered-goods.ordered-goods--bulkorder .ordered-goods-item.ordered-goods-item--bulkorder .ordered-goods-item__product-image:after {
	content: "";
	display: block;
	position: absolute;
	width: 16px;
	height: 16px;
	background-image: url("../images/svg/sub-icon-order-bw.svg");
	right: -25px
}

.ordered-goods.ordered-goods--history .ordered-goods-item {
	grid-template-columns: 120px 120px 130px 1fr 130px 145px 145px 145px;
	grid-template-areas: "number-history order-history shipping-history delivery-history total-history status-history repeat-history details-history";
	gap: 0 8px
}

@media screen and (max-width: 1100px) {
	.ordered-goods.ordered-goods--history .ordered-goods-item {
		grid-template-columns: 110px 110px 120px 1fr 120px 135px 135px 32px
	}
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--history .ordered-goods-item {
		grid-template-columns: 85px 85px 85px 1fr 85px 95px 95px 32px;
		gap: 0 4px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--history .ordered-goods-item {
		grid-template-columns: 2fr 1fr;
		grid-template-areas: "number-history status-history" "order-history shipping-history" "delivery-history total-history" "details-history details-history" "repeat-history repeat-history";
		gap: 16px 8px
	}
}

.ordered-goods.ordered-goods--history .ordered-goods-item__number-history {
	grid-area: number-history
}

.ordered-goods.ordered-goods--history .ordered-goods-item__order-history {
	grid-area: order-history
}

.ordered-goods.ordered-goods--history .ordered-goods-item__shipping-history {
	grid-area: shipping-history
}

.ordered-goods.ordered-goods--history .ordered-goods-item__delivery-history {
	grid-area: delivery-history
}

.ordered-goods.ordered-goods--history .ordered-goods-item__total-history {
	grid-area: total-history
}

.ordered-goods.ordered-goods--history .ordered-goods-item__status-history {
	grid-area: status-history
}

.ordered-goods.ordered-goods--history .ordered-goods-item__status-history .btn {
	font-size: 14px;
	height: 32px;
	width: 100%;
	padding: 0 5px;
	border-radius: 6px
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--history .ordered-goods-item__status-history .btn {
		font-size: 12px
	}
}

.ordered-goods.ordered-goods--history .ordered-goods-item__status-history .btn-process {
	border-color: #238dff;
	background-color: #dbedff;
	color: #0076f5
}

.ordered-goods.ordered-goods--history .ordered-goods-item__status-history .btn-required {
	border-color: #d6a500;
	background-color: #fff5d6;
	color: #d6a500
}

.ordered-goods.ordered-goods--history .ordered-goods-item__status-history .btn-unsuccessful {
	border-color: #ff2727;
	background-color: #ffe5e5;
	color: #ff2727
}

.ordered-goods.ordered-goods--history .ordered-goods-item__status-history .btn-completed {
	border-color: #3c3;
	background-color: #e7f9e7;
	color: #29a329
}

.ordered-goods.ordered-goods--history .ordered-goods-item__repeat-history {
	grid-area: repeat-history;
	text-align: center
}

.ordered-goods.ordered-goods--history .ordered-goods-item__repeat-history span {
	text-decoration: underline;
	font-size: 12px
}

.ordered-goods.ordered-goods--history .ordered-goods-item__details-history {
	grid-area: details-history
}

.ordered-goods.ordered-goods--history .ordered-goods-item__details-history .btn {
	font-size: 14px;
	height: 32px;
	width: 100%;
	padding: 0 5px;
	border-radius: 6px
}

@media screen and (max-width: 1100px) {
	.ordered-goods.ordered-goods--history .ordered-goods-item__details-history .btn {
		font-size: 0
	}
	.ordered-goods.ordered-goods--history .ordered-goods-item__details-history .btn:after {
		content: "...";
		display: block;
		position: absolute;
		font-size: 28px;
		top: 17px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--history .ordered-goods-item__details-history .btn {
		font-size: 14px
	}
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--history .ordered-goods-item__number-history,
	.ordered-goods.ordered-goods--history .ordered-goods-item__order-history,
	.ordered-goods.ordered-goods--history .ordered-goods-item__shipping-history,
	.ordered-goods.ordered-goods--history .ordered-goods-item__delivery-history,
	.ordered-goods.ordered-goods--history .ordered-goods-item__total-history {
		font-size: 12px
	}
}

.ordered-goods.ordered-goods--return .ordered-goods-item {
	grid-template-columns: 150px 150px 150px 150px 190px 1fr 145px;
	grid-template-areas: "article-return type-return creation-return update-return status-return choose-return details-return";
	gap: 0 8px
}

@media screen and (max-width: 1100px) {
	.ordered-goods.ordered-goods--return .ordered-goods-item {
		grid-template-columns: 140px 140px 140px 140px 160px 1fr 32px
	}
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--return .ordered-goods-item {
		grid-template-columns: 80px 80px 80px 85px 115px 1fr 32px;
		gap: 0 4px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--return .ordered-goods-item {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: ".... status-return" "article-return type-return" "creation-return update-return" "details-return details-return" "choose-return choose-return";
		gap: 16px 8px
	}
}

.ordered-goods.ordered-goods--return .ordered-goods-item__article-return {
	grid-area: article-return
}

.ordered-goods.ordered-goods--return .ordered-goods-item__type-return {
	grid-area: type-return
}

.ordered-goods.ordered-goods--return .ordered-goods-item__creation-return {
	grid-area: creation-return
}

.ordered-goods.ordered-goods--return .ordered-goods-item__update-return {
	grid-area: update-return
}

.ordered-goods.ordered-goods--return .ordered-goods-item__status-return {
	grid-area: status-return
}

.ordered-goods.ordered-goods--return .ordered-goods-item__status-return .btn {
	font-size: 14px;
	height: 32px;
	width: 100%;
	padding: 0 5px;
	border-radius: 6px
}

@media screen and (max-width: 992px) {
	.ordered-goods.ordered-goods--return .ordered-goods-item__status-return .btn {
		font-size: 12px
	}
}

.ordered-goods.ordered-goods--return .ordered-goods-item__status-return .btn-process {
	border-color: #238dff;
	background-color: #dbedff;
	color: #0076f5
}

.ordered-goods.ordered-goods--return .ordered-goods-item__status-return .btn-required {
	border-color: #d6a500;
	background-color: #fff5d6;
	color: #d6a500
}

.ordered-goods.ordered-goods--return .ordered-goods-item__status-return .btn-required span {
	padding: 0 10px 0 0
}

.ordered-goods.ordered-goods--return .ordered-goods-item__status-return .btn-required svg {
	min-width: 16px;
	width: 16px;
	height: 16px;
	fill: #d6a500
}

.ordered-goods.ordered-goods--return .ordered-goods-item__status-return .btn-rejected {
	border-color: #ff2727;
	background-color: #ffe5e5;
	color: #ff2727
}

.ordered-goods.ordered-goods--return .ordered-goods-item__status-return .btn-approved {
	border-color: #3c3;
	background-color: #e7f9e7;
	color: #29a329
}

.ordered-goods.ordered-goods--return .ordered-goods-item__choose-return {
	grid-area: choose-return;
	text-align: center
}

.ordered-goods.ordered-goods--return .ordered-goods-item__details-return {
	grid-area: details-return
}

.ordered-goods.ordered-goods--return .ordered-goods-item__details-return .btn {
	font-size: 14px;
	height: 32px;
	width: 100%;
	padding: 0 5px;
	border-radius: 6px
}

@media screen and (max-width: 1100px) {
	.ordered-goods.ordered-goods--return .ordered-goods-item__details-return .btn {
		font-size: 0
	}
	.ordered-goods.ordered-goods--return .ordered-goods-item__details-return .btn:after {
		content: "...";
		display: block;
		position: absolute;
		font-size: 28px;
		top: 17px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--return .ordered-goods-item__details-return .btn {
		font-size: 14px
	}
}

.ordered-goods.ordered-goods--create-return .ordered-goods-item {
	grid-template-columns: 1fr 1fr 40%;
	grid-template-areas: "order-return date-return total-return";
	gap: 0 8px
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--create-return .ordered-goods-item {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "order-return date-return" "total-return total-return";
		gap: 16px 8px
	}
}

.ordered-goods.ordered-goods--create-return .ordered-goods-item__order-return {
	grid-area: order-return
}

.ordered-goods.ordered-goods--create-return .ordered-goods-item__date-return {
	grid-area: date-return
}

.ordered-goods.ordered-goods--create-return .ordered-goods-item__total-return {
	grid-area: total-return;
	display: flex;
	align-items: center;
	justify-content: space-between
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--create-return .ordered-goods-item__total-return {
		flex-direction: column;
		gap: 16px
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--create-return .ordered-goods-item__total-return span {
		align-self: flex-start
	}
}

@media screen and (max-width: 768px) {
	.ordered-goods.ordered-goods--create-return .ordered-goods-item__total-return .btn {
		width: 100%
	}
}

.block-address-item {
	border: 1px solid #d0d0d0;
	border-radius: 12px;
	padding: 32px;
	position: relative
}

.block-address-item__close {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 32px;
	right: 32px;
	cursor: pointer
}

.block-address-item__close svg {
	width: 20px;
	height: 20px
}

.block-address-item__btn svg {
	max-width: 16px;
	min-width: 16px;
	height: 16px
}

.block-address-item__list-value {
	margin-bottom: 2px
}

.block-address-item__list-value .alert.alert-danger {
	color: #ff2727;
	font-size: 12px
}

.block-address-item__list-title {
	color: #7c7c7c;
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 2px
}

.block-address-item__footer {
	display: flex;
	justify-content: space-between
}

.block-address-item__footer-edit {
	font-weight: 600;
	text-decoration: underline;
	cursor: pointer;
	margin-left: auto
}

.block-address-item.block-address-item--add {
	text-align: center;
	height: -moz-max-content;
	height: max-content
}

.catalog-page {
	padding-bottom: 104px
}

.catalog-page__title {
	font-weight: 700;
	font-size: 44px;
	line-height: 56px;
	font-family: "Roboto Condensed", sans-serif;
	color: #02070d;
	margin-bottom: 24px
}

.catalog-page__popular {
	margin-bottom: 90px
}

.catalog-page__popular-title {
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 32px;
	color: #02070d;
	font-family: "Roboto Condensed", sans-serif
}

.catalog-page__popular-title span {
	background-color: #ff0;
	border-radius: 4px;
	padding: 0 8px
}

.catalog-page__popular-items {
	display: flex
}

@media screen and (max-width: 1500px) {
	.catalog-page__popular-items {
		width: 95%;
		margin: 0 auto
	}
}

@media screen and (max-width: 992px) {
	.catalog-page__popular-items {
		width: 100%
	}
	.catalog-page__popular-items .slick-dots {
		bottom: -46px
	}
}

.catalog-page__popular-item {
	width: 20%
}

.catalog-page__popular-image {
	width: 156px;
	height: 156px;
	margin: 0 auto 32px;
	display: block
}

.catalog-page__popular-image img {
	max-width: 100%
}

.catalog-page__popular-name {
	font-weight: 700;
	font-size: 20px;
	line-height: 23px;
	text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	color: #02070d
}

.catalog-page__categories {
	margin-bottom: 104px
}

.catalog-page__categories-title {
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	font-family: "Roboto Condensed", sans-serif;
	color: #02070d;
	margin-bottom: 8px
}

.catalog-page__categories-results {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 32px;
	color: #b0b0b0
}

.catalog-page__categories-items {
	display: flex;
	flex-wrap: wrap;
	position: relative
}

.catalog-page__categories-item {
	text-align: center;
	width: 20%;
	cursor: pointer
}

@media screen and (max-width: 992px) {
	.catalog-page__categories-item {
		width: 25%
	}
}

@media screen and (max-width: 758px) {
	.catalog-page__categories-item {
		width: 33.33%
	}
}

@media screen and (max-width: 576px) {
	.catalog-page__categories-item {
		width: 50%
	}
}

@media screen and (max-width: 374px) {
	.catalog-page__categories-item {
		width: 100%
	}
}

.catalog-page__categories .categories-item {
	margin-bottom: 16px
}

.catalog-page__categories .categories-item__category {
	border: 1px solid rgba(0, 0, 0, 0);
	border-radius: 16px;
	padding: 27px 0 24px 0;
	transition: all .3s ease
}

@media screen and (max-width: 992px) {
	.catalog-page__categories .categories-item__category {
		padding: 10px 0 36px 0
	}
}

@media screen and (max-width: 992px) {
	.catalog-page__categories .categories-item__category {
		padding: 10px 0
	}
}

.catalog-page__categories .categories-item__category:hover {
	border: 1px solid #494949
}

.catalog-page__categories .categories-item__category-image {
	width: 152px;
	height: 152px;
	display: flex;
	align-items: center;
	margin: 0 auto 27px
}

.catalog-page__categories .categories-item__category-image img {
	max-width: 100%
}

.catalog-page__categories .categories-item__category-name {
	font-weight: 600;
	color: #02070d
}

.catalog-page__categories .categories-item__popup {
	background-color: #fff;
	border: 1px solid #d0d0d0;
	border-radius: 32px;
	padding: 32px 16px 32px 32px;
	position: absolute;
	z-index: 1;
	width: 100%;
	left: 0;
	margin-top: 4px;
	display: none
}

@media screen and (max-width: 1360px) {
	.catalog-page__categories .categories-item__popup {
		padding: 24px 12px 24px 24px
	}
}

@media screen and (max-width: 768px) {
	.catalog-page__categories .categories-item__popup {
		padding: 12px 6px 12px 12px
	}
}

.catalog-page__categories .categories-item__popup-scroll {
	padding-right: 16px;
	max-height: 490px;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.catalog-page__categories .categories-item__popup-scroll::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #fff
}

.catalog-page__categories .categories-item__popup-scroll::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.catalog-page__categories .categories-item__popup-scroll::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #b0b0b0
}

.catalog-page__categories .categories-item__popup-scroll {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0;
	overflow-y: scroll
}

@media screen and (max-width: 1360px) {
	.catalog-page__categories .categories-item__popup-scroll {
		padding-right: 12px
	}
}

@media screen and (max-width: 768px) {
	.catalog-page__categories .categories-item__popup-scroll {
		padding-right: 6px
	}
}

.catalog-page__categories .categories-item__popup-title {
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	font-family: "Roboto Condensed", sans-serif;
	color: #02070d;
	margin-bottom: 16px;
	text-align: left
}

.catalog-page__categories .categories-item__popup-items {
	flex-wrap: wrap;
	position: relative;
	display: flex
}

.catalog-page__categories .categories-item__popup-item {
	width: 20%;
	margin-bottom: 16px
}

@media screen and (max-width: 1360px) {
	.catalog-page__categories .categories-item__popup-item {
		width: 25%
	}
}

@media screen and (max-width: 1080px) {
	.catalog-page__categories .categories-item__popup-item {
		width: 33.33%
	}
}

@media screen and (max-width: 992px) {
	.catalog-page__categories .categories-item__popup-item {
		width: 50%
	}
}

@media screen and (max-width: 590px) {
	.catalog-page__categories .categories-item__popup-item {
		width: 100%
	}
}

.catalog-page__categories .categories-item__popup-item .parent {
	display: flex;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0);
	border-radius: 8px;
	transition: all .3s ease;
	padding: 15px;
	position: relative
}

@media screen and (max-width: 992px) {
	.catalog-page__categories .categories-item__popup-item .parent {
		padding: 8px 16px
	}
}

.catalog-page__categories .categories-item__popup-item .parent:hover {
	border: 1px solid #494949
}

.catalog-page__categories .categories-item__popup-item .parent.has-category:after {
	content: "";
	top: 50%;
	right: 20px;
	margin-top: -4px;
	border-right: 2px solid #494949;
	border-bottom: 2px solid #494949;
	height: 9px;
	width: 9px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(45deg) translateY(-50%)
}

.catalog-page__categories .categories-item__popup-item .image {
	min-width: 72px;
	width: 72px;
	height: 72px;
	margin-right: 24px;
	display: flex;
	align-items: center
}

@media screen and (max-width: 590px) {
	.catalog-page__categories .categories-item__popup-item .image {
		min-width: 56px;
		width: 56px;
		height: 56px
	}
}

.catalog-page__categories .categories-item__popup-item .image img {
	max-width: 100%
}

.catalog-page__categories .categories-item__popup-item .name {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #02070d;
	text-align: left;
	padding-right: 15px
}

.catalog-page__categories .categories-item__popup-item.active .categories-item__popup-drop {
	display: flex;
	flex-wrap: wrap;
	position: relative
}

.catalog-page__categories .categories-item__popup-item.active .parent {
	border: 1px solid #494949;
	margin-bottom: 26px
}

.catalog-page__categories .categories-item__popup-item.active .has-category:after {
	transform: rotate(225deg) translateY(-50%)
}

.catalog-page__categories .categories-item__popup-drop {
	display: none
}

.catalog-page__categories .categories-item__popup-drop-item {
	font-weight: 600;
	text-align: left;
	width: 20%;
	color: #02070d;
	margin-bottom: 16px
}

@media screen and (max-width: 1360px) {
	.catalog-page__categories .categories-item__popup-drop-item {
		width: 25%
	}
}

@media screen and (max-width: 1080px) {
	.catalog-page__categories .categories-item__popup-drop-item {
		width: 33.33%
	}
}

@media screen and (max-width: 768px) {
	.catalog-page__categories .categories-item__popup-drop-item {
		width: 50%
	}
}

@media screen and (max-width: 590px) {
	.catalog-page__categories .categories-item__popup-drop-item {
		width: 100%
	}
}

.catalog-page__categories .categories-item.active .categories-item__category {
	border: 1px solid #494949
}

.catalog-page__categories .categories-item.active .categories-item__popup {
	display: block
}

.catalog-list {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-auto-rows: 298px
}

@media screen and (max-width: 1210px) {
	.catalog-list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-auto-rows: 256px
	}
}

@media screen and (max-width: 775px) {
	.catalog-list {
		grid-template-columns: 1fr 1fr 1fr
	}
}

@media screen and (max-width: 775px) {
	.catalog-list {
		grid-template-columns: 1fr 1fr
	}
}

.catalog-list__item {
	border: 1px solid #d0d0d0;
	border-radius: 16px;
	padding: 32px;
	transition: all .3s ease
}

.catalog-list__item:hover {
	border: 1px solid #494949
}

@media screen and (max-width: 1210px) {
	.catalog-list__item {
		padding: 16px
	}
}

.catalog-list__item-img {
	width: 160px;
	display: block;
	margin: 0 auto 24px
}

@media screen and (max-width: 1210px) {
	.catalog-list__item-img {
		margin: 0 auto 8px;
		width: 144px
	}
}

.catalog-list__item-img img {
	max-width: 100%;
	transition: all .3s ease
}

.catalog-list__item-img img:hover {
	transform: scale(1.1)
}

.catalog-list__item-name {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #02070d;
	display: block
}

@media screen and (max-width: 1210px) {
	.catalog-list__item-name {
		font-size: 14px
	}
}

.listing-page .pagination {
	padding-bottom: 0
}

.listing-page .listing-template {
	display: grid;
	grid-template-columns: 425px minmax(0, 1fr);
	gap: 20px;
	margin-bottom: 128px
}

@media screen and (max-width: 1200px) {
	.listing-page .listing-template {
		grid-template-columns: minmax(0, 1fr)
	}
}

.listing-page .listing-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 56px;
	margin-bottom: 32px
}

.listing-page .listing-control {
	margin-bottom: 8px
}

.listing-page .listing-control-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between
}

@media screen and (max-width: 768px) {
	.listing-page .listing-control-wrap {
		flex-direction: column
	}
}

.listing-page .listing-control__catalog {
	margin-right: 16px;
	display: none
}

@media screen and (max-width: 1200px) {
	.listing-page .listing-control__catalog {
		display: inline-flex
	}
}

@media screen and (max-width: 768px) {
	.listing-page .listing-control__catalog {
		width: 100%;
		margin-right: 0;
		margin-bottom: 16px
	}
}

.listing-page .listing-control__search {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 32px;
	flex-grow: 1
}

@media screen and (max-width: 768px) {
	.listing-page .listing-control__search {
		flex-direction: column;
		width: 100%
	}
}

.listing-page .listing-control__search .input-group {
	width: 100%
}

.listing-page .listing-control__search .btn {
	min-width: 137px
}

@media screen and (max-width: 768px) {
	.listing-page .listing-control__search .btn {
		width: 100%
	}
}

.listing-page .listing-control__search .input-text {
	font-weight: 600;
	position: absolute;
	margin-top: 4px;
	color: #7c7c7c
}

@media screen and (max-width: 1200px) {
	.listing-page .listing-control__search .input-text {
		position: relative
	}
}

.listing-page .listing-control__search-dropdown {
	position: absolute;
	width: 100%;
	background-color: #fff;
	z-index: 11;
	padding: 12px 8px;
	height: 128px;
	margin-top: 4px;
	border-radius: 12px;
	box-shadow: 0 2px 2px 0 rgba(19, 37, 48, .08), 0 0 3px 0 rgba(19, 37, 48, .12);
	display: none
}

.listing-page .listing-control__search-dropdown .item {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 4px;
	padding: 4px 8px;
	transition: all .3s ease;
	cursor: pointer
}

.listing-page .listing-control__search-dropdown .item:hover {
	background-color: #f7f7f7
}

.listing-page .listing-control__search-scroll {
	max-height: 310px;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.listing-page .listing-control__search-scroll::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #fff
}

.listing-page .listing-control__search-scroll::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.listing-page .listing-control__search-scroll::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #b0b0b0
}

.listing-page .listing-control__search-scroll {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0;
	overflow-y: scroll
}

.listing-page .listing-control__sort {
	display: flex;
	align-items: center
}

@media screen and (max-width: 768px) {
	.listing-page .listing-control__sort {
		width: 100%;
		margin-bottom: 8px
	}
}

.listing-page .listing-control__sort-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-right: 12px;
	white-space: nowrap
}

.listing-page .listing-control__sort .input-group {
	min-width: 155px
}

@media screen and (max-width: 768px) {
	.listing-page .listing-control__sort .input-group {
		width: 100%
	}
}

.listing-page .listing-control__view {
	display: flex;
	align-items: center;
	margin-left: auto
}

@media screen and (max-width: 768px) {
	.listing-page .listing-control__view {
		width: 100%
	}
}

.listing-page .listing-control__view span {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-right: 8px
}

.listing-page .listing-control__view .btn {
	margin-left: 8px;
	padding: 0 10px
}

.listing-page .listing-control__view .btn svg {
	width: 20px;
	height: 20px
}

@media screen and (max-width: 768px) {
	.listing-page .listing-control__view .btn-indent {
		margin-left: auto
	}
}

.listing-page .listing-content {
	margin-bottom: 24px
}

.listing-page .listing-banner {
	border-radius: 16px;
	display: flex
}

.listing-page .listing-banner__item {
	display: flex;
	align-items: center;
	position: relative
}

.listing-page .listing-banner__item.slick-slide {
	display: flex;
	align-items: center;
	justify-content: center
}

@media screen and (max-width: 768px) {
	.listing-page .listing-banner__item.slick-slide {
		padding: 0 8px
	}
}

.listing-page .listing-banner__item.slick-slide img {
	max-width: 100%
}

.listing-page .listing-banner .slick-dots {
	bottom: 17px
}

.listing-page .listing-banner .slick-dots li {
	width: 24px;
	height: 4px;
	border-radius: 2px;
	border: none;
	background-color: #212121;
	margin: 0 4px
}

.listing-page .listing-banner .slick-dots li.slick-active {
	background-color: #ff0
}

.listing-page .listing-banner-image {
	position: absolute;
	top: 0;
	right: 11%
}

.listing-page .listing-banner-info {
	position: relative;
	z-index: 1
}

.listing-page .listing-banner-info .logo {
	margin-bottom: 16px
}

.listing-page .listing-banner-info .name {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
	color: #fff;
	max-width: 350px
}

.listing-page .listing-banner .btn {
	min-width: 172px;
	margin-left: auto;
	position: relative;
	z-index: 1
}

.listing-page .listing-banner.listing-banner--grid {
	margin-bottom: 32px
}

@media screen and (max-width: 768px) {
	.listing-page .listing-banner.listing-banner--grid .listing-banner__item.slick-slide {
		padding: 0
	}
}

.listing {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	-moz-column-gap: 32px;
	column-gap: 32px;
	row-gap: 48px;
	margin-bottom: 48px
}

@media screen and (max-width: 1480px) {
	.listing {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media screen and (max-width: 1110px) {
	.listing {
		grid-template-columns: repeat(2, 1fr);
		-moz-column-gap: 16px;
		column-gap: 16px;
		row-gap: 32px
	}
}

@media screen and (max-width: 720px) {
	.listing {
		grid-template-columns: repeat(1, 1fr);
		-moz-column-gap: 16px;
		column-gap: 16px;
		row-gap: 32px
	}
}

.listing__item-image {
	border: 1px solid #dbdbdb;
	border-radius: 16px;
	margin-bottom: 16px;
	position: relative;
	padding: 18px
}

.listing__item-image .image {
	width: 300px;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin: 0 auto;
	text-align: center
}

.listing__item-image .image img {
	max-width: 100%;
	max-height: 100%;
	transition: all .25s ease
}

.listing__item-image .image img:hover {
	transform: scale(1.1)
}

.listing__item-image .wrap {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center
}

.listing__item-image .wrap a {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center
}

.listing__item-image .label {
	border-radius: 16px 0 8px 0;
	background-color: #3c3;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	width: 63px;
	height: 39px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10
}

.listing__item-image .label--top {
	background-color: #ff2727
}

.listing__item-image .wishlist {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
	z-index: 10
}

.listing__item-image .wishlist svg {
	width: 30px;
	height: 30px;
	fill: #dbdbdb
}

.listing__item-image .wishlist--add svg {
	fill: #ff2727
}

.listing__item-image .photo-360 {
	position: absolute;
	bottom: 16px;
	right: 16px;
	cursor: pointer
}

.listing__item-image .photo-360 svg {
	width: 24px;
	height: 24px
}

.listing__item-head {
	margin-bottom: 16px
}

.listing__item-head .brand {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 2px
}

.listing__item-head .brand span {
	color: #ff0;
	text-transform: uppercase;
	background-color: #02070d;
	border-radius: 4px;
	padding: 3px 8px 2px 9px
}

.listing__item-head .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 32px;
	margin-bottom: 4px;
	min-height: 64px;
	cursor: pointer;
	transition: all .25s ease
}

.listing__item-head .title:hover {
	text-decoration: underline
}

.listing__item-head .article {
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
	color: #7c7c7c
}

.listing__item-params {
	margin-bottom: 8px;
	height: 120px;
	overflow: hidden
}

.listing__item-params li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap
}

.listing__item-params li .name {
	color: #7c7c7c;
	font-weight: 400
}

.listing__item-params li .value {
	font-weight: 600
}

.listing__item-params.open {
	height: auto;
	overflow: inherit
}

.listing__item-details {
	font-weight: 600;
	line-height: 17px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	color: #02070d;
	text-decoration: underline;
	min-height: 17px
}

.listing__item-details svg {
	width: 16px;
	height: 16px;
	margin-left: 4px
}

.listing__item-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	margin-top: auto
}

.listing__item-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 75px
}

.listing__item-price .wrap {
	margin-right: 5px
}

.listing__item-price-discount {
	display: flex;
	align-items: center
}

.listing__item-price-discount .percent {
	background-color: #ff2727;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	padding: 1px 3px;
	margin-right: 4px
}

.listing__item-price-discount .old-price {
	font-size: 14px;
	color: #7c7c7c;
	text-decoration: line-through;
	white-space: nowrap
}

.listing__item-price .btn {
	font-size: 16px
}

.listing__item-price .price {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	white-space: nowrap
}

.listing__item-price .versand {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c;
	white-space: nowrap
}

.listing.listing-grid {
	grid-template-columns: repeat(5, 1fr);
	-moz-column-gap: 16px;
	column-gap: 16px;
	row-gap: 48px
}

@media screen and (max-width: 1480px) {
	.listing.listing-grid {
		grid-template-columns: repeat(4, 1fr)
	}
}

@media screen and (max-width: 1180px) {
	.listing.listing-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media screen and (max-width: 768px) {
	.listing.listing-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media screen and (max-width: 500px) {
	.listing.listing-grid {
		grid-template-columns: repeat(1, 1fr)
	}
}

.listing.listing-grid .listing__item-params,
.listing.listing-grid .listing__item-details,
.listing.listing-grid .listing__item-info,
.listing.listing-grid .btn span {
	display: none
}

.listing.listing-grid .listing__item-head .brand {
	font-size: 18px;
	line-height: 30px
}

.listing.listing-grid .listing__item-head .brand span {
	padding: 2px 8px 2px 8px
}

.listing.listing-grid .listing__item-head .title {
	font-size: 24px;
	line-height: 30px
}

.listing.listing-grid .listing__item-image {
	padding: 15px
}

.listing.listing-grid .listing__item-image .image {
	width: 246px;
	height: 246px
}

@media screen and (max-width: 1180px) {
	.listing.listing-grid .listing__item-image .image {
		width: 208px;
		height: 208px
	}
}

@media screen and (max-width: 768px) {
	.listing.listing-grid .listing__item-image .image {
		width: 133px;
		height: 133px
	}
}

@media screen and (max-width: 768px) {
	.listing.listing-grid .listing__item-image {
		min-height: 250px;
		display: flex;
		align-items: center
	}
}

@media screen and (max-width: 900px) {
	.listing.listing-grid .listing__item-price {
		flex-direction: column;
		align-items: flex-start
	}
}

@media screen and (max-width: 900px) {
	.listing.listing-grid .listing__item-price .wrap {
		margin-bottom: 8px
	}
}

.listing-side {
	border-radius: 8px;
	border: 1px solid #dbdbdb;
	padding: 20px 32px
}

@media screen and (max-width: 1200px) {
	.listing-side {
		border: none;
		padding: 0
	}
}

.listing-side__item-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	margin-bottom: 16px
}

.listing-side__item.listing-side__item--categories {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid #dbdbdb
}

@media screen and (max-width: 1200px) {
	.listing-side__item.listing-side__item--categories {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		z-index: 50;
		margin-top: 0;
		padding: 55px 32px 0;
		border-top: none;
		overflow: auto
	}
}

.listing-side__item.listing-side__item--categories .listing-side__item-title {
	text-transform: lowercase
}

.listing-side__item.listing-side__item--categories .listing-side__item-title:first-letter {
	text-transform: uppercase
}

.listing-list__item {
	padding: 12px 24px;
	display: grid;
	grid-template-columns: 130px 1fr 226px;
	gap: 16px
}

.listing-list__item:nth-child(even) {
	background-color: #f7f7f7
}

@media screen and (max-width: 992px) {
	.listing-list__item {
		padding: 12px 0
	}
}

@media screen and (max-width: 768px) {
	.listing-list__item {
		grid-template-columns: 128px 1fr;
		grid-template-rows: auto auto;
		gap: 8px;
		padding: 8px 0
	}
}

.listing-list__item-image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 130px;
	height: 130px;
	border: 1px solid #dbdbdb;
	border-radius: 16px;
	padding: 5px;
	background-color: #fff
}

@media screen and (max-width: 768px) {
	.listing-list__item-image {
		min-width: 128px;
		height: 128px
	}
}

.listing-list__item-image img {
	max-width: 100%;
	max-height: 100%
}

.listing-list__item-info {
	display: flex;
	flex-direction: column
}

.listing-list__item-info .article {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 4px;
	display: block;
	color: #02070d
}

.listing-list__item-info .title {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	display: block;
	color: #02070d
}

.listing-list__item-info .description {
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
	color: #7c7c7c
}

.listing-list__item-info .charge {
	display: flex;
	gap: 8px;
	margin-top: 4px;
	margin-bottom: 8px
}

.listing-list__item-info .charge__icon svg {
	min-width: 16px;
	width: 16px;
	height: 16px
}

.listing-list__item-info .charge__text {
	color: #7c7c7c;
	font-size: 10px;
	line-height: 15px
}

.listing-list__item-info .charge__text-link {
	color: #7c7c7c;
	font-weight: 600;
	text-decoration: underline
}

.listing-list__item-info .product-availability {
	margin-top: auto
}

.listing-list__item-info .product-availability__marker span {
	width: 8px;
	height: 8px
}

.listing-list__item-price {
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

@media screen and (max-width: 768px) {
	.listing-list__item-price {
		grid-column: 1/-1
	}
}

.listing-list__item-price .wrap-price {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	white-space: nowrap;
	justify-content: flex-end
}

@media screen and (max-width: 768px) {
	.listing-list__item-price .wrap-price {
		justify-content: flex-start
	}
}

.listing-list__item-price .wrap-price .price {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin-right: 8px
}

.listing-list__item-price .wrap-price .price span {
	font-weight: 400
}

.listing-list__item-price .wrap-price .versand {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #7c7c7c
}

.listing-list__item-price .qty-block {
	display: flex;
	align-items: center;
	margin-bottom: 16px
}

@media screen and (max-width: 768px) {
	.listing-list__item-price .qty-block {
		justify-content: space-between
	}
}

.listing-list__item-price .qty-block .product-amount {
	margin-right: 8px
}

.listing-list__item-price .qty-block .product-amount input {
	width: 52px;
	height: 32px
}

.listing-list__item-price .btn {
	width: 100%
}

.listing-list__item-price .btn svg {
	min-width: 16px;
	height: 16px
}

.listing-list__item-price .listing-list__item-brandImg {
	max-width: 118px;
	display: flex;
	align-items: center;
	align-self: flex-end;
	margin-bottom: 16px
}

.listing-list__item-price .listing-list__item-brandImg img {
	max-width: 100%
}

.listing-list__item-price.listing-list__item-price--center {
	justify-content: center
}

.listing-list__item-price.listing-list__item-price--center .add-to-cart {
	width: 100%
}

.listing-list__item.listing-list__item--autocomplete .price,
.listing-list__item.listing-list__item--autocomplete .product-availability__text {
	color: #02070d
}

.listing-list__item.listing-list__item--autocomplete:nth-child(even) {
	background-color: rgba(0, 0, 0, 0)
}

.listing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 48px
}

@media screen and (max-width: 1350px) {
	.listing-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media screen and (max-width: 1200px) {
	.listing-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media screen and (max-width: 900px) {
	.listing-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 16px
	}
}

@media screen and (max-width: 600px) {
	.listing-grid {
		grid-template-columns: repeat(1, 1fr)
	}
}

.listing-grid__item-image {
	border-radius: 16px;
	border: 1px solid #dbdbdb;
	background-color: #fff;
	margin-bottom: 16px;
	position: relative
}

.listing-grid__item-image .image {
	width: 264px;
	height: 264px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin: 0 auto;
	text-align: center
}

.listing-grid__item-image .image img {
	max-width: 100%;
	max-height: 100%;
	transition: all .25s ease;
	transform: scale(0.9)
}

.listing-grid__item-image .image img:hover {
	transform: scale(1)
}

.listing-grid__item-image .wishlist {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
	z-index: 10
}

.listing-grid__item-image .wishlist svg {
	width: 30px;
	height: 30px;
	fill: #dbdbdb
}

.listing-grid__item-image .wishlist--add svg {
	fill: #ff2727
}

.listing-grid__item-image .photo-360 {
	position: absolute;
	bottom: 16px;
	right: 16px;
	cursor: pointer
}

.listing-grid__item-image .photo-360 svg {
	width: 24px;
	height: 24px
}

.listing-grid__item-image .label {
	border-radius: 16px 0 8px 0;
	background-color: #3c3;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	width: 63px;
	height: 39px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10
}

.listing-grid__item-image .label--top {
	background-color: #ff2727
}

.listing-grid__item-wrap {
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.listing-grid__item-brandImg {
	max-width: 118px;
	display: flex;
	align-items: center
}

.listing-grid__item-brandImg img {
	max-width: 100%
}

.listing-grid__item-article {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	display: block;
	color: #02070d
}

.listing-grid__item-title {
	min-height: 48px;
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 24px;
	display: block;
	color: #02070d
}

.listing-grid__item-params {
	margin-bottom: 8px;
	height: 92px;
	overflow: hidden
}

.listing-grid__item-params li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 4px
}

.listing-grid__item-params li .name {
	color: #7c7c7c
}

.listing-grid__item-params li .value {
	font-weight: 600
}

.listing-grid__item-params.open {
	height: auto;
	overflow: inherit
}

.listing-grid__item-details {
	font-weight: 600;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	color: #02070d;
	text-decoration: underline;
	min-height: 17px
}

.listing-grid__item-details svg {
	width: 16px;
	height: 16px;
	margin-left: 4px
}

.listing-grid__item-charge {
	display: flex;
	gap: 8px;
	margin-top: 4px;
	margin-bottom: 8px;
	min-height: 46px
}

.listing-grid__item-charge .icon svg {
	min-width: 16px;
	width: 16px;
	height: 16px
}

.listing-grid__item-charge .text {
	color: #7c7c7c;
	font-size: 10px;
	line-height: 15px
}

.listing-grid__item-charge .text__link {
	color: #7c7c7c;
	font-weight: 600;
	text-decoration: underline
}

.listing-grid__item-info {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.listing-grid__item-info .wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end
}

.listing-grid__item-info .wrap .add-qty {
	margin-bottom: 8px
}

.listing-grid__item-info .wrap .product-amount input {
	width: 52px;
	height: 32px
}

.listing-grid__item-info .wrap .product-amount .product-amount__plus:before,
.listing-grid__item-info .wrap .product-amount .product-amount__minus:before {
	height: 2px
}

.listing-grid__item-info .wrap .product-amount .product-amount__plus:after {
	width: 2px
}

.listing-grid__item-price {
	display: flex;
	flex-direction: column;
	margin-bottom: 8px;
	min-height: 58px;
	justify-content: flex-end
}

.listing-grid__item-price .wrap {
	display: flex;
	align-items: center
}

.listing-grid__item-price .price {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
	margin-right: 8px
}

.listing-grid__item-price .versand {
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c
}

.listing-grid__item .btn {
	width: 100%
}

.listing-grid__item-price-discount {
	display: flex;
	align-items: center
}

.listing-grid__item-price-discount .percent {
	background-color: #ff2727;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	padding: 1px 3px;
	margin-right: 4px
}

.listing-grid__item-price-discount .old-price {
	font-size: 14px;
	color: #7c7c7c;
	text-decoration: line-through;
	white-space: nowrap
}

.listing-categories {
	padding: 0 0 16px 0
}

.listing-categories__close {
	display: none;
	align-items: center;
	padding: 8px 0;
	justify-content: flex-end
}

@media screen and (max-width: 1200px) {
	.listing-categories__close {
		display: flex;
		position: absolute;
		right: 32px;
		top: 20px
	}
}

.listing-categories__close svg {
	width: 20px;
	height: 20px;
	cursor: pointer
}

.listing-categories .listing-categories-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	margin-bottom: 12px
}

.listing-categories .listing-link-parent:after {
	content: "";
	top: 50%;
	right: 14px;
	margin-top: -4px;
	border-right: 1px solid #494949;
	border-bottom: 1px solid #494949;
	height: 8px;
	width: 8px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(45deg) translateY(-50%)
}

.listing-categories .listing-link-parent.open:after {
	transform: rotate(225deg) translateY(-50%);
	right: 8px
}

.listing-categories .listing-categories-item__link {
	color: #02070d;
	text-decoration: none;
	font-size: 18px;
	line-height: 24px;
	padding: 12px 25px 12px 0;
	display: block;
	position: relative
}

.listing-categories .listing-categories-item__link.open {
	font-weight: 600
}

.listing-categories .listing-categories-subItems {
	display: none
}

.listing-categories .listing-categories-subItems .listing-categories-subItem__link {
	color: #02070d;
	text-decoration: none;
	line-height: 20px;
	padding: 4px 16px;
	display: block;
	position: relative
}

.listing-categories .listing-categories-subItems .listing-categories-subItem__link.open {
	font-weight: 600;
	border-radius: 8px;
	background-color: #f7f7f7
}

.listing-categories .listing-categories-dropItems {
	padding-left: 24px;
	display: none
}

.listing-categories .listing-categories-dropItems .listing-categories-dropItem__link {
	color: #02070d;
	text-decoration: none;
	line-height: 20px;
	padding: 4px 16px;
	display: block;
	position: relative
}

.listing-categories .listing-categories-dropItems .listing-categories-dropItem__link:first-letter {
	text-transform: uppercase
}

.listing-categories.listing-categories--search .listing-categories-items {
	margin-bottom: 12px
}

.listing-categories.listing-categories--search .listing-categories-item {
	margin-bottom: 10px;
	display: none
}

.listing-categories.listing-categories--search .listing-categories-item:nth-child(-n+10) {
	display: block
}

.listing-categories.listing-categories--search .listing-categories-item:last-child {
	margin-bottom: 0
}

.listing-categories.listing-categories--search .listing-categories-item .form-checkbox+.form-checkbox-label:first-letter {
	text-transform: uppercase
}

.listing-categories.listing-categories--search .listing-categories-item .checkbox {
	display: flex;
	align-items: center;
	gap: 16px
}

.listing-categories.listing-categories--search .listing-categories-item .checkbox img {
	max-width: 64px
}

.listing-categories.listing-categories--search .listing-categories-wrap.listing-categories-wrap--more .listing-categories-item__more {
	display: block
}

.listing-categories.listing-categories--search .listing-categories-wrap.listing-categories-wrap--more.show .listing-categories-item__more:before {
	-webkit-mask: url(../images/icons/fill-minus-icon.svg) no-repeat center;
	mask: url(../images/icons/fill-minus-icon.svg) no-repeat center
}

.listing-categories.listing-categories--search .listing-categories-wrap.listing-categories-wrap--more.show .listing-categories-item__more:after {
	content: attr(data-less)
}

.listing-categories.listing-categories--search .listing-categories-wrap.listing-categories-wrap--more.show .listing-categories-item {
	display: block !important
}

.listing-categories.listing-categories--search .listing-categories-item__more {
	cursor: pointer;
	display: none;
	font-size: 12px;
	font-weight: 600;
	line-height: 14px;
	margin-bottom: 2px;
	margin-top: 16px;
	min-height: 14px;
	padding-left: 20px;
	position: relative
}

.listing-categories.listing-categories--search .listing-categories-item__more:before {
	background: #02070d;
	border-radius: 100%;
	content: "";
	height: 16px;
	left: 1px;
	-webkit-mask: url(../images/icons/fill-plus-icon.svg) no-repeat center;
	mask: url(../images/icons/fill-plus-icon.svg) no-repeat center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	z-index: 1
}

.listing-categories.listing-categories--search .listing-categories-item__more:after {
	content: attr(data-more)
}

.product-page {
	padding-bottom: 90px
}

.product-page .breadcrumbs {
	margin-bottom: 30px
}

.product-page .product {
	display: flex;
	justify-content: space-between;
	gap: 16px
}

@media screen and (max-width: 768px) {
	.product-page .product {
		flex-direction: column
	}
}

.product-page .product__content {
	max-width: calc(100% - 278px - 16px);
	width: 100%
}

@media screen and (max-width: 768px) {
	.product-page .product__content {
		max-width: 100%;
		width: 100%
	}
}

.product-page .product__sidebar {
	width: 278px
}

@media screen and (max-width: 768px) {
	.product-page .product__sidebar {
		width: 100%
	}
}

.product-page .product .product-wrap {
	display: grid;
	width: 100%;
	grid-template-columns: 573px 1fr;
	gap: 0 16px;
	grid-template-areas: "product-image product-title" "product-image product-info";
	margin-bottom: 25px
}

@media screen and (max-width: 1200px) {
	.product-page .product .product-wrap {
		grid-template-areas: "product-title product-title" "product-image product-image" "product-info product-info";
		row-gap: 16px
	}
}

@media screen and (max-width: 900px) {
	.product-page .product .product-wrap {
		grid-template-columns: minmax(368px, 1fr)
	}
}

@media screen and (max-width: 780px) {
	.product-page .product .product-wrap {
		grid-template-areas: "product-title product-title product-title" "product-image product-image product-image" "product-price product-price product-price" "product-info product-info product-info";
		grid-template-columns: 1fr 1fr 1fr
	}
}

.product-page .product__image {
	display: flex;
	grid-area: product-image
}

.product-page .product__image-slider {
	overflow: hidden;
	height: 100%;
	border: 1px solid #d0d0d0;
	border-radius: 32px
}

.product-page .product__image-wrapper {
	background-color: #fff;
	height: 426px;
	width: 426px;
	order: 2;
	position: relative;
	border-radius: 32px
}

@media screen and (max-width: 1250px) {
	.product-page .product__image-wrapper {
		flex: 1
	}
}

@media screen and (max-width: 900px) {
	.product-page .product__image-wrapper {
		height: 368px;
		width: 368px
	}
}

@media screen and (max-width: 576px) {
	.product-page .product__image-wrapper {
		height: 320px;
		width: 320px
	}
}

.product-page .product__image-label {
	width: 95px;
	height: 57px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 32px 0 16px 0;
	font-size: 24px;
	color: #fff;
	background-color: #3c3;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700
}

.product-page .product__image-label.product__image-label--top {
	background-color: #ff2727
}

.product-page .product__image-video {
	position: absolute;
	bottom: 16px;
	right: 55px;
	z-index: 5;
	cursor: pointer
}

.product-page .product__image-video svg {
	width: 40px;
	height: 25px
}

.product-page .product__image-360 {
	position: absolute;
	bottom: 16px;
	right: 12px;
	z-index: 5;
	cursor: pointer
}

.product-page .product__image-360 svg {
	width: 40px;
	height: 25px
}

.product-page .product__image-360.wr360_player {
	bottom: unset;
	top: 1px;
	right: -1px;
	background-color: rgba(0, 0, 0, 0);
	border-radius: 50px
}

.product-page .product__image-360.wr360_player .theme_panel {
	bottom: 5px
}

.product-page .product__image-360.wr360_player .container {
	border-radius: 50px
}

.product-page .product__image-360.wr360_player .container .panning {
	width: 99% !important
}

.product-page .product__image-slider-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 46px;
	height: 426px
}

@media screen and (max-width: 900px) {
	.product-page .product__image-slider-item {
		height: 368px
	}
}

.product-page .product__image-slider-item img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle
}

@media screen and (max-width: 576px) {
	.product-page .product__image-slider-item img {
		max-width: 95%
	}
}

.product-page .product__image-slider-item .play-youtube {
	position: absolute;
	cursor: pointer
}

.product-page .product__image-slider-item .play-youtube svg {
	width: 64px;
	height: 64px;
	fill: #ff0
}

.product-page .product__image-slider .slick-prev {
	left: 15px
}

.product-page .product__image-slider .slick-next {
	right: 15px
}

.product-page .product__image-thumbs {
	height: 426px;
	width: 131px;
	margin-right: 16px;
	overflow: hidden
}

@media screen and (max-width: 900px) {
	.product-page .product__image-thumbs {
		height: 368px;
		width: 80px
	}
}

@media screen and (max-width: 576px) {
	.product-page .product__image-thumbs {
		display: none
	}
}

.product-page .product__image-thumbs-item {
	background: #fff;
	border: 1px solid #d0d0d0;
	border-radius: 16px;
	width: 131px;
	height: 131px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px
}

@media screen and (max-width: 900px) {
	.product-page .product__image-thumbs-item {
		width: 80px;
		height: 80px
	}
}

.product-page .product__image-thumbs-item img {
	max-width: 95%;
	max-height: 95%;
	margin: 0 auto;
	vertical-align: middle
}

.product-page .product__name {
	grid-area: product-title;
	position: relative
}

.product-page .product__name-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 12px
}

.product-page .product__name-brandImg {
	max-width: 185px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 8px;
	right: 0
}

.product-page .product__name-brandImg img {
	max-width: 100%
}

.product-page .product__name-brandImg.product__name-brandImg--ridex {
	height: 24px
}

.product-page .product__name-brandImg.product__name-brandImg--ridex img {
	max-height: 100%
}

.product-page .product__name-brand {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	position: absolute;
	top: 8px;
	right: 0
}

.product-page .product__name-brand span {
	padding: 3px 9px 2px 8px;
	background-color: #02070d;
	border-radius: 4px;
	color: #ff0
}

.product-page .product__name-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 18px
}

.product-page .product__name-article {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px
}

.product-page .product__info {
	grid-area: product-info;
	min-height: 305px
}

@media screen and (max-width: 1200px) {
	.product-page .product__info {
		min-height: auto
	}
}

.product-page .product__info-params li {
	padding: 8px 16px;
	justify-content: space-between;
	flex-wrap: wrap;
	border-radius: 8px;
	display: none
}

.product-page .product__info-params li:nth-child(even) {
	background-color: #f7f7f7
}

.product-page .product__info-params li:nth-child(-n+8) {
	display: flex
}

.product-page .product__info-params li .name {
	font-weight: 400
}

.product-page .product__info-params li .value {
	font-weight: 600
}

@media screen and (max-width: 1200px) {
	.product-page .product__info-params li {
		display: flex !important
	}
}

.product-page .product__info-params li .mirror-products-link {
	color: #02070d;
	text-decoration: underline
}

.product-page .product__info-params-picture {
	background-color: rgba(0, 0, 0, 0) !important;
	font-size: 12px
}

.product-page .product__info-params-picture.product__info-params-picture--show {
	display: block
}

.product-page .product__info-params.show li {
	display: flex !important
}

.product-page .product__info-btn {
	position: relative;
	height: 32px;
	text-align: center;
	margin-top: 12px
}

@media screen and (max-width: 1200px) {
	.product-page .product__info-btn {
		display: none
	}
}

.product-page .product__info-btn:after,
.product-page .product__info-btn:before {
	content: "";
	display: block;
	position: absolute;
	height: 1px;
	width: 45%;
	background-color: #dbdbdb;
	top: 50%
}

.product-page .product__info-btn:after {
	right: 0
}

.product-page .product__info-btn.open span:after {
	transform: rotate(225deg) translateY(-50%);
	right: 8px;
	margin-top: -7px
}

.product-page .product__info-btn span {
	display: inline-block;
	border-radius: 4px;
	background-color: #f7f7f7;
	width: 32px;
	height: 32px;
	position: relative;
	cursor: pointer
}

.product-page .product__info-btn span:after {
	content: "";
	top: 50%;
	right: 15px;
	margin-top: -4px;
	border-right: 2px solid #494949;
	border-bottom: 2px solid #494949;
	height: 10px;
	width: 10px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(45deg) translateY(-50%)
}

.product-page__top-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	margin-bottom: 24px
}

.product-page .popup__body {
	width: 866px
}

@media screen and (max-width: 820px) {
	.product-page .popup__body {
		width: 100%
	}
}

.product-page .popup__body .product__image-wrapper {
	width: 584px;
	height: 584px;
	flex: inherit
}

@media screen and (max-width: 820px) {
	.product-page .popup__body .product__image-wrapper {
		width: 250px;
		flex: 1
	}
}

@media screen and (max-width: 820px) {
	.product-page .popup__body .popup__close {
		top: 14px;
		right: 14px
	}
}

.product-page .popup__body .product__image-thumbs-item {
	width: 131px;
	height: 131px
}

.product-page .popup__body .product__image-thumbs {
	min-width: 131px
}

.product-page .popup__body .product__image-slider-item {
	width: 584px;
	height: 584px
}

.product-page .popup__body .product__image-thumbs {
	height: 584px
}

.product-page .product__buy {
	width: 278px;
	padding: 24px;
	border-radius: 16px;
	background-color: #f7f7f7;
	position: sticky;
	height: -moz-fit-content;
	height: fit-content;
	top: 80px;
	display: flex;
	flex-direction: column;
	gap: 16px
}

@media screen and (max-width: 768px) {
	.product-page .product__buy {
		padding: 8px 8px 32px 8px;
		background-color: #fff;
		box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, .05), 0px -4px 16px 0px rgba(0, 0, 0, .05);
		gap: 0
	}
}

@media screen and (max-width: 900px) {
	.product-page .product__buy {
		align-self: auto
	}
}

@media screen and (max-width: 768px) {
	.product-page .product__buy {
		position: fixed !important;
		bottom: 0 !important;
		top: auto !important;
		right: 0 !important;
		z-index: 10;
		width: 100%
	}
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-wrap {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		margin-bottom: 16px
	}
}

.product-page .product__buy-mobile-btn {
	width: 24px;
	height: 24px;
	position: relative;
	margin: 0 auto 4px;
	cursor: pointer;
	display: none
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-mobile-btn {
		display: block
	}
}

.product-page .product__buy-mobile-btn:after {
	content: "";
	top: 50%;
	margin-top: -4px;
	border-right: 2px solid #494949;
	border-bottom: 2px solid #494949;
	height: 12px;
	width: 12px;
	position: absolute;
	transition: all .3s ease;
	pointer-events: none;
	transform: rotate(225deg) translateY(-50%);
	right: 8px
}

.product-page .product__buy-mobile-btn._active:after {
	transform: rotate(45deg) translateY(-50%);
	right: 11px
}

.product-page .product__buy-price {
	margin-bottom: 16px;
	text-align: right
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-price {
		margin-bottom: 0
	}
}

.product-page .product__buy-price-discount {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 4px
}

.product-page .product__buy-price-discount .percent {
	background-color: #ff2727;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	padding: 1px 3px;
	margin-right: 4px
}

.product-page .product__buy-price-discount .old-price {
	font-size: 16px;
	color: #7c7c7c;
	text-decoration: line-through
}

.product-page .product__buy-price-current {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-price-current {
		line-height: 32px
	}
}

.product-page .product__buy-price-vat {
	line-height: 14px;
	color: #7c7c7c
}

.product-page .product__buy .product-availability {
	text-align: right
}

@media screen and (max-width: 768px) {
	.product-page .product__buy .product-availability {
		margin-right: auto
	}
}

.product-page .product__buy .product-availability__marker {
	justify-content: flex-end
}

@media screen and (max-width: 768px) {
	.product-page .product__buy .product-availability__marker {
		justify-content: flex-start
	}
}

.product-page .product__buy-info {
	display: flex;
	align-items: center;
	justify-content: space-between
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-info {
		width: 100%;
		justify-content: flex-end;
		gap: 8px;
		margin-bottom: 16px
	}
}

.product-page .product__buy-info .product-amount input {
	height: 32px;
	width: 52px;
	margin: 0 8px;
	border-radius: 8px
}

.product-page .product__buy-info.show {
	display: flex
}

.product-page .product__buy-btn {
	width: 100%
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-btn {
		margin-bottom: 16px
	}
}

.product-page .product__buy-btn svg {
	min-width: 16px
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-choose {
		display: flex;
		flex-wrap: wrap;
		gap: 10px
	}
}

.product-page .product__buy-choose .form-radio-label {
	display: flex;
	align-items: center
}

.product-page .product__buy-choose-item {
	border-radius: 8px;
	border: 1px solid #d0d0d0;
	background-color: #fff;
	margin-bottom: 8px;
	padding: 12px 11px;
	display: flex;
	align-items: center;
	cursor: pointer
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-choose-item {
		flex: 1 1 calc(50% - 10px);
		text-align: center;
		margin-bottom: 0
	}
	.product-page .product__buy-choose-item:nth-last-child(3):first-child,
	.product-page .product__buy-choose-item:nth-last-child(3):first-child~.product__buy-choose-item {
		flex: 1 1 calc(33.33% - 10px)
	}
	.product-page .product__buy-choose-item:nth-last-child(4):first-child,
	.product-page .product__buy-choose-item:nth-last-child(4):first-child~.product__buy-choose-item {
		flex: 1 1 calc(50% - 10px)
	}
}

.product-page .product__buy-choose-item:last-child {
	margin-bottom: 0
}

.product-page .product__buy-choose-item.active {
	border-color: #494949
}

.product-page .product__buy-choose-item.active .check:before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	top: 5px;
	border-radius: 50%;
	left: 3px;
	position: absolute;
	background-color: #494949;
	z-index: 1
}

.product-page .product__buy-choose-item.active .check:after {
	border-color: #494949
}

.product-page .product__buy-choose .check {
	position: relative;
	width: 24px;
	margin-right: 4px;
	height: 24px
}

.product-page .product__buy-choose .check:after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #d0d0d0;
	background: #fff;
	position: absolute;
	left: 0;
	top: 2px;
	transition: all .3s ease
}

.product-page .product__buy-choose .price {
	font-size: 14px;
	color: #02070d;
	font-weight: 600;
	line-height: 20px;
	white-space: nowrap
}

.product-page .product__buy-choose .liter {
	position: relative;
	margin-right: 4px
}

.product-page .product__buy-choose .liter svg {
	width: 24px;
	height: 24px
}

.product-page .product__buy-choose .liter:before {
	content: "";
	display: block;
	position: absolute;
	width: 14px;
	height: 11px;
	background-color: #fff;
	padding: 2px;
	border-radius: 2px;
	bottom: 6px;
	right: 0
}

.product-page .product__buy-choose .liter:after {
	content: attr(data-liter);
	font-weight: 600;
	line-height: 9px;
	font-size: 10px;
	color: #7c7c7c;
	position: absolute;
	bottom: 7px;
	right: 1px
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-choose.show {
		display: flex
	}
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-partners {
		margin-top: 16px;
		overflow-x: auto;
		position: relative
	}
}

.product-page .product__buy-partners-title {
	margin-bottom: 8px;
	font-weight: 600
}

.product-page .product__buy-partners .btn {
	border-radius: 4px;
	display: flex;
	width: 100%;
	height: auto;
	margin-bottom: 16px
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-partners .btn {
		margin-bottom: 0
	}
}

.product-page .product__buy-partners .btn:last-child {
	margin-bottom: 0
}

.product-page .product__buy-partners.show {
	display: block
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-partners-items {
		display: flex
	}
}

.product-page .product__buy-charge {
	display: flex;
	gap: 8px
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-charge {
		margin-top: 16px
	}
}

.product-page .product__buy-charge-icon svg {
	min-width: 24px;
	width: 24px;
	height: 24px
}

.product-page .product__buy-charge-text {
	color: #7c7c7c;
	font-size: 12px;
	line-height: 16px
}

.product-page .product__buy-charge-link {
	color: #7c7c7c;
	font-weight: 600;
	text-decoration: underline
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-charge.show {
		display: flex
	}
}

@media screen and (max-width: 768px) {
	.product-page .product__buy-mobile-hidden {
		display: none
	}
}

.plus-content__banner {
	width: 100%;
	height: 140px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 0 32px;
	background-repeat: no-repeat;
	background-position: right;
	border-radius: 16px;
	margin-bottom: 48px;
	background-color: #02070d
}

@media screen and (max-width: 992px) {
	.plus-content__banner {
		margin-bottom: 32px
	}
}

@media screen and (max-width: 680px) {
	.plus-content__banner {
		padding: 0 16px
	}
}

@media screen and (max-width: 680px) {
	.plus-content__banner-logo {
		max-width: 168px
	}
}

.plus-content__banner-logo img {
	max-width: 100%
}

.plus-content__banner-text {
	font-weight: 700;
	font-size: 26px;
	line-height: 29px;
	color: #fff
}

.plus-content__banner-text span {
	color: #ff0
}

@media screen and (max-width: 576px) {
	.plus-content__banner-text {
		font-size: 16px;
		line-height: 29px
	}
}

.plus-content__body {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 48px;
	margin-bottom: 48px
}

@media screen and (max-width: 992px) {
	.plus-content__body {
		row-gap: 32px
	}
}

@media screen and (max-width: 576px) {
	.plus-content__body {
		margin-bottom: 32px
	}
}

.plus-content__body-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	-moz-column-gap: 16px;
	column-gap: 16px
}

@media screen and (max-width: 992px) {
	.plus-content__body-row {
		grid-template-columns: 1fr
	}
}

.plus-content__body-row:nth-child(even) .plus-content__body-col--img {
	order: 2
}

.plus-content__body-col {
	align-self: center
}

.plus-content__body-col.plus-content__body-col--txt {
	padding-left: 48px;
	width: 85%
}

@media screen and (max-width: 1200px) {
	.plus-content__body-col.plus-content__body-col--txt {
		width: 100%;
		padding-left: 15px
	}
}

@media screen and (max-width: 992px) {
	.plus-content__body-col.plus-content__body-col--txt {
		padding-left: 0
	}
}

.plus-content__body-col.plus-content__body-col--img {
	max-width: 721px;
	min-height: 478px;
	border-radius: 32px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative
}

@media screen and (max-width: 576px) {
	.plus-content__body-col.plus-content__body-col--img {
		min-height: 249px
	}
}

.plus-content__body-col.plus-content__body-col--img .title {
	position: absolute;
	font-weight: 700;
	font-size: 36px;
	line-height: 46px;
	font-family: "Roboto Condensed", sans-serif;
	color: #ff0;
	margin-bottom: 4px;
	left: 50px;
	bottom: 78px
}

@media screen and (max-width: 576px) {
	.plus-content__body-col.plus-content__body-col--img .title {
		font-size: 24px;
		line-height: 32px;
		bottom: 52px;
		left: 16px
	}
}

.plus-content__body-col.plus-content__body-col--img .txt {
	font-size: 18px;
	line-height: 20px;
	color: #fff;
	left: 50px;
	bottom: 50px;
	position: absolute;
	padding-right: 15px
}

@media screen and (max-width: 1350px) {
	.plus-content__body-col.plus-content__body-col--img .txt {
		bottom: 40px
	}
}

@media screen and (max-width: 576px) {
	.plus-content__body-col.plus-content__body-col--img .txt {
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		bottom: 16px;
		left: 16px;
		padding-right: 10px
	}
}

@media screen and (max-width: 992px) {
	.plus-content__body-col.plus-content__body-col--img {
		order: 2;
		margin: auto;
		width: 100%
	}
}

.plus-content__body-strong {
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 32px
}

@media screen and (max-width: 992px) {
	.plus-content__body-strong {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 16px
	}
}

.plus-content__body-txt {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c
}

@media screen and (max-width: 992px) {
	.plus-content__body-txt {
		margin-bottom: 24px
	}
}

.plus-content__body-txt p {
	margin-bottom: 32px
}

.plus-content__body-txt p:last-child {
	margin-bottom: 0
}

.plus-content__body-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 44px;
	line-height: 56px;
	margin-bottom: 32px
}

@media screen and (max-width: 992px) {
	.plus-content__body-title {
		margin-bottom: 24px
	}
}

@media screen and (max-width: 576px) {
	.plus-content__body-title {
		font-size: 36px;
		line-height: 44px
	}
}

.plus-content__body-list {
	display: flex;
	flex-wrap: wrap
}

.plus-content__body-list-item {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	padding-left: 62px;
	position: relative;
	min-height: 88px;
	width: 50%;
	margin-bottom: 20px;
	padding-right: 12px
}

@media screen and (max-width: 992px) {
	.plus-content__body-list-item {
		padding-left: 66px
	}
	.plus-content__body-list-item:nth-last-child(-n+2) {
		margin-bottom: 32px
	}
}

@media screen and (max-width: 576px) {
	.plus-content__body-list-item {
		width: 100%;
		margin-bottom: 40px;
		min-height: 44px
	}
	.plus-content__body-list-item:nth-last-child(-n+2) {
		margin-bottom: 40px
	}
	.plus-content__body-list-item:nth-last-child(-n+1) {
		margin-bottom: 32px
	}
}

.plus-content__body-list-item:before {
	content: "";
	display: block;
	position: absolute;
	width: 50px;
	height: 45px;
	background-color: #ededed;
	border-radius: 8px 0 8px 8px;
	left: 0
}

@media screen and (max-width: 992px) {
	.plus-content__body-list-item:before {
		width: 50px;
		height: 45px
	}
}

.plus-content__body-list-item:after {
	content: "";
	display: block;
	position: absolute;
	width: 40px;
	height: 35px;
	background-image: url("/assets/images/plus/check-icon.svg");
	left: 10px;
	top: 0
}

@media screen and (max-width: 992px) {
	.plus-content__body-list-item:after {
		width: 40px;
		height: 35px;
		left: 11px;
		background-repeat: no-repeat;
		background-size: 100%
	}
}

.plus-content__table {
	margin-bottom: 70px;
	overflow-x: auto
}

.plus-content__table-wrap {
	min-width: 700px;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.plus-content__table-wrap::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #fff
}

.plus-content__table-wrap::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.plus-content__table-wrap::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #b0b0b0
}

.plus-content__table-wrap {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0
}

.plus-content__table-row {
	display: flex;
	border-bottom: 1px solid #dbdbdb;
	padding: 25px 0
}

@media screen and (max-width: 576px) {
	.plus-content__table-row {
		padding: 13px 0
	}
}

.plus-content__table-row.plus-content__table-row--thead {
	border-bottom: none;
	padding: 0
}

@media screen and (max-width: 768px) {
	.plus-content__table-row.plus-content__table-row--thead .plus-content__table-col:last-child img {
		width: 182px
	}
	.plus-content__table-row.plus-content__table-row--thead .plus-content__table-col:nth-child(2) img {
		width: 91px
	}
}

.plus-content__table-row:last-child {
	border-bottom: none
}

.plus-content__table-col {
	width: 33.3%;
	font-size: 18px;
	line-height: 26px;
	text-align: center
}

.plus-content__table-col:first-child {
	text-align: left;
	align-items: center;
	display: flex
}

.plus-content__table-col strong {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-transform: uppercase
}

@media screen and (max-width: 576px) {
	.plus-content__table-col strong {
		font-size: 16px;
		line-height: 19px
	}
}

.product-page .car-compatibility__title {
	margin-bottom: 12px
}

@media screen and (max-width: 768px) {
	.product-page .car-compatibility__title {
		display: none
	}
}

.product-page .car-compatibility__models {
	max-height: 754px;
	overflow-y: scroll;
	scrollbar-color: #b0b0b0 #f7f7f7;
	scrollbar-width: thin
}

.product-page .car-compatibility__models::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #f7f7f7
}

.product-page .car-compatibility__models::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.product-page .car-compatibility__models::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #b0b0b0
}

.product-page .car-compatibility__models {
	scrollbar-base-color: #f7f7f7;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #f7f7f7;
	scrollbar-arrow-color: #f7f7f7;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0
}

.product-page .car-compatibility__model {
	margin-top: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #d0d0d0
}

@media screen and (max-width: 768px) {
	.product-page .car-compatibility__model:last-child {
		border: none
	}
}

.product-page .car-compatibility__model-name {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	padding-left: 25px;
	cursor: pointer
}

.product-page .car-compatibility__model-name:before {
	content: "+";
	height: 16px;
	width: 16px;
	font-family: "Inter", sans-serif;
	display: inline-block;
	text-align: center;
	line-height: 15px;
	font-weight: 600;
	color: #02070d;
	background-color: #ff0;
	border-radius: 4px;
	font-size: 16px;
	margin-left: -25px;
	margin-right: 9px
}

.product-page .car-compatibility__model-name.open:before {
	content: "-";
	background-color: #02070d;
	color: #fff
}

.product-page .car-compatibility__model-name.car-compatibility__model-name--child:before {
	background-color: rgba(0, 0, 0, 0)
}

.product-page .car-compatibility__model-name.car-compatibility__model-name--child.open:before {
	content: "-";
	background-color: rgba(0, 0, 0, 0);
	color: #02070d
}

.product-page .car-compatibility__model-accordion {
	padding-left: 25px;
	font-size: 12px;
	display: none
}

.product-page .car-compatibility__body {
	margin-top: 16px
}

@media screen and (max-width: 768px) {
	.product-page .car-compatibility__body {
		flex-wrap: wrap
	}
}

.data-sheets__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 12px
}

@media screen and (max-width: 768px) {
	.data-sheets__title {
		display: none
	}
}

.data-sheets__items {
	display: flex;
	align-items: flex-start;
	flex-direction: column
}

.data-sheets__item {
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
	background-color: #f7f7f7;
	border-radius: 8px;
	padding: 8px 16px
}

.data-sheets__item:last-child {
	margin-bottom: 0
}

.data-sheets__item-name {
	cursor: pointer
}

.data-sheets__item-icon {
	margin-right: 12px
}

.data-sheets__item-icon svg {
	width: 32px;
	height: 32px;
	position: relative;
	top: 2px
}

.product-tabs {
	margin-bottom: 104px;
	width: 100%
}

.product-tabs__list {
	display: flex;
	overflow-x: auto;
	position: relative
}

.product-tabs__list:after {
	content: "";
	width: 100%;
	display: block;
	position: absolute;
	height: 1px;
	background-color: #d0d0d0;
	bottom: 0
}

@media screen and (max-width: 768px) {
	.product-tabs__list {
		display: none
	}
}

.product-tabs__list-tab {
	text-transform: uppercase;
	color: #7c7c7c;
	cursor: pointer;
	padding: 12px 12px 14px 12px;
	position: relative;
	transition: all .3s ease-in-out;
	white-space: nowrap
}

.product-tabs__list-tab:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	background-color: #02070d;
	z-index: 1
}

.product-tabs__list-tab._active {
	color: #02070d;
	font-weight: 600
}

.product-tabs__list-tab._active:after {
	transition: width .3s ease-in-out;
	width: 100%
}

.product-tabs__content {
	padding-top: 32px
}

@media screen and (max-width: 768px) {
	.product-tabs__content {
		border-bottom: 1px solid #dbdbdb;
		padding-top: 0
	}
}

.product-tabs__content-accordion {
	display: none
}

@media screen and (max-width: 768px) {
	.product-tabs__content-accordion {
		display: block;
		padding: 12px 16px;
		text-transform: uppercase;
		border-top: 1px solid #dbdbdb;
		position: relative
	}
	.product-tabs__content-accordion:after {
		content: "";
		top: 50%;
		right: 14px;
		margin-top: -4px;
		border-right: 1px solid #494949;
		border-bottom: 1px solid #494949;
		height: 8px;
		width: 8px;
		position: absolute;
		transition: all .3s ease;
		pointer-events: none;
		transform: rotate(45deg) translateY(-50%)
	}
}

.product-tabs__content-accordion.open {
	font-weight: 700
}

.product-tabs__content-accordion.open:after {
	transform: rotate(225deg) translateY(-50%);
	right: 8px
}

.product-tabs__content-item {
	display: none
}

@media screen and (max-width: 768px) {
	.product-tabs__content-item {
		display: block
	}
}

.product-tabs__content-item._active {
	display: block
}

@media screen and (max-width: 992px) {
	.product-tabs__content .listing-list__item {
		grid-template-columns: 130px 1fr
	}
}

@media screen and (max-width: 992px) {
	.product-tabs__content .listing-list__item {
		padding: 8px
	}
}

@media screen and (max-width: 992px) {
	.product-tabs__content .listing-list__item-price {
		grid-column: 1/-1
	}
}

@media screen and (max-width: 992px) {
	.product-tabs__content .listing-list__item-price .wrap-price {
		justify-content: flex-start
	}
}

@media screen and (max-width: 992px) {
	.product-tabs__content .listing-list__item-price .qty-block {
		justify-content: space-between
	}
}

.product-tabs .tab-mobile-content-visible {
	display: block
}

@media screen and (max-width: 768px) {
	.product-tabs .tab-mobile-content-visible {
		display: none
	}
}

.oe-number__title {
	margin-bottom: 12px
}

@media screen and (max-width: 768px) {
	.oe-number__title {
		display: none
	}
}

.oe-number__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

@media screen and (max-width: 768px) {
	.oe-number__list {
		grid-template-columns: 1fr;
		gap: 0
	}
}

.oe-number__list-item {
	padding: 8px 16px;
	display: flex;
	justify-content: space-between;
	border-radius: 4px
}

@media screen and (max-width: 800px) {
	.oe-number__list-item {
		font-size: 12px
	}
}

@media screen and (max-width: 768px) {
	.oe-number__list-item {
		font-size: 14px
	}
}

.oe-number__list-item:nth-child(even) {
	background-color: #f7f7f7
}

.oe-number__list-item .value {
	font-weight: 600
}

.bundle-goods__price {
	display: flex;
	flex-direction: column;
	align-items: flex-end
}

.bundle-goods__price .wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px
}

.bundle-goods__price-total {
	margin-bottom: 12px;
	text-align: right
}

.bundle-goods__price-total .total {
	color: #7c7c7c;
	margin-bottom: 4px
}

.bundle-goods__price-total .price {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 40px
}

.bundle-goods__price-total .without {
	color: #7c7c7c;
	font-size: 12px
}

.bundle-goods__slider {
	width: 94%;
	margin: 0 auto
}

@media screen and (max-width: 1200px) {
	.bundle-goods__slider {
		width: 90%
	}
}

.bundle-goods__slider-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 32px
}

@media screen and (max-width: 1200px) {
	.bundle-goods__slider-wrap {
		margin-bottom: 16px
	}
}

.bundle-goods__slider .slick-arrow.slick-next,
.bundle-goods__slider .slick-arrow.slick-prev {
	top: 66px
}

.bundle-goods__slider .slick-arrow.slick-next {
	right: -35px
}

.bundle-goods__slider .slick-arrow.slick-prev {
	left: -35px
}

.bundle-goods__info {
	color: #7c7c7c;
	padding-bottom: 12px;
	margin-bottom: 24px;
	border-bottom: 1px solid #dbdbdb
}

.bundle-goods__plus {
	position: relative;
	margin: 0 24px;
	min-width: 32px;
	height: 32px
}

.bundle-goods__plus:after,
.bundle-goods__plus:before {
	content: "";
	display: block;
	position: absolute;
	width: 22px;
	height: 2px;
	background-color: #02070d;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto
}

.bundle-goods__plus:before {
	transform: rotate(90deg)
}

.bundle-goods__products {
	display: flex
}

@media screen and (max-width: 1200px) {
	.bundle-goods__products {
		flex-direction: column
	}
}

.bundle-goods__products-image {
	border-radius: 16px;
	border: 1px solid #dbdbdb;
	max-width: 128px;
	min-width: 128px;
	height: 128px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin-right: 24px
}

@media screen and (max-width: 1200px) {
	.bundle-goods__products-image {
		margin-bottom: 12px;
		margin-right: 0;
		max-width: 88px;
		min-width: 88px;
		height: 88px
	}
}

.bundle-goods__products-image img {
	max-width: 100%;
	max-height: 100%
}

.bundle-goods__products-wrap .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	margin-bottom: 4px
}

@media screen and (max-width: 1200px) {
	.bundle-goods__products-wrap .title {
		font-size: 14px;
		line-height: 20px
	}
}

.bundle-goods__products-wrap .article {
	color: #7c7c7c;
	margin-bottom: 8px
}

.bundle-goods__products-wrap .price {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 36px
}

@media screen and (max-width: 1200px) {
	.bundle-goods__products-wrap .price {
		font-size: 22px;
		line-height: 28px
	}
}

.bundle-goods__products-wrap .without {
	color: #7c7c7c
}

.footer {
	padding: 20px 0
}

.footer-wrap {
	display: flex
}

@media screen and (max-width: 768px) {
	.footer-wrap {
		flex-wrap: wrap
	}
}

@media screen and (max-width: 1150px) {
	.footer-wrap.footer-wrap--nested {
		flex-wrap: wrap
	}
}

.footer-col--2 {
	flex: 1 1 20%
}

@media screen and (max-width: 1150px) {
	.footer-col--2 {
		padding-right: 35px
	}
}

@media screen and (max-width: 768px) {
	.footer-col--2 {
		padding-right: 0;
		margin-bottom: 48px
	}
}

.footer-col--4 {
	flex: 0 0 50%
}

@media screen and (max-width: 1150px) {
	.footer-col--4 {
		flex: 1 1 100%
	}
}

@media screen and (max-width: 576px) {
	.footer-col--4 {
		flex: 1 1 100%
	}
}

.footer-col--6 {
	flex: 1 1 50%;
	display: flex
}

@media screen and (max-width: 1150px) {
	.footer-col--6 {
		flex: 1 1 100%;
		flex-direction: row-reverse;
		justify-content: space-between;
		margin-top: 48px
	}
}

@media screen and (max-width: 576px) {
	.footer-col--6 {
		flex-direction: column-reverse;
		margin-top: 16px
	}
}

.footer-col--10 {
	flex: 0 0 80%
}

@media screen and (max-width: 1150px) {
	.footer-col--10 {
		flex: 1 1 80%
	}
}

.footer-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px;
	text-transform: uppercase;
	display: block;
	color: #02070d
}

@media screen and (max-width: 1150px) {
	.footer-title {
		font-size: 22px;
		line-height: 28px
	}
}

.footer-logo {
	margin-bottom: 8px;
	display: block
}

.footer-tagline {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 16px;
	padding-right: 15px
}

.footer-copyright {
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c;
	padding-right: 50px;
	text-transform: uppercase
}

.footer-links {
	display: flex;
	justify-content: space-between
}

@media screen and (max-width: 576px) {
	.footer-links {
		flex-wrap: wrap
	}
}

.footer-links__item {
	width: 33.3%;
	padding-right: 15px
}

@media screen and (max-width: 576px) {
	.footer-links__item {
		width: 50%;
		margin-bottom: 32px
	}
}

@media screen and (max-width: 576px) {
	.footer-links__item-wrap {
		width: 50%
	}
}

@media screen and (max-width: 576px) {
	.footer-links__item.footer-links__item--row {
		width: 100%;
		display: flex;
		justify-content: space-between
	}
}

.footer-links__item .phone {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	font-family: "Roboto Condensed", sans-serif;
	margin-bottom: 16px
}

.footer-links__item .email {
	font-weight: 600
}

.footer-links__item-link {
	color: #02070d;
	margin-bottom: 8px;
	display: inline-block
}

@media screen and (max-width: 992px) {
	.footer-links__item-link {
		text-decoration: underline
	}
}

.footer-social {
	margin-right: 100px
}

@media screen and (max-width: 1390px) {
	.footer-social {
		margin-right: 30px
	}
}

@media screen and (max-width: 1150px) {
	.footer-social {
		margin-right: 0;
		width: 33.3%
	}
}

@media screen and (max-width: 576px) {
	.footer-social {
		width: 100%
	}
}

.footer-social__items {
	display: flex;
	margin-bottom: 32px
}

@media screen and (max-width: 1150px) {
	.footer-social__items {
		flex-wrap: wrap
	}
}

@media screen and (max-width: 576px) {
	.footer-social__items {
		justify-content: space-around
	}
}

.footer-social__items-link.footer-social__items-link--email {
	margin-bottom: 16px;
	display: block;
	color: #02070d
}

.footer-social__item {
	margin-right: 18px
}

@media screen and (max-width: 576px) {
	.footer-social__item {
		margin-right: 0
	}
}

.footer-social__item svg {
	width: 22px;
	height: 22px
}

@media screen and (max-width: 1150px) {
	.footer-subscribe {
		width: 66.6%;
		padding-right: 10%
	}
	.footer-subscribe .btn {
		height: 56px;
		width: 100%;
		margin-top: 8px
	}
}

@media screen and (max-width: 576px) {
	.footer-subscribe {
		width: 100%;
		margin-bottom: 48px;
		padding-right: 0
	}
}

.footer-subscribe .input-group {
	margin-bottom: 8px
}

@media screen and (max-width: 1150px) {
	.footer-subscribe .input-group {
		margin-bottom: 16px
	}
}

.footer-subscribe .form-input {
	width: 100%;
	height: 40px
}

.footer-subscribe .checkbox {
	margin-bottom: 8px
}

.footer-subscribe .checkbox .form-checkbox+.form-checkbox-label {
	color: #7c7c7c;
	font-size: 12px;
	line-height: 16px
}

.footer-subscribe .checkbox .form-checkbox+.form-checkbox-label:before {
	width: 16px;
	height: 16px
}

.footer-subscribe .checkbox .form-checkbox+.form-checkbox-label:after {
	width: 10px;
	height: 5px;
	left: 3px
}

.footer-subscribe .checkbox a {
	color: #02070d
}

.footer.footer--dark .footer-title {
	color: #ff0
}

.footer.footer--dark .footer-logo svg {
	fill: #fff
}

.footer.footer--dark .footer-links__item-link {
	color: #f7f7f7
}

.footer.footer--dark .footer-social__item svg {
	fill: #ededed
}

.footer.footer--dark .footer-subscribe .form-input {
	background: rgba(0, 0, 0, 0);
	border: 1px solid #7c7c7c;
	color: #f7f7f7
}

.footer.footer--dark .footer-subscribe .form-input:hover {
	border: 1px solid #ededed
}

.footer.footer--dark .footer-subscribe .form-checkbox+.form-checkbox-label:before {
	background: rgba(0, 0, 0, 0);
	border: 1px solid #7c7c7c
}

.footer.footer--dark .footer-subscribe .form-checkbox+.form-checkbox-label:after {
	border-left: 2px solid #ff0;
	border-bottom: 2px solid #ff0
}

.footer.footer--dark .footer-subscribe .form-checkbox:hover+.form-checkbox-label:before {
	border-color: #ededed
}

.footer.footer--dark .footer-subscribe .checkbox a {
	color: #f7f7f7
}

.footer.footer--dark .footer-subscribe .btn-black {
	background-color: #ff0;
	color: #02070d
}

.footer.footer--dark .footer-subscribe .btn-black:hover {
	background-color: #fff30a
}

.footer.footer--dark .footer-social__items-link.footer-social__items-link--email {
	color: #f7f7f7
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	box-sizing: border-box
}

.popup__wrapper {
	position: relative;
	max-width: 100%;
	max-height: 100%;
	height: 100%;
	padding: 8px;
	overflow: auto;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center
}

.popup__overlay {
	background-color: rgba(2, 7, 13, .5);
	width: 100%;
	position: fixed;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer
}

.popup__body {
	border-radius: 32px;
	padding: 32px 34px 32px 32px;
	background-color: #f7f7f7;
	position: relative;
	z-index: 1;
	margin: auto;
	width: 573px
}

@media screen and (max-width: 768px) {
	.popup__body {
		padding: 24px 30px
	}
}

.popup__body-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 44px;
	margin-bottom: 16px;
	text-align: center;
	color: #02070d;
	padding: 0 15px
}

@media screen and (max-width: 992px) {
	.popup__body-title {
		font-size: 28px;
		line-height: 36px
	}
}

.popup__body-title.popup__body-title--left {
	text-align: left
}

.popup__body-language {
	display: flex;
	justify-content: center;
	margin-bottom: 32px
}

@media screen and (max-width: 560px) {
	.popup__body-language {
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 12px
	}
}

.popup__body-language span {
	font-size: 16px;
	color: #02070d;
	font-weight: 600;
	line-height: 20px;
	display: block
}

.popup__body-language li {
	text-align: center;
	padding: 12px 18px;
	border: 1px solid rgba(0, 0, 0, 0);
	transition: all .3s ease;
	border-radius: 8px;
	cursor: pointer
}

.popup__body-language li:hover {
	border-color: #d0d0d0
}

.popup__body-language li.active {
	border-color: #494949
}

@media screen and (max-width: 560px) {
	.popup__body-language li {
		width: 25%;
		margin-bottom: 20px
	}
}

.popup__body-language img {
	max-width: 32px;
	border-radius: 4px;
	margin-bottom: 8px
}

.popup__body-icon {
	margin-bottom: 16px;
	text-align: center
}

.popup__body-icon svg {
	width: 48px;
	height: 48px;
	fill: #ff2727
}

.popup__body-icon.active svg {
	fill: #3c3
}

.popup__body-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 32px;
	text-align: center;
	color: #7c7c7c
}

.popup__body-description a {
	color: #02070d;
	text-decoration: underline;
	font-weight: 600
}

.popup__body-description.popup__body-description--left {
	text-align: left
}

.popup__body-button {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(245px, max-content));
	justify-content: center;
	grid-gap: 16px
}

@media screen and (max-width: 576px) {
	.popup__body-button {
		grid-template-columns: repeat(auto-fit, minmax(100%, max-content))
	}
}

.popup__body-link {
	color: #02070d;
	text-decoration: underline
}

.popup__body-info {
	color: #b0b0b0
}

.popup__body-or {
	position: relative;
	text-align: center;
	margin-top: 32px
}

.popup__body-or:after,
.popup__body-or:before {
	content: "";
	display: block;
	position: absolute;
	height: 1px;
	background-color: #dbdbdb;
	width: 47%;
	top: 50%
}

.popup__body-or:after {
	right: 0
}

.popup__body-or:before {
	left: 0
}

.popup__body-row {
	display: grid;
	margin-bottom: 8px;
	padding-bottom: 24px
}

.popup__body-row.popup__body-row-double {
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.popup__back {
	position: absolute;
	left: 32px
}

.popup__back svg {
	width: 24px;
	height: 24px;
	transform: rotate(180deg)
}

.popup__close {
	position: absolute;
	height: 18px;
	width: 18px;
	top: 15px;
	right: 17px;
	cursor: pointer
}

.popup__close:before,
.popup__close:after {
	content: "";
	position: absolute;
	height: 3px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background-color: #02070d
}

.popup__close:before {
	transform: rotate(45deg)
}

.popup__close:after {
	transform: rotate(-45deg)
}

.popup.popup--wishlist .popup__body {
	width: 572px;
	padding: 20px;
	background-color: #fff
}

@media screen and (max-width: 600px) {
	.popup.popup--wishlist .popup__body {
		width: 100%
	}
}

.popup.popup--wishlist .popup__body-title {
	padding-right: 25px
}

.popup.popup--wishlist .popup__body-or span {
	background-color: #fff;
	z-index: 1;
	position: relative;
	padding: 0 10px;
	display: inline-block
}

.popup.popup--sign-in .checkbox {
	max-width: 50%
}

.popup.popup--sign-in .popup__body,
.popup.popup--quick-order-empty .popup__body {
	width: 425px
}

.popup.popup--quick-order-empty .popup__body-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 8px
}

.popup.popup--quick-order-empty .popup__body-description {
	margin-bottom: 16px
}

.popup.popup--video .popup__body {
	width: 866px;
	padding-right: 64px
}

@media screen and (max-width: 900px) {
	.popup.popup--video .popup__body {
		width: 100%
	}
}

@media screen and (max-width: 600px) {
	.popup.popup--video .popup__body {
		padding: 24px
	}
}

@media screen and (max-width: 600px) {
	.popup.popup--video .popup__body .popup__close {
		top: 38px;
		right: 38px
	}
}

@media screen and (max-width: 600px) {
	.popup.popup--video .popup__body .popup__close:before,
	.popup.popup--video .popup__body .popup__close:after {
		background-color: #fff
	}
}

.popup.popup--video .popup__body .plug-image-video {
	max-width: 100%
}

.popup.popup--video .popup__body .play-youtube {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 112px;
	height: 112px;
	cursor: pointer
}

@media screen and (max-width: 900px) {
	.popup.popup--video .popup__body .play-youtube {
		width: 70px;
		height: 70px
	}
}

@media screen and (max-width: 600px) {
	.popup.popup--video .popup__body .play-youtube {
		width: 42px;
		height: 42px
	}
}

.popup.popup--video .popup__body .play-youtube svg {
	width: 112px;
	height: 112px;
	fill: #ff0
}

@media screen and (max-width: 900px) {
	.popup.popup--video .popup__body .play-youtube svg {
		width: 70px;
		height: 70px
	}
}

@media screen and (max-width: 600px) {
	.popup.popup--video .popup__body .play-youtube svg {
		width: 42px;
		height: 42px
	}
}

.popup.popup--purchase .popup__body {
	width: 866px
}

.popup.popup--contact-details .popup__body {
	width: 866px
}

.popup.popup--contact-details .popup__body-btn .btn {
	min-width: 245px
}

@media screen and (max-width: 650px) {
	.popup.popup--contact-details .popup__body-btn .btn {
		min-width: 100%
	}
}

.popup.popup--contact-details .popup__body-btn.popup__body-btn--addresse {
	display: flex;
	align-items: center;
	justify-content: space-between
}

@media screen and (max-width: 650px) {
	.popup.popup--contact-details .popup__body-btn.popup__body-btn--addresse {
		flex-direction: column;
		align-items: flex-start
	}
}

@media screen and (max-width: 650px) {
	.popup.popup--contact-details .popup__body-btn.popup__body-btn--addresse .popup__body-btn-checkbox {
		margin-bottom: 12px
	}
}

.popup.popup--contact-details .popup__body-btn.popup__body-btn--addresse .checkbox:first-child {
	margin-bottom: 8px
}

.popup.popup--wishlist-add .popup__body {
	width: 424px
}

.popup.popup--sub-accounts .popup__body {
	width: 720px
}

.popup.popup--quick-order .popup__body {
	width: 1456px;
	padding: 48px 16px 32px 32px
}

.popup.popup--quick-order .popup__close {
	top: 22px;
	right: 28px
}

.popup.popup--quick-order .item-buy__info-title,
.popup.popup--quick-order .item-buy__info-details {
	color: #02070d
}

.popup.popup--quick-order .item-buy__single,
.popup.popup--quick-order .item-buy__total,
.popup.popup--quick-order .item-buy__article,
.popup.popup--quick-order .item-buy__article-found {
	color: #7c7c7c
}

.popup.popup--quick-order .popup__button {
	display: flex;
	align-items: center;
	justify-content: flex-end
}

.popup.popup--quick-order .popup__button-txt {
	margin-right: 16px;
	display: none
}

.popup.popup--quick-order .popup__button-txt a {
	color: #02070d;
	text-decoration: underline
}

.popup.popup--quick-order .popup__button .btn {
	margin-right: 16px
}

.popup.popup--verify .btn-large {
	font-size: 16px;
	line-height: 22px
}

@media screen and (max-width: 400px) {
	.popup.popup--verify .btn-large {
		height: auto;
		padding: 5px
	}
}

.popup.popup--verify .popup__body-title {
	font-size: 26px;
	padding-right: 25px
}

.popup.popup--credit .icon-wrap {
	gap: 8px
}

.popup.popup--credit .checkbox {
	margin-bottom: 20px
}

.popup.popup--credit .popup__body-button {
	margin-bottom: 20px;
	grid-template-columns: 1fr
}

.popup.popup--credit .helper-text {
	color: #7c7c7c;
	font-size: 12px;
	line-height: 16px
}

.popup.popup--credit .input-group img.cvv-icon {
	width: 46px;
	height: 36px;
	position: absolute;
	top: 30px;
	right: 8px
}

.popup.popup--product .popup__body {
	width: 1456px
}

.popup.popup--product .popup-btn-wrap {
	display: flex;
	gap: 16px;
	justify-content: flex-end
}

@media screen and (max-width: 540px) {
	.popup.popup--product .popup-btn-wrap {
		flex-direction: column
	}
}

.popup.popup--product .popup-often-wrap {
	max-height: 328px;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.popup.popup--product .popup-often-wrap::-webkit-scrollbar-track {
	border-radius: 12px;
	background-color: #fff
}

.popup.popup--product .popup-often-wrap::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.popup.popup--product .popup-often-wrap::-webkit-scrollbar-thumb {
	border-radius: 12px;
	background-color: #b0b0b0
}

.popup.popup--product .popup-often-wrap {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0;
	overflow-y: scroll;
	margin-bottom: 32px
}

@media screen and (max-width: 850px) {
	.popup.popup--product .popup-often-wrap .item-buy {
		height: 407px
	}
	.popup.popup--product .popup-often-wrap .item-buy__amount {
		bottom: 144px
	}
	.popup.popup--product .popup-often-wrap .item-buy__image {
		top: 40px
	}
	.popup.popup--product .popup-often-wrap .item-buy__article {
		bottom: 155px
	}
	.popup.popup--product .popup-often-wrap .item-buy__total {
		bottom: 92px
	}
	.popup.popup--product .popup-often-wrap .item-buy__single {
		bottom: 70px
	}
}

.popup.popup--product .item-buy__info {
	max-width: 160px;
	min-width: 160px;
	margin-right: 15px
}

@media screen and (max-width: 1050px) {
	.popup.popup--product .item-buy__info {
		max-width: 140px;
		min-width: 140px
	}
}

@media screen and (max-width: 850px) {
	.popup.popup--product .item-buy__info {
		max-width: 100%
	}
}

.popup.popup--product .item-buy__article {
	max-width: 200px;
	min-width: 200px
}

@media screen and (max-width: 1190px) {
	.popup.popup--product .item-buy__article {
		max-width: 110px;
		min-width: 110px
	}
}

@media screen and (max-width: 850px) {
	.popup.popup--product .item-buy__article {
		max-width: 130px;
		min-width: 130px
	}
}

.popup.popup--product .item-buy__delete {
	right: 24px
}

@media screen and (max-width: 850px) {
	.popup.popup--product .item-buy__delete {
		right: 16px
	}
}

.popup.popup--restricted .popup__body {
	width: 1162px
}

@media screen and (max-width: 768px) {
	.popup.popup--restricted .popup__body {
		width: 100%
	}
}

.popup.popup--restricted .popup-btn-wrap {
	display: flex;
	gap: 16px;
	justify-content: space-between
}

@media screen and (max-width: 768px) {
	.popup.popup--restricted .popup-btn-wrap {
		flex-direction: column;
		gap: 20px
	}
}

.popup.popup--wishlist .item-soon {
	margin-bottom: 24px;
	transition: all .3s ease
}

.popup.popup--wishlist .item-soon:hover {
	border: 1px solid #171717
}

.popup.popup--wishlist .item-soon__info-title {
	text-transform: capitalize;
	font-size: 24px;
	line-height: 32px
}

.popup__body-row.popup__body-row--wishlist {
	grid-template-columns: 295px 1fr;
	gap: 16px;
	margin-top: 24px
}

@media screen and (max-width: 600px) {
	.popup__body-row.popup__body-row--wishlist {
		grid-template-columns: 1fr
	}
}

.popup-choose-cookies {
	position: fixed;
	z-index: 99999;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #212121;
	max-height: 94vh;
	overflow-y: auto;
	padding: 32px;
	color: #f7f7f7;
	box-sizing: border-box;
	filter: drop-shadow(40px 0px 50px rgba(0, 0, 0, 0.4))
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies {
		padding: 32px 24px
	}
}

.popup-choose-cookies__wrap {
	min-width: 1162px;
	margin: 0 auto
}

@media screen and (max-width: 1190px) {
	.popup-choose-cookies__wrap {
		min-width: 100%
	}
}

.popup-choose-cookies__title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 16px;
	padding: 0 32px
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies__title {
		padding: 0 12px
	}
}

.popup-choose-cookies__content {
	display: none
}

.popup-choose-cookies__content-wrap {
	display: flex
}

.popup-choose-cookies__tabs {
	margin-right: 30px
}

.popup-choose-cookies__tab-title {
	padding: 17px 16px;
	font-size: 16px;
	font-weight: normal;
	min-width: 279px;
	cursor: pointer;
	transition: background .2s
}

.popup-choose-cookies__tab-title:hover {
	background: #fff30a
}

.popup-choose-cookies__tab-title.active {
	background: #253b48
}

.popup-choose-cookies__tabs-content-list {
	min-height: 138px;
	margin-bottom: 16px
}

.popup-choose-cookies__tabs-content {
	width: 100%
}

.popup-choose-cookies__tabs-content-item {
	display: none
}

.popup-choose-cookies__tabs-content-item:first-child {
	display: block
}

.popup-choose-cookies__table {
	width: 100%;
	margin-bottom: 8px
}

.popup-choose-cookies__table table {
	width: 100%;
	border-collapse: collapse
}

.popup-choose-cookies__table tr:nth-child(odd) {
	background-color: #121417
}

.popup-choose-cookies__table td,
.popup-choose-cookies__table th {
	text-align: left;
	padding: 8px;
	width: 148px;
	box-sizing: border-box;
	border: 1px solid #212121
}

.popup-choose-cookies__table td {
	font-size: 12px
}

.popup-choose-cookies__table td:first-child {
	border-radius: 8px 0 0 8px
}

.popup-choose-cookies__table td.popup-choose-cookies__table-description {
	width: 410px
}

.popup-choose-cookies__table th {
	font-size: 13px;
	font-weight: normal;
	background: #494949
}

.popup-choose-cookies__table th:first-child {
	border-radius: 8px 0 0 8px
}

.popup-choose-cookies__details {
	display: none;
	position: relative;
	padding-right: 8px;
	max-height: 119px;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.popup-choose-cookies__details::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #fff
}

.popup-choose-cookies__details::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.popup-choose-cookies__details::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #b0b0b0
}

.popup-choose-cookies__details {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0
}

.popup-choose-cookies__details a {
	color: #fff;
	text-decoration: underline
}

.popup-choose-cookies__details-title {
	margin-bottom: 16px;
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	text-align: center
}

.popup-choose-cookies__details-close {
	cursor: pointer;
	color: #0068d7;
	margin-top: 8px;
	text-decoration: underline;
	font-weight: 600;
	display: inline-block
}

.popup-choose-cookies__text {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px
}

.popup-choose-cookies__text a {
	text-decoration: underline
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies__text {
		font-size: 12px
	}
}

@media screen and (max-width: 1100px) {
	.popup-choose-cookies__checkboxes-list {
		margin-bottom: 15px
	}
}

.popup-choose-cookies__checkboxes-list form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center
}

@media screen and (max-width: 500px) {
	.popup-choose-cookies__checkboxes-list form {
		width: 100%;
		justify-content: space-between
	}
}

.popup-choose-cookies__checkboxes-item {
	margin-left: 24px;
	font-size: 14px
}

@media screen and (max-width: 500px) {
	.popup-choose-cookies__checkboxes-item {
		margin-left: 0
	}
}

.popup-choose-cookies__checkboxes-item:first-child {
	margin-left: 0
}

.popup-choose-cookies__checkboxes-item input {
	display: none;
	opacity: 0
}

.popup-choose-cookies__checkboxes-item input:checked+span:before {
	border-color: #0068d7;
	background: #0068d7
}

.popup-choose-cookies__checkboxes-item input:checked+span::after {
	opacity: 1
}

.popup-choose-cookies__checkboxes-item .form-checkbox-label {
	color: #f7f7f7
}

.popup-choose-cookies--disabled {
	pointer-events: none
}

.popup-choose-cookies--disabled input:checked+span:before {
	border-color: #aabbc6;
	background: #fff
}

.popup-choose-cookies--disabled input:checked+span::after {
	opacity: 1;
	border-color: #7f7f7f
}

.popup-choose-cookies__checkbox {
	position: absolute;
	left: 0;
	top: 0
}

.popup-choose-cookies__checkbox::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	border: 1px solid #aabbc6;
	background-color: #fff;
	box-sizing: border-box;
	transition: .1s
}

.popup-choose-cookies__checkbox::after {
	opacity: 0;
	content: "";
	display: block;
	position: absolute;
	left: 3px;
	width: 9.5px;
	height: 5.5px;
	top: 3.5px;
	box-sizing: border-box;
	transition: all .3s ease;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg)
}

.popup-choose-cookies__btn-wrap {
	margin-left: auto
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies__btn-wrap {
		flex-direction: column;
		width: 100%
	}
}

.popup-choose-cookies__btn-list {
	display: flex;
	justify-content: flex-end;
	align-items: center
}

.popup-choose-cookies__btn-list .btn {
	margin-left: 16px
}

@media screen and (max-width: 1120px) {
	.popup-choose-cookies__btn-list .btn {
		height: auto;
		padding-top: 5px;
		padding-bottom: 5px;
		min-height: 48px
	}
}

.popup-choose-cookies__btn-list .btn-outline {
	background-color: rgba(0, 0, 0, 0);
	color: #f7f7f7;
	border: 1px solid #7c7c7c
}

.popup-choose-cookies__btn-list .btn-outline:hover {
	border: 1px solid #ededed
}

.popup-choose-cookies__btn:last-child {
	margin-right: 0
}

.popup-choose-cookies__btn--blue {
	background: #0068d7;
	color: #fff;
	border-color: #0068d7
}

.popup-choose-cookies__btn--big {
	min-width: 300px
}

.popup-choose-cookies__link-wrap {
	display: flex;
	align-items: center;
	justify-content: center
}

.popup-choose-cookies__footer {
	display: flex;
	justify-content: space-between;
	align-items: center
}

@media screen and (max-width: 1100px) {
	.popup-choose-cookies__footer {
		flex-direction: column;
		align-items: flex-start
	}
}

.popup-choose-cookies--white {
	height: 100%;
	background: rgba(2, 7, 13, .5);
	padding: 0;
	max-height: none;
	filter: none;
	color: #f7f7f7
}

@media screen and (max-width: 1190px) {
	.popup-choose-cookies--white {
		padding: 0 8px
	}
}

.popup-choose-cookies--white .popup-choose-cookies__wrap {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 760px;
	transform: translate(-50%, -50%);
	background: #212121;
	padding: 0;
	bottom: auto
}

@media screen and (max-width: 810px) {
	.popup-choose-cookies--white .popup-choose-cookies__wrap {
		width: 100%;
		overflow-y: auto;
		max-height: 100%
	}
}

.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__title {
	text-transform: uppercase;
	margin-bottom: 16px;
	margin-top: 32px
}

.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__text {
	margin: 0 32px 32px 32px;
	font-size: 16px;
	line-height: 24px
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__text {
		margin: 0 12px 32px 16px;
		font-size: 12px
	}
}

.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__btn-list {
	margin: 0 32px 32px 32px
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__btn-list {
		margin: 0 12px 16px 12px
	}
}

@media screen and (max-width: 1120px) {
	.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__btn-list {
		flex-wrap: wrap-reverse
	}
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__btn-list {
		flex-direction: column
	}
}

@media screen and (max-width: 1120px) {
	.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__btn-list .btn {
		font-size: 18px
	}
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__btn-list .btn {
		margin: 0 0 16px 0;
		width: 100%;
		font-size: 16px
	}
}

@media screen and (max-width: 1120px) {
	.popup-choose-cookies--white .popup-choose-cookies__first-block .popup-choose-cookies__btn:last-child {
		margin-left: auto;
		margin-bottom: 16px
	}
}

.popup-choose-cookies--white .popup-choose-cookies__content {
	padding: 24px 0 0 0
}

.popup-choose-cookies--white .popup-choose-cookies__content .popup-choose-cookies__title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 16px;
	text-align: center
}

.popup-choose-cookies--white .popup-choose-cookies__content .popup-choose-cookies__text {
	font-size: 16px;
	line-height: 24px
}

.popup-choose-cookies--white .popup-choose-cookies__content .popup-choose-cookies__checkboxes-list {
	margin-bottom: 24px;
	width: 100%
}

.popup-choose-cookies--white .popup-choose-cookies__content .popup-choose-cookies__checkboxes-list .form-checkbox+.form-checkbox-label:before {
	border: 1px solid #7c7c7c;
	background-color: rgba(0, 0, 0, 0)
}

.popup-choose-cookies--white .popup-choose-cookies__content .popup-choose-cookies__checkboxes-list .form-checkbox+.form-checkbox-label:after {
	border-left: 2px solid #ff0;
	border-bottom: 2px solid #ff0
}

@media screen and (max-width: 500px) {
	.popup-choose-cookies--white .popup-choose-cookies__content .popup-choose-cookies__checkboxes-list {
		width: 100%
	}
}

.popup-choose-cookies--white .popup-choose-cookies__content-wrap {
	flex-direction: column;
	padding: 0 24px
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--white .popup-choose-cookies__content-wrap {
		padding: 0 12px
	}
}

.popup-choose-cookies--white .popup-choose-cookies__tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 16px 0
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--white .popup-choose-cookies__tabs {
		flex-direction: column
	}
}

.popup-choose-cookies--white .popup-choose-cookies__tab-title {
	background: rgba(0, 0, 0, 0);
	text-align: center;
	border: 1px solid #7c7c7c;
	padding: 15px 69px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin: 0 2px;
	border-radius: 8px 0 0 8px
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--white .popup-choose-cookies__tab-title {
		border-radius: 8px 8px 0 0;
		width: 100%;
		margin: 4px 0
	}
}

.popup-choose-cookies--white .popup-choose-cookies__tab-title:last-child {
	border-radius: 0 8px 8px 0
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--white .popup-choose-cookies__tab-title:last-child {
		border-radius: 0 0 8px 8px
	}
}

@media screen and (max-width: 580px) {
	.popup-choose-cookies--white .popup-choose-cookies__tab-title {
		width: 100%;
		box-sizing: border-box
	}
}

.popup-choose-cookies--white .popup-choose-cookies__tab-title.active {
	background: #ff0;
	color: #02070d
}

.popup-choose-cookies--white .popup-choose-cookies__tabs-content-item {
	height: 208px;
	overflow-y: auto;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.popup-choose-cookies--white .popup-choose-cookies__tabs-content-item::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #fff
}

.popup-choose-cookies--white .popup-choose-cookies__tabs-content-item::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.popup-choose-cookies--white .popup-choose-cookies__tabs-content-item::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #b0b0b0
}

.popup-choose-cookies--white .popup-choose-cookies__tabs-content-item {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0;
	padding: 0 8px 0 0
}

.popup-choose-cookies--white .popup-choose-cookies__details {
	display: block;
	padding-right: 0
}

.popup-choose-cookies--white .popup-choose-cookies__table th {
	background: #494949;
	font-size: 14px;
	font-weight: 600;
	padding: 9px 16px
}

.popup-choose-cookies--white .popup-choose-cookies__table td,
.popup-choose-cookies--white .popup-choose-cookies__table th {
	border-color: rgba(0, 0, 0, 0)
}

.popup-choose-cookies--white .popup-choose-cookies__table tr:nth-child(odd) {
	background-color: #121417
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--en .popup-choose-cookies {
		padding: 24px 15px
	}
}

.popup-choose-cookies--en .popup-choose-cookies__btn-list {
	justify-content: flex-end
}

.popup-choose-cookies--en .popup-choose-cookies__btn-list .btn {
	margin-left: 16px
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--en .popup-choose-cookies__content-wrap {
		flex-wrap: wrap
	}
}

@media screen and (max-width: 690px) {
	.popup-choose-cookies--en .popup-choose-cookies__link-wrap {
		flex-wrap: wrap;
		width: 100%
	}
}

.popup-choose-cookies--en .popup-choose-cookies__title {
	margin-bottom: 16px;
	padding: 0
}

@media screen and (max-width: 590px) {
	.popup-choose-cookies--en .popup-choose-cookies__title {
		min-width: 130px
	}
}

.popup-choose-cookies--en .popup-choose-cookies__footer {
	flex-direction: row;
	box-shadow: none
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--en .popup-choose-cookies__footer {
		flex-direction: column;
		align-items: center;
		padding: 24px 0
	}
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--en .popup-choose-cookies__checkboxes-list {
		width: 100%
	}
}

.popup-choose-cookies--en .popup-choose-cookies__checkboxes-list .form-checkbox+.form-checkbox-label:before {
	border: 1px solid #7c7c7c;
	background-color: rgba(0, 0, 0, 0)
}

.popup-choose-cookies--en .popup-choose-cookies__checkboxes-list .form-checkbox+.form-checkbox-label:after {
	border-left: 2px solid #ff0;
	border-bottom: 2px solid #ff0
}

.popup-choose-cookies--en .popup-choose-cookies__checkboxes-list form {
	flex-wrap: nowrap
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--en .popup-choose-cookies__btn-list {
		flex-wrap: wrap
	}
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--en .popup-choose-cookies__btn-list .btn {
		width: 100%;
		margin: 0 0 16px 0
	}
}

.popup-choose-cookies--en .popup-choose-cookies__tab-title {
	background: rgba(0, 0, 0, 0);
	border: 1px solid #7c7c7c;
	border-radius: 8px;
	margin: 8px 0
}

.popup-choose-cookies--en .popup-choose-cookies__tab-title.active {
	background: #ff0;
	color: #02070d
}

.popup-choose-cookies--en .popup-choose-cookies__tabs {
	margin-right: 26px
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies--en .popup-choose-cookies__tabs {
		width: 100%;
		margin: 0 0 15px 0
	}
}

.popup-choose-cookies--en .popup-choose-cookies__details {
	overflow-y: auto;
	max-height: 138px
}

.popup-choose-cookies__table-description {
	text-align: left !important;
	font-size: 10px
}

.popup-choose-cookies__footer {
	flex-direction: column;
	padding: 24px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .4)
}

.popup-choose-cookies__footer .popup-choose-cookies__btn-list {
	width: 100%
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies__footer .popup-choose-cookies__btn-list {
		flex-wrap: wrap
	}
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies__footer .popup-choose-cookies__btn-list .btn {
		width: 100%;
		margin-left: 0
	}
}

@media screen and (max-width: 860px) {
	.popup-choose-cookies__footer .popup-choose-cookies__btn-list .popup-choose-cookies__link-wrap {
		width: 100%;
		margin-bottom: 16px
	}
}

.popup.popup--sub-accounts-order .popup__body {
	width: 866px
}

@media screen and (max-width: 895px) {
	.popup.popup--sub-accounts-order .popup__body {
		width: 100%
	}
}

.popup.popup--sub-accounts-order .popup__body-description {
	font-size: 14px;
	line-height: 20px;
	color: #02070d;
	margin-bottom: 16px;
	text-align: left
}

.popup.popup--sub-accounts-order .payment-pending__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	margin-bottom: 8px
}

.popup.popup--sub-accounts-order .payment-pending__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 17px;
	margin-bottom: 26px
}

@media screen and (max-width: 576px) {
	.popup.popup--sub-accounts-order .payment-pending__body {
		grid-template-columns: 1fr;
		gap: 18px
	}
}

.popup.popup--sub-accounts-order .payment-pending__list li {
	display: flex;
	justify-content: space-between;
	padding: 2px 8px
}

.popup.popup--sub-accounts-order .payment-pending__list li span {
	font-size: 12px;
	line-height: 16px
}

.popup.popup--sub-accounts-order .payment-pending__list li p {
	font-size: 12px;
	line-height: 16px;
	font-weight: 600
}

.popup.popup--sub-accounts-order .payment-pending__list li:nth-child(even) {
	background-color: #fff;
	border-radius: 4px
}

.popup.popup--sub-accounts-order .payment-pending__table {
	margin-bottom: 16px
}

.popup.popup--sub-accounts-order .payment-pending__table-head {
	display: flex;
	align-items: center
}

@media screen and (max-width: 810px) {
	.popup.popup--sub-accounts-order .payment-pending__table-head .art,
	.popup.popup--sub-accounts-order .payment-pending__table-head .price-sub,
	.popup.popup--sub-accounts-order .payment-pending__table-head .price,
	.popup.popup--sub-accounts-order .payment-pending__table-head .qty,
	.popup.popup--sub-accounts-order .payment-pending__table-head .total-price,
	.popup.popup--sub-accounts-order .payment-pending__table-head .total-markup {
		display: none
	}
}

.popup.popup--sub-accounts-order .payment-pending__table-th {
	padding: 8px 0;
	font-size: 12px;
	color: #7c7c7c
}

.popup.popup--sub-accounts-order .payment-pending__table .order {
	min-width: 245px
}

@media screen and (max-width: 870px) {
	.popup.popup--sub-accounts-order .payment-pending__table .order {
		min-width: 200px
	}
}

.popup.popup--sub-accounts-order .payment-pending__table .order p {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: #02070d
}

.popup.popup--sub-accounts-order .payment-pending__table .art {
	min-width: 95px
}

.popup.popup--sub-accounts-order .payment-pending__table .price-sub {
	min-width: 100px;
	padding-right: 5px
}

.popup.popup--sub-accounts-order .payment-pending__table .price {
	min-width: 95px
}

.popup.popup--sub-accounts-order .payment-pending__table .qty {
	min-width: 55px
}

.popup.popup--sub-accounts-order .payment-pending__table .total-price {
	min-width: 105px
}

.popup.popup--sub-accounts-order .payment-pending__table .total-markup {
	min-width: 105px
}

.popup.popup--sub-accounts-order .payment-pending__table-scroll {
	scrollbar-color: #d0d0d0 #fff;
	scrollbar-width: thin
}

.popup.popup--sub-accounts-order .payment-pending__table-scroll::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: #fff
}

.popup.popup--sub-accounts-order .payment-pending__table-scroll::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.popup.popup--sub-accounts-order .payment-pending__table-scroll::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #d0d0d0
}

.popup.popup--sub-accounts-order .payment-pending__table-scroll {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #d0d0d0;
	scrollbar-3dlight-color: #d0d0d0;
	scrollbar-highlight-color: #d0d0d0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #d0d0d0;
	scrollbar-dark-shadow-color: #d0d0d0;
	max-height: 335px;
	overflow-y: scroll
}

.popup.popup--sub-accounts-order .payment-pending__table-body {
	background-color: #fff;
	margin: 0 -32px;
	padding: 8px 24px 8px 32px;
	border-radius: 16px
}

@media screen and (max-width: 768px) {
	.popup.popup--sub-accounts-order .payment-pending__table-body {
		margin: 0 -24px;
		padding: 24px 24px
	}
}

@media screen and (max-width: 810px) {
	.popup.popup--sub-accounts-order .payment-pending__table-body .order {
		margin-bottom: 21px
	}
}

.popup.popup--sub-accounts-order .payment-pending__table-body .art,
.popup.popup--sub-accounts-order .payment-pending__table-body .price-sub,
.popup.popup--sub-accounts-order .payment-pending__table-body .price,
.popup.popup--sub-accounts-order .payment-pending__table-body .qty,
.popup.popup--sub-accounts-order .payment-pending__table-body .total-price,
.popup.popup--sub-accounts-order .payment-pending__table-body .total-markup {
	margin: 4px 0
}

@media screen and (max-width: 810px) {
	.popup.popup--sub-accounts-order .payment-pending__table-body .art span,
	.popup.popup--sub-accounts-order .payment-pending__table-body .price-sub span,
	.popup.popup--sub-accounts-order .payment-pending__table-body .price span,
	.popup.popup--sub-accounts-order .payment-pending__table-body .qty span,
	.popup.popup--sub-accounts-order .payment-pending__table-body .total-price span,
	.popup.popup--sub-accounts-order .payment-pending__table-body .total-markup span {
		display: block;
		width: 50%
	}
}

.popup.popup--sub-accounts-order .payment-pending__table-tr {
	display: flex;
	padding: 16px 0
}

@media screen and (max-width: 810px) {
	.popup.popup--sub-accounts-order .payment-pending__table-tr {
		display: block;
		padding: 16px 0;
		border-bottom: 1px solid #dbdbdb
	}
}

.popup.popup--sub-accounts-order .payment-pending__table-td {
	display: flex;
	align-items: center
}

@media screen and (max-width: 810px) {
	.popup.popup--sub-accounts-order .payment-pending__table-td {
		font-size: 12px;
		line-height: 16px
	}
}

.popup.popup--sub-accounts-order .payment-pending__table-td span {
	display: none
}

.popup.popup--sub-accounts-order .payment-pending__table-td .image {
	border: 1px solid #dbdbdb;
	min-width: 80px;
	max-width: 80px;
	height: 80px;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 5px;
	border-radius: 8px;
	margin-right: 16px
}

@media screen and (max-width: 810px) {
	.popup.popup--sub-accounts-order .payment-pending__table-td .image {
		min-width: 65px;
		max-width: 65px;
		height: 65px
	}
}

.popup.popup--sub-accounts-order .payment-pending__table-td .image img {
	max-width: 100%
}

.popup.popup--sub-accounts-order .payment-pending__table-td .info {
	padding-right: 5px
}

.popup.popup--sub-accounts-order .payment-pending__table-td .info__title {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px
}

@media screen and (max-width: 810px) {
	.popup.popup--sub-accounts-order .payment-pending__table-td .info__title {
		font-size: 12px;
		line-height: 16px
	}
}

.popup.popup--sub-accounts-order .payment-pending__table-td .info__details {
	text-decoration: underline;
	color: #02070d;
	font-size: 12px
}

.popup.popup--sub-accounts-order .payment-pending__footer {
	display: flex;
	align-items: center;
	justify-content: space-between
}

@media screen and (max-width: 768px) {
	.popup.popup--sub-accounts-order .payment-pending__footer {
		flex-direction: column-reverse
	}
}

@media screen and (max-width: 768px) {
	.popup.popup--sub-accounts-order .payment-pending__footer-total {
		width: 100%;
		margin-bottom: 8px
	}
}

.popup.popup--sub-accounts-order .payment-pending__footer-total .price {
	display: flex;
	justify-content: flex-end;
	align-items: center
}

.popup.popup--sub-accounts-order .payment-pending__footer-total .price span.title {
	font-size: 16px;
	line-height: 24px;
	margin-right: 8px
}

.popup.popup--sub-accounts-order .payment-pending__footer-total .price p {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px
}

.popup.popup--sub-accounts-order .payment-pending__footer-btn {
	gap: 16px;
	display: flex
}

@media screen and (max-width: 768px) {
	.popup.popup--sub-accounts-order .payment-pending__footer-btn {
		width: 100%
	}
	.popup.popup--sub-accounts-order .payment-pending__footer-btn .btn {
		width: 100%
	}
}

@media screen and (max-width: 576px) {
	.popup.popup--sub-accounts-order .payment-pending__footer-btn .form-select-custom {
		width: 100%
	}
}

@media screen and (max-width: 576px) {
	.popup.popup--sub-accounts-order .payment-pending__footer-btn {
		flex-wrap: wrap
	}
}

.popup.popup--sub-accounts-order .payment-pending__footer-btn .form-select-custom__current {
	border-color: #212121;
	color: #212121;
	padding: 0 30px 0 20px;
	min-width: 200px
}

.popup.popup--sub-accounts-order .payment-pending__footer-btn .form-select-custom__current:after {
	height: 9px;
	width: 9px;
	right: 26px;
	margin-top: -6px;
	border-right: 2px solid #212121;
	border-bottom: 2px solid #212121
}

.popup.popup--sub-accounts-order .payment-pending__footer-btn .form-select-custom__current.active:after {
	margin-top: -2px
}

.popup.popup--sub-accounts-order .payment-pending__footer-btn .form-select-custom__current-body {
	text-transform: uppercase;
	font-weight: 700;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 18px
}

.restricted-block {
	padding: 16px;
	border-radius: 16px;
	background-color: #fff;
	margin-bottom: 20px
}

.restricted-block__item {
	display: grid;
	align-items: center;
	gap: 14px;
	grid-template-columns: 64px 1fr 168px 100px;
	grid-template-areas: "item-img item-info item-price item-qty";
	padding: 16px;
	border-radius: 4px
}

@media screen and (max-width: 768px) {
	.restricted-block__item {
		grid-template-areas: "item-img item-info" "item-img item-price" "item-img item-qty";
		grid-template-columns: 64px 1fr;
		gap: 0 16px
	}
}

.restricted-block__item.restricted-block__item--header {
	padding: 6px 16px
}

.restricted-block__item.restricted-block__item--header .restricted-block__item-info,
.restricted-block__item.restricted-block__item--header .restricted-block__item-price,
.restricted-block__item.restricted-block__item--header .restricted-block__item-qty {
	color: #7c7c7c;
	font-weight: 700
}

@media screen and (max-width: 768px) {
	.restricted-block__item.restricted-block__item--header {
		display: none
	}
}

.restricted-block__item.restricted-block__item--header .restricted-block__item-img {
	border: none;
	height: auto
}

.restricted-block__item.restricted-block__item--bg:nth-child(even) {
	background-color: #f7f7f7
}

.restricted-block__item-img {
	grid-area: item-img;
	border-radius: 8px;
	background-color: #fff;
	height: 64px;
	width: 64px;
	border: 1px solid #dbdbdb;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px
}

.restricted-block__item-info {
	grid-area: item-info
}

@media screen and (max-width: 768px) {
	.restricted-block__item-info {
		margin-bottom: 6px
	}
}

.restricted-block__item-article {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600
}

.restricted-block__item-title {
	font-size: 12px;
	color: #7c7c7c;
	font-weight: 700;
	line-height: 16px
}

.restricted-block__item-price {
	grid-area: item-price;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px
}

@media screen and (max-width: 768px) {
	.restricted-block__item-price {
		display: flex;
		align-items: center;
		gap: 8px
	}
}

.restricted-block__item-qty {
	grid-area: item-qty;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px
}

@media screen and (max-width: 768px) {
	.restricted-block__item-qty {
		display: flex;
		align-items: center;
		gap: 8px
	}
}

.restricted-block__item-mob {
	display: none;
	font-size: 12px;
	line-height: 16px;
	color: #7c7c7c;
	font-weight: 400
}

@media screen and (max-width: 768px) {
	.restricted-block__item-mob {
		display: block
	}
}

.restricted-block__scroll {
	max-height: 348px;
	padding-right: 4px;
	scrollbar-color: #b0b0b0 #fff;
	scrollbar-width: thin
}

.restricted-block__scroll::-webkit-scrollbar-track {
	border-radius: 12px;
	background-color: #fff
}

.restricted-block__scroll::-webkit-scrollbar {
	width: 6px;
	height: auto;
	background-color: #f5f5f5
}

.restricted-block__scroll::-webkit-scrollbar-thumb {
	border-radius: 12px;
	background-color: #b0b0b0
}

.restricted-block__scroll {
	scrollbar-base-color: #fff;
	scrollbar-face-color: #b0b0b0;
	scrollbar-3dlight-color: #b0b0b0;
	scrollbar-highlight-color: #b0b0b0;
	scrollbar-track-color: #fff;
	scrollbar-arrow-color: #fff;
	scrollbar-shadow-color: #b0b0b0;
	scrollbar-dark-shadow-color: #b0b0b0;
	overflow-y: scroll
}

.sign-up-page__body {
	background-color: #f7f7f7;
	border: 1px solid #dbdbdb;
	border-radius: 24px;
	margin-bottom: 24px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px
}

@media screen and (max-width: 992px) {
	.sign-up-page__body {
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
		margin-bottom: 12px
	}
}

.sign-up-page__body-col {
	padding: 24px
}

@media screen and (max-width: 992px) {
	.sign-up-page__body-col {
		padding: 24px 36px
	}
}

@media screen and (max-width: 650px) {
	.sign-up-page__body-col {
		padding: 24px 16px
	}
}

.sign-up-page__body-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 36px
}

.sign-up-page .body-form__row .input-icon {
	margin-bottom: 8px
}

.sign-up-page .body-form__row .input-text {
	color: #b0b0b0
}

.sign-up-page .body-form__row .input-info {
	position: absolute;
	right: 10px;
	top: 50%;
	width: 16px;
	height: 16px;
	margin-top: -8px
}

.sign-up-page .body-form__row .input-info svg {
	fill: #238dff;
	width: 16px;
	height: 16px;
	transform: rotate(180deg);
	margin-top: -8px;
	cursor: pointer;
	pointer-events: all;
	right: 0
}

.sign-up-page .body-form__row .input-info__tooltip {
	padding: 16px;
	border: 1px solid #238dff;
	background-color: #e9f4ff;
	border-radius: 16px;
	position: absolute;
	left: 100%;
	bottom: -100%;
	margin-left: 8px;
	z-index: 5;
	display: none;
	min-width: 280px
}

@media screen and (max-width: 650px) {
	.sign-up-page .body-form__row .input-info__tooltip {
		right: 100%;
		left: auto;
		margin-right: 8px
	}
}

.sign-up-page .body-form__row .input-info:hover .input-info__tooltip {
	display: block
}

.sign-up-page__confirm {
	padding: 24px;
	background-color: #f7f7f7;
	border-radius: 16px;
	max-width: 426px;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	margin-bottom: 48px
}

@media screen and (max-width: 650px) {
	.sign-up-page__confirm {
		max-width: 100%
	}
}

.sign-up-page__confirm .checkbox {
	margin-bottom: 8px
}

.sign-up-page__confirm .checkbox a {
	color: #02070d;
	text-decoration: underline
}

.sign-up-page__confirm .btn {
	margin-top: 24px;
	margin-bottom: 16px
}

.sign-up-page__confirm-info {
	color: #b0b0b0
}

.sign-up-page__confirm-info a {
	color: #02070d;
	text-decoration: underline
}

.quick-order-page {
	padding-bottom: 168px
}

.quick-order-page__title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 44px;
	line-height: 56px;
	margin-bottom: 16px
}

.quick-order-page__description {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c;
	margin-bottom: 32px;
	max-width: 720px
}

.quick-order-page .bulk-tabs__nav {
	display: flex;
	gap: 16px;
	margin-bottom: 32px
}

@media screen and (max-width: 768px) {
	.quick-order-page .bulk-tabs__nav {
		flex-direction: column
	}
}

.quick-order-page .bulk-tabs__control {
	padding-left: 24px;
	display: flex;
	align-items: center;
	gap: 16px
}

@media screen and (max-width: 1200px) {
	.quick-order-page .bulk-tabs__control {
		margin-bottom: 16px;
		justify-content: space-between
	}
}

.quick-order-page .bulk-tabs__btn {
	border-radius: 16px;
	border: 1px solid #d0d0d0;
	padding: 31px 32px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #7c7c7c;
	font-size: 16px;
	cursor: pointer
}

@media screen and (max-width: 768px) {
	.quick-order-page .bulk-tabs__btn {
		padding: 12px 20px
	}
}

.quick-order-page .bulk-tabs__btn.bulk-tabs__btn--active {
	border-color: #494949;
	background-color: #f7f7f7;
	font-weight: 600;
	color: #02070d
}

.quick-order-page .bulk-tabs__icon {
	width: 24px;
	height: 24px
}

.quick-order-page .bulk-tabs__pane {
	display: none;
	opacity: 0
}

.quick-order-page .bulk-tabs__pane.bulk-tabs__pane--active {
	display: block;
	animation: tab-enter .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@media screen and (max-width: 1200px) {
	.quick-order-page .bulk-tabs__pane.bulk-tabs__pane--active {
		animation: none !important;
		transform: none !important;
		opacity: 1
	}
}

.quick-order-page .order-panel {
	display: flex;
	gap: 16px
}

@media screen and (max-width: 1200px) {
	.quick-order-page .order-panel {
		flex-direction: column
	}
}

.quick-order-page .order-panel__list {
	max-width: calc(100% - 378px - 16px);
	width: 100%
}

@media screen and (max-width: 1200px) {
	.quick-order-page .order-panel__list {
		max-width: 100%;
		width: 100%
	}
}

.quick-order-page .order-panel__list .ordered-goods {
	margin-bottom: 16px
}

.quick-order-page .order-panel__list .ordered-goods .ordered-goods-item__action span {
	cursor: pointer;
	font-size: 24px;
	color: #999
}

@media screen and (max-width: 768px) {
	.quick-order-page .order-panel__list .ordered-goods .ordered-goods-item__action {
		position: absolute;
		right: 16px;
		top: 16px
	}
}

.quick-order-page .order-panel__summary {
	width: 378px;
	padding: 24px;
	border-radius: 16px;
	background-color: #f7f7f7;
	align-self: flex-start;
	min-width: auto;
	position: sticky;
	top: 80px
}

@media screen and (max-width: 1200px) {
	.quick-order-page .order-panel__summary {
		position: fixed !important;
		bottom: 0 !important;
		top: auto !important;
		right: 0 !important;
		z-index: 10;
		padding: 16px;
		width: 100%;
		box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, .05), 0px -4px 16px 0px rgba(0, 0, 0, .05)
	}
}

.quick-order-page .order-panel__info {
	display: flex;
	margin-bottom: 16px
}

.quick-order-page .order-panel__row {
	display: flex;
	flex-direction: column;
	margin-right: 16px;
	position: relative
}

.quick-order-page .order-panel__row:first-child {
	padding-right: 16px
}

.quick-order-page .order-panel__row:first-child:after {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 60px;
	right: 0;
	background-color: #dbdbdb
}

.quick-order-page .order-panel__label {
	color: #7c7c7c;
	margin-bottom: 8px
}

.quick-order-page .order-panel__download-btn {
	margin-bottom: 32px
}

.quick-order-page .order-panel__value {
	font-size: 24px;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	line-height: 32px
}

.quick-order-page .order-panel__total {
	margin-bottom: 16px
}

.quick-order-page .order-panel__total-label {
	color: #7c7c7c;
	margin-bottom: 8px
}

.quick-order-page .order-panel__total-price {
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: normal;
	font-family: "Roboto Condensed", sans-serif
}

.quick-order-page__oen {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px
}

.quick-order-page__error {
	background-color: #ffe9e9;
	padding: 24px 24px 24px 64px;
	border: 1px solid #ff2727;
	border-radius: 16px;
	position: relative
}

.quick-order-page__error svg {
	position: absolute;
	fill: #ff2727;
	top: 22.5px;
	left: 22.5px;
	width: 21px;
	height: 21px
}

.quick-order-page__error-txt {
	color: #ff2727
}

.quick-order-page__error-txt p {
	margin-bottom: 8px
}

.quick-order-page__error-txt p:last-child {
	margin-bottom: 0
}

.quick-order-page__error-description {
	margin-bottom: 8px
}

.quick-order-page__error a {
	color: #02070d;
	text-decoration: underline
}

.quick-order-page__header {
	align-items: center
}

.quick-order-page__header .checkbox {
	margin-right: 50px
}

.quick-order-page__header .input-group {
	margin-left: 16px
}

.quick-order-page__header-items {
	align-items: center;
	margin-left: auto
}

.quick-order-page__header-items .input-group {
	min-width: 181px
}

.quick-order-page__header-sort {
	align-items: center;
	margin-left: 16px
}

.quick-order-page__header-sort .input-group {
	min-width: 266px
}

.quick-order-page__button .btn {
	min-width: 278px;
	margin-left: 16px
}

.quick-order-page__wrap {
	display: grid;
	grid-template-columns: 573px 1fr;
	gap: 163px;
	margin-bottom: 32px
}

@media screen and (max-width: 1440px) {
	.quick-order-page__wrap {
		grid-template-columns: 460px 1fr;
		gap: 64px
	}
}

@media screen and (max-width: 992px) {
	.quick-order-page__wrap {
		grid-template-columns: 1fr
	}
}

.quick-order-page__wrap-description {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 16px;
	font-weight: 700
}

.quick-order-page__file input {
	visibility: hidden;
	position: absolute;
	opacity: 0;
	z-index: -9999;
	width: 1px;
	height: 1px
}

.quick-order-page__file svg {
	width: 40px;
	height: 40px;
	margin-bottom: 20px
}

.quick-order-page__file img {
	margin-bottom: 20px
}

.quick-order-page__file label {
	width: 100%;
	display: block;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer
}

.quick-order-page__file-upload {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 8px;
	text-align: center
}

@media screen and (max-width: 768px) {
	.quick-order-page__format {
		align-self: flex-start
	}
}

.quick-order-page__format svg {
	width: 16px;
	height: 16px;
	margin-right: 4px
}

.quick-order-page__format a,
.quick-order-page__format span {
	font-weight: 600;
	text-decoration: underline;
	color: #02070d
}

.quick-order-page__field {
	background-color: #f7f7f7;
	padding: 32px 24px;
	border-radius: 16px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 256px
}

@media screen and (max-width: 768px) {
	.quick-order-page__field {
		height: 320px
	}
}

.quick-order-page__field:after {
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	height: 100%;
	background-color: #dbdbdb;
	top: -10px;
	right: -80px
}

@media screen and (max-width: 1440px) {
	.quick-order-page__field:after {
		right: -33px
	}
}

@media screen and (max-width: 992px) {
	.quick-order-page__field:after {
		width: 100%;
		height: 1px;
		right: auto;
		top: 100%;
		margin-bottom: 32px;
		margin-top: 32px
	}
}

.quick-order-page__field.quick-order-page__field--loader svg {
	animation: 1s linear 0s normal none infinite running rot;
	fill: #238dff
}

.quick-order-page__field.quick-order-page__field--complete svg {
	fill: #3c3
}

.quick-order-page__area textarea {
	height: 256px
}

.quick-order-page__download {
	display: flex;
	align-items: center;
	justify-content: space-between
}

@media screen and (max-width: 768px) {
	.quick-order-page__download {
		flex-direction: column;
		gap: 16px
	}
}

.quick-order-page__download-file svg {
	width: 16px;
	height: 16px;
	margin-right: 4px
}

.quick-order-page__download-file a {
	color: #02070d;
	font-weight: 600
}

.quick-order-page__download .btn {
	min-width: 166px;
	margin-left: auto
}

@media screen and (max-width: 567px) {
	.quick-order-page__download .btn {
		min-width: 100%
	}
}

.quick-order-page__total {
	justify-content: space-between;
	margin-top: 24px
}

.quick-order-page__total-file svg {
	width: 16px;
	height: 16px;
	margin-right: 4px
}

.quick-order-page__total-file a {
	color: #02070d;
	font-weight: 600
}

.quick-order-page__total-body {
	width: 278px
}

.quick-order-page__total-body .price {
	color: #7c7c7c;
	justify-content: space-between
}

.quick-order-page__total-body .price span {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	white-space: nowrap;
	color: #02070d
}

.quick-order-page__total-body .btn {
	width: 100%
}

.quick-order-page__empty {
	width: 100%;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

.quick-order-page__empty-title {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 8px
}

.quick-order-page__empty-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c;
	max-width: 572px;
	margin: 0 auto;
	text-align: center
}

.quick-order-page__empty-description a {
	color: #02070d
}

.quick-order-page .product-availability__marker span {
	width: 12px;
	height: 12px
}

.quick-order-page .product-availability__text {
	font-size: 12px
}

.quick-order-page .is-loading {
	opacity: .5 !important;
	pointer-events: none
}

@keyframes rot {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(360deg)
	}
}

@keyframes tab-enter {
	0% {
		opacity: 0;
		transform: translateY(15px)
	}
	100% {
		opacity: 1;
		transform: translateY(0)
	}
}

.download-centre-page {
	padding-bottom: 136px
}

.download-centre-page__description {
	color: #7c7c7c;
	max-width: 867px
}

.download-centre-page__items {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 554px
}

@media screen and (max-width: 1000px) {
	.download-centre-page__items {
		grid-auto-rows: 378px
	}
}

@media screen and (max-width: 576px) {
	.download-centre-page__items {
		grid-template-columns: 1fr;
		grid-auto-rows: 355px
	}
}

.download-centre-page .form-select-custom__list-header {
	font-weight: bold
}

.download-centre-page__item {
	padding: 32px;
	border: 1px solid #d0d0d0;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

.download-centre-page__item img {
	max-width: 100%;
	margin-bottom: 24px
}

@media screen and (max-width: 576px) {
	.download-centre-page__item img {
		max-height: 100%
	}
}

.download-centre-page__item-name {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	text-align: center;
	color: #02070d
}

.download-centre-page .selector-car {
	margin-bottom: 16px
}

.download-centre-page__body {
	display: grid;
	grid-template-columns: 279px 1fr;
	gap: 16px
}

@media screen and (max-width: 1200px) {
	.download-centre-page__body {
		grid-template-columns: 1fr;
		gap: 24px
	}
}

.download-centre-page .download-centre-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px
}

@media screen and (max-width: 768px) {
	.download-centre-page .download-centre-items {
		grid-template-columns: 1fr
	}
}

.download-centre-page .download-centre-items.download-centre-item--catalogues .download-centre-item__bg:before {
	width: 34px;
	height: 234px;
	position: absolute;
	content: "";
	display: block;
	background-color: #ff0;
	left: 0;
	top: 0;
	border-radius: 14px 0 0 0
}

.download-centre-page .download-centre-items.download-centre-item--catalogues .download-centre-item__bg:after {
	content: "";
	display: block;
	position: absolute;
	width: 36px;
	height: 57px;
	background-color: #ff0;
	bottom: 32px;
	right: 0
}

.download-centre-page .download-centre-items.download-centre-items--newarrials .download-centre-item__bg-name {
	font-size: 44px;
	line-height: 40px
}

@media screen and (max-width: 920px) {
	.download-centre-page .download-centre-items.download-centre-items--newarrials .download-centre-item__bg-name {
		font-size: 40px;
		line-height: 36px
	}
}

@media screen and (max-width: 768px) {
	.download-centre-page .download-centre-items.download-centre-items--newarrials .download-centre-item__bg-name {
		font-size: 36px;
		line-height: 32px
	}
}

.download-centre-page .download-centre-items.download-centre-items--newarrials .download-centre-item__bg {
	padding: 15px 24px;
	background-size: cover
}

@media screen and (max-width: 992px) {
	.download-centre-page .download-centre-items.download-centre-items--newarrials .download-centre-item__bg {
		padding: 15px 20px
	}
}

.download-centre-page .download-centre-item {
	border: 1px solid #dbdbdb;
	padding: 24px;
	border-radius: 16px
}

.download-centre-page .download-centre-item__bg {
	max-width: 524px;
	height: 266px;
	margin: 0 auto 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 40px 32px 40px 66px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	position: relative;
	border-radius: 16px
}

@media screen and (max-width: 992px) {
	.download-centre-page .download-centre-item__bg {
		height: 212px
	}
}

@media screen and (max-width: 475px) {
	.download-centre-page .download-centre-item__bg {
		padding: 35px 32px 35px 40px
	}
}

.download-centre-page .download-centre-item__bg:hover {
	text-decoration: none
}

.download-centre-page .download-centre-item__bg-catalog {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	color: #ff0;
	margin-bottom: 12px;
	text-transform: uppercase
}

@media screen and (max-width: 992px) {
	.download-centre-page .download-centre-item__bg-catalog {
		margin-bottom: 6px
	}
}

.download-centre-page .download-centre-item__bg-catalog--reman {
	color: #3c3
}

.download-centre-page .download-centre-item__bg-name {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 38px;
	color: #fff;
	text-transform: uppercase
}

@media screen and (max-width: 475px) {
	.download-centre-page .download-centre-item__bg-name {
		font-size: 22px;
		line-height: 28px
	}
}

.download-centre-page .download-centre-item__bg-year {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	transform: rotate(-90deg);
	position: absolute;
	right: -3px;
	bottom: 50px;
	z-index: 5
}

.download-centre-page .download-centre-item__bg-logo img {
	max-height: 28px
}

.download-centre-page .download-centre-item__bg.download-centre-item__bg--between {
	justify-content: space-between;
	padding: 32px 24px
}

.download-centre-page .download-centre-item__bg.download-centre-item__bg--catalogues {
	background-size: cover
}

.download-centre-page .download-centre-item__pdf {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	padding-left: 8px
}

.download-centre-page .download-centre-item__pdf-icon {
	margin-right: 19px
}

.download-centre-page .download-centre-item__pdf-icon svg {
	width: 26px;
	height: 26px
}

.download-centre-page .download-centre-item__pdf-info .title {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 12px
}

.download-centre-page .download-centre-item__pdf-info .article {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #7c7c7c
}

.download-centre-page .download-centre-item__pdf-info .article span {
	font-weight: 600;
	color: #02070d
}

.download-centre-page .download-centre-item .btn {
	width: 100%
}

.download-centre-page .digital-instructions__row {
	display: flex;
	gap: 163px
}

@media screen and (max-width: 768px) {
	.download-centre-page .digital-instructions__row {
		flex-wrap: wrap;
		gap: 74px
	}
}

@media screen and (max-width: 380px) {
	.download-centre-page .digital-instructions__row {
		gap: 24px
	}
}

.download-centre-page .digital-instructions__col {
	position: relative;
	max-width: 425px;
	width: 50%
}

@media screen and (max-width: 768px) {
	.download-centre-page .digital-instructions__col {
		width: 100%;
		max-width: 560px
	}
}

.download-centre-page .digital-instructions__col:first-child:after {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 236px;
	background-color: #dbdbdb;
	top: 0;
	right: -74px
}

.download-centre-page .digital-instructions__col:first-child:before {
	content: attr(data-split-text);
	display: block;
	position: absolute;
	top: 95px;
	right: -80px;
	line-height: 22px;
	color: #02070d;
	background-color: #fff;
	z-index: 2;
	padding: 8px 0
}

@media screen and (max-width: 768px) {
	.download-centre-page .digital-instructions__col:first-child:before {
		top: inherit;
		bottom: -9px;
		right: 45%;
		padding: 0 8px
	}
	.download-centre-page .digital-instructions__col:first-child:after {
		content: "";
		display: block;
		position: relative;
		width: 100%;
		height: 1px;
		background-color: #dbdbdb;
		top: 0;
		right: 0;
		margin-top: 40px
	}
}

@media screen and (max-width: 380px) {
	.download-centre-page .digital-instructions__col:first-child:after {
		margin-top: 24px
	}
}

.download-centre-page .digital-instructions__col .form-select-custom,
.download-centre-page .digital-instructions__col .input-group {
	margin-bottom: 24px
}

@media screen and (max-width: 768px) {
	.download-centre-page .digital-instructions__col .form-select-custom,
	.download-centre-page .digital-instructions__col .input-group {
		max-width: 368px
	}
}

.download-centre-page .digital-instructions__col .btn {
	width: 100%
}

@media screen and (max-width: 768px) {
	.download-centre-page .digital-instructions__col .btn {
		max-width: 368px
	}
}

.download-centre-page .digital-instructions__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	text-transform: uppercase;
	margin-bottom: 16px
}

.download-centre-page .digital-instructions__description {
	color: #7c7c7c;
	margin-bottom: 16px
}

.download-centre-page .digital-instructions__empty {
	width: 100%;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

.download-centre-page .digital-instructions__empty__title {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 8px
}

.download-centre-page .digital-instructions__empty-description {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	color: #7c7c7c;
	text-align: center
}

.download-centre-page .digital-instructions__result {
	max-width: 564px;
	margin: 0 auto
}

.download-centre-page .digital-instructions__result-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	text-transform: uppercase;
	margin-bottom: 12px;
	text-align: center
}

.download-centre-page .digital-instructions__result-description {
	margin-bottom: 32px
}

.download-centre-page .digital-instructions__result-description b {
	font-weight: 600
}

.download-centre-page .digital-instructions__result-btn {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

@media screen and (max-width: 576px) {
	.download-centre-page .digital-instructions__result-btn {
		grid-template-columns: 1fr
	}
}

.download-centre-page .digital-catalogues__empty {
	width: 100%;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

.download-centre-page .digital-catalogues__empty__title {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 8px
}

.download-centre-page .digital-catalogues__empty-description {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	color: #7c7c7c;
	text-align: center
}

.download-centre-page.download-centre-page--marketing .download-centre-item__bg {
	background-size: cover
}

.wishlist-page {
	padding-bottom: 136px
}

.wishlist-page__items {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 144px
}

@media screen and (max-width: 992px) {
	.wishlist-page__items {
		grid-template-columns: 1fr
	}
}

@media screen and (max-width: 576px) {
	.wishlist-page__items {
		grid-auto-rows: auto
	}
}

.wishlist-page__add {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 16px
}

@media screen and (max-width: 576px) {
	.wishlist-page__add {
		justify-content: center;
		margin-bottom: 28px
	}
}

.wishlist-page__add .btn {
	border: none
}

.wishlist-page__count {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px
}

.wishlist-page__header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	padding-left: 26px
}

@media screen and (max-width: 768px) {
	.wishlist-page__header {
		flex-wrap: wrap;
		padding-left: 0;
		margin-bottom: 16px
	}
}

@media screen and (max-width: 768px) {
	.wishlist-page__header .btn {
		order: 3;
		width: 100%
	}
}

.wishlist-page__header .checkbox {
	margin-right: 26px
}

@media screen and (max-width: 768px) {
	.wishlist-page__header .checkbox {
		order: 2;
		width: 100%;
		margin: 0 0 16px 0
	}
}

.wishlist-page__header-sort {
	margin-left: auto;
	align-items: center
}

@media screen and (max-width: 768px) {
	.wishlist-page__header-sort {
		order: 1;
		width: 100%;
		margin-bottom: 24px;
		white-space: nowrap
	}
}

.wishlist-page__header-sort .input-group {
	min-width: 266px;
	margin-left: 16px
}

@media screen and (max-width: 576px) {
	.wishlist-page__header-sort .input-group {
		width: 100%;
		min-width: auto
	}
}

@media screen and (max-width: 1375px) {
	.wishlist-page .item-buy .item-buy__delete {
		right: 24px
	}
}

.wishlist-page__footer {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: 16px
}

@media screen and (max-width: 992px) {
	.wishlist-page__footer {
		width: 100%;
		margin-top: 40px
	}
}

.wishlist-page__footer-total {
	color: #7c7c7c;
	display: flex;
	align-items: center;
	margin-bottom: 16px
}

.wishlist-page__footer-total span {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	margin-left: 17px;
	color: #02070d
}

.wishlist-page__footer-btn {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: flex-end
}

.wishlist-page__footer-btn .btn {
	min-width: 278px;
	margin-left: 16px
}

@media screen and (max-width: 620px) {
	.wishlist-page__footer-btn .btn {
		width: 100%;
		margin: 0 0 16px 0;
		min-width: auto
	}
}

.wishlist-page__empty {
	width: 100%;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

.wishlist-page__empty-title {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 8px
}

.wishlist-page__empty-description {
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c;
	text-align: center
}

.thank-you-page .page-title {
	margin-bottom: 8px
}

.thank-you-page .page-description {
	font-size: 16px;
	color: #7c7c7c;
	margin-bottom: 24px
}

.thank-you-page__title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
	margin-bottom: 8px
}

.thank-you-page__description {
	font-size: 16px;
	color: #7c7c7c;
	margin-bottom: 32px
}

.thank-you-page__table {
	border: 1px solid #dbdbdb;
	padding: 24px 24px 12px 24px;
	max-width: 572px;
	border-radius: 16px;
	margin-bottom: 22px
}

.thank-you-page__table-item {
	margin-bottom: 12px
}

.thank-you-page__table-item span {
	font-size: 12px;
	color: #7c7c7c;
	margin-bottom: 4px;
	display: block
}

.thank-you-page__table-item p {
	font-size: 16px;
	font-weight: 600
}

.thank-you-page__table-item.thank-you-page__table-item--line p {
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 2px
}

.thank-you-page__table-item.thank-you-page__table-item--line p span {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #02070d
}

.thank-you-page__download {
	display: flex;
	align-items: center;
	color: #7c7c7c;
	font-weight: 400;
	margin-bottom: 16px
}

.thank-you-page__download svg {
	width: 24px;
	height: 24px;
	margin-right: 8px
}

.thank-you-page__download a {
	text-decoration: underline;
	color: #02070d;
	font-weight: 600;
	line-height: 24px;
	font-size: 16px
}

.thank-you-page__txt {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
	margin-bottom: 32px
}

.thank-you-page__btn {
	text-align: right;
	margin-bottom: 104px
}

.thank-you-page__btn .btn {
	min-width: 279px
}

@media screen and (max-width: 576px) {
	.thank-you-page__btn .btn {
		min-width: 100%
	}
}

.thank-you-page__top-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	line-height: 44px;
	font-size: 36px;
	margin-bottom: 24px
}

.oil-page {
	overflow: hidden
}

.oil-page__header {
	display: flex;
	align-items: center;
	min-height: 691px
}

@media screen and (max-width: 1150px) {
	.oil-page__header {
		flex-direction: column;
		min-height: 750px
	}
}

@media screen and (max-width: 992px) {
	.oil-page__header {
		min-height: 735px;
		margin-top: 24px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__header {
		min-height: 445px;
		margin-top: 16px
	}
}

.oil-page__header:before {
	content: "";
	display: block;
	position: absolute;
	background-image: url("/assets/images/oil/oil-header-image-shadow.png");
	background-repeat: no-repeat;
	width: 1928px;
	height: 1188px;
	right: 0;
	top: 0;
	z-index: -1
}

@media screen and (max-width: 992px) {
	.oil-page__header:before {
		background-image: url("/assets/images/oil/oil-header-image-shadow-tablet.jpg");
		height: 896px;
		width: 100%;
		top: 144px;
		background-size: 100%;
		background-position: right
	}
}

@media screen and (max-width: 767px) {
	.oil-page__header:before {
		background-image: url("/assets/images/oil/oil-header-image-shadow-mobile.jpg");
		height: 547px;
		width: 100%;
		top: 120px;
		background-size: 100%;
		background-position: right
	}
}

.oil-page__header-logo {
	margin-bottom: 32px
}

.oil-page__header-logo img {
	max-height: 36px
}

.oil-page__header-wrap {
	max-width: 573px;
	flex-shrink: 1;
	width: 100%
}

@media screen and (max-width: 1400px) {
	.oil-page__header-wrap {
		max-width: 460px
	}
}

@media screen and (max-width: 1150px) {
	.oil-page__header-wrap {
		max-width: 100%
	}
}

.oil-page__header-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 86px;
	font-weight: 700;
	line-height: 86px;
	text-transform: uppercase;
	position: relative;
	z-index: 1
}

@media screen and (max-width: 1400px) {
	.oil-page__header-title {
		font-size: 70px;
		line-height: 70px
	}
}

@media screen and (max-width: 992px) {
	.oil-page__header-title {
		font-size: 64px;
		line-height: 64px;
		margin-bottom: 55px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__header-title {
		font-size: 40px;
		line-height: 47px;
		margin-bottom: 20px
	}
}

.oil-page__header-title span {
	color: #ff0
}

.oil-page__header-image {
	position: relative;
	align-self: flex-start;
	flex-grow: 1
}

@media screen and (max-width: 1150px) {
	.oil-page__header-image {
		width: 100%
	}
}

@media screen and (max-width: 992px) {
	.oil-page__header-image {
		height: 362px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__header-image {
		height: 200px
	}
}

@media screen and (max-width: 992px) {
	.oil-page__header-image .desktop-img {
		display: none
	}
}

.oil-page__header-image .tablet-img {
	display: none;
	max-width: 100%
}

@media screen and (max-width: 992px) {
	.oil-page__header-image .tablet-img {
		display: block;
		margin: 0 auto
	}
}

@media screen and (max-width: 767px) {
	.oil-page__header-image .tablet-img {
		display: none
	}
}

.oil-page__header-image .mobile-img {
	display: none;
	max-width: 100%
}

@media screen and (max-width: 767px) {
	.oil-page__header-image .mobile-img {
		display: block;
		margin: 0 auto
	}
}

.oil-page__header-image img {
	position: absolute
}

@media screen and (max-width: 1400px) {
	.oil-page__header-image img {
		max-width: 360px
	}
}

@media screen and (max-width: 992px) {
	.oil-page__header-image img {
		position: relative
	}
}

.oil-page__header-image .oil-header-image-2 {
	right: 555px;
	top: 160px;
	transition: all .8s ease 0s;
	opacity: 0;
	transform: translate(-10px, -10px)
}

@media screen and (max-width: 1400px) {
	.oil-page__header-image .oil-header-image-2 {
		top: 175px;
		right: 440px
	}
}

@media screen and (max-width: 1150px) {
	.oil-page__header-image .oil-header-image-2 {
		right: auto;
		top: 60px
	}
}

.oil-page__header-image .oil-header-image-4 {
	right: 340px;
	top: 102px;
	transition: all .8s ease 0s;
	opacity: 0;
	transform: translate(-10px, -10px)
}

@media screen and (max-width: 1400px) {
	.oil-page__header-image .oil-header-image-4 {
		top: 180px;
		right: 315px
	}
}

@media screen and (max-width: 1150px) {
	.oil-page__header-image .oil-header-image-4 {
		right: auto;
		left: 125px;
		top: 70px
	}
}

@media screen and (max-width: 880px) {
	.oil-page__header-image .oil-header-image-4 {
		right: auto;
		left: 60px;
		top: 80px
	}
}

.oil-page__header-image .oil-header-image-5 {
	right: 142px;
	top: 90px;
	z-index: 3;
	transition: all .8s ease 0s;
	opacity: 0;
	transform: translate(0, -10px)
}

@media screen and (max-width: 1400px) {
	.oil-page__header-image .oil-header-image-5 {
		right: 175px;
		top: 190px
	}
}

@media screen and (max-width: 1150px) {
	.oil-page__header-image .oil-header-image-5 {
		right: auto;
		left: 260px;
		top: 80px
	}
}

@media screen and (max-width: 880px) {
	.oil-page__header-image .oil-header-image-5 {
		left: 115px
	}
}

.oil-page__header-image .oil-header-image-3 {
	right: -60px;
	top: 102px;
	z-index: 2;
	transition: all .8s ease 0s;
	opacity: 0;
	transform: translate(10px, -10px)
}

@media screen and (max-width: 1400px) {
	.oil-page__header-image .oil-header-image-3 {
		right: 20px;
		top: 180px
	}
}

@media screen and (max-width: 1150px) {
	.oil-page__header-image .oil-header-image-3 {
		top: 70px;
		left: 415px;
		right: auto
	}
}

@media screen and (max-width: 880px) {
	.oil-page__header-image .oil-header-image-3 {
		left: 190px
	}
}

.oil-page__header-image .oil-header-image-1 {
	right: -190px;
	top: 180px;
	transition: all .8s ease 0s;
	opacity: 0;
	transform: translate(10px, -10px)
}

@media screen and (max-width: 1400px) {
	.oil-page__header-image .oil-header-image-1 {
		right: -110px;
		top: 175px
	}
}

@media screen and (max-width: 1150px) {
	.oil-page__header-image .oil-header-image-1 {
		top: 60px;
		right: auto;
		left: 545px
	}
}

@media screen and (max-width: 880px) {
	.oil-page__header-image .oil-header-image-1 {
		left: 253px
	}
}

.oil-page__header-image._active .oil-header-image-1 {
	opacity: 1;
	transform: translate(0px, 0px);
	transition: all .8s ease .3s
}

.oil-page__header-image._active .oil-header-image-2 {
	opacity: 1;
	transform: translate(0px, 0px);
	transition: all .8s ease .5s
}

.oil-page__header-image._active .oil-header-image-3 {
	opacity: 1;
	transform: translate(0px, 0px);
	transition: all .8s ease .7s
}

.oil-page__header-image._active .oil-header-image-4 {
	opacity: 1;
	transform: translate(0px, 0px);
	transition: all .8s ease .9s
}

.oil-page__header-image._active .oil-header-image-5 {
	opacity: 1;
	transform: translate(0px, 0px);
	transition: all .8s ease 1.2s
}

.oil-page__quality {
	padding: 40px 64px;
	border-radius: 32px;
	background-color: #121417;
	margin-bottom: 96px
}

@media screen and (max-width: 992px) {
	.oil-page__quality {
		padding: 40px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__quality {
		padding: 32px 8px;
		margin-bottom: 56px
	}
}

.oil-page__quality-title {
	font-size: 44px;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	line-height: 56px;
	margin-bottom: 48px;
	text-align: center
}

@media screen and (max-width: 992px) {
	.oil-page__quality-title {
		text-align: left
	}
}

@media screen and (max-width: 767px) {
	.oil-page__quality-title {
		font-size: 36px;
		line-height: 44px
	}
}

.oil-page__quality-title span {
	color: #ff0
}

.oil-page__quality-images {
	display: grid;
	grid-template-columns: repeat(4, auto);
	justify-content: space-between;
	align-items: center;
	list-style: none
}

@media screen and (max-width: 767px) {
	.oil-page__quality-images {
		grid-template-columns: repeat(2, auto);
		gap: 48px;
		justify-content: inherit
	}
}

.oil-page__quality-images img {
	max-width: 100%
}

@media screen and (max-width: 992px) {
	.oil-page__quality-images img {
		max-width: 73%
	}
}

@media screen and (max-width: 900px) {
	.oil-page__quality-images li {
		text-align: center
	}
}

.oil-page__series {
	margin-bottom: 96px
}

@media screen and (max-width: 1600px) {
	.oil-page__series {
		width: 90%;
		margin: 0 auto 96px
	}
}

@media screen and (max-width: 1400px) {
	.oil-page__series {
		width: 85%
	}
}

@media screen and (max-width: 992px) {
	.oil-page__series {
		width: 100%
	}
}

@media screen and (max-width: 767px) {
	.oil-page__series {
		margin-bottom: 56px
	}
}

.oil-page__series-title {
	font-size: 72px;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	line-height: 64px;
	margin-bottom: 32px;
	text-transform: uppercase
}

.oil-page__series-title span {
	color: #ff0
}

.oil-page__series-title.oil-page__series-title--energy span {
	color: #3c3
}

.oil-page__series-title.oil-page__series-title--defense span {
	color: #ff8137
}

@media screen and (max-width: 992px) {
	.oil-page__series-title {
		font-size: 44px;
		line-height: 44px;
		margin-bottom: 24px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__series-title {
		font-size: 36px;
		line-height: 36px;
		margin-bottom: 8px
	}
}

.oil-page__series-description {
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	color: #fff;
	margin-bottom: 64px
}

@media screen and (max-width: 992px) {
	.oil-page__series-description {
		margin-bottom: 56px
	}
}

@media screen and (max-width: 992px) {
	.oil-page__series-description {
		margin-bottom: 40px
	}
}

.oil-page__series .slick-dots {
	bottom: -6px
}

.oil-page__series .slick-dots li {
	width: 48px;
	height: 6px;
	border-radius: 8px;
	background-color: #212121;
	border: none;
	margin: 0 8px
}

.oil-page__series .slick-dots li.slick-active {
	background-color: #ff0
}

.oil-page__series .slick-arrow {
	border: 1px solid #7c7c7c;
	border-radius: 12px;
	width: 56px;
	height: 56px;
	top: 50%;
	transform: translateY(-50%)
}

.oil-page__series .slick-arrow:before {
	border: 2px solid #ededed
}

@media screen and (max-width: 992px) {
	.oil-page__series .slick-arrow {
		top: 225px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__series .slick-arrow {
		top: 110px;
		width: 40px;
		height: 40px
	}
}

.oil-page__series .slick-arrow.slick-prev {
	left: -70px
}

@media screen and (max-width: 992px) {
	.oil-page__series .slick-arrow.slick-prev {
		left: 0
	}
}

.oil-page__series .slick-arrow.slick-prev:before {
	border-bottom-color: rgba(0, 0, 0, 0);
	border-right-color: rgba(0, 0, 0, 0);
	margin-top: -4px;
	margin-right: -6px
}

.oil-page__series .slick-arrow.slick-next {
	right: -70px
}

@media screen and (max-width: 992px) {
	.oil-page__series .slick-arrow.slick-next {
		right: 0
	}
}

.oil-page__series .slick-arrow.slick-next:before {
	border-top-color: rgba(0, 0, 0, 0);
	border-left-color: rgba(0, 0, 0, 0)
}

.oil-page__more {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 621px;
	padding: 0 56px;
	background-color: #121417;
	border-radius: 12px;
	position: relative;
	margin-bottom: 96px
}

@media screen and (max-width: 1250px) {
	.oil-page__more {
		flex-direction: column;
		align-items: flex-start;
		padding: 56px;
		min-height: auto
	}
}

@media screen and (max-width: 992px) {
	.oil-page__more {
		margin-bottom: 64px;
		padding: 56px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__more {
		padding: 24px 8px 4px 8px;
		margin-bottom: 32px
	}
}

.oil-page__more-info {
	width: 50%
}

@media screen and (max-width: 1250px) {
	.oil-page__more-info {
		width: 100%
	}
}

.oil-page__more:before {
	content: "";
	display: block;
	position: absolute;
	width: 1179px;
	height: 619px;
	background-image: url("/assets/images/oil/shadow-more-image-desc.svg");
	background-repeat: no-repeat;
	top: 0;
	right: 0
}

@media screen and (max-width: 992px) {
	.oil-page__more:before {
		background-image: url("/assets/images/oil/shadow-more-image-tablet.svg");
		width: 100%;
		height: 705px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__more:before {
		background-image: url("/assets/images/oil/shadow-more-image-mobile.svg");
		height: 388px;
		top: auto;
		bottom: 0
	}
}

.oil-page__more-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 72px;
	font-weight: 700;
	line-height: 64px;
	margin-bottom: 8px;
	position: relative
}

@media screen and (max-width: 767px) {
	.oil-page__more-title {
		font-size: 36px;
		line-height: 40px
	}
}

.oil-page__more-title span {
	color: #ff0
}

.oil-page__more-description {
	margin-bottom: 32px;
	font-size: 20px;
	line-height: 26px
}

.oil-page__more-btn {
	min-width: 279px;
	text-decoration: none
}

@media screen and (max-width: 1250px) {
	.oil-page__more-btn {
		margin-bottom: 22px
	}
}

@media screen and (max-width: 767px) {
	.oil-page__more-btn {
		min-width: 100%
	}
}

.oil-page__more-btn:hover {
	text-decoration: none
}

.oil-page__more-img {
	position: relative;
	width: 50%;
	min-height: 532px
}

@media screen and (max-width: 1250px) {
	.oil-page__more-img {
		min-height: auto;
		width: 100%
	}
}

@media screen and (max-width: 767px) {
	.oil-page__more-img {
		width: 393px;
		margin: 0 auto
	}
}

@media screen and (max-width: 1250px) {
	.oil-page__more-img .oil-more-image-desktop {
		display: none
	}
}

.oil-page__more-img:after {
	content: "";
	position: absolute;
	border-radius: 891px;
	opacity: .8;
	background: #02070d;
	filter: blur(52px);
	width: 891px;
	height: 128px;
	bottom: 0;
	right: 0
}

@media screen and (max-width: 1250px) {
	.oil-page__more-img:after {
		border-radius: 644px;
		width: 644px;
		height: 92px;
		left: 0;
		margin: auto
	}
}

@media screen and (max-width: 767px) {
	.oil-page__more-img:after {
		border-radius: 372px;
		width: 372px;
		height: 53px;
		left: 0;
		margin: auto
	}
}

.oil-page__more-img:before {
	content: "";
	position: absolute;
	width: 500px;
	height: 168px;
	transform: rotate(-177deg);
	background: #02070d;
	filter: blur(52px);
	top: 30%;
	left: 22%;
	opacity: 0
}

@media screen and (max-width: 1250px) {
	.oil-page__more-img:before {
		display: none
	}
}

.oil-page__more-img img {
	max-width: 100%;
	position: absolute;
	z-index: 1;
	transition: all .8s ease 0s;
	transform: scale(0.7);
	opacity: 0
}

@media screen and (max-width: 1250px) {
	.oil-page__more-img img {
		position: relative;
		margin: 0 auto
	}
}

.oil-page__more-img .oil-more-image-1 {
	right: 275px;
	top: 30px
}

.oil-page__more-img .oil-more-image-2 {
	right: -120px;
	top: 35px
}

.oil-page__more-img .oil-more-image-3 {
	right: 55px
}

.oil-page__more-img .oil-more-image-tablet {
	display: none
}

@media screen and (max-width: 1250px) {
	.oil-page__more-img .oil-more-image-tablet {
		display: block;
		left: 25px
	}
}

@media screen and (max-width: 768px) {
	.oil-page__more-img .oil-more-image-tablet {
		left: 0
	}
}

.oil-page__more._active img {
	opacity: 1;
	transform: scale(1)
}

.oil-page__more._active .oil-more-image-1 {
	transition: all .8s ease 1s
}

.oil-page__more._active .oil-more-image-2 {
	transition: all .8s ease .8s
}

.oil-page__more._active .oil-more-image-3 {
	transition: all .8s ease .6s
}

.oil-page__more._active .oil-page__more-img:before {
	opacity: 1;
	transition: all .8s ease 1s
}

.oil-page .oil-slider-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 64px;
	position: relative
}

@media screen and (max-width: 992px) {
	.oil-page .oil-slider-item {
		padding-bottom: 150px;
		flex-direction: column;
		gap: 0
	}
}

@media screen and (max-width: 767px) {
	.oil-page .oil-slider-item {
		padding-bottom: 128px
	}
}

.oil-page .oil-slider-item__product {
	text-align: center;
	min-width: 573px
}

@media screen and (max-width: 1250px) {
	.oil-page .oil-slider-item__product {
		min-width: 473px
	}
}

@media screen and (max-width: 992px) {
	.oil-page .oil-slider-item__product {
		width: 100%
	}
}

.oil-page .oil-slider-item__product-image {
	position: relative
}

@media screen and (max-width: 992px) {
	.oil-page .oil-slider-item__product-image {
		margin-bottom: 56px
	}
}

.oil-page .oil-slider-item__product-image img {
	max-width: 100%;
	position: relative;
	margin: 0 auto
}

@media screen and (max-width: 992px) {
	.oil-page .oil-slider-item__product-image img {
		margin: 0 auto
	}
}

@media screen and (max-width: 767px) {
	.oil-page .oil-slider-item__product-image img {
		height: 196px
	}
}

.oil-page .oil-slider-item__product-btn {
	min-width: 279px;
	text-decoration: none
}

@media screen and (max-width: 992px) {
	.oil-page .oil-slider-item__product-btn {
		position: absolute;
		bottom: 63px;
		left: 0;
		right: 0;
		margin: auto;
		max-width: 279px
	}
}

@media screen and (max-width: 767px) {
	.oil-page .oil-slider-item__product-btn {
		max-width: 100%;
		bottom: 42px
	}
}

.oil-page .oil-slider-item__info {
	flex-grow: 1
}

@media screen and (max-width: 992px) {
	.oil-page .oil-slider-item__info {
		width: 100%
	}
}

.oil-page .oil-slider-item__info-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	margin-bottom: 8px
}

@media screen and (max-width: 767px) {
	.oil-page .oil-slider-item__info-title {
		line-height: 40px
	}
}

.oil-page .oil-slider-item__info-title.animation-title {
	transform: translate(0px, -30px)
}

.oil-page .oil-slider-item__info-title.animation-title._active {
	transform: translate(0px, 0px)
}

.oil-page .oil-slider-item__info-description {
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 32px
}

.oil-page .oil-slider-item__info-list {
	background-color: #121417;
	padding: 24px 24px 24px 41px;
	margin-bottom: 32px;
	border-radius: 12px
}

.oil-page .oil-slider-item__info-list li {
	margin-bottom: 4px;
	font-size: 20px;
	line-height: 26px;
	padding: 12px 0;
	list-style: disc;
	color: #ff0
}

.oil-page .oil-slider-item__info-list li span {
	color: #fff
}

.oil-page .oil-slider-item__info-specifications {
	font-size: 20px;
	line-height: 26px
}

.oil-page .oil-slider-item__info-specifications span {
	font-weight: 600;
	display: block
}

.oil-page .oil-slider-item__info-specifications .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 12px
}

.oil-page .oil-slider-item__info-specifications span.footnote {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #7c7c7c;
	margin-top: 15px
}

.oil-transmission-page {
	overflow: hidden
}

.oil-transmission-page:before {
	content: "";
	display: block;
	position: absolute;
	background-image: url("/assets/images/oil-transmission/oils-transmission-lines.png");
	width: 100%;
	height: 1538px;
	background-repeat: no-repeat;
	background-position: center;
	top: 0;
	background-size: cover;
	z-index: -1
}

@media(max-width: 992px) {
	.oil-transmission-page:before {
		background-image: url("/assets/images/oil-transmission/oils-transmission-lines-tablet.png")
	}
}

@media(max-width: 768px) {
	.oil-transmission-page:before {
		background-image: url("/assets/images/oil-transmission/oils-transmission-lines-mobile.png")
	}
}

.oil-transmission-page__header {
	display: flex;
	align-items: center;
	margin-bottom: 96px;
	margin-top: 92px
}

@media(max-width: 992px) {
	.oil-transmission-page__header {
		flex-wrap: wrap;
		margin-top: 58px;
		margin-bottom: 64px
	}
}

.oil-transmission-page__header-logo {
	margin-bottom: 32px
}

.oil-transmission-page__header-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 86px;
	font-style: normal;
	font-weight: 700;
	line-height: 86px;
	text-transform: uppercase;
	margin-bottom: 32px
}

@media(max-width: 992px) {
	.oil-transmission-page__header-title {
		width: 100%;
		font-size: 64px;
		line-height: normal;
		margin-bottom: 32px
	}
}

@media(max-width: 768px) {
	.oil-transmission-page__header-title {
		font-size: 40px;
		line-height: normal;
		margin-bottom: 16px
	}
}

@media(max-width: 992px) {
	.oil-transmission-page__header-image {
		width: 100%;
		text-align: center
	}
}

@media(max-width: 992px) {
	.oil-transmission-page__header-image img {
		max-width: 100%
	}
}

@media(max-width: 768px) {
	.oil-transmission-page__header-btn {
		width: 100%
	}
}

.oil-transmission-page .block-quality {
	background-color: rgba(0, 0, 0, 0);
	padding: 0
}

.oil-transmission-page__reliability {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 64px
}

@media(max-width: 992px) {
	.oil-transmission-page__reliability {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto;
		margin-bottom: 32px
	}
}

@media(max-width: 768px) {
	.oil-transmission-page__reliability {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto
	}
}

.oil-transmission-page__reliability-item {
	border-radius: 12px;
	background-color: #212121;
	padding: 32px 18px 32px 32px;
	display: flex;
	flex-direction: column
}

@media(max-width: 768px) {
	.oil-transmission-page__reliability-item {
		padding: 24px 16px
	}
}

.oil-transmission-page__reliability-item .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 31px;
	font-weight: 700;
	line-height: 39px;
	margin-bottom: 8px
}

.oil-transmission-page__reliability-item .text {
	font-size: 16px;
	line-height: 26px
}

@media(max-width: 768px) {
	.oil-transmission-page__reliability-item .text {
		font-size: 14px;
		line-height: 20px
	}
}

.oil-transmission-page__reliability-item .icon {
	width: 48px;
	height: 48px;
	margin-bottom: 12px
}

@media(max-width: 768px) {
	.oil-transmission-page__reliability-item .icon {
		width: 32px;
		height: 32px
	}
}

.oil-transmission-page__reliability-item .icon img {
	max-width: 100%
}

.oil-transmission-page__reliability-item.oil-transmission-page__reliability-item--big {
	padding: 24px;
	grid-row: span 2;
	justify-content: center
}

@media(max-width: 992px) {
	.oil-transmission-page__reliability-item.oil-transmission-page__reliability-item--big {
		grid-column: span 3
	}
}

@media(max-width: 768px) {
	.oil-transmission-page__reliability-item.oil-transmission-page__reliability-item--big {
		padding: 24px 16px;
		grid-column: span 2
	}
}

.oil-transmission-page__reliability-item.oil-transmission-page__reliability-item--big .icon {
	width: 72px;
	height: 72px;
	margin-bottom: 24px
}

.oil-transmission-page__info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 16px;
	margin-bottom: 64px
}

@media(max-width: 992px) {
	.oil-transmission-page__info {
		grid-template-columns: 1fr;
		margin-bottom: 32px
	}
}

.oil-transmission-page__info-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 55px;
	text-transform: uppercase;
	margin-bottom: 16px
}

@media screen and (max-width: 992px) {
	.oil-transmission-page__info-title {
		padding-top: 0
	}
}

@media screen and (max-width: 768px) {
	.oil-transmission-page__info-title {
		font-size: 34px;
		line-height: normal
	}
}

.oil-transmission-page__info-text {
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 24px
}

.oil-transmission-page__info-image img {
	max-width: 100%
}

.oil-transmission-page__info-button {
	min-width: 279px
}

@media screen and (max-width: 768px) {
	.oil-transmission-page__info-button {
		width: 100%
	}
}

.oil-transmission-page__categories {
	margin-bottom: 96px
}

.oil-transmission-page__categories.oil-transmission-page__categories--notSlider .image img {
	min-width: 231px;
	max-width: 231px
}

@media screen and (max-width: 1050px) {
	.oil-transmission-page__categories.oil-transmission-page__categories--notSlider {
		overflow: scroll
	}
	.oil-transmission-page__categories.oil-transmission-page__categories--notSlider .oil-transmission-page__categories-items {
		width: 950px;
		gap: 16px
	}
}

@media screen and (max-width: 992px) {
	.oil-transmission-page__categories {
		margin-bottom: 64px
	}
}

.oil-transmission-page__categories-items {
	width: 90%;
	margin: 0 auto;
	display: flex;
	padding-bottom: 42px
}

@media screen and (max-width: 992px) {
	.oil-transmission-page__categories-items {
		width: 85%
	}
}

.oil-transmission-page__categories-items .slick-arrow {
	top: 30%;
	width: 56px;
	height: 56px;
	border-radius: 12px;
	border: 1px solid #7c7c7c
}

@media screen and (max-width: 768px) {
	.oil-transmission-page__categories-items .slick-arrow {
		width: 40px;
		height: 40px
	}
}

.oil-transmission-page__categories-items .slick-arrow:before {
	border: 2px solid #fff
}

.oil-transmission-page__categories-items .slick-arrow.slick-next {
	right: -60px
}

@media screen and (max-width: 768px) {
	.oil-transmission-page__categories-items .slick-arrow.slick-next {
		right: -50px
	}
}

@media screen and (max-width: 576px) {
	.oil-transmission-page__categories-items .slick-arrow.slick-next {
		right: -40px
	}
}

.oil-transmission-page__categories-items .slick-arrow.slick-next:before {
	border-top-color: rgba(0, 0, 0, 0);
	border-left-color: rgba(0, 0, 0, 0)
}

@media screen and (max-width: 768px) {
	.oil-transmission-page__categories-items .slick-arrow.slick-next:before {
		margin-top: -4px
	}
}

.oil-transmission-page__categories-items .slick-arrow.slick-prev {
	left: -60px
}

@media screen and (max-width: 768px) {
	.oil-transmission-page__categories-items .slick-arrow.slick-prev {
		left: -50px
	}
}

@media screen and (max-width: 576px) {
	.oil-transmission-page__categories-items .slick-arrow.slick-prev {
		left: -40px
	}
}

.oil-transmission-page__categories-items .slick-arrow.slick-prev:before {
	border-bottom-color: rgba(0, 0, 0, 0);
	border-right-color: rgba(0, 0, 0, 0);
	right: 46%
}

@media screen and (max-width: 768px) {
	.oil-transmission-page__categories-items .slick-arrow.slick-prev:before {
		margin-right: -6px;
		margin-top: -5px
	}
}

.oil-transmission-page__categories-items .slick-dots {
	bottom: 0
}

@media screen and (max-width: 576px) {
	.oil-transmission-page__categories-items .slick-dots li {
		margin: 0 7px
	}
}

.oil-transmission-page__categories-items .slick-dots li.slick-active {
	position: relative;
	width: 10px;
	height: 10px;
	background-color: #ff0
}

.oil-transmission-page__categories-item {
	margin: 0 8px;
	padding: 8px;
	background-color: #212121;
	border-radius: 16px
}

@media screen and (max-width: 576px) {
	.oil-transmission-page__categories-item {
		margin: 0
	}
}

.oil-transmission-page__categories-item .image {
	width: 100%;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center
}

.oil-transmission-page__categories-item .image img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 8px
}

.oil-transmission-page__categories-item .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 4px
}

@media screen and (max-width: 992px) {
	.oil-transmission-page__categories-item .title {
		font-size: 20px
	}
}

@media screen and (max-width: 768px) {
	.oil-transmission-page__categories-item .title {
		font-size: 24px;
		line-height: 32px
	}
}

.oil-transmission-page__categories-item .description {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px
}

@media screen and (max-width: 992px) {
	.oil-transmission-page__categories-item .description {
		font-size: 14px;
		line-height: 20px
	}
}

.oil-transmission-page__categories-item .btn {
	width: 100%
}

.batteries-page {
	overflow: hidden
}

.batteries-page:before {
	content: "";
	display: block;
	position: absolute;
	background-image: url("/assets/images/batteries/batteries-bg-line.png");
	width: 100%;
	height: 1796px;
	background-repeat: no-repeat;
	background-position: center;
	top: 0;
	z-index: -1
}

@media screen and (max-width: 992px) {
	.batteries-page:before {
		background-image: url("/assets/images/batteries/batteries-bg-line-tablet.png");
		background-position: left;
		background-size: cover;
		height: 4732px
	}
}

@media screen and (max-width: 680px) {
	.batteries-page:before {
		background-image: url("/assets/images/batteries/batteries-bg-line-mob.png");
		height: 5504px
	}
}

.batteries-page__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 46px
}

@media screen and (max-width: 992px) {
	.batteries-page__header {
		flex-wrap: wrap;
		margin-top: 64px
	}
}

@media screen and (max-width: 768px) {
	.batteries-page__header {
		margin-top: 32px
	}
}

.batteries-page__header-wrap {
	width: 40%
}

@media screen and (max-width: 992px) {
	.batteries-page__header-wrap {
		width: 100%
	}
}

.batteries-page__header-wrap .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 104px;
	font-weight: 700;
	line-height: 96px;
	text-transform: uppercase;
	position: relative;
	z-index: 1
}

@media screen and (max-width: 992px) {
	.batteries-page__header-wrap .title {
		margin-bottom: 64px
	}
}

@media screen and (max-width: 768px) {
	.batteries-page__header-wrap .title {
		font-size: 48px;
		line-height: 48px;
		margin-bottom: 24px
	}
}

@media screen and (max-width: 576px) {
	.batteries-page__header-wrap .title {
		font-size: 36px;
		line-height: 38px
	}
}

.batteries-page__header-image {
	width: 60%;
	text-align: right
}

@media screen and (max-width: 992px) {
	.batteries-page__header-image {
		width: 100%;
		text-align: center;
		min-height: auto
	}
}

@media screen and (max-width: 992px) {
	.batteries-page__header-image img {
		max-width: 100%
	}
}

.batteries-page__advanced-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 56px;
	text-transform: uppercase;
	margin-bottom: 24px
}

@media screen and (max-width: 768px) {
	.batteries-page__advanced-title {
		font-size: 48px;
		line-height: 48px
	}
}

@media screen and (max-width: 576px) {
	.batteries-page__advanced-title {
		font-size: 36px;
		line-height: 38px
	}
}

.batteries-page__advanced-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px
}

@media screen and (max-width: 992px) {
	.batteries-page__advanced-items {
		grid-template-columns: repeat(1, 1fr)
	}
}

.batteries-page__advanced-item {
	border-radius: 16px;
	background-color: #212121;
	display: flex;
	align-items: center;
	padding: 32px
}

@media screen and (max-width: 768px) {
	.batteries-page__advanced-item {
		padding: 16px
	}
}

.batteries-page__advanced-item .icon {
	margin-right: 24px;
	min-height: 100px
}

@media screen and (max-width: 768px) {
	.batteries-page__advanced-item .icon {
		margin-right: 8px
	}
}

.batteries-page__advanced-item .text {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	text-transform: uppercase
}

@media screen and (max-width: 768px) {
	.batteries-page__advanced-item .text {
		font-size: 20px;
		line-height: 20px
	}
}

@media screen and (max-width: 576px) {
	.batteries-page__advanced-item .text {
		font-size: 18px
	}
}

.batteries-page__standard {
	display: flex
}

@media screen and (max-width: 992px) {
	.batteries-page__standard {
		flex-wrap: wrap
	}
}

.batteries-page__standard-image {
	width: 50%
}

@media screen and (max-width: 992px) {
	.batteries-page__standard-image {
		width: 100%;
		text-align: center;
		margin-bottom: 64px
	}
}

.batteries-page__standard-image img {
	max-width: 100%
}

.batteries-page__standard-wrap {
	width: 50%
}

@media screen and (max-width: 992px) {
	.batteries-page__standard-wrap {
		width: 100%
	}
}

.batteries-page__standard-title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 72px;
	font-weight: 700;
	line-height: 68px;
	text-transform: uppercase;
	margin-bottom: 32px
}

@media screen and (max-width: 768px) {
	.batteries-page__standard-title {
		font-size: 48px;
		line-height: 56px;
		margin-bottom: 16px
	}
}

.batteries-page__standard-text {
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 32px
}

.batteries-page__standard-btn {
	min-width: 279px
}

@media screen and (max-width: 768px) {
	.batteries-page__standard-btn {
		min-width: 100%
	}
}

.batteries-page__line {
	display: flex;
	gap: 97px;
	align-items: center
}

@media screen and (max-width: 992px) {
	.batteries-page__line {
		flex-wrap: wrap;
		gap: 64px
	}
}

.batteries-page__line-text {
	width: 50%
}

@media screen and (max-width: 992px) {
	.batteries-page__line-text {
		width: 100%
	}
}

.batteries-page__line-text .title {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 72px;
	font-weight: 700;
	line-height: 64px;
	text-transform: uppercase;
	margin-bottom: 32px
}

@media screen and (max-width: 768px) {
	.batteries-page__line-text .title {
		font-size: 48px;
		line-height: 52px;
		margin-bottom: 16px
	}
}

.batteries-page__line-text .text {
	font-size: 18px;
	line-height: 26px
}

.batteries-page__line-icon {
	width: 50%;
	display: flex;
	gap: 32px
}

@media screen and (max-width: 992px) {
	.batteries-page__line-icon {
		width: 100%
	}
}

@media screen and (max-width: 768px) {
	.batteries-page__line-icon {
		flex-direction: column
	}
}

.batteries-page__line-icon .item {
	display: flex;
	align-items: center;
	flex-direction: column
}

.batteries-page__line-icon .item .icon {
	margin-bottom: 16px
}

.batteries-page__line-icon .item .name {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	text-align: center
}

.batteries-page__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 88px
}

@media screen and (max-width: 992px) {
	.batteries-page__items {
		grid-template-columns: repeat(1, 1fr);
		gap: 32px
	}
}

@media screen and (max-width: 992px) {
	.batteries-page__item {
		display: flex;
		align-items: center
	}
}

@media screen and (max-width: 768px) {
	.batteries-page__item {
		flex-direction: column
	}
}

.batteries-page__item-image {
	margin-bottom: 32px
}

@media screen and (max-width: 992px) {
	.batteries-page__item-image {
		margin-right: 16px;
		margin-bottom: 0
	}
}

@media screen and (max-width: 992px) {
	.batteries-page__item-image {
		text-align: center;
		margin-right: 0
	}
}

.batteries-page__item-image img {
	max-width: 100%
}

@media screen and (max-width: 992px) {
	.batteries-page__item-image img {
		max-width: 368px
	}
}

@media screen and (max-width: 768px) {
	.batteries-page__item-image img {
		max-width: 100%
	}
}

.batteries-page__item-name {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 56px;
	margin-bottom: 8px
}

@media screen and (max-width: 768px) {
	.batteries-page__item-name {
		line-height: 44px
	}
}

.batteries-page__item-text {
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 24px
}

.batteries-page__item-btn {
	max-width: 279px
}

@media screen and (max-width: 768px) {
	.batteries-page__item-btn {
		min-width: 100%
	}
}

.batteries-page__item-info {
	display: flex;
	flex-direction: column
}

.static-page__title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 56px;
	line-height: 64px;
	margin-bottom: 16px
}

.static-page__back {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c;
	margin-bottom: 8px;
	cursor: pointer
}

.static-page__description {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c;
	margin-bottom: 32px
}

.static-page__content {
	max-width: 1456px;
	margin: 0 auto
}

@media only screen and (max-width: 1300px) {
	.static-page__content {
		padding: 0 10px
	}
}

.static-page__content p {
	font-weight: 400;
	margin-bottom: 8px
}

.static-page__content p strong {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 32px;
	display: block
}

.static-page__content h2 {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 32px
}

.static-page__content ol {
	list-style: decimal;
	padding-left: 15px
}

.static-page__content ol li {
	margin-bottom: 16px
}

.static-page__content.static-page__content-policy ul {
	list-style: disc;
	padding-left: 36px;
	margin-bottom: 16px
}

.static-page__content.static-page__content-policy ul li {
	font-size: 14px;
	line-height: 20px;
	margin-top: 8px
}

.static-page__content.static-page__content-policy a {
	text-decoration: underline
}

.static-page__content.static-page__content-policy p {
	margin-bottom: 16px
}

.static-page__content.static-page__content-policy h3 {
	margin-bottom: 16px;
	font-size: 18px
}

.static-page__content.static-page__content-policy strong {
	font-size: 16px
}

@media only screen and (max-width: 768px) {
	.static-page__content.static-page__content-policy .static-page__title {
		font-size: 32px
	}
}

.static-page__unsubscribe {
	display: flex;
	justify-content: center;
	margin-top: 24px
}

.static-page__unsubscribe-button {
	margin: 0 10px
}

.faq-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 80px
}

@media screen and (max-width: 992px) {
	.faq-items {
		grid-template-columns: repeat(1, 1fr);
		gap: 24px
	}
}

.faq-item {
	background-color: #121417;
	border-radius: 24px;
	padding: 32px;
	cursor: pointer
}

.faq-item__title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 16px;
	position: relative
}

@media screen and (max-width: 992px) {
	.faq-item__title {
		margin-bottom: 0;
		padding-right: 35px
	}
	.faq-item__title:after {
		content: "";
		top: 50%;
		right: 14px;
		margin-top: -4px;
		border-right: 2px solid #ededed;
		border-bottom: 2px solid #ededed;
		height: 12px;
		width: 12px;
		position: absolute;
		transition: all .3s ease;
		pointer-events: none;
		transform: rotate(45deg) translateY(-50%)
	}
}

.faq-item__title span {
	color: #ff0
}

.faq-item__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px
}

@media screen and (max-width: 992px) {
	.faq-item__text {
		display: none
	}
}

.faq-item.open .faq-item__title {
	margin-bottom: 16px
}

.faq-item.open .faq-item__title:after {
	transform: rotate(225deg) translateY(-50%);
	right: 8px
}

.faq-item.open .faq-item__text {
	display: block
}

.faq-contact {
	display: flex;
	align-items: center;
	margin-bottom: 64px
}

@media screen and (max-width: 1270px) {
	.faq-contact {
		flex-wrap: wrap
	}
}

.faq-contact__col {
	width: 50%
}

@media screen and (max-width: 1270px) {
	.faq-contact__col {
		width: 100%
	}
}

.faq-contact__title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 64px;
	line-height: 64px;
	margin-bottom: 32px;
	color: #f7f7f7;
	max-width: 573px
}

@media screen and (max-width: 992px) {
	.faq-contact__title {
		max-width: 100%
	}
}

.faq-contact__title span {
	color: #ff0
}

.faq-contact__description {
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: #7c7c7c;
	max-width: 573px
}

@media screen and (max-width: 1270px) {
	.faq-contact__description {
		margin-bottom: 56px
	}
}

@media screen and (max-width: 992px) {
	.faq-contact__description {
		max-width: 100%
	}
}

.faq-contact__body {
	background-color: #f7f7f7;
	border-radius: 32px;
	padding: 32px
}

@media screen and (max-width: 1270px) {
	.faq-contact__body {
		width: 70%;
		margin: 0 auto
	}
}

@media screen and (max-width: 992px) {
	.faq-contact__body {
		width: 100%
	}
}

@media screen and (max-width: 650px) {
	.faq-contact__body {
		padding: 32px 12px
	}
}

.faq-contact__body-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	color: #02070d;
	margin-bottom: 32px;
	text-align: center;
	text-transform: uppercase
}

.index-page:before {
	content: "";
	display: block;
	position: absolute;
	background-image: url("main-bg-2.png");
	width: 100%;
	height: 1538px;
	background-repeat: no-repeat;
	background-position: center;
	top: 0;
	z-index: -1
}

@media screen and (max-width: 992px) {
	.index-page:before {
		background-image: url("/assets/images/index/main-bg-tablet.png");
		background-position: left;
		background-size: cover
	}
}

@media screen and (max-width: 680px) {
	.index-page:before {
		background-image: url("/assets/images/index/main-bg-mob.png")
	}
}

.index-page__about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	grid-auto-rows: 280px;
	margin-bottom: 64px
}

@media screen and (max-width: 1050px) {
	.index-page__about {
		margin-top: 0
	}
}

@media screen and (max-width: 992px) {
	.index-page__about {
		grid-auto-rows: 192px;
		margin-bottom: 32px
	}
}

@media screen and (max-width: 680px) {
	.index-page__about {
		display: block
	}
}

.index-page__about-item {
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: underline
}

@media screen and (max-width: 680px) {
	.index-page__about-item {
		margin-bottom: 16px;
		overflow: hidden
	}
}

.index-page__about-image {
	display: block;
	height: 280px;
	width: 100%
}

@media screen and (max-width: 992px) {
	.index-page__about-image {
		height: 192px
	}
}

@media screen and (max-width: 680px) {
	.index-page__about-image {
		overflow: hidden;
		height: 230px;
		border-radius: 16px
	}
}

.index-page__about-image img {
	transition: all .3s ease;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center
}

.index-page__about-image:hover img {
	transform: scale(1.1)
}

.index-page__about .btn {
	position: absolute;
	right: 32px;
	bottom: 32px
}

@media screen and (max-width: 992px) {
	.index-page__about .btn {
		right: 16px;
		bottom: 16px
	}
}

@media screen and (max-width: 680px) {
	.index-page__about .btn {
		position: relative;
		width: 100%;
		right: 0;
		bottom: 0;
		margin-top: 16px
	}
}

.index-page__space {
	margin-bottom: 96px;
	overflow: hidden
}

@media screen and (max-width: 992px) {
	.index-page__space {
		margin-bottom: 64px
	}
}

@media screen and (max-width: 768px) {
	.index-page__space {
		margin-bottom: 48px
	}
}

.index-page__space-body {
	display: grid;
	grid-template-columns: 1fr 710px;
	align-items: center;
	position: relative;
	min-height: 710px
}

@media screen and (max-width: 992px) {
	.index-page__space-body {
		grid-template-columns: 1fr
	}
}

.index-page__space-text {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 458px;
	height: 458px;
	justify-content: center
}

@media screen and (max-width: 992px) {
	.index-page__space-text {
		margin: 0 auto
	}
}

@media screen and (max-width: 768px) {
	.index-page__space-text {
		width: 292px;
		height: 292px
	}
}

.index-page__space-text:after {
	content: "";
	display: block;
	position: absolute;
	background-image: url("/assets/images/index/space-image.svg");
	width: 458px;
	height: 458px
}

@media screen and (max-width: 768px) {
	.index-page__space-text:after {
		width: 292px;
		height: 292px;
		background-size: 100%
	}
}

.index-page__space-text .wrap {
	display: flex;
	flex-direction: column
}

.index-page__space-text p {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 56px;
	font-weight: 700;
	line-height: 64px;
	text-transform: uppercase;
	text-align: center
}

@media screen and (max-width: 768px) {
	.index-page__space-text p {
		font-size: 28px;
		line-height: normal
	}
}

.index-page__space-text p.sold {
	width: 100%;
	text-align: center;
	margin-bottom: 24px
}

.index-page__space-text p.num {
	font-size: 128px;
	font-weight: 700;
	line-height: 120px;
	color: #ff0;
	margin-bottom: 24px
}

@media screen and (max-width: 768px) {
	.index-page__space-text p.num {
		font-size: 72px;
		line-height: normal
	}
}

.index-page__space-map {
	position: relative
}

.index-page__space-map svg {
	max-width: 100%;
	position: relative
}

.index-page__space-map .points.active {
	stroke: #ff0 !important;
	stroke-opacity: .9;
	stroke-width: 3px;
	fill: #ff0 !important;
	fill-opacity: .75;
	animation: pulse 3s ease infinite
}

.index-page__space-map .active-first {
	stroke: #ff0 !important;
	stroke-opacity: .9;
	fill: #ff0 !important;
	fill-opacity: .4;
	animation: pulse-third 3s ease infinite
}

.index-page__space-map .active-second {
	stroke: #ff0 !important;
	stroke-opacity: .9;
	fill: #ff0 !important;
	fill-opacity: .3;
	animation: pulse-second 3s ease infinite
}

.index-page__space-map .active-third {
	stroke: #ff0 !important;
	stroke-opacity: .9;
	fill: #ff0 !important;
	fill-opacity: .25;
	animation: pulse-first 3s ease infinite
}

@keyframes pulse {
	0% {
		opacity: 0
	}
	25% {
		opacity: .5
	}
	50% {
		opacity: .9
	}
	75% {
		opacity: .5
	}
	100% {
		opacity: .6
	}
}

@keyframes pulse-first {
	0% {
		opacity: 0;
		stroke-width: 0
	}
	25% {
		opacity: .1
	}
	50% {
		stroke-width: 12px;
		opacity: .2
	}
	75% {
		opacity: .1
	}
	100% {
		stroke-width: 0;
		opacity: 0
	}
}

@keyframes pulse-second {
	0% {
		opacity: 0;
		stroke-width: 4px
	}
	25% {
		opacity: .1
	}
	50% {
		stroke-width: 16px;
		opacity: .2
	}
	75% {
		opacity: .1
	}
	100% {
		stroke-width: 0;
		opacity: 0
	}
}

@keyframes pulse-third {
	0% {
		opacity: 0;
		stroke-width: 6px
	}
	25% {
		opacity: .2
	}
	50% {
		stroke-width: 20px;
		opacity: .4
	}
	75% {
		opacity: .2
	}
	100% {
		stroke-width: 0;
		opacity: 0
	}
}

.index-page .block-brands .block-brands__item .more {
	text-decoration: underline;
	font-weight: 700;
	font-size: 16px;
	text-transform: lowercase;
	display: block;
	cursor: pointer
}

.index-page .block-brands .block-brands__item .more:first-letter {
	text-transform: uppercase
}

.index-page__advantages {
	background-color: #212121;
	border-radius: 32px;
	padding: 32px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 72px;
	margin-bottom: 96px;
	list-style: none
}

@media screen and (max-width: 1050px) {
	.index-page__advantages {
		grid-template-columns: repeat(1, 1fr)
	}
}

@media screen and (max-width: 992px) {
	.index-page__advantages {
		margin-bottom: 64px
	}
}

@media screen and (max-width: 768px) {
	.index-page__advantages {
		padding: 16px;
		gap: 16px 72px;
		margin-bottom: 48px
	}
}

.index-page__advantages-item {
	display: flex;
	align-items: center
}

@media screen and (max-width: 700px) {
	.index-page__advantages-item {
		flex-wrap: wrap
	}
}

.index-page__advantages-item .icon {
	min-width: 128px;
	max-height: 128px;
	margin-right: 24px
}

@media screen and (max-width: 1050px) {
	.index-page__advantages-item .icon {
		min-width: 96px
	}
}

@media screen and (max-width: 700px) {
	.index-page__advantages-item .icon {
		margin: 0 auto 24px;
		text-align: center;
		width: 100%
	}
}

@media screen and (max-width: 768px) {
	.index-page__advantages-item .icon img {
		max-width: 90px
	}
}

.index-page__advantages-item .title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 16px;
	color: #fff
}

.index-page__advantages-item .title span {
	color: #ff0
}

.index-page__advantages-item .desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #7c7c7c
}

.index-page__video {
	width: 100%;
	margin-bottom: 64px;
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	padding-bottom: 60%;
	background-color: #000
}

@media screen and (max-width: 768px) {
	.index-page__video {
		margin-bottom: 32px
	}
}

.index-page__video-wrap {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 64px
}

@media screen and (max-width: 992px) {
	.index-page__video-wrap {
		gap: 32px
	}
}

.index-page__video-label {
	max-width: 100%;
	height: auto;
	transition: all .3s ease
}

@media screen and (max-width: 992px) {
	.index-page__video-label {
		max-width: 40%
	}
}

.index-page__video-label:hover {
	transform: scale(1.1)
}

.index-page__video-play {
	cursor: pointer;
	transition: all .3s ease;
	fill: #ff0
}

.index-page__video-play:hover {
	fill: #fff30a
}

@media screen and (max-width: 992px) {
	.index-page__video-play {
		max-width: 128px
	}
}

@media screen and (max-width: 768px) {
	.index-page__video-play {
		max-width: 64px;
		height: 64px
	}
}

.index-page__video.show {
	padding: 0;
	height: 819px
}

@media screen and (max-width: 992px) {
	.index-page__video.show {
		height: 545px
	}
}

@media screen and (max-width: 768px) {
	.index-page__video.show {
		height: 345px
	}
}

.main-slider {
	width: 100%;
	margin-top: 96px;
	margin-bottom: 70px;
	height: 576px
}

@media screen and (max-width: 992px) {
	.main-slider {
		margin-top: 24px;
		height: auto
	}
}

@media screen and (max-width: 767px) {
	.main-slider {
		margin-bottom: 54px
	}
}

.main-slider__item {
	padding-bottom: 96px
}

@media screen and (max-width: 992px) {
	.main-slider__item {
		padding-bottom: 48px
	}
}

.main-slider__item .container {
	width: 1456px
}

.main-slider__item.slick-slide {
	display: flex
}

.main-slider__item.slick-slide.slick-active .scale-anim {
	opacity: 1;
	transform: scale(1);
	transition: all .8s ease 1s
}

.main-slider__item.slick-slide.slick-active .animation-show {
	opacity: 1;
	transition: all .8s ease 1s
}

.main-slider__item.slick-slide.slick-active .main-slider__item-title._active,
.main-slider__item.slick-slide.slick-active .main-slider__item-description._active,
.main-slider__item.slick-slide.slick-active .main-slider__item-btn._active,
.main-slider__item.slick-slide.slick-active .main-slider__item-logo._active {
	opacity: 1;
	transform: translate(0px, 0px);
	transition: all .8s ease .6s
}

.main-slider__item .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 13px
}

@media screen and (max-width: 992px) {
	.main-slider__item .container {
		flex-wrap: wrap;
		gap: 0
	}
}

.main-slider__item-wrap {
	width: 50%
}

@media screen and (max-width: 992px) {
	.main-slider__item-wrap {
		width: 100%
	}
}

.main-slider__item-title {
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 80px;
	line-height: 80px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 32px;
	padding-top: 5px;
	position: relative;
	z-index: 5
}

@media screen and (max-width: 1200px) {
	.main-slider__item-title {
		font-size: 72px;
		line-height: 72px
	}
}

@media screen and (max-width: 767px) {
	.main-slider__item-title {
		font-size: 48px;
		line-height: 48px
	}
}

@media screen and (max-width: 450px) {
	.main-slider__item-title {
		font-size: 40px;
		line-height: 42px
	}
}

.main-slider__item-title span {
	color: #ff0
}

.main-slider__item-title span.plus {
	display: block
}

.main-slider__item-logo {
	margin-bottom: 24px
}

.main-slider__item-description {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 32px
}

@media screen and (max-width: 767px) {
	.main-slider__item-description {
		font-size: 18px;
		margin-bottom: 32px
	}
}

.main-slider__item-btn {
	min-width: 278px
}

@media screen and (max-width: 992px) {
	.main-slider__item-btn {
		margin-bottom: 32px
	}
}

@media screen and (max-width: 767px) {
	.main-slider__item-btn {
		min-width: 100%
	}
}

.main-slider__item-title,
.main-slider__item-description,
.main-slider__item-btn,
.main-slider__item-logo {
	transition: all .8s ease;
	opacity: 0;
	transform: translate(0px, -10px)
}

.main-slider__item-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	margin: 0 auto;
	height: 480px;
	position: relative
}

@media screen and (max-width: 992px) {
	.main-slider__item-image {
		width: 720px
	}
}

@media screen and (max-width: 767px) {
	.main-slider__item-image {
		width: 100%;
		height: 230px
	}
}

.main-slider__item-image picture {
	display: flex;
	align-items: center;
	justify-content: center
}

.main-slider__item-image .image-slide {
	position: absolute;
	transition: all .8s ease;
	max-width: 100%;
	max-height: 100%
}

.main-slider__item-image .image-center {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto
}

.main-slider__item-image .scale-anim {
	transform: scale(0.7);
	opacity: 0
}

.main-slider .slick-dots {
	bottom: -6px;
	z-index: 10
}

.main-slider .slick-dots li {
	width: 48px;
	height: 6px;
	background-color: #212121;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0);
	transition: all .25s ease
}

.main-slider .slick-dots li:hover {
	background-color: #494949
}

.main-slider .slick-dots li.slick-active {
	background-color: #ff0
}


/*# sourceMappingURL=main-npx-new.css.map*/
