/* defaults */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/OpenSans-Variable.ttf') format('ttf');
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
	height: 100%;
}

/* normalize */
img {
	max-width: 100%;
	height: auto;
}
iframe {
	max-width: 100%;
	border: none;
}
button {
	border-radius: 0;
}
input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
button:focus,
input:focus,
button:focus,
select:focus,
optgroup:focus,
textarea:focus,
a:focus {
	outline: none;
}
button,
select {
	text-transform: none;
}
[role=button] {
	cursor: pointer;
}
select {
	word-wrap: normal;
}
[list]::-webkit-calendar-picker-indicator {
  display: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
	cursor: pointer;
}
::-moz-focus-inner {
	padding: 0;
	border-style: none;
}
textarea {
	resize: vertical;
}
p {
	margin-top: 0;
	margin-bottom: 1rem;
}
p:last-child {
	margin-bottom: 0;
}

/* icons */
.icon {
	display: inline-block;
	vertical-align: middle;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
	flex-shrink: 0;
}
.icon-location {
	width: 0.75em;
}
.icon-check {
	width: 1.142578125em;
	margin-left: .1em;
	margin-top: .2em;
}
.icon-car {
	width: 1.25em;
	height: 1.25em;
}
.icon_size_xs {
	font-size: .6em;
}
.icon_size_sm {
	font-size: .833em;
}
.icon_size_lg {
	font-size: 1.5em;
}

/* input, textarea */
.input,
.textarea {
	color: #000;
	background-color: #EFEFEF;
	border-radius: 5px;
	border: 1px solid transparent;
}
.input {
	height: 44px;
	padding: 0 40px 0 24px;
}
.textarea {
	padding: 12px 24px;
}
.input:invalid,
.textarea:invalid {
	box-shadow: none;
}
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #aeaeae;
}
.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #aeaeae;
  opacity:  1;
}
.input::placeholder,
.textarea::placeholder {
  color: #aeaeae;
}
.input:not(:disabled):hover,
.textarea:not(:disabled):hover {
	border-color: #DCDCDC;
}
.input:not(:disabled):focus,
.textarea:not(:disabled):focus {
	background-color: #FAFAFA;
	border-color: #A5A5A5;
}

/* styled-checkbox */
.styled-checkbox {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: #999;
	width: 16px;
	height: 16px;
	border-radius: 5px;
	border: 1px solid #CCCCCC;
	cursor: pointer;
	position: relative;
	background: #D7D7D7;
	vertical-align: middle;
}
.styled-checkbox:before {
	border-bottom: 2px solid;
	border-left: 2px solid;
	height: 5px;
	width: 8px;
	transform: translate(-50%,calc(-50% - 1px)) rotate(-45deg);
}
.styled-checkbox:before {
	content: "";
	position: absolute;
	pointer-events: none;
	left: 50%;
	top: 50%;
	opacity: 0;
}
.styled-checkbox:not(:disabled):active {
	border-color: currentColor;
}
.styled-checkbox:checked {
	border-color: transparent;
	background-color: #0075FF;
	color: #fff;
}
.styled-checkbox:checked:before {
	opacity: 1;
}
.styled-checkbox:disabled {
	opacity: .5;
	cursor: not-allowed;
	pointer-events: none;
}

/* btn */
.btn {
	border-radius: 5px;
	padding: 0 24px;
	height: 44px;
	min-width: 135px;
	line-height: 1.2;
	border: none;
	display: inline-flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	text-decoration: none;
}
.btn_theme_primary {
	background-color: #B20600;
	color: #fff;
}
.btn_theme_primary:hover {
	background-color: #D90700;
}
.btn_theme_secondary {
	background-color: #373737;
	color: #fff;
}
.btn_theme_secondary:hover {
	background-color: #111;
}
.btn_theme_light {
	background-color: #E1E1E1;
	color: #6C6C6C;
}
.btn_theme_light:hover {
	background-color: #b20600;
	color: #fff;
}
.btn_theme_bordered {
	border: 2px solid #898989;
	color: #5F5151;
	background-color: transparent;
}
.btn_theme_bordered:hover {
	border-color: #373737;
	background-color: #373737;
	color: #fff;
}
.btn_size_small {
	height: 32px;
	min-width: 0;
}
.btn_size_lg {
	font-size: 14px;
}
.btn_size_xl {
	font-size: 16px;
}
.btn__icon:first-child {
	margin-right: 12px;
}
.btn__icon:last-child {
	margin-left: 12px;
}

/* filter-btn */
.filter-btn {
	text-decoration: none;
	background-color: #000000;
	height: 30px;
	padding: 0 12px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	border-radius: 5px;
}
.filter-btn__icon {
	margin-left: 10px;
}

/* cat-btn */
.cat-btn {
	width: 100%;
	height: 44px;
	padding: 0 16px;
	color: #fff;
	display: flex;
	align-items: center;
	border-radius: 5px;
	background-color: #242424;
	text-decoration: none;
}
.cat-btn__label {
	font-weight: 700;
	font-size: 14px;
}
.cat-btn__icon {
	margin-right: 10px;
	font-size: 20px;
}
@media(hover: hover) {
	.cat-btn:hover {
		background-color: #8D1F19;
	}
}
@media(min-width: 992px) {
	.cat-btn {
		display: none;
	}
}

/* installment-btn */
.installment-btn {
	display: inline-flex;
	align-items: center;
	color: #656565;
}
.installment-btn__icon {
	margin-right: 8px;
	font-size: 20px;
	color: #B20600;
}
.installment-btn:hover {
	text-decoration: none;
	color: #b20600;
}

/* simple-btn */
.simple-btn {
	text-decoration: none;
	color: inherit;
	display: inline-flex;
	align-items: center;
	padding: 0;
	border: none;
	background-color: transparent;
}
.simple-btn_size_lg {
	font-size: 14px;
}
.simple-btn__icon {
	font-size: .667em;
}
.simple-btn__icon:first-child {
	margin-right: 15px;
}
.simple-btn__icon:last-child {
	margin-left: 15px;
}
.simple-btn:hover {
	color: #b20600;
}

/* page */
.page {
	min-width: 320px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	margin: 0;
	color: #505050;
	font: 12px/1.4 'Open Sans', sans-serif;
	background-color: #efefef;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.page_noscroll {
	overflow: hidden;
}
.page__content {
	flex-shrink: 0;
	margin-bottom: auto;
}
.page__cart-header {
	margin-bottom: 50px;
}
.page__load-more {
	margin-top: 32px;
}
.page__bottom-pagination {
	margin-top: 10px;
}
.page__sort-panel {
	margin-bottom: 20px;
}
.page__features {
	margin-top: 60px;
}
.page__footer {
	margin-top: 59px;
}
.page__tags {
	margin-bottom: 24px;
}
.page__cat-btn {
	margin-bottom: 24px;
}
.page__subcategories {
	margin-bottom: 30px;
}
.page__category-brands {
	margin-bottom: 35px;
}
.page__brand-info {
	margin-bottom: 30px;
}

/* container */
.container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 10px);
	padding-left: var(--bs-gutter-x, 10px);
	margin-right: auto;
	margin-left: auto;
}
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container {
		max-width: 1280px;
	}
}
.row {
	--bs-gutter-x: 16px;
	--bs-gutter-y: 16px;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) / -2);
	margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) / 2);
	padding-left: calc(var(--bs-gutter-x) / 2);
	margin-top: var(--bs-gutter-y);
}
@media (min-width: 375px) {
	.col-xxs-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}
@media (min-width: 480px) {
	.col-xs-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}
@media (min-width: 576px) {
	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}
@media (min-width: 768px) {
	.col-md-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
}
@media (min-width: 992px) {
	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}
	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}
}
.gy-0 {
	--bs-gutter-y: 0;
}
.g-8 {
	--bs-gutter-x: 8px;
	--bs-gutter-y: 8px;
}

/* swiper */
.swiper-slide {
	height: auto;
}
.swiper-container-horizontal > .swiper-scrollbar {
	height: 6px;
	left: 0;
	width: 100%;
}
.swiper-scrollbar-drag {
	background: #B20600;
	border-radius: 2px;
	cursor: grab;
}

/* select */
.select {
	border-radius: 5px;
	border: 1px solid transparent;
	height: 44px;
	padding: 0 40px 0 18px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #EFEFEF url(../img/select-arrow.svg) center right 21px / 8px no-repeat;
}
.select:not(:disabled) {
	cursor: pointer;
}
.select_size_small {
	height: 30px;
	padding-left: 10px;
	padding-right: 25px;
	background-position: center right 10px;
}
.select_theme_grey {
	background-color: #D7D7D7;
}

/* load-more */
.load-more {
	background-color: #d0d0d0;
	border-radius: 5px;
	width: 100%;
	border: 1px solid transparent;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.load-more:hover {
	border-color: #b9b9b9;
}
.load-more__label {
	color: #333;
}
.load-more__accented {
	color: #2f2f2f;
}
.load-more__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	background-color: #b7b7b7;
	border-radius: 50%;
	flex-shrink: 0;
	margin-left: 10px;
	color: #7D7D7D;
}
.load-more_expanded .load-more__arrow {
	transform: rotate(180deg);
}

/* heading */
.heading{font-weight:700;color:#000;line-height:1.2}
.heading_size_h1{font-size:24px}
.heading_size_h2{font-size:16px}
.heading_size_h3{font-size:14px}
.heading_size_h4{font-size:13px}
.heading_size_h5{font-size:12px}
.heading_size_h6{font-size:12px;}

/* top-bar */
.top-bar {
/*	background: #E1E1E1;*/
	background-color: white;
}
.top-bar__location {
	display: none;
}
.top-bar__auth {
	padding: 10px;
	border-top: 1px solid #454545;
}
@media (min-width: 992px) {
	.top-bar__row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-top: 3px;
		padding-bottom: 3px;
	}
	.top-bar__location {
		display: block;
	}
	.top-bar__location {
		margin-right: 16px;
	}
	.top-bar__nav {
		margin-top: -3px;
		margin-bottom: -3px;
		margin-right: 16px;
	}
	.top-bar__auth {
		padding: 0;
		border-top: none;
	}
}

/* mobile-nav */
.mobile-nav__departments-actions {
	padding: 16px 10px;
}
.mobile-nav__contacts {
	padding: 24px 15px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #454545;
}
.mobile-nav__socials,
.mobile-nav__phone {
	margin: auto auto auto 0;
}
.mobile-nav__phone-link {
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
}
.mobile-nav__auth {
	padding: 10px;
	display: flex;
	justify-content: flex-end;
	border-top: 1px solid #454545;
}
@media (min-width: 992px) {
	.mobile-nav__departments-actions,
	.mobile-nav__contacts,
	.mobile-nav__auth {
		display: none;
	}
}

/* main-nav */
.main-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-nav__item {
	border-top: 1px solid #454545;
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
}
.main-nav__link {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 16px 19px;
	flex-grow: 1;
}
.main-nav__btn + .main-nav__link {
	width: calc(100% - 42px);
}
.main-nav__link_theme_accented {
	color: #D60700;
}
.main-nav__arrow {
	display: none;
}
.main-nav__btn {
	width: 42px;
	border: none;
	border-left: 1px solid #454545;
	background-color: transparent;
	color: #dfdfdf;
}
.main-nav__btn-arrow {
	transition: transform .2s;
}
.main-nav__btn_active .main-nav__btn-arrow {
	transform: rotate(180deg);
}
.main-nav__icon {
	font-weight: 700;
	margin-right: 10px;
}
.main-subnav {
	width: 100%;
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #3F3F3F;
}
.main-subnav__item {
	border-top: 1px solid #494949;
}
.main-subnav__link {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 16px 19px 16px 30px;
}
@media (min-width: 992px) {
	.main-nav__list {
		margin: 0 0 0 -13px;
		padding: 0;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
	}
	.main-nav__item {
		position: relative;
		margin-left: 8px;
		padding-left: 0;
		padding-right: 0;
		border-top: none;
		display: block;
	}
	.main-nav__btn {
		display: none;
	}
	.main-nav__item:not(:first-child),
	.main-subnav__item:not(:first-child) {
		margin-top: 7px;
	}
	.main-nav__item:not(:first-child) {
		margin-top: 0;
	}
	.main-nav__item:hover .main-nav__link:not(.main-nav__link_theme_accented) {
		color: #b20600;
		background-color: #fff;
	}
	.main-nav__item:hover .main-nav__btn+.main-nav__link {
	    border-top-left-radius: 6px;
		border-top-right-radius: 6px;
	}
	.main-nav__link {
		display: flex;
		align-items: center;
		height: 100%;
		padding: 3px 14px;
		color: inherit;
	}
	.main-nav__btn + .main-nav__link {
		width: auto;
	}
	.main-nav__link_theme_accented {
		border: 1px solid;
		border-radius: 5px;
		height: calc(100% - 10px);
		margin-top: 5px;
		margin-bottom: 5px;
		color: #D60700;
	}
	.main-nav__link_theme_accented:hover {
		background-color: #D60700;
		border-color: #D60700;
		color: #fff;
	}
	.main-nav__arrow {
		margin-left: 10px;
		display: inline-block;
	}
	.main-subnav {
		display: none !important;
		position: absolute;
		background-color: #fff;
		z-index: 101;
		top: 100%;
		left: 0;
		width: 190px;
		padding: 15px 15px 20px;
		border-radius: 0 5px 5px 5px;
	}
	.main-subnav__item {
		border-top: none;
	}
	.main-subnav__item:not(:first-child) {
		margin-top: 10px;
	}
	.main-nav__item:hover .main-subnav {
		display: block !important;
	}
	.main-subnav__link {
		color: inherit;
		display: inline;
		padding: 0;
	}
	.main-subnav__link:hover {
		color: #b20600;
	}
}

/* header */
.header {
	display: none;
}
@media (min-width: 992px) {
	.header {
		display: block;
	}
	.header__inner {
		padding-top: 15px;
		padding-bottom: 15px;
		margin-left: -12px;
		margin-right: -12px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header__inner > * {
		padding-left: 12px;
		padding-right: 12px;
	}
	.header__logo,
	.header__address {
		flex: 0 0 25%;
	}
	.header__phones {
		flex: 0 0 50%;
		display: flex;
		justify-content: flex-end;
		text-align: right;
	}
}

/* cart-header */
.cart-header {
	background-color: #373737;
	overflow: hidden;
}
.cart-header__row {
	padding-top: 8px;
	padding-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: -12px;
	margin-right: -12px;
}
.cart-header__row > * {
	padding-left: 12px;
	padding-right: 12px;
	min-width: 0;
}
.cart-header__logo {
	max-width: 144px;
}
.cart-header__location,
.cart-header__auth {
	display: none;
}
.cart-header__phones {
	text-align: right;
}
@media (min-width: 992px) {
	.cart-header {
		background-color: #fff;
	}
	.cart-header__logo {
		max-width: none;
	}
	.cart-header__location,
	.cart-header__auth {
		display: block;
	}
	.cart-header__phones {
		text-align: left;
	}
}

/* mobile-indicators */
.mobile-indicators {
	display: flex;
}
.mobile-indicators__btn {
	text-decoration: none;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
}

/* logo */
.logo__img {
	display: block;
}

/* location-btn */
.location-btn {
	display: inline-flex;
	align-items: center;
	color: inherit;
}
.location-btn_theme_dark:hover {
	text-decoration: none;
	color: #b20600;
}
.location-btn_theme_light:hover {
	color: #D60700;
}
.location-btn__icon {
	margin-right: 10px;
}
.location-btn_theme_light .location-btn__icon {
	color: #6b6b6b;
}

/* auth */
.auth {
	display: flex;
	justify-content: flex-end;
}
.auth__link {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	text-align: center;
	padding: 6px 20px;
}
.auth__link:not(:first-child) {
	margin-left: 5px;
}
.auth__link:not(.auth__link_accented) {
	color: #757575;
}
.auth__link:not(.auth__link_accented):hover {
	color: #fff;
}
.auth__link_accented {
	background-color: #252525;
	color: #fff;
	border-radius: 5px;
}
.auth__link_accented:hover {
	background-color: #ccc;
	color: #000;
}
.auth__icon {
	font-size: 16px;
	margin-right: 10px;
	color: #a3a3a3;
}
.auth__link_accented:hover .auth__icon {
	color: #484848;
}
@media (min-width: 992px) {
	.auth__link:not(.auth__link_accented) {
		color: inherit;
	}
	.auth__link:not(.auth__link_accented):hover {
		color: #b20600;
	}
	.auth__link_accented {
		background-color: #D6D6D6;
		border-radius: 5px;
		color: inherit;
	}
	.auth__link_accented:hover {
		background-color: #ccc;
		color: inherit;
	}
}

/* address */
.address {
	display: flex;
	align-items: center;
}
.address_place_header {
	color: inherit;
}
.address_place_footer {
	color: #CBCBCB;
}
.address__icon {
	font-size: 22px;
	margin-right: 25px;
}
.address_place_header .address__icon {
	color: #000;
}
.address_place_footer .address__icon {
	color: #EFEFEF;
}
.address:hover {
	text-decoration: none;
}
.address_place_header:hover {
	color: #b20600;
}
.address_place_footer:hover {
	color: #fff;
}
.address_place_footer .address__text br {
	display: none;
}
@media (min-width: 768px) {
	.address_place_footer .address__text br {
		display: block;
	}
}

/* phones */
.phones__item_secondary {
	display: none;
}
.phones__item:not(:last-child) {
	margin-right: 50px;
}
.phones__link {
	text-decoration: none;
	white-space: nowrap;
	line-height: 1.2;
	color: #fff;
}
.phones__link_primary {
	font-size: 20px;
	font-weight: bold;
}
.phones__link_secondary {
	font-size: 16px;
}
.phones__link:hover {
	color: #b20600;
}
.phones__descr {
	color: #959595;
}
.phones__worktime {
	white-space: nowrap;
}
@media (min-width: 992px) {
	.phones {
		display: flex;
		align-items: center;
		margin-right: 20px;
	}
	.phones__item_secondary {
		display: block;
	}
	.phones_place_header .phones__link {
		color: #000;
	}
	.phones_place_header .phones__descr {
		color: #4F4F4F; 
	}
}

/* panel */
.panel {
	background-color: #373737;
	position: relative;
}
.panel__nav-btn {
	margin-left: 5px;
	width: 36px;
	height: 36px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
	font-size: 14px;
	text-decoration: none;
	background-color: #252525;
}
.panel__logo {
	max-width: 120px;
	margin-right: auto;
}
.panel__desktop-indicators {
	display: none;
}
.panel__inner {
	padding-top: 8px;
	padding-bottom: 8px;
	display: flex;
}
.panel__search {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 100;
}
.panel__search_active {
	display: block;
}
.panel__search-form {
	height: 100%;
}
@media (min-width: 992px) {
	.panel__nav-btn,
	.panel__logo,
	.panel__mobile-indicators {
		display: none;
	}
	.panel__inner {
		display: grid;
		gap: 16px;
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
	.panel__departments {
		grid-column: span 3 / span 3;
	}
	.panel__search {
		grid-column: span 6 / span 6;
		display: block;
		position: static;
		width: auto;
		height: auto;
	}
	.panel__desktop-indicators {
		grid-column: span 3 / span 3;
		display: block;
	}
}

/* mobile-indicators */
.mobile-indicators__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
.mobile-indicators__btn {
	width: 36px;
	height: 36px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
	font-size: 16px;
	text-decoration: none;
	background-color: transparent;
	border: none;
	padding: 0;
}
.mobile-indicators__btn_accented {
	background-color: #252525;
	font-size: 20px;
}

/* desktop-indicators */
.desktop-indicators__list {
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
}
.desktop-indicators__item {
	height: 100%;
}

/* indicator */
.indicator {
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a6a6a6;
	text-decoration: none;
	color: #fff;
	height: 100%;
	font-size: 20px;
	background-color: #252525;
}
.indicator__icon-holder {
	position: relative;
}
.indicator__icon {
	color: #E7E7E7;
	display: block;
}
.indicator_type_cart .indicator__icon {
	font-size: 1.2em;
}
.indicator__inner:hover .indicator__icon {
	color: inherit;
}
.indicator__counter {
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: #0075FF;
	color: #fff;
	font-size: 10px;
}
.indicator__counter:empty {
	display: none;
}
.indicator__text {
	margin-left: 22px;
	line-height: 1.3;
}
.indicator__title {
	font-size: 14px;
	color: #fff;
}
.indicator__descr {
	font-size: 12px;
	color: #989898;
	white-space: nowrap;
}

/* departments-btn */
.departments-btn {
	display: flex;
	align-items: center;
	background-color: #B20600;
	border-radius: 5px;
	border: none;
	font-size: 16px;
	color: #fff;
	padding: 0 17px;
	height: 44px;
	width: 100%;
	text-decoration: none;
}
.departments-btn:not(.departments-btn_active):hover {
	background-color: #D90700;
}
.departments-btn_active {
	background-color: #F3F3F3;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	color: #000;
}
.departments-btn__icon {
	font-size: 12px;
	margin-right: 18px;
	width: 24px;
}

/* departments */
.departments {
	position: relative;
	z-index: 10;
}
.departments__open-btn {
	display: none;
}
.departments__inner {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.departments__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.departments__item {
	border-bottom: 1px solid #454545;
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
}
.departments__btn {
	background-color: transparent;
	border: none;
	border-left: 1px solid #454545;
	padding: 0;
	flex-shrink: 0;
	flex-basis: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #dfdfdf;
}
.departments__btn > .icon {
	transition: transform .2s;
}
.departments__btn_active > .icon {
	transform: rotate(180deg);
}
.departments__link {
	text-decoration: none;
	color: inherit;
	display: flex;
	align-items: center;
	padding: 6px 17px;
	position: relative;
	flex-basis: 100%;
	min-height: 36px;
}
.departments__btn + .departments__link {
	flex-basis: calc(100% - 40px);
}
.departments__link:hover {
	color: #D60700;
}
.departments__icon {
	width: 24px;
	color: #373737;
	filter: brightness(0) invert(1);
	margin-right: 18px;
}
.departments__link:hover .departments__icon {
	filter: none;
}
.departments__arrow {
	display: none;
}
@media (min-width: 992px) {
	.departments__open-btn {
		display: flex;
	}
	.departments__dropdown {
		background-color: #fff;
		background-color: transparent;
	}
	.departments__dropdown_place_hero {
		height: 100%;
	}
	.departments__dropdown_place_panel {
		display: none;
		top: 100%;
		height: auto;
		position: absolute;
	}
	.departments_open .departments__dropdown {
		display: block;
	}
	.departments__wrapper {
		height: 100%;
	}
	.departments__inner {
		background-color: #fff;
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	.departments__dropdown_place_panel .departments__inner,
	.departments__dropdown_place_hero:hover .departments__inner {
		box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
	}
	.departments__header {
		display: none;
	}
	.departments__item {
		display: block;
		position: relative;
		border-bottom: 1px solid #eee;
	}
	.departments__item:hover .departments__link {
		color: #b20600;
	}
	.departments__item:hover .departments__icon {
		filter: none;
	}
	.departments__btn {
		display: none;
	}
	.departments__link {
		padding-right: 32px;
		color: #505050;
	}
	.departments__link:hover {
		color: #b20600;
	}
	.departments__icon {
		filter: grayscale(1);
	}
	.departments__arrow {
		font-size: 6px;
		position: absolute;
		right: 13px;
		top: 50%;
		margin-top: -3px;
		display: inline-block;
	}
}

/* departments-all */
.departments-all {
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	padding: 13px 10px;
	text-align: center;
	text-decoration: none;
	margin-top: auto;
}
.departments-all:hover {
	color: #D60700;
}
.departments-all__icon-holder {
	background-color: #b7b7b7;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	border-radius: 50%;
	margin-left: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8px;
}
@media (min-width: 992px) {
	.departments-all {
		background-color: #FBFBFB;
		color: #333;
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	.departments-all:hover {
		color: #b20600;
	}
	.departments-all__icon-holder {
		background-color: #E7E7E7;
	}
}

/* subdepartments */
.subdepartments {
	display: none;
	width: 100%;
}
.subdepartments .subdepartments .subdepartments__link {
	padding-left: 40px;
}
.subdepartments__title {
	display: none;
}
.subdepartments__list {
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #3F3F3F;
}
.subdepartments__item {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
}
.subdepartments__link {
	display: block;
	padding: 10px 17px;
	color: inherit;
	text-decoration: none;
	border-top: 1px solid #494949;
	flex-basis: 100%;
}
.departments__btn + .subdepartments__link {
	flex-basis: calc(100% - 40px);
}
.subdepartments__arrow {
	display: none;
}
@media (min-width: 992px) {
	.subdepartments {
		display: none !important;
		position: absolute;
		z-index: -1;
		left: calc(100% - 16px);
		top: 0;
		width: 110%;
	}
	.departments__item:hover > .subdepartments,
	.subdepartments__item:hover > .subdepartments {
		display: block !important;
	}
	.subdepartments__inner {
		background-color: #fff;
		box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
		border-radius: 5px;
		padding: 11px 0 11px 32px; 
	}
	.subdepartments__title {
		font-weight: bold;
		border-bottom: 1px solid #EEEEEE;
		padding-bottom: 9px;
		margin-bottom: 10px;
		display: block;
	}
	.subdepartments__list {
		background-color: transparent;
	}
	.subdepartments__item {
		display: block;
		position: relative;
	}
	.subdepartments__link {
		position: relative;
		padding: 9px 30px 9px 0;
		border-top: none;
		color: #363636;
		border-top: none;
	}
	.subdepartments__item:hover > .subdepartments__link {
		color: #b20600;
	}
	.subdepartments .subdepartments .subdepartments__link {
		padding-left: 0;
	}
	.subdepartments__arrow {
		font-size: 6px;
		position: absolute;
		right: 13px;
		top: 50%;
		margin-top: -3px;
		display: block;
	}
}

/* search */
.search {
	position: relative;
}
.search__query {
	width: 100%;
	height: 100%;
	min-height: 38px;
	background-color: #252525 !important;
	border: none;
	color: #fff;
	padding: 0 24px;
	border-radius: 5px;
}
.search__query::-webkit-input-placeholder {
	color: #aeaeae;
}
.search__query::-moz-placeholder {
	color: #aeaeae;
	opacity:  1;
}
.search__query:-ms-input-placeholder {
	color: #aeaeae;
}
.search__query::-ms-input-placeholder {
	color: #aeaeae;
}
.search__query::placeholder {
	color: #aeaeae;
}
.search__btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background: #000;
	border-radius: 5px;
	border: none;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
}
.search__submit {
	transform: translateX(-100%);
	font-size: 16px;
}
.search__close {
	font-size: 12px;
}
.search__icon {
	color: #fff;
}
@media (min-width: 992px) {
	.search__btn {
		width: 68px;
	}
	.search__close {
		display: none;
	}
	.search__submit {
		transform: none;
	}
}

/* live-search */
.live-search {
	color: #000;
	background-color: #ffffff;
	border-radius: 5px;
	overflow: hidden;
	padding: 10px;
	max-height: 350px;
	max-width: 100%;
	overflow-y: auto;
	z-index: 200;
	scrollbar-color: #adadad #e2e2e2;
}
.live-search::-webkit-scrollbar {
    width: 6px;
    background-color: #E2E2E2;
}
.live-search::-webkit-scrollbar-thumb {
    background-color: #ADADAD;
    border-radius: 100px;
}
.live-search::-webkit-scrollbar-button:vertical:start:decrement {
    display: none;
}
.live-search::-webkit-scrollbar-button:vertical:end:increment {
    display: none;
}
.live-search .ui-state-active a {
	color: inherit !important;
}
.live-search .ui-menu-item-wrapper {
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	background-color: transparent !important;
	color: inherit !important;
}
.live-search__link {
	padding: 4px;
	display: flex;
	align-items: center;
	text-decoration: none;
}
.live-search__link_type_brand {
	margin-top: -1px;
	border-top: 1px solid #F1F1F1;
	border-bottom: 1px solid #F1F1F1;
}
.live-search__link:hover .live-search__title {
	color: #B20600;
}
.live-search__img {
	height: 40px;
	object-fit: cover;
	flex-shrink: 0;
	margin-right: 16px;
}
.live-search__title {
	flex-grow: 1;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.live-search__price {
	text-align: right;
	line-height: 1;
	display: flex;
	white-space: nowrap;
	margin-left: 30px;
	align-items: flex-end;
}
.live-search__price-val {
	font-size: 14px;
	font-weight: bold;
}
.live-search__price-currency {
	margin-left: 1ch;
}

/* section */
.section {
	padding-top: 20px;
	padding-bottom: 20px;
}
.section_theme_light {
	background-color: #E7E7E7;
}
.section__header {
	margin-bottom: 20px;
}
.section__title {
	color: #000;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 24px;
}
.section__title_small {
	font-size: 20px;
}
.section__title_xs {
	font-size: 18px;
}

/* hero */
.hero {
	padding-top: 15px;
	padding-bottom: 25px;
}
.hero__grid {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr);
}
.hero__products {
	margin-top: 16px;
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
}
.hero__main {
	position: relative;
}
/* NEW MAIN SLIDER */
.hero__main .nhero-slider {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.hero__main .nhero-slider .hero-slide {
	position: relative;
	height: 100%;
}
.hero__main .nhero-slider .hero-slide .hero-bg {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	overflow: hidden;
	background-color: black;
	z-index: 1;
}
.hero__main .nhero-slider .hero-slide .hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__main .nhero-slider .hero-slide .hero-bg .main-video {
	width: 100%;
}

.hero__main .nhero-slider .hero-slide .hero-bg .blur-video {
	position: absolute;
	top: 0;
	left: -50%;
	height: 100%;
	z-index: -1;
	filter: blur(10px);
}

.hero__main .nhero-slider .hero-slide .mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.hero__main .nhero-slider .hero-slide .wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 3;
}
.hero__main .nhero-slider .hero-slide .wrapper .content {
	margin: auto 7%;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
}
.hero__main .nhero-slider .hero-slide .wrapper .content .info {
	width: 55%;
}
.hero__main .nhero-slider .hero-slide .wrapper .content .img-wrapper {
	width: 35%;
}
.hero__main .nhero-slider .hero-slide .wrapper .content.no-iimage .info {
	width: 80%;
}
.hero__main .nhero-slider .hero-slide p.subtitle {
	font-size: 16px;
	color: white;
	margin-bottom: 10px;
	line-height: 1.2;
	position: relative;
	padding-left: 20px;
}
.hero__main .nhero-slider .hero-slide p.subtitle::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	width: 7px;
	height: 7px;
	border-radius: 50px;
	background-color: #B20600;
}
.hero__main .nhero-slider .hero-slide h2 {
	font-size: 45px;
	color: white;
	margin: 0 0 20px;
	line-height: 1.2;
}
.hero__main .nhero-slider .hero-slide .text {
	color: white;
	font-size: 16px;
	margin: 0 0 25px;
}
.hero__main .nhero-slider .swiper-pagination-clickable .swiper-pagination-bullet {
	width: 5%;
  height: 3px;
  border-radius: 5px;
  opacity: 1;
  background: white;
}
.hero__main .nhero-slider .swiper-pagination-clickable .swiper-pagination-bullet-active {
	background-color: #B20600;
}
.hero__main .nhero-slider {
	position: relative;
	width: 100%;
	z-index: 5;
	display: flex;
	justify-content: space-between;
}
.hero__main .nhero-slider .button-prev,
.hero__main .nhero-slider .button-next {
	position: absolute;
	top: 48%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 220px;
	z-index: 15;
}
.hero__main .nhero-slider .button-prev span{
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	width: 60%;
	height: 60%;
	margin: auto;
	transform: rotateZ(45deg);
}
.hero__main .nhero-slider .button-next span {
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	width: 60%;
	height: 60%;
	margin: auto;
	transform: rotateZ(-45deg);
}
.hero__main .nhero-slider .button-prev {
	margin-left: 15px;
	left: 0;
}
.hero__main .nhero-slider .button-next {
	margin-right: 15px;
	right: 0;
}
.uboards {
	grid-column: 4 / -1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.uboards .item {
	position: relative;
	height: 200px;
	overflow: hidden;
	border-radius: 10px;
	display: block;
}
.uboards .item .bg {
	height: 100%;
	position: relative;
	z-index: 1;
}
.uboards .item .bg img,
.uboards .item .bg video {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.uboards .item .mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.uboards .item .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.uboards .item .wrapper .content {
	margin: auto 5%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.uboards .item .wrapper .content .info {
	width: 60%;
}
.uboards .item .wrapper .content .info h2 {
	color: white;
	font-size: 30px;
	line-height: 1.2;
	margin: 0 0 15px;
}
.uboards .item .wrapper .content.no-text .info h2 {
	margin-bottom: 0;
}
.uboards .item .wrapper .content .info p {
	color: white;
	font-size: 14px;
}
.uboards .item .wrapper .content .img-wrapper {
	max-width: 20%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.uboards .item .wrapper .content .img-wrapper img {
	margin: auto;
}
.uboards .item .wrapper .content .button.no-text {
  position: absolute;
  top: 0;
  right: 0;
}
.uboards .item .wrapper .content .button.no-text button {
  min-width: fit-content;
  border-radius: 0 0 0 10px;
  fill: white;
  padding: 10px;
  height: fit-content;
}
.uboards .item .wrapper .content .button.no-text button svg {
	width: 24px;
	height: 24px;
}
.uboards .item:hover .wrapper .content .button button {
	background-color: #D90700;
}
@media(max-width: 1200px) {
	.uboards .item .wrapper .content .info h2 {
		font-size: 26px;
	}
}
@media(max-width: 991px) {
	.hero__main .nhero-slider .hero-slide .wrapper .content {
		flex-direction: column;
		gap: 30px;
	}
	.hero__main .nhero-slider .hero-slide .wrapper .content .info,
	.hero__main .nhero-slider .hero-slide .wrapper .content.no-iimage .info {
		width: 100%;
		text-align: center;
		order: 2;
	}
	.hero__main .nhero-slider .hero-slide .wrapper .content .img-wrapper {
		width: 60%;
		order: 1;
	}
	.hero__main .nhero-slider .hero-slide p.subtitle {
		margin: auto auto 10px;
		width: fit-content;
	}
	.hero__main .nhero-slider .hero-slide h2 {
		font-size: 35px;
	}
	.uboards {
		grid-column: 1 / -1;
	}
	.uboards .item .wrapper .content {
		flex-direction: column;
		margin: 15% 10%;
		gap: 40px;
	}
	.uboards .item .wrapper .content {
		margin: auto 10% auto 5%;
	}
	.uboards .item .wrapper .content .img-wrapper {
		max-width: 30%;
	}
	.uboards .item .wrapper .content .img-wrapper img {
		max-height: 150px;
	}
	.uboards .item .wrapper .content .info h2 {
		font-size: 22px;
	}
	.uboards .item .wrapper .content.no-iimage .info {
		width: 100%;
	}
	.uboards .item .wrapper .content.no-iimage .info h2 {
		text-align: center;
	}
}
@media(max-width: 767px) {
	.hero__main .nhero-slider .hero-slide {
		min-height: 660px;
	}
	.uboards .item {
		min-height: 370px;
	}
	.hero__main .nhero-slider .hero-slide .wrapper .content .img-wrapper,
	.uboards .item .wrapper .content .img-wrapper {
		max-width: 40%;
	}
	.uboards .item .wrapper .content.no-iimage .info {
		width: 100%;
	}
	.uboards .item .wrapper .content .info h2 {
		font-size: 24px;
	}
}
@media(max-width: 576px) {
	.hero__main .nhero-slider .hero-slide .hero-bg {
		min-height: 660px;
	}
	.hero__main .nhero-slider .hero-slide .wrapper .content {
		margin-top: 15%;
	}
	.hero__main .nhero-slider .hero-slide .wrapper .content.no-iimage {
		margin-top: auto;
	}
	.hero__main .nhero-slider .hero-slide h2 {
		font-size: 30px;
	}
	.hero__main .nhero-slider {
		top: auto;
		bottom: 0;
		justify-content: end;
		z-index: 15;
	}
	.hero__main .nhero-slider .button-prev, .hero__main .nhero-slider .button-next {
		margin: 0;
		background-color: #B20600;
		padding: 5px;
		width: 75px;
		height: 55px;
		top: auto;
		bottom: 0;
	}
	.hero__main .nhero-slider .button-prev {
		border-radius: 10px 0 0 0;
		left: auto;
		right: 75px;
	}
	.hero__main .nhero-slider .button-prev span,
	.hero__main .nhero-slider .button-next span {
		width: 15px;
		height: 15px;
	}
	.hero__main .nhero-slider .swiper-pagination {
    justify-content: start;
    display: flex;
    padding-left: 5%;
    bottom: 25px;
	}
	.uboards .item {
		height: fit-content;
	}
	.uboards .item .bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.uboards .item .wrapper {
		position: relative;
	}
	.uboards .item .wrapper .content .info,
	.uboards .item .wrapper .content .img-wrapper {
		width: 100%;
		max-width: 100%;
	}
	.uboards .item .wrapper .content .info {
		text-align: center;
	}
	.uboards .item .wrapper .content .img-wrapper img {
		max-height: fit-content;
	}
	.uboards .item .wrapper .content .button.no-text button {
		padding: 5px;
	}
}
/* NEW MAIN SLIDER END */
@media (min-width: 992px) {
	.hero__grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
	.hero__aside {
		grid-column: span 3 / span 3;
	}
	.hero__main {
		grid-column: span 9 / span 9;
		display: flex;
		flex-direction: column;
	}
	.hero__brands {
		grid-column: span 12 / span 12;
	}
	.hero__aside {
		margin-top: -24px;
	}
	.hero__slider {
		#flex-grow: 1;
		width: 100%;
	}
}

/* hero-slider */
.hero-slider__link {
	display: block;
	height: 100%;
}
.hero-slider__img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: contain;
	border-radius: 5px;
}

/* breadcrumbs */
.breadcrumbs {
    border-bottom: 1px solid #E1E1E1;
	padding: 9px 0;
	font-size:12px;
	color:#7E7E7E;
	margin-bottom: 24px;
}
.breadcrumbs__list {
	list-style:none;
	display:flex;
	flex-wrap:wrap;
	margin: 0;
	padding: 0;
}
.breadcrumbs__item:not(:last-child)::after {
	content: '-';
	margin-left: 7px;
	margin-right: 7px;
}
.breadcrumbs__link{
	color:#525252;
	text-decoration:none;
}
.breadcrumbs__link:hover{
	text-decoration:underline;
}

/* box */
.box {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px 16px;
}

/* main */
.main {
	padding-bottom: 60px;
}
.main_type_grid {
	display: grid;
	grid-gap: 32px 16px;
	gap: 32px 16px;
	grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 992px) {
	.main_type_grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
	.main:not(.main_reverse) .main__content {
		order: 1;
	}
	.main__sidebar {
		grid-column: span 3 / span 3;
	}
	.main__content {
		grid-column: span 9 / span 9;
	}
}

/* sidebar */
.sidebar__item:not(:first-child) {
	margin-top: 8px;
}
.sidebar__item_sticky {
	position: sticky;
	top: 10px;
}

/* sidebar-widget */
.sidebar-widget {
	border-radius: 5px;
	background-color: #E9E9E9;
}
.sidebar-widget__content {
	padding: 14px 16px 28px;
}
.sidebar-widget__title {
	margin-top: 0;
	font-weight: bold;
	font-size: 14px;
	color: #000;
	margin-bottom: 20px;
}
.sidebar-widget__btn {
	margin-top: 10px;
	width: 100%;
}
.sidebar-widget__preview {
	display: none;
}
@media (min-width: 992px) {
	.sidebar-widget__preview {
		display: block;
		position: relative;
		margin-bottom: -50px;
		display: block;
		margin-left: auto;
	}
}

/* order-help */
.order-help {
	border-radius: 5px;
	background-color: #EFD0D0;
	padding-bottom: 10px;
	text-align: center;
}
.order-help__content {
	padding: 20px 20px 10px;
}
.order-help__title {
	margin-top: 0;
	font-weight: bold;
	font-size: 14px;
	color: #000;
	margin-bottom: 20px;
}
.order-help__btn {
	margin-top: 10px;
	width: 100%;
}
.order-help__preview {
	display: none;
}
@media (min-width: 992px) {
	.order-help {
		text-align: left;
	}
	.order-help__preview {
		display: block;
		position: relative;
		margin-bottom: -50px;
		display: block;
		margin-left: auto;
	}
}

/* interest-nav */
.interest-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.interest-nav__item {
	padding-left: 43px;
	position: relative;
}
.interest-nav__item:not(:last-child) {
	margin-bottom: 24px;
}
.interest-nav__icon {
	width: 24px;
	height: 24px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -12px;
	filter: grayscale(100%) brightness(400%);
}
.interest-nav__link {
	text-decoration: none;
	color: inherit;
}
.interest-nav__link:hover {
	color: #b20600;
	text-decoration: underline;
}
.interest-nav__link:hover .interest-nav__icon {
	filter: none;
}

/* reviews-counter */
.reviews-counter {
	font-size: 10px;
	background-color: #E9E9E9;
	border-radius: 5px;
	display: inline-block;
	padding: 5px 8px;
}

/* categories-nav */
.categories-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.categories-nav__item:not(:first-child) {
	margin-top: 4px;
}
.categories-nav__pane {
	display: flex;
	background-color: #fff;
	color: #131313;
	border-radius: 5px;
	cursor: pointer;
}
.categories-nav__link {
	padding: 7px 0 7px 14px;
	display: flex;
	align-items: center;
	flex-grow: 1;
	text-decoration: none;
	color: inherit;
}
.categories-nav__link_active,
.categories-nav__link:hover {
	color: #B20600;
}
.categories-nav__btn {
	background-color: transparent;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
}
.categories-nav__btn-icon {
	font-size: 8px;
	color: #7D7D7D;
	transition: transform .2s;
}
.categories-nav__icon {
	flex-shrink: 0;
	width: 24px;
	margin-right: 12px;
	filter: grayscale(100%);
	opacity: .27;
}
.categories-nav__title {
	margin-right: auto;
}
.categories-nav__arrow {
	font-size: 8px;
	color: #7D7D7D;
	margin-left: 10px;
	transition: transform .2s;
}
.categories-nav__item_expanded .categories-nav__btn-icon {
	transform: rotate(90deg);
}
.categories-nav__num {
	color: #B20600;
}
.categories-nav__sublist {
	margin: 0;
	padding: 5px 0;
	list-style: none;
	display: none;
}
.categories-nav__item_expanded .categories-nav__sublist {
	display: block;
}
.categories-nav__sublink {
	color: inherit;
	text-decoration: none;
	display: block;
	padding: 8px 8px 8px 40px; 
}
.categories-nav__sublink:hover {
	color: #b20600;
}
.categories-nav__sublink_active {
	background-color: #E1E1E1;
	border-radius: 5px;
	color: #b20600;
}

/* reviews-nav */
.reviews-nav {
	padding: 6px;
}
.reviews-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.reviews-nav__item:not(:first-child) {
	margin-top: 4px;
}
.reviews-nav__pane {
	display: flex;
	background-color: #222;
	border-radius: 5px;
	cursor: pointer;
}
.reviews-nav__link {
	padding: 7px 0 7px 14px;
	display: flex;
	align-items: center;
	flex-grow: 1;
	text-decoration: none;
	color: inherit;
}
.reviews-nav__link:hover, .reviews-nav__link.active {
	color: #D60700;
}
.reviews-nav__btn {
	background-color: transparent;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
}
.reviews-nav__btn-icon {
	font-size: 8px;
	color: #fff;
	transition: transform .2s;
}
.reviews-nav__icon {
	flex-shrink: 0;
	width: 24px;
	margin-right: 12px;
	filter: brightness(0) invert(1);
}

.reviews-nav__item_expanded .reviews-nav__btn-icon {
	transform: rotate(90deg);
}
.reviews-nav__num {
	color: #D60700;
}
.reviews-nav__sublist {
	margin: 0;
	padding: 5px 0;
	list-style: none;
	display: none;
}
.reviews-nav__item_expanded .reviews-nav__sublist {
	display: block;
}
.reviews-nav__sublink {
	color: inherit;
	text-decoration: none;
	display: block;
	padding: 8px 8px 8px 40px; 
}
.reviews-nav__sublink:hover,
.reviews-nav__sublink_active {
	color: #D60700;
}
@media (min-width: 992px) {
	.reviews-nav__link:hover {
		color: #B20600;
	}
	.reviews-nav__icon {
		filter: grayscale(100%);
		opacity: .27;
	}
	.reviews-nav__btn-icon {
		color: #7D7D7D;
	}
	.reviews-nav__num {
		color: #B20600;
	}
	.reviews-nav__pane {
		background-color: #fff;
		color: #131313;
	}
	.reviews-nav__sublink_active {
		background-color: #E1E1E1;
	}
	.reviews-nav__sublink:hover,
	.reviews-nav__sublink_active {
		color: #B20600;
	}
}

/* review */
.review {
	padding: 15px 20px;
	border-radius: 5px;
	background-color: white;
}
.review_theme_bordered {
	border: 1px solid #DFDFDF;
}
.review__heading {
	display: grid;
	gap: 8px 30px;
	grid-template-columns: repeat(2, minmax(0, auto));
	align-items: center;
}
.review__origin {
	grid-column: 1 / -1;
}
.review__author {
	color: #000;
	font-size: 14px;
	font-weight: bold;
}
.review__rating {
	margin-right: -5px;
	justify-self: end;
}
.review__date {
	color: #272727;
	margin-top: 5px;
}
.review__text {
	margin-top: 10px;
}
.review__title {
	color: #000;
	font-weight: 600;
	margin-bottom: 6px;
}
.reviews__message:not(:last-child) {
	margin-bottom: 12px;
}
.reviews__message p {
	margin-bottom: 0;
}
.reviews__message ul,
.reviews__message ol {
	margin: 0;
	padding: 0;
}
.reviews__message ul {
	list-style: none;
}
.reviews__message ul li::before {
	content: '- ';
}
.review__product {
	margin-top: 20px;
}
@media (min-width: 576px) {
	.review__heading {
		grid-template-columns: repeat(3, minmax(0, auto));
	}
	.review__origin {
		grid-column: auto / auto;
		order: 1;
	}
	.review__rating {
		order: 2;
		grid-column-start: 3;
	}
}

/* review-product */
.review-product {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.review-product__label {
	color: #272727;
	width: 100%;
	margin-bottom: 8px;
}
.review-product__img {
	width: 43px;
	margin-right: 10px;
}
.review-product__name {
	width: calc(100% - 53px);
}
.review-product__link {
	color: #151515;
}
.review-product__link:hover {
	color: #b20600;
	text-decoration: none;
}

/* profile-nav */
.profile-nav {
	overflow: hidden;
	margin-bottom: 50px;
}
.profile-nav__list {
	margin: -10px -10px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.profile-nav__item {
	margin-top: 10px;
	margin-right: 10px;
}
.profile-nav__link {
	background-color: #E1E1E1;
	display: inline-flex;
	align-items: center;
	border-radius: 5px;
	color: #6C6C6C;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 16px;
}
.profile-nav__link:hover,
.profile-nav__link_current {
	background-color: #B20600;
	color: #fff;
}
.profile-nav__icon {
	font-size: 16px;
	margin-right: 10px;
}
@media (min-width: 992px) {
	.profile-nav__item_end {
		margin-left: auto;
	}
}

.profile-cards {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 480px) {
	.profile-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 992px) {
	.profile-cards {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
	.profile-cards__orders {
		grid-column: span 4 / span 4;
	}
	.profile-cards__account {
		grid-column: span 5 / span 5;
	}
	.profile-cards__cart {
		grid-column: span 3 / span 3;
	}
}

/* profile-card */
.profile-card {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px 25px;
	display: flex;
	flex-direction: column;
}
.profile-card__icon {
	display: none;
}
.profile-card__title {
	font-size: 14px;
	font-weight: bold;
	color: #000;
}
.profile-card__list {
	padding: 0;
	margin: 14px 0 17px;
	list-style: none;
	color: #747474;
}
.profile-card__item:not(:first-child) {
	margin-top: 7px;
}
.profile-card__item a {
	color: #0075FF;
}
.profile-card__item a:hover {
	text-decoration: none;
}
.profile-card__footer {
	margin-top: auto;
}
@media (min-width: 360px) and (max-width: 479.98px), (min-width: 768px) {
	.profile-card_has-icon {
		position: relative;
		overflow: hidden;
		padding-right: 120px;
	}
	.profile-card__icon {
		display: block;
		position: absolute;
		color: #DADADA;
		font-size: 130px;
		top: 50%;
		transform: translateY(-50%);
		right: -.2em;
		pointer-events: none;
	}
}
@media (min-width: 768px) {
	.profile-card_has-icon {
		padding-left: 140px;
		padding-right: 25px;
	}
	.profile-card__icon {
		right: auto;
		left: -.2em;
	}
}

/* profile-edit */
.profile-edit {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr);
}
.profile-edit__card_small {
	align-self: start;
}
.profile-edit__title {
	margin-top: 0;
	margin-bottom: 20px;
}
@media (min-width: 576px) {
	.profile-edit {
		grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	}
}

/* add-company-btn */
.add-company-btn {
	display: block;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	padding: 0;
	border: none;
	font-size: 14px;
	color: #7E7E7E;
}
.add-company-btn:hover {
	color: #b20600;
}
.add-company-btn__icon-holder {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	background-color: #C4C4C4;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.add-company-btn:hover .add-company-btn__icon-holder {
	background-color: #b20600;
}
.add-company-btn__icon {
	color: #fff;
	font-size: 8px;
}

/* meta-panel */
.meta-panel {
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 5px;
	padding: 6px 16px;
}
.meta-panel__row {
	display: flex;
	align-items: center;
	margin-top: -5px;
	margin-left: -24px;
}
.meta-panel__row > * {
	margin-top: 5px;
	padding-left: 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.meta-panel__filters,
.meta-panel__orders {
	margin-left: auto;
}
.meta-panel__view {
	display: none;
}
.meta-panel__label {
	display: none;
}
@media (min-width: 480px) {
	.meta-panel__view {
		display: flex;
		margin-left: auto;
	}
	.meta-panel__filters {
		margin-left: 0;
	}
}
@media (min-width: 768px) {
	.meta-panel__label {
		margin-right: 8px;
		display: block;
	}
}
@media (min-width: 992px) {
	.meta-panel__filters {
		display: none;
	}
}

/* orders */
.orders__item:not(:first-child) {
	margin-top: 8px;
}

/* order */
.orders__legend {
	display: none;
}
.order__col a {
	color: #0075FF;
}
.order__col a:hover {
	text-decoration: none;
}
.order__pane {
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 5px;
	transition: background-color .3s;
}
.order_open .order__pane {
	background-color: #E1E1E1;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.order__col {
	padding-left: 8px;
	padding-right: 8px;
}
.order__col:not(.order__num) {
	display: none;
}
.order__num {
	text-align: center;
}
.order__btn {
	background-color: transparent;
	border: none;
	color: #000;
	padding: 10px 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	width: 100%;
}
.order__btn:hover {
	color: #b20600;
}
.order__arrow {
	font-size: 12px;
	margin-right: 10px;
	transition: transform .2s;
}
.order_open .order__arrow {
	transform: rotate(180deg);
}
.order__price {
	white-space: nowrap;
}
.order__price_new {
	font-size: 14px;
	color: #151515;
	font-weight: bold;
}
.order__content {
	display: none;
	padding: 25px 20px 20px;
	background-color: #fff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.order__details {
	margin-bottom: 25px;
}
.orders__title {
	font-size: 14px;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
}
.order__slide-up {
	margin-top: 10px;
}
@media (min-width: 992px) {
	.orders__legend {
		display: flex;
		align-items: center;
		padding-bottom: 8px;
	}
	.order__pane {
		min-height: 57px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.order__col {
		flex-shrink: 0;
		min-width: 0;
	}
	.order__col:not(.order__num) {
		display: block;
	}
	.order__col:first-child {
		padding-left: 30px;
	}
	.order__col:last-child {
		padding-right: 30px;
	}
	.order__num {
		text-align: left;
		width: 15%;
	}
	.order__date {
		width: 15%;
	}
	.order__status {
		width: 15%;
	}
	.order__summ {
		width: 10%;
	}
	.order__payment,
	.order__delivery {
		width: 22%;
	}
	.order__btn {
		width: auto;
		padding-top: 0;
		padding-bottom: 0;
	}
	.order__details {
		display: none;
	}
	.orders__title {
		margin-bottom: 25px;
	}
}

/* order-details */
.order-details {
	border-collapse: collapse;
	width: 100%;
}
.order-details__tr:nth-child(odd) {
	background-color: #fafafa;
}
.order-details__th,
.order-details__td {
	padding: 5px 10px;
}
.order-details__th {
	text-align: left;
	color: #000;
}
.order-details a {
	color: #0075FF;
}
.order-details a:hover {
	text-decoration: none;
}
.order-details__price {
	white-space: nowrap;
}
.order-details__price_new {
	font-weight: bold;
}

/* status */
.status {
	font-weight: bold;
}
.status_theme_1 {
	color: #B20600;
}
.status_theme_2 {
	color: #747474;
}
.status_theme_3 {
	color: #2F7E1B;
}
.status_theme_4 {
	color: #0075FF;
}
.status_theme_5 {
	color: #7b7b7b;
}
.status_theme_6 {
	color: #414141;
}

/* cart */
.cart__section:not(:last-child) {
	margin-bottom: 14px;
}
.cart__subsection:not(:last-child) {
	margin-bottom: 24px;
}
.cart__title {
	margin-top: 0;
	margin-bottom: 20px;
}
.cart__methods {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.cart-location-picker {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 44px;
	padding: 5px 20px;
	background-color: #EFEFEF;
	border-radius: 5px;
	border: 1px solid transparent;
}
.cart-location-picker__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: -5px;
	margin-left: -20px;
}
.cart-location-picker__col {
	margin-left: 20px;
	margin-top: 5px;
}
.cart-location-picker__col_push {
	flex-grow: 1;
}
.cart-location-picker__city {
	min-width: 0;
	flex-grow: 1;
	background-color: transparent;
	padding: 0;
	border: none;
}
.cart-location-picker__link {
	color: #0075ff;
	display: inline-flex;
	align-items: center;
}
.cart-location-picker__link > .icon {
	margin-left: 5px;
}
.cart-location-picker__link:hover {
	text-decoration: none;
}

/* cart-products */
.cart-products {
	color: #747474;
}
.cart-products__td {
	padding: 8px 16px;
}
.cart-products__photo {
	margin-left: auto;
	margin-right: auto;
}
.cart-products__link {
	color: #000;
}
.cart-products__link:hover {
	text-decoration: none;
	color: #b20600;
}
.cart-products__descr {
	margin-top: 8px;
	color: #939393;
	font-size: 10px;
}
.cart-products__price {
	white-space: nowrap;
}
.cart-products__price_old {
	color: #A0A0A0;
	font-size: 10px;
	margin-right: 5px;
	text-decoration: line-through;
}
.cart-products__price_new {
	font-weight: bold;
	color: #151515;
	font-size: 14px;
}
.cart-products__profit {
	color:#FF0B00;
	font-size: 10px;
}
.cart-products__remove {
	background-color: transparent;
	padding: 8px;
	border: none;
	display: inline-flex;
	vertical-align: middle;
	align-items: center;
	justify-content: center;
	color: #a2a2a2;
	font-size: 10px;
}
.cart-products__remove:hover {
	color: #b20600;
}
@media (max-width: 767.98px) {
	.cart-products,
	.cart-products__body {
	  display: block;
	}
	.cart-products__row {
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  position: relative;
	}
	.cart-products__row:not(:first-child) {
	  border-top: 1px solid #eee;
	  padding-top: 15px;
	  margin-top: 15px;
	}
	.cart-products__td {
	  display: block;
	  padding: 10px;
	}
	.cart-products__td_photo {
	  width: 110px;
	  flex-shrink
	}
	.cart-products__td_text {
	  width: calc(100% - 110px);
	  padding-right: 26px;
	}
	.cart-products__td_total {
	  display: none;
	}
	.cart-products__td_remove {
	  position: absolute;
	  top: 5px;
	  right: 0;
	  padding: 0;
	}
}
@media (min-width: 768px) {
	.cart-products {
		width: 100%;
		border-spacing: 0 8px;
	}
	.cart-products__th {
		font-weight: normal;
		text-align: left;
		padding-top: 0;
		padding-bottom: 8px;
		white-space: nowrap;
	}
	.cart-products__th:first-child {
		padding-left: 0;
	}
	.cart-products__td {
		border-top: 1px solid #f1f1f1;
		border-bottom: 1px solid #f1f1f1;
	}
	.cart-products__td:first-child {
		border-left: 1px solid #f1f1f1;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	.cart-products__td:last-child {
		border-right: 1px solid #f1f1f1;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	.cart-products__th,
	.cart-products__td {
		padding-left: 16px;
		padding-right: 16px;
	}
	.cart-products__td_photo {
		width: 1%;
		padding-left: 8px;
		padding-right: 8px;
		padding-right: 0;
	}
	.cart-products__descr {
		margin-top: 20px;
	}
	.cart-products__photo {
		margin: 0;
	}
	.cart-products__photo_place_cart {
		width: 80px;
	}
	.cart-products__photo_place_order {
		width: 94px;
	}
}

/* product-quantity */
.product-quantity {
	border-radius: 5px;
	display: inline-flex;
	height: 30px;
	border: 1px solid #D7D7D7;
}
.product-quantity__btn {
	width: 28px;
	line-height: 28px;
	text-align: center;
	border-radius: 50%;
	flex-shrink: 0;
	border: 0;
	padding: 0;
	background-color: transparent;
	font-size: 18px;
}
.product-quantity__btn:hover {
	color: #d60000;
}
.product-quantity__val {
	text-align: center;
	width: 3ch;
	padding: 0;
	border: none;
	margin: 0 3px;
	background-color: transparent;
}

/* subcategories */
.subcategories__list{margin:0;padding:0;list-style:none;display:grid;grid-gap:8px 16px;gap:8px 16px;grid-template-columns:repeat(auto-fill,minmax(205px,1fr))}
.subcategories__card{color:#151515;background-color:#E1E1E1;display:flex;align-items:center;text-decoration:none;padding:10px;border-radius:5px;height:100%}
.subcategories__card:hover {text-decoration: underline}
.subcategories__preview{width:40px;flex-shrink:0;margin-right:13px;text-align:center}

/* tags */
.tags {
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}
.tags__list {
	display: flex;
	align-items: center;
	flex-wrap:wrap;
	/*overflow-x: auto;*/
}
.tags__title {
	font-size: 10px;
	white-space: nowrap;
}
.tags__title:not(:last-child),
.tags__btn:not(:last-child) {
	margin-right: calc(4.09091px + 0.909091vw);
	
}
.tags__btn {
	background-color: #E8E8E8;
	border-radius: 12px;
	border: 1px solid #E8E8E8;
	color: #373737;
	padding: 3px 17px;
	text-decoration: none;
	white-space: nowrap;
	margin-bottom:10px;
}
.tags__btn:hover,
.tags__btn_active {
	background-color: #B20600;
	border-color: transparent;
	color: #fff;
}
.tagsBlock {
    display: flex;
    margin-bottom:16px;
}
.tagsGroup{
    padding: 5px 0 8px 0;
    min-width:110px;
    max-width:110px;
    margin-right:10px;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    color: #1D1D1D;
}
@media (min-width: 1200px) {
	.tags__title:not(:last-child),
	.tags__btn:not(:last-child) {
		margin-right: 15px;
	}
}
@media (max-width: 575px) {
    .tags__list {
    	flex-wrap:nowrap;
    	overflow-x: auto;
    }
    .tagsBlock {
       flex-wrap:wrap;
        
    }
    .tagsGroup{
        min-width:100%;
        max-width:100%;
    }
}

/* widget-categories */
.widget-categories__heading {
	font-size: 24px;
	color: #000;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 20px;
}
.widget-categories__descr {
	margin-bottom: 25px;
	color: #333;
}
.widget-categories__descr p:last-child {
	margin-bottom: 0;
}
.widget-categories__more {
	margin-top: 20px;
}

/* categories-cards */
.categories-cards {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 576px) {
	.categories-cards {
		grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	}
}

/* categories-card */
.categories-card {
	border: 1px solid #DADADA;
	border-radius: 5px;
	padding: 15px;
	height: 100%;
	text-align: center;
}
.categories-card__inner {
	height: 100%;
}
.categories-card_toggle {
	display: none;
}
.categories-card__photo {
	flex: 0 0 160px;
	margin-bottom: 15px;
}
.categories-card__title {
	color: #000;
	font-size: 16px;
	font-weight: bold;
}
.categories-card__list-wrapper {
	margin-top: 15px;
}
.categories-card__list {
	margin: -10px 0 0 -15px;
	padding: 0;
	list-style: none;
}
.categories-card__item {
	display: inline-flex;
	align-items: center;
	margin-top: 10px;
	margin-left: 15px;
}
.categories-card__item::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: #969696;
	border-radius: 50%;
	margin-right: 10px;
}
.categories-card__link {
	color: inherit;
	text-decoration: none;
}
.categories-card__link:hover {
	color: #b20600;
}
@media(min-width: 480px) and (max-width: 767.99px), (min-width: 992px) {
	.categories-card__inner {
		text-align: left;
		display: flex;
		align-items: flex-start;
	}
	.categories-card__photo {
		margin-bottom: 0;
		margin-right: 15px;
	}
}

/* articles */
.articles__item:not(:last-child) {
	margin-bottom: 8px;
}

/* article-card */
.article-card {
	background-color: #fff;
	border-radius: 5px;
	padding: 15px;
}
.article-card__photo-link {
	display: block;
	max-width: 100%;
	width: 226px;
	flex-shrink: 0;
	margin-left: auto;
	margin-right: auto;
}
.article-card__photo {
	object-fit: cover;
	border-radius: 5px;
	display: block;
}
.article-card__content {
	padding-top: 15px;
	flex-grow: 1;
}
.article-card__link {
	font-size: 14px;
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
.article-card__link:hover {
	color: #b20600;
}
.article-card__descr {
	margin-top: 10px;
	line-height: 1.6;
	margin-bottom: 17px;
}
.article-card__descr p:last-child {
	margin-bottom: 0;
}
.article-card__meta {
	color: #959595;
	overflow: hidden;
}
.article-card__meta__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: -5px;
	margin-left: -32px;
}
.article-card__date,
.article-card__more {
	margin-top: 5px;
	margin-left: 32px;
}
@media (min-width: 576px) {
	.article-card {
		display: flex;
		padding: 4px;
	}
	.article-card__content {
		padding: 10px 15px;
		display: flex;
		flex-direction: column;
	}
	.article-card__meta {
		margin-top: auto;
	}
}
@media (min-width: 576px) and (max-width: 767.99px) {
	.article-card__descr {
		line-height: 1.6;
		height: calc(1em * 1.6 * 3);
		overflow: hidden;
	}
}
@media (min-width: 768px) {
	.article-card__content {
		padding: 9px 22px;
	}
}

/* post */
.post__date {
	color: #959595;
	margin-top: 40px;
}

/* table-responsive */
.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}

/* alert */
.alert{border-radius: 5px;padding:10px 15px;color:#000}
.alert_theme_danger{background-color:#EFD0D0}
.alert__title{font-size: 14px;font-weight: bold;}
.alert__title+.alert__text{margin-top: 5px}
@media (min-width: 576px) {
	.alert{padding:18px 24px}
}

.contacts {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
}
.contacts__heading {
	margin-top: 0;
	margin-bottom: 16px;
}
@media (min-width: 768px) {
	.contacts {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
	.contacts__info {
		grid-column: span 12 / span 12;
	}
	.contacts__callback {
		grid-column: span 5 / span 5;
	}
	.contacts__map {
		grid-column: span 7 / span 7;
	}
}
@media (min-width: 992px) {
	.contacts__info {
		grid-column: span 6 / span 6;
	}
	.contacts__callback {
		grid-column: span 3 / span 3;
	}
	.contacts__map {
		grid-column: span 9 / span 9;
	}
}

/* callback */
.callback {
	display: flex;
	flex-direction: column;
	text-align: center;
}
.callback__main {
	flex-grow: 1;
	padding: 16px 20px 25px;
	background-color: #E1E1E1;
	border-radius: 5px;
}
.callback__text {
	font-size: 14px;
	color: #000;
}
.callback__phone {
	white-space: nowrap;
	font-size: 24px;
	font-weight: bold;
	color: #000;
	margin-top: 5px;
}
.callback__worktime {
	margin-top: 5px;
}
.callback__footer {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	margin-top: -5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
}
.callback__btn {
	width: 100%;
	margin-top: 18px;
}
@media (min-width: 992px) {
	.callback {
		text-align: left;
	}
	.callback__phone {
		margin-top: 20px;
	}
}

/* map */
.map {
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}

/* company */
.company {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}
.company__row {
	border:1px solid #e4e4e4;
	border-radius:5px;
	color:#000;
	padding: 10px;
	display: block;
	position: relative;
}
.company_picker .company__row {
	cursor: pointer;
}
.company__control:checked + .company__overlay {
	position: absolute;
	top: -1px;
	left: -1px;
	bottom: -1px;
	right: -1px;
	border: 1px solid #1b8d19;
	border-radius: 5px;
	pointer-events: none;
}
.company__col {
	padding: 5px;
	display: block;
}
.company__logo-wrap {
	display: flex;
	align-items: center;
}
.company__price {
	font-weight: bold;
	white-space: nowrap;
}
.company__control {
	margin-right: 20px;
}
.company__logo {
	display: block;
	width: 68px;
	max-width: none;
}
.company__link {
	color: #505050
}
.company__link:hover {
	color: #b20600;
	text-decoration: none;
}
.company__radio {
	position:absolute;
	top:50%;
	left:15px;
	transform:translateY(-50%)
}
.company__price {
	font-size:14px;
	white-space: nowrap;
}
.company__descr {
	color:#888
}
@media (min-width: 768px) {
	.company {
		display: block;
	}
	.company__row {
		display: flex;
		align-items: center;
		padding-top: 0;
		padding-bottom: 0;
	}
	.company__row:not(:first-child) {
		margin-top: 8px;
	}
	.company__col {
		padding: 16px;
	}
	.company__col:first-child {
		padding-left: 10px;
	}
	.company__col:last-child {
		padding-right: 10px;
	}
	.company__col_name {
		margin-right: auto;
	}
	.company__col_nowrap {
		white-space: nowrap;
	}
}

/* features */
.features {
	display: grid;
	grid-gap: 32px;
	gap: 32px;
	background-color: #F9F9F9;
	border-radius: 10px;
	padding: 20px 24px 35px;
	grid-template-columns: minmax(0, 1fr);
}
.features__heading {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 22px;
}
.features__about {
	line-height: 1.6;
}
.features__more {
	margin-top: 25px;
}
@media (min-width: 992px) {
	.features {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* advantages */
.advantages__item:not(:first-child) {
	margin-top: 15px;
}
.advantage {
	display: flex;
	align-items: flex-start;
}
.advantage__icon {
	font-size: 36px;
	margin-right: 15px;
	color: #8D1F19;
}
.advantage__title {
	color: #000;
	font-size: 14px;
	margin-bottom: 7px;
}

/* certificates */
.certificates__item:not(:first-child) {
	margin-top: 15px;
}
.certificate {
	display: flex;
	align-items: flex-start;
}
.certificate__img-holder {
	flex: 0 0 75px;
	margin-right: 20px;
}
.certificate__img {
	object-fit: cover;
	width: 100%;
	display: block;
}
.certificate__link {
	color: inherit;
}
.certificate__link:hover {
	text-decoration: none;
	color: #b20600;
}

/* rating */
.rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.rating__title {
	margin-right: 10px;
}
.rating__form {
	display: flex;
	flex-direction: row-reverse;
	position: relative;
	width: 100px;
	height: 20px;
	background: url(../img/star.svg) left center / 20px;
}
.rating__current {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: url(../img/star-active.svg) left center / 20px;
	pointer-events: none;
}
.rating__btn {
	padding: 0;
	border: none;
	color: #DBD7CA;
	background-color: transparent;
}
.rating__star {
	font-size: 20px;
	display: block;
}
.rating__btn:hover,
.rating__btn:hover ~ .rating__btn {
	color: #FFC107;
}

/* ya-rating */
.ya-rating {
	display: flex;
	align-items: center;
}
.ya-rating__val {
	color: #000;
	font-size: 10px;
	flex-shrink: 0;
	margin-right: 9px;
	line-height: 20px;
	padding-left: 6px;
	padding-right: 3px;
	background-color: #FFC107;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	position: relative;
	margin-right: 17px;
}
.ya-rating__val::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 8px;
	border-color: transparent transparent transparent #FFC107;
	position: absolute;
	top: 0;
	left: 100%;
}

/* reviews-list */
.reviews-list__item {
	background-color: #fff;
}
.reviews-list__item:not(:first-child) {
	margin-top: 16px;
}

/* reviews-widget */
.reviews-widget {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* products-carousel */
.products-carousel {
	position: relative;
}
.products-carousel .swiper-button-disabled {
	display: none !important;
}
.products-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	width: 32px;
	height: 32px;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.products-carousel__nav:hover {
	background-color: #000;
}
.products-carousel__nav::before {
	content: '';
	display: block;
	border-left: 2px solid;
	border-bottom: 2px solid;
	width: 6px;
	height: 6px;
	color: #fff;
}
.products-carousel__nav_dir_prev {
	left: 10px;
}
.products-carousel__nav_dir_prev::before {
	transform: rotate(45deg);
	margin-right: -3px;
}
.products-carousel__nav_dir_next {
	right: 10px;
}
.products-carousel__nav_dir_next::before {
	transform: rotate(225deg);
	margin-left: -3px;
}
.products-carousel__product {
	height: 100%;
}
@media (min-width: 576px) {
	.products-carousel__nav_dir_prev {
		left: 0;
		transform: translateX(-50%);
	}
	.products-carousel__nav_dir_next {
		right: 0;
		transform: translateX(50%);
	}
}

/* swiper-carousel */
.swiper-carousel__actions {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 5px;
}
.swiper-carousel__pagination {
	margin-left: 5px;
	margin-right: 5px;
	width: auto !important;
}
.swiper-carousel__nav {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	width: 24px;
	height: 24px;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;
	margin-right: 5px;
}
.swiper-carousel__nav:hover {
	background-color: #000;
}
.swiper-carousel__nav::before {
	content: '';
	display: block;
	border-left: 2px solid;
	border-bottom: 2px solid;
	width: 6px;
	height: 6px;
	color: #fff;
}
.swiper-carousel__nav_dir_prev {
	left: 10px;
}
.swiper-carousel__nav_dir_prev::before {
	transform: rotate(45deg);
	margin-right: -3px;
}
.swiper-carousel__nav_dir_next {
	right: 10px;
}
.swiper-carousel__nav_dir_next::before {
	transform: rotate(225deg);
	margin-left: -3px;
}

/* grid-view */
.grid-view {
	display: flex;
}
.grid-view__btn {
	width: 24px;
	height: 24px;
	border: none;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #ccc;
	color: #8E8E8E;
	border-radius: 5px;
}
.grid-view__btn:not(:first-child) {
	margin-left: 4px;
}
.grid-view__btn_active {
	background-color: #fff;
	color: #000;
	box-shadow:inset 0 0 0 1px #D7D7D7;
}
.page__sort-panel .select_theme_grey{
    background-color: #fff;
    font-weight: 600;
    font-size: 12px;
    color: #525252;
}
.meta-panel__sort .meta-panel__label{
    font-size:12px;
}
.meta-panel__sort .select_size_small {
    height: 27px;
}
/* products-grid */
.products-grid {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
}
.products-grid_view_horizontal {
	grid-template-columns: minmax(0, 1fr);
}
.products-grid_view_vertical {
	grid-template-columns: minmax(0, 1fr);
}
@media(min-width: 375px) {
	.products-grid_view_vertical {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media(min-width: 768px) {
	.products-grid_view_vertical {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* catalog-meta */
.catalog-meta{
	background-color: #E9E9E9;
	border-radius: 5px;
	padding:6px 9px 6px 16px;
}
.catalog-meta__total {
	display: none;
}
@media (min-width: 768px) {
	.catalog-meta {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.catalog-meta__total {
		display: block;
		margin-right: 32px;
	}
}


/* pagination */
.pagination{overflow:hidden}
.pagination__row{display:flex;flex-wrap:wrap;justify-content:center;margin-top:-8px}
.pagination__item{flex-shrink:0;padding:0 4px;margin-top:8px}
.pagination__item:first-child{padding-right:12px}
.pagination__item:last-child{padding-left:12px}
.pagination__nav,.pagination__link{text-align:center;width:24px;height:24px;line-height:24px;border-radius:5px;color:inherit;text-decoration:none;background-color: #D7D7D7;}
.pagination__link {display: block;}
.pagination__link_current,
.pagination__nav:hover,
.pagination__link:hover{background-color:#B9B9B9;}
.pagination__dots{line-height:24px;white-space:nowrap}
.pagination__nav{display:flex;align-items: center;justify-content: center;color:#7D7D7D;font-size: 8px;}


.mse2_pagination .pagination {
	list-style: none;
	display: flex;
}

.pagination .page-item {
  padding: 0 5px;
  margin-top: 10px;
}
.pagination .page-item:first-child,
.pagination .page-item:last-child {
	display: none;
}
.pagination .page-nav,
.pagination .page-link {
  text-align: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.pagination .page-link {
  color: inherit;
  text-decoration: none;
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background-color: #d60000;
  color: #fff;
}

.pagination .page-dots {
  line-height: 28px;
  white-space: nowrap;
}
.pagination .page-nav {
  color: #898989;
  background-color: #d8d8d8;
}

/* product-photo */
.product-photo__link {
	display: block;
	position: relative;
}
.product-photo__img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	min-height: 269px;
}
.cart-products__photo .product-photo__img {
	min-height: initial;
}
.product-photo__ribbons {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	pointer-events: none;
}

/* subscribe */
.subscribe {
	padding: 16px 16px 16px 28px;
	background-color: #fff;
	border-radius: 10px;
}
.subscribe__text {
	font-weight: bold;
	font-size: 14px;
	color: #000;
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}
.subscribe__envelope {
	color: #B20600;
	font-size: 28px;
	margin-right: 21px;
}

@media(max-width: 1300px) {
	.product-photo__img {
		min-height: initial;
	}
}

@media (min-width: 768px) {
	.subscribe {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.subscribe__text {
		margin-bottom: 0;
		margin-right: 32px;
	}
	.subscribe__form {
		width: 50%;
	}
}
@media (min-width: 992px) {
	.subscribe__form {
		width: 40%;
	}
}

/* subscribe-form */
.subscribe-form {
	display: flex;
}
.subscribe-form__email {
	min-width: 0;
	flex-grow: 1;
}
.subscribe-form__btn {
	margin-left: -5px;
}

/* footer */
.footer {
	background-color: #E7E7E7;
	padding-bottom: 50px;
}	
.footer__middle {
	margin-top: 36px;
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr);
}
.footer__bottom {
	margin-top: 40px;
}

@media (min-width: 768px) {
	.footer__middle {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (min-width: 992px) {
	.footer__middle {
		grid-template-columns: minmax(0, 6fr) repeat(2, minmax(0, 3fr));
	}
}

/* footer-top */
.footer-top {
	background-color: #242424;
	color: #fff;
	border-top: 1px solid transparent;
}
.footer-top__content {
	padding-top: 16px;
	padding-bottom: 16px;
	overflow: hidden;
}
.footer-top__row {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -20px;
	margin-left: -12px;
	margin-right: -12px;
}
.footer-top__row > * {
	padding-left: 12px;
	padding-right: 12px;
	margin-top: 20px;
}
.footer-top__subscribe {
	margin-top: -65px;
}
.footer-top__phones {
	text-align: center;
}
@media (min-width: 768px) {
	.footer-top__subscribe {
		margin-top: -38px;
	}
	.footer-top__row {
		flex-direction: row;
		justify-content: space-between;
	}
}
@media (min-width: 768px) {
	.footer-top__phones {
		text-align: right;
	}
}

/* social */
.social__list {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 20px;
	list-style: none;
}
.social__link {
	text-decoration: none;
	font-size: 27px;
}
.social__icon {
	font-size: 22px;
	display: block;
}

/* footer-widget */
.footer-widget {
	border: 1px solid #DBDBDB;
	border-radius: 5px;
	padding: 20px 25px 30px;
}
.footer-widget__title {
	font-size: 14px;
	color: #000;
	margin-bottom: 20px;
}

/* footer-nav */
.footer-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-gap: 8px 32px;
	gap: 8px 32px;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.footer-nav__link {
	color: inherit;
	text-decoration: none;
}
.footer-nav__link:hover {
	color: #000;
}

/* footer-bottom */
.footer-bottom {
	color: #333333;
}
.footer-bottom a {
	color: #000;
	text-decoration: none;
}
.footer-bottom a:hover {
	color: #b20600;
}
.footer-bottom__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: -10px;
	margin-left: -30px;
}
.footer-bottom__col {
	margin-top: 10px;
	margin-left: 30px;
}

/* to-top */
.to-top {
	display: flex;
	align-items: center;
	background-color: #373737;
	border-radius: 5px;
	color: #fff;
	padding: 10px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 110;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	text-decoration: none;
}
.to-top_visible {
	visibility: visible;
	opacity: 1;
}
.to-top__icon {
	font-size: 14px;
	flex-shrink: 0;
}
.to-top__label {
	margin-left: 20px;
	display: none;
	font-size: 14px;
}
@media (min-width: 768px) {
	.to-top {
		padding-left: 28px;
		padding-right: 28px;
	}
	.to-top__label {
		display: block;
	}
	.to-top__icon {
		font-size: 10px;
	}
}

/* dynamic-content */
.dynamic-content_type_post {
	line-height: 1.6
}
.dynamic-content h1:first-child,
.dynamic-content h2:first-child,
.dynamic-content h3:first-child,
.dynamic-content h4:first-child,
.dynamic-content h5:first-child,
.dynamic-content h6:first-child {
  margin-top: 0;
}
.dynamic-content h1,
.dynamic-content h2,
.dynamic-content h3,
.dynamic-content h4,
.dynamic-content h5,
.dynamic-content h6 {
	margin-bottom: 1em;
	font-weight: 700;
	color: #000
}
.dynamic-content h1,
.dynamic-content .row h1,
.dynamic-content h2,
.dynamic-content .row h2,
.dynamic-content h3,
.dynamic-content .row h3,
.dynamic-content h4,
.dynamic-content .row h4,
.dynamic-content h5,
.dynamic-content .row h5,
.dynamic-content h6,
.dynamic-content .row h6 {
	margin-top: 1.8em;
}
.dynamic-content h1 {
	font-size: 18px;
	line-height: 1.2;
}
.dynamic-content h2 {
	font-size:16px;
	line-height:1.2
}
.dynamic-content h3 {
	font-size:14px;
	line-height:1.3
}
.dynamic-content h4 {
	font-size:13px;
	line-height:1.3
}
.dynamic-content h5 {
	font-size:12px;
	line-height:1.3
}
.dynamic-content h6 {
	font-size:12px;
	line-height:1.3
}
.dynamic-content h1 + h2,
.dynamic-content h2 + h3,
.dynamic-content h3 + h4,
.dynamic-content h4 + h5,
.dynamic-content h5 + h6 {
	margin-top: 1.286em
}
.dynamic-content p > img {
	margin-bottom: 0
}
.dynamic-content p {
	margin-top: 1.083em;
	margin-bottom: 1.083em
}
.dynamic-content p:first-child {
	margin-top: 0;
}
.dynamic-content p:last-child {
	margin-bottom: 0
}
.dynamic-content ul:not([class]),
.dynamic-content ol:not([class]) {
	margin-top: 0;
	padding-left: 20px;
}
.dynamic-content ul:not([class]):last-child,
.dynamic-content ol:not([class]):last-child {
	margin-bottom: 0;
}
.dynamic-content ul:not([class]) li:not(:first-child),
.dynamic-content ol:not([class]) li:not(:first-child) {
	margin-top: 5px;
}
.dynamic-content p + ul,
.dynamic-content p + ol {
	margin-top: -0.9em;
}
.dynamic-content b:not([class]),
.dynamic-content strong:not([class]) {
	color: #000;
}
.dynamic-content a:not([class]) {
	color:#0075ff
}
.dynamic-content a:not([class]):hover{
	text-decoration:none
}
.dynamic-content img {margin-bottom: 20px; vertical-align: bottom;}
.dynamic-content table{

	max-width: 100%;
	border-spacing: 1px;
}
.dynamic-content thead {
	font-size: 10px;
}
.dynamic-content tbody tr:nth-child(odd) td,
.dynamic-content tbody tr:nth-child(odd) th {
	background: #e3e3e3;
}
.dynamic-content tbody tr:nth-child(even) td,
.dynamic-content tbody tr:nth-child(even) th {
	background: #f3f3f3;
}
.dynamic-content tbody {
	color: #000;
}
.dynamic-content td,
.dynamic-content th {
	padding: 6px 11px;
}
.dynamic-content th {
	font-weight: normal;
}
.dynamic-content tbody th {
	text-align: left;
}

/* form */
.form__line:not(:first-child) {
	margin-top: 16px;
}
.form__input-holder {
	display: block;
	position: relative;
}
.form__field {
	width: 100%;
	display: block;
}
.form__field:not(:placeholder-shown) + .form__pen-icon {
	display: block;
}
.form__field:not(:placeholder-shown):invalid {
	border-color: #B20600;
	color: #B20600;
}
.form__field:not(:placeholder-shown):invalid + .form__pen-icon {
	color: #B20600;
	display: block;
}
.form__label > .form__input-holder,
.form__label > .form__field {
	margin-top: 8px;
}
.form__pen-icon {
	position: absolute;
	font-size: 14px;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #BDBDBD;
	display: none;
}
.form__actions {
	margin-top: 30px;
}
.form__privacy {
	color: #3e3e3e;
	font-size: 11px;
}

/* popup */
.popup {
	display: none;
	border-radius: 5px;
	padding: 20px 25px 35px;
}
.popup__header {
	overflow: hidden;
	margin-bottom: 40px;
}
.popup__header-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -32px;
	margin-top: -5px;
}
.popup__header-col {
	margin-left: 32px;
	margin-top: 5px;
}
.popup__title {
	font-weight: bold;
	font-size: 14px;
	color: #000;
}
.popup__header:not(:first-child) {
	margin-top: 30px;
}
.popup__link {
	color: black;
}
.popup__link:hover {
	text-decoration: none;
	color: #b20600;
}
.popup__actions {
	overflow: hidden;
	margin-top: 24px;
}
.popup__actions-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -40px;
	margin-top: -5px;
}
.popup__actions-col {
	margin-left: 40px;
	margin-top: 5px;
}
.popup__delivery-info,
.popup__order {
	margin-top: 20px;
}
.popup__form:first-child {
	margin-top: 25px;
}
.popup__form:not(:first-child) {
	margin-top: 40px;
}

/* cart-alert */
.cart-alert__delivery {
	margin-top: 20px;
}

/* popup-product */
.popup-product {
	display: flex;
	align-items: center;
}
.popup-product_theme_bordered {
	padding: 10px;
	border: 1px solid #F1F1F1;
	border-radius: 10px;
}
.popup-product__img {
	width: 94px;
	flex-shrink: 0;
}
.popup-product__text {
	margin-left: 28px;
}
.popup-product__name-link {
	color: #000;
}
.popup-product__name-link:hover {
	text-decoration: none;
	color: #b20600;
}
.popup-product__footer {
	overflow: hidden;
	margin-top: 15px;
}
.popup-product__footer-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: -5px;
	margin-left: -25px;
}
.popup-product__quantity,
.popup-product__price {
	margin-top: 5px;
	margin-left: 25px;
}
.popup-product__price {
	white-space: nowrap;
	color: #151515;
	font-size: 14px;
	font-weight: bold;
}

/* popup-order */
.popup-order {
	overflow: hidden;
	border-radius: 5px;
	padding: 12px 22px;
	background-color: #DFDFDF;
	color: #000;
}
.popup-order__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: -10px;
	margin-left: -30px;
}
.popup-order__col {
	margin-top: 10px;
	margin-left: 30px;
}
.popup-order__sum-label {
	font-size: 14px;
}
.popup-order__sum {
	font-size: 16px;
	font-weight: bold;
	white-space: nowrap;
}

/* city-picker */
.city-picker__search {
	margin-top: 15px;
}
.city-picker__tags {
	margin-top: 25px;
}
.city-picker__list {
	margin-top: 25px;
}

/* city-legend */
.city-legend {
	overflow: hidden;
}
.city-legend__row {
	margin-top: -5px;
	margin-left: -90px;
	display: flex;
	flex-wrap: wrap;
}
.city-legend__item {
	margin-top: 5px;
	margin-left: 90px;
}
.city-legend__icon {
	font-size: 16px;
	vertical-align: middle;
	color: #A5A5A5;
}
.city-legend__icon_home {
	color: #3c923c;
}

/* city-search */
.city-search {
	position: relative;
}
.city-search__query {
	padding-right: 44px;
	width: 100%;
}
.city-search__btn {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 44px;
	padding: 0;
	background-color: transparent;
	border: none;
	color: #A9A9A9;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.city-search__btn:hover {
	color: #b20600;
}

/* city-tags */
.city-tags {
	overflow: hidden;
}
.city-tags__row {
	margin-left: -9px;
	margin-top: -9px;
	display: flex;
	flex-wrap: wrap;
}
.city-tags__btn {
	margin-top: 9px;
	margin-left: 9px;
	background: #FFFFFF;
	border: 1px solid #EFEFEF;
	border-radius: 100px;
	color: #7E7E7E;
	padding: 3px 13px;
}
.city-tags__btn:hover {
	border-color: transparent;
	background-color: #b20600;
	color: #fff;
}

/* cities-list */
.cites-list {
	overflow: hidden;
}
.cites-list__inner {
	margin: -6px 0 0;
	padding: 0;
	list-style: none;
	columns: 190px 1;
	gap: 32px;
}
.cities-list__item {
	padding-top: 20px;
}
.cities-list__item:first-child{
    padding-top:5px;
}
.cites-list__btn {
	padding: 0;
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	text-align: left;
}
.cites-list__icon {
	margin-right: 8px;
	font-size: 16px;
	color: #A5A5A5;
}
.cites-list__icon_home {
	color: #3c923c;
}
.cites-list__icon_type_arrow {
	height: 8px;
}
.cites-list__btn_active,
.cites-list__btn_active .cites-list__icon,
.cites-list__btn:hover,
.cites-list__btn:hover .cites-list__icon {
	color: #b20600;
}

/* page-header */
.page-header {
	overflow: hidden;
	margin-bottom: 30px;
}
.page-header__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: -5px;
	margin-left: -32px;
}
.page-header__row_justify_start {
	justify-content: flex-start;
}
.page-header__col {
	margin-top: 5px;
	margin-left: 32px;
}
.page-header__heading {
	margin-top: 0;
	margin-bottom: 0;
	font-weight:700;
	color:#000;
	line-height:1.2;
	font-size: 24px;
}
@media (min-width: 768px) {
	.page-header__row {
		flex-wrap: nowrap;
	}
}

/* compare */
.compare__products {
	display: flex;
	justify-content: space-around;
}
.compare__swiper {
	width: 200px;
	max-width: 50%;
	flex-shrink: 0;
}
.compare__product {
	height: 100%;
}
.compare__settings {
	text-align: center;
	margin-top: 16px;
}
.compare__spec {
	margin-top: 16px;
}

/* compare-settings */
.compare-settings__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.compare-settings__label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}
.compare-settings__control {
	flex-shrink: 0;
	margin-right: 8px;
}

/* compare-nav */
.compare-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.compare-nav__item:not(:first-child) {
	margin-top: 8px;
}
.compare-nav__btn {
	border: 1px solid #DFDFDF;
	border-radius: 5px;
	padding: 13px 16px;
	color: #151515;
	text-align: left;
	width: 100%;
	background-color: transparent;
}
.compare-nav__btn:hover,
.compare-nav__btn_active {
	color: #b20600;
	border-color: #b20600;
}

/* compare-table */
.compare-table {
	width: 100%;
	border-collapse: collapse;
	color: #000;
	text-align: center;
}
.compare-table__th,
.compare-table__td {
	padding: 8px 10px;
}
.compare-table__th {
	background-color: #E9E9E9;
	color: #787878;
}
.compare-table__data:not(.compare-table__data_active) {
	display: none;
}

/* cart-info */
.cart-info__box {
	background-color: #D8D8D8;
	border-radius: 5px;
	padding: 12px 15px;
	color: #2e2e2e;
}
.cart-info__section:not(:last-child) {
	border-bottom: 1px dashed #B6B6B6;
	margin-bottom: 18px;
	padding-bottom: 14px;
}
.cart-info__title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 12px;
}
.cart-info__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.cart-info__item {
	display: flex;
	justify-content: space-between;
}
.cart-info__item:not(:last-child) {
	margin-bottom: 5px;
}
.cart-info__item_gap_top {
	margin-top: 16px;
}
.cart-info__val {
	margin-left: 5px;
}
.cart-info__price {
	font-size: 14px;
	font-weight: bold;
}
.cart-info__price_accented {
	color: #FF0900;
}
.cart-info__total-price {
	font-size: 28px;
	font-weight: bold;
}
.cart-info__btn {
	margin-top: 16px;
	width: 100%;
	justify-content: space-between;
}
.cart-info__license {
	margin-top: 10px;
	font-size: 10px;
	color: #9c9c9c;
	margin-top: 16px;
}

/* delivery-info */
.delivery-info__descr:not(:last-child) {
	margin-right: 5px;
}
.delivery-info__icon {
	margin-right: 5px;
	color: #3c923c;
	font-size: 16px;
}
.delivery-info__method {
	color: #939393;
}
.delivery-info__location {
	text-decoration: underline;
}
.delivery-info__date {
	color: #000;
}

/* cart-method */
.cart-method {
	display: flex;
	align-items: center;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
	padding: 14px 20px;
}
.cart-method_theme_alpha {
	background-color: #F7F7F7;
}
.cart-method_theme_beta {
	background-color: #fff;
}
.cart-method__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	border: 1px solid #CECECE;
	border-radius: 5px;
}
.cart-method__control:checked ~ .cart-method__bg {
	border-color: #1B8D19;
}
.cart-method__control:disabled  ~ .cart-method__bg {
	cursor: not-allowed;
}
.cart-method__text {
	margin-left: 18px;
}
.cart-method__title {
	color: #7b7b7b;
	font-weight: bold;
	font-size: 14px;
	display: block;
}
.cart-method__descr {
	display: block;
}
.cart-method__title + .cart-method__descr {
	margin-top: 5px;
}
.cart-method__control:checked ~ .cart-method__text .cart-method__title {
	color: #000;
}

/* styled-radio */
.styled-radio {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	background-color: #D9D9D9;
	flex-shrink: 0;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.styled-radio:checked {
	background-color: #1B8D19;
}
.styled-radio:checked::before {
	content:'';
	display:block;
	width:6px;
	height:10px;
	border-right:2px solid;
	border-bottom:2px solid;
	transform:rotate(45deg);
	margin-top:-2px
}

/* promo-product */
.promo-product {
	background-color: #fff;
	padding: 16px;
	border-radius: 5px;
	color: #000;
	text-decoration: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	align-content: space-between;
}
.promo-product__name {
	text-decoration: underline;
	margin-bottom: 16px;
	flex-basis: 100%;
}
.promo-product:hover .promo-product__name {
	color: #b20600;
	text-decoration: none;
}
.promo-product__prices {
	flex-basis: calc(100% - 122px);
	min-width: 0;
	margin-right: 10px;
}
.promo-product__ribbons {
	margin-bottom: 15px;
}
.promo-product__img-wrapper {
	flex-basis: 112px;
	flex-shrink: 0;
	margin-right: -8px;
	margin-bottom: -8px;
}
.promo-product__img {
	display: block;
	width: 100%;
}
.promo-product__old-price {
	white-space: nowrap;
	font-size: 16px;
	color: #717171;
	text-decoration: line-through;
}
.promo-product__new-price {
	white-space: nowrap;
	font-size: 20px;
	color: #f00;
	font-weight: bold;
	line-height: 1.2;
}

/* product-v */
.product-v {
	background: #fff;
	border-radius: 5px;
	border: 1px solid transparent;
	padding: 16px;
	display: flex;
	flex-direction: column;
}
.product-v:hover {
    border-color: #ddd;
}
.product-v:hover {
	border-color: #d9d9d9;
}
.product-v__photo {
	position: relative;
	margin-bottom: 10px;
}
.product-v__compare-btn {
	position: absolute;
	top: -5px;
	right: -5px;
}
.product-v__img-link {
	display: block;
	color: inherit;
}
.product-v__ribbons {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.product-v__availability {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	font-size: 10px;
}
.product-v__img {
	display:block;
}
.product-v__title {
	margin-bottom: 15px;
}
.product-v__title-link{
	color: #000;
	text-decoration: none;
}
.product-v__title-link:hover {
	text-decoration: underline;
}
.product-v__descr {
	color: #6b6b6b;
	font-size: 12px;
	margin-bottom: 12px;
}
.product-v__footer {
	margin-top: auto;
}
.product-v__old-price {
	text-decoration: line-through;
	color: #A0A0A0;
	white-space: nowrap;
	line-height: 1;
}
.product-v__new-price {
	color: #151515;
	font-weight: bold;
	font-size: 20px;
	white-space: nowrap;
	line-height: 1;
}
.product-v__btn {
	min-width: 69px;
}
@media (hover: hover) {
	.product-v__compare-btn {
		display: none;
	}
	.product-v:hover .product-v__compare-btn {
		display: block;
	}
}
@media(max-width: 374.98px), (min-width: 768px) {
	.product-v__footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.product-v__btn {
		margin-left: 16px;
	}
}
@media (min-width: 375px) and (max-width: 767.98px) {
	.product-v__btn {
		margin-top: 16px;
	}
}

/* price */
.price{white-space:nowrap}
.price_old{color:#A0A0A0;text-decoration:line-through}
.price_new{color:#000}
.price_new .price__val{font-weight:700;}

/* availability */
.availability {
	display: flex;
	align-items: center;
	white-space: nowrap;
	line-height: 1;
	pointer-events: none;
}
.availability__icon-holder{
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 8px;
	margin-right: 9px;
}
.availability_inStock .availability__icon-holder {
	background-color: #25bb21;
	color: #fff;
}
.availability_outStock .availability__icon-holder {
	background-color: #C4C4C4;
	color: #808080;
}
.availability__text {
	color: #6b6b6b;
}

.availability__text{
    font-size:12px;
}
/* compare-btn */
.compare-btn {
	border: none;
	padding: 5px;
	background-color: transparent;
	display: inline-flex;
	align-items: center;
}
.compare-btn__icon {
	color: #A6A6A6;
	font-size: 14px;
}
.compare-btn_active .compare-btn__icon {
	color: #B20600;
}
.compare-btn__label {
	font-size: 10px;
	color: #6b6b6b;
	margin-left: 8px;
}
.compare-btn:hover .compare-btn__icon,
.compare-btn:hover .compare-btn__label {
	color: #000;
}

/* RIBBONS */
.ribbons{display:flex;flex-direction:column;align-items:flex-start;pointer-events:none}
.ribbons__label{font-weight:bold;font-size:12px;white-space:nowrap;border-radius:5px;color:#fff;padding:3px 5px}
.ribbons__label:not(:last-child){margin-bottom:5px}
.ribbons__label_hit{background-color: #d800ff;}
.ribbons__label_new{background-color: #00a1ff;}
.ribbons__label_action{background-color: #FF0000;}
.ribbons__label_sale{background-color:#FF8A00;}

/* product-h */
.product-h {
	background: #fff;
	border-radius: 5px;
	border: 1px solid transparent;
	display: flex;
	flex-wrap: wrap;
}
.product-h:hover {
    border-color: #ddd;
}
.product-h__photo {
	padding: 16px 0 16px 16px;
	width: 150px;
}
.product-h__info {
	display: flex;
	flex-direction: column;
	padding: 16px;
	width: calc(100% - 150px);
}
.product-h__title-link {
    color: #000;
    text-decoration: none;
}
.product-h__title-link:hover {
	text-decoration: underline;
}
.product-h__title-link {
	font-size: calc(11.2727px + 0.227273vw);
}
.product-h__article-holder {
	margin-top: 10px;
	font-size: 10px;
}
.product-h__article {
	color: #000;
}
.product-h__descr {
	color: #939393;
	font-size: 10px;
	margin-top: 15px;
}
.product-h__features {
	margin: auto 0 0;
	padding: 15px 0 0;
	list-style: none;
	display: none;
}
.product-h__feature {
	color: #7e7e7e;
}
.product-h__feature:not(:first-child) {
	margin-top: 5px;
}
.product-h__actions {
	padding: 16px;
	width: 100%;
	border-top: 1px solid #ddd;
}
.product-h__icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-h__availability {
	margin-right: 10px;
}
.product-h__prices {
	margin-top: 10px;
}
.product-h__old-price {
	text-decoration: line-through;
	color: #A0A0A0;
	white-space: nowrap;
}
.product-h__new-price {
	color: #151515;
	font-weight: bold;
	font-size: 20px;
	white-space: nowrap;
}
.product-h__old-price + .product-h__new-price {
	margin-left: 5px;
}
.product-h__btn-holder {
	margin-top: 10px;
}
.product-h__delivery-icon {
	margin-right: 5px;
	color: #3c923c;
	font-size: 16px;
}
.product-h__delivery-label {
	color: #939393;
}
.product-h__delivery-date {
	color: #000;
}
.product-h__delivery + .product-h__btn {
	margin-top: 15px;
}
@media (min-width:  400px) {
	.product-h__features {
		display: block
	}
}
@media (min-width: 768px) {
	.product-h {
		flex-wrap: nowrap;
	}
	.product-h__photo {
		width: 204px;
		flex-shrink: 0;
	}
	.product-h__info {
		width: calc(100% - 204px - 200px);
	}
	.product-h__actions {
		width: 200px;
		flex-shrink: 0;
		border-left: 1px solid #E6E6E6;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		border-top: none;
	}
	.product-h__btn {
		width: 100%;
	}
}
@media (min-width:  1200px) {
	.product-h__title-link {
		font-size: 14px;
	}
}

/* product-btn */
.product-btn {
	padding: 0 15px;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	background-color: #1D1D1D;
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
}
.product-btn:not(.product-btn_theme_disabled):hover {
	background-color: #8D1F19;
}
.product-btn:disabled {
	background-color: #C4C4C4;
	color: #535353;
	font-size: inherit;
}
.product-btn_theme_disabled {
	background-color: #C4C4C4;
	color: #535353;
	font-size: inherit;
}
.product-btn_theme_disabled:hover {
	background-color: #1d1d1d;
	color: #fff;
}
.product-btn__icon {
	font-size: 24px;
}
.product-btn__icon + .product-btn__label {
	margin-left: 14px;
}

/* brands-carousel */
.brands-carousel {
	display: flex;
	text-align: center;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
}
.brands-carousel .swiper-wrapper {
	align-items: center;
}
.brands-carousel__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	padding: 0;
	flex-basis: 24px;
	color: #B3B3B3;
	background-color: #e1e1e1;
	border: none;
	flex-shrink: 0;
}
.brands-carousel__nav_dir_prev {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.brands-carousel__nav_dir_next {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.brands-carousel__inner {
	min-width: 0;
}
.brands-carousel__swiper {
	padding-top: 10px;
	padding-bottom: 10px;
}
.brands-carousel__photo {
	vertical-align: middle;
}

.brands-carousel__swiper .swiper-slide img {
	margin: 10px auto;
}

/* category-descr */
.category-descr {
	background-color: #E7E7E7;
	padding-top: 32px;
	padding-bottom: 50px;
}

/* videos-list */
.videos-list__item:not(:first-child) {
	margin-top: 30px;
}

/* video */
.video {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.video__img {
	display: block;
}
.video__name {
	margin-top: 10px;
}
.video__img-link {
	color: #0075ff;
	display: block;
}
.video__img-link:hover {
	text-decoration: none;
}

/* brand-info */
.brand-info {
	background-color: #fff;
	border-radius: 5px;
	padding: 16px;
}
.brand-info__logo-wrapper {
	margin-left: auto;
	margin-right: auto;
}
.brand-info__logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.brand-info__text {
	margin-top: 16px;
}
.brand-info__title {
	font-weight: bold;
	font-size: 14px;
	color: #000;
}
.brand-info__descr {
	margin-top: 10px;
}
.brand-info__actions {
	margin-top: 10px;
}
.brand-info__link {
	color: #959595;
}
.brand-info__link:hover {
	text-decoration: none;
}
@media (min-width: 768px) {
	.brand-info {
		display: flex;
		align-items: center;
	}
	.brand-info__logo-wrapper {
		flex-basis: 226px;
		flex-shrink: 0;
	}
	.brand-info__text {
		margin-top: 0;
		margin-left: 20px;
		flex-grow: 1;
	}
}

/* filters-list */
@media (min-width: 992px) {
	.filters-list__item:not(:last-child) {
		margin-bottom: 8px;
	}
}

/* filter */
.filter {
	padding: 16px;
	border-bottom: 1px solid #454545;
}
.filter .slider-range .ui-slider-handle {
	background-color: #111;
}
.filter__btn {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	padding: 0;
	background-color: transparent;
	border: none;
	width: 100%;
	display: flex;
	align-items: center;
}
.filter__btn:not(:disabled) {
	cursor: pointer;
}
.filter__btn-arrow {
	font-size: 8px;
	margin-right: 8px;
	color: #B20600;
	transition: transform .2s;
}
.filter_open .filter__btn-arrow {
	transform: rotate(90deg);
}
.filter__content {
	margin-top: 16px;
}
.filter:not(.filter_open) .filter__content {
	display: none;
}
.filter-range__row {
	display: flex;
	margin-bottom: 20px;
}
.filter-range__col {
	flex: 0 0 50%;
	max-width: 50%;
}
.filter-range__val {
	width: 70px;
	border: 1px solid #CCCCCC;
	padding: 0 10px;
	background-color: #D7D7D7;
	border-radius: 5px;
	margin-left: 5px;
	height: 20px;
}
.filter-range__val:hover {
	border-color: #DCDCDC;
}
.filter-range__val:focus {
	background-color: #FAFAFA;
	border-color: #A5A5A5;
}
.filter-options {
	margin: 0;
	padding: 0;
	list-style: none;
}

.filter-options__item:not(:first-child) {
	margin-top: 10px;
}
.filter-options__label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}
.filter-options__checkbox {
	margin-right: 6px;
}
.filter__search {
	height: 32px;
	background: #E2E2E2;
	border: 1px solid #ABABAB;
	border-radius: 5px;
	padding: 0 15px;
	margin-bottom: 10px;
	width: 100%;
}
.filter__search:hover {
	border-color: #DCDCDC;
}
.filter__search:focus {
	background-color: #FAFAFA;
	border-color: #A5A5A5;
}
@media (min-width: 992px) {
	.filter {
		border: 1px solid #DFDFDF;
		border-radius: 5px;
	}
	.filter__btn {
		color: #000;
	}
	.filter .slider-range .ui-slider-handle {
		background-color: #2F2F2F;
	}
}

/* filter-options-btn */
.filter-options-btn {
	height: 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #222;
	border-radius: 5px;
	color: #fff;
	border: none;
	margin-top: 10px;
}
.filter-options-btn__icon {
	margin-left: 20px;
	color: #fff;
	transition: transform .2s;
}
.filter-options-btn_active .filter-options-btn__icon {
	transform: rotate(180deg);
}

.yesno-wrapper .filter-options__title {
    display: flex;
}

@media (min-width: 992px) {
	.filter-options-btn {
		background-color: #E3E3E3;
		color: #333;
	}
	.filter-options-btn:hover {
		background-color: #b9b9b9;
		color: #000;
	}
	.filter-options-btn__icon {
		color: #000;
	}
}

/* slider-range */
.slider-range {
	height: 6px;
	background-color: #D7D7D7;
	border: none !important;
}
.slider-range .ui-slider-handle {
	width: 12px;
	height: 12px;
	top: 50%;
	cursor: grab;
	background-color: #2F2F2F;
	border-radius: 50%;
	margin-left: -6px;
	border: none;
	margin-top: -6px;
}
.slider-range .ui-slider-range {
	height: 100%;
	background-color: #B20600;
}

/* additional-products */
.additional-products__item {
	border: 1px solid #DDDDDD;
	border-radius: 5px;
	/*padding: 5px 12px 5px 7px;*/
	padding: 10px;
	overflow: hidden;
}
.additional-products__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: -12px;
	margin-left: -22px;
}
.additional-products__row > * {
	margin-top: 12px;
	margin-left: 22px;
}
.additional-products__name {
	width: calc(100% - 104px);
}
.additional-products__item:not(:first-child) {
	margin-top: 12px;
}
.additional-products__img {
	width: 60px;
	height: 60px;
	object-fit: cover;
}
.additional-products__prices {
	margin-right: auto;
}
.additional-products__name {
	min-width: 0;
}
.additional-products__name-link {
	color: #000;
}
.additional-products__name-link:hover {
	text-decoration: none;
	color: #b20600;
}
.additional-products__prices {
	white-space: nowrap;
	width: 100%;
	text-align: right;
}
.additional-products__old-price {
	color: #A0A0A0;
	text-decoration: line-through;
}
.additional-products__new-price {
	font-size: 14px;
	font-weight: bold;
	color: #000;
}
@media (min-width: 400px) {
	.additional-products__prices {
		width: auto;
	}
}
@media (min-width: 768px) {
	.additional-products__row {
		flex-wrap: nowrap;
	}
	.additional-products__name {
		width: auto;
		flex-grow: 1;
	}
}

/* product */
.product__name {
	font-size: calc(15.8182px + 0.681818vw);
	line-height: 1.3;
	font-weight: bold;
	color: #000;
	margin-top: 0;
	margin-bottom: 16px;
}
.product__meta {
	overflow: hidden;
	margin-bottom: 20px;
	padding-right: 33px;
	position: relative;
	min-height: 18px;
}
.product__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -40px;
	margin-top: -5px;
}
.product__meta-col {
	margin-left: 40px;
	margin-top: 5px;
}
.product__guarantee {
	display: flex;
	align-items: center;
}
.product__guarantee-icon {
	margin-right: 8px;
	color: #B20600;
	font-size: 16px;
}
.product__print {
	display: inline-flex;
	align-items: center;
	font-size: 18px;
	color: #989898;
	padding: 0;
	border: none;
	background-color: transparent;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -.5em;
}
.product__grid {
	display: grid;
	grid-gap: 16px;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr);
}
.product__photos {
	background-color: #fff;
	padding: 16px;
	border-radius: 16px;
}
.product__gallery,
.product__thumbs  {
	min-width: 0;
}
.product__thumbs {
	margin-top: 16px;
	max-height: 500px;
}
.product__tabs {
	border-radius: 5px;
	overflow: hidden;
}
.product__kits {
	margin-top: 25px;
	margin-bottom: 25px;
	padding: 16px 16px 26px;
	border-radius: 5px;
	background-color: #E7E7E7;
}
@media (min-width: 992px) {
	.product__grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
	.product__photos {
		grid-column: 1 / 10;
	}
	.product__sidebar {
		grid-column: 10 / 13;
		grid-row: 1 / 3;
	}
	.product__tabs {
		grid-column: 1 / 10;
	}
	.product__photos {
		display: flex;
	}
	.product__thumbs {
		flex-shrink: 0;
		width: 67px;
		margin-right: 40px;
		margin-top: 0;
	}
	.product__gallery {
		width: calc(100% - 107px);
		order: 1;
	}
}
@media (min-width: 1200px) {
	.product__name {
		font-size: 24px;
	}
}

/* product-thumbs */
.product-thumbs {
	display: flex;
	border-radius: 5px;
	overflow: hidden;
}
.product-thumbs .swiper-slide {
	width: auto;
}
.product-thumbs__swiper {
	flex-grow: 1;
	min-width: 0;
	padding: 0 10px;
}
.product-thumbs__btn {
	border: none;
	background-color: #E4E3E3;
	width: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #B3B3B3;
	padding: 0;
	flex-shrink: 0;
}
.product-thumbs__img {
	width: 67px;
	height: 51px;
	display: block;
	object-fit: cover;
	border-radius: 5px;
	border: 1px solid transparent;
	cursor: pointer;
}
.swiper-slide-thumb-active .product-thumbs__img  {
	border-color: #B20600;
}
@media (min-width: 992px) {
	.product-thumbs {
		display: flex;
		flex-direction: column;
	}
	.product-thumbs__swiper {
		flex-grow: 1;
		min-width: 0;
		padding: 10px 0;
	}
	.product-thumbs__btn {
		width: 100%;
		height: 18px;
	}
	.product-thumbs__btn .product-thumbs__btn-arrow {
		transform: rotate(90deg);
	}
}

/* product-gallery */
.product-gallery {
	position: relative;
}
.product-gallery__ribbons {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 2;
}
.product-gallery__swiper {
	height: 100%;
}
.product-gallery__link {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.product-gallery__img {
	object-fit: cover;
	max-height: 500px;
}

/* product-order */
.product-order {
	border-radius: 5px;
	background-color: #DEDEDE;
	position: sticky;
	top: 10px;
	text-align: center;
}
.product-order__main {
	padding: 16px;
}
.product-order__indicators {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-order__availability {
	margin-right: 10px;
}
.product-order__prices {
	margin-bottom: 15px;
}
.product-order__old-price {
	white-space: nowrap;
	font-size: 14px;
	color: #000;
	text-decoration: line-through;
}
.product-order__new-price {
	white-space: nowrap;
	color: #000;
	font-weight: bold;
	font-size: 28px;
	line-height: 1.2;
}
.product-order__installment {
	color: #939393;
	margin-top: 5px;
}
.product-order__btn {
	margin-top: 8px;
	vertical-align: middle;
	width: 100%;
}
.product-order__installment {
	margin-top: 13px;
	text-align: center;
}
.product-order__footer {
	border-top: 1px solid #CECECE;
	padding: 16px;
}
@media (min-width: 768px) {
	.product-order__btn {
		width: auto;
	}
}
@media (min-width: 992px) {
	.product-order {
		text-align: left;
	}
	.product-order__btn {
		width: 100%;
	}
}

/* quick-view */
.quick-view {
	background: rgba(10, 10, 10, .85);
}
.quick-view__close {
	color: currentColor;
	padding: 10px;
	right: 5px;
	top: 0;
}
.quick-view__close:hover {
	color: currentColor;
}
.quick-view__content {
	bottom: 0;
	height: calc(100% - 40px);
	left: 0;
	margin: auto;
	max-height: 650px;
	max-width: 980px;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 40px);
	padding: 40px 20px 20px;
	background: #fff;
	border-radius: 5px;
}
.quick-view__carousel {
	position: relative;
	height: 100%;
}
.quick-view__carousel .fancybox-stage {
	bottom: 30px;
}
.quick-view__aside {
	display: none;
}
.quick-view__order {
	display: none;
	position: static;
}
.quick-view-bullets {
	bottom: 0;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-align: center;
	width: 100%;
	z-index: 99999;
}
.quick-view-bullets__item {
	display: inline-block;
	vertical-align: top;
}
.quick-view-bullets__link {
	display: block;
	height: 30px;
	position: relative;
	width: 20px;
}
.quick-view-bullets__bullet {
	background: #d4d2d2;
	border-radius: 99px;
	height: 10px;
	left: 50%;
	overflow: hidden;
	position: absolute;
	text-indent: -99999px;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
}
.quick-view-bullets__item_active .quick-view-bullets__bullet {
	background: #b20600;
}
@media (min-width: 768px) {
	.quick-view__content {
		display: flex;
	}
	.quick-view__carousel {
		width: calc(100% - 67px);
		padding-right: 32px;
		flex-grow: 1;
	}
	.quick-view__aside {
		flex-shrink: 0;
		width: 85px;
		display: block;
		overflow-y: auto;
	}
	.quick-view-thumbs__list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.quick-view-thumbs__item {
		flex-shrink: 0;
		margin-left: 5px;
		margin-right: 5px;
		margin-top: 5px;
		border: 1px solid transparent;
		border-radius: 5px;
		overflow: hidden;
		padding: 3px;
	}
	.quick-view-thumbs__item_active {
		border-color: #B20600;
	}
	.quick-view-thumbs__link {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
	.quick-view-thumbs__img {
		display: block;
		width: 67px;
		height: 51px;
		object-fit: contain;
		flex-shrink: 0;
	}
}
@media (min-width: 992px) {
	.quick-view__order {
		display: block;
		margin-bottom: 16px;
	}
	.quick-view__carousel {
		width: calc(100% - 236px);
	}
	.quick-view__aside {
		width: 236px;
	}
	.quick-view-thumbs {
		overflow: hidden;
	}
	.quick-view-thumbs__list {
		margin: -5px -5px 0;
		display: flex;
		flex-wrap: wrap;
	}
	.quick-view-thumbs__item {
		width: calc(33.3333333333% - 10px);
	}
}

/* product-tabs */
.product-tabs__actions {
	background-color: #E9E9E9;
	display: flex;
    overflow-x: auto;
    white-space: nowrap;
}
.product-tabs__btn {
	text-decoration: none;
	color: #414141;
	padding: 16px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.product-tabs__btn_active,
.product-tabs__btn:hover {
	color: #000;
	background-color: #fff;
}
.product-tabs__btn-icon {
	margin-right: 6px;
	font-size: 16px;
}
.product-tabs__btn-icon_guarantee {
	color: #999;
}
.product-tabs__btn-icon_car {
	color: #3C923C;
}
.product-tabs__content {
	padding: 20px 16px;
	background-color: #fff;
}
.product-tabs__pane:not(.product-tabs__pane_active) {
	display: none;
}
@media (min-width: 768px) {
	.product-tabs__actions {
		display: flex;
	}
}

/* product-reviews */
.product-reviews__heading {
	margin-top: 0;
	color: #000;
	margin-bottom: 15px;
}
.product-reviews__rating {
	margin-bottom: 20px;
}
.product-reviews__list {
	margin: 30px -16px 0;
	padding: 0;
	list-style: none;
}
.product-reviews__item {
	border-top: 1px solid #EFEFEF;
}
.product-reviews__item:last-child {
	border-bottom: 1px solid #EFEFEF;
}
.product-reviews__load-more {
	margin-top: 20px;
}

/* documents */
.documents__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.documents__item {
	position: relative;
	padding-left: 30px;
}
.documents__item:not(:first-child) {
	margin-top: 10px;
}
.documents__link {
	color: inherit;
}
.documents__link:hover {
	color: #b20600;
	text-decoration: none;
}
.documents__icon {
	color: #B20600;
	position: absolute;
	font-size: 20px;
	top: 50%;
	margin-top: -.5em;
	left: 0;
}

/* drawer */
.drawer-overlay {
	display: none;
}
.drawer__header {
	display: none;
}
@media (max-width: 991.98px) {
	.drawer-noscroll {
		overflow:hidden;
	}
	.drawer {
		box-shadow: 0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14), 0 6px 30px 5px rgba(0,0,0,.12);
		top: 0;
		left: 0;
		position: fixed;
		background-color: #373737;
		z-index: 1001;
		width: 256px;
		box-sizing: border-box;
		height: 100%;
		transition-property: transform;
		transition-timing-function: cubic-bezier(.4,0,.2,1);
		display: none;
		color: #fff;
	}
	.drawer_wide {
		width: 100%;
	}
	.drawer_open {
		display: flex;
		flex-direction: column;
	}
	.drawer_closing{
		transform: translateX(-100%);
		transition-duration: 300ms;
	}
	.drawer_animate {
		transform:translateX(-100%);
	}
	.drawer_opening {
		transform: translateX(0);
		transition-duration: 350ms;
	}
	.drawer-overlay {
		background-color: rgba(0,0,0,.32);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1000;
		transition-property: opacity;
		transition-timing-function: cubic-bezier(.4,0,.2,1);
	}
	.drawer_open + .drawer-overlay {
		display: block;
	}
	.drawer_closing + .drawer-overlay {
		transition-duration: 300ms;
		opacity: 0;
	}
	.drawer_animate + .drawer-overlay {
		opacity: 0;
	}
	.drawer_opening + .drawer-overlay {
		transition-duration: 350ms;
		opacity: 1;
	}
	.drawer__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 8px 10px 8px 20px;
		border-bottom: 1px solid #454545;
	}
	.drawer__close {
		margin-left: 16px;
		padding: 0;
		width: 36px;
		height: 36px;
		background-color: #252525;
		color: #d1d1d1;
		border: none;
		border-radius: 5px;
		font-size: 10px;
	}
	.drawer__close:hover {
		color: #fff;
	}
	.drawer__title {
		font-size: 16px;
	}
	.drawer__body {
		overflow-y: auto;
		flex-grow: 1;
	}
}

/* print */
@media print {
	@page {
		margin: 10mm 10mm 10mm 20mm;
	}
	html, body{
		height: 297mm;
		width: 210mm;
	}
	*, *:before, *:after { 
		color: #000 !important;
		box-shadow: none;
		text-shadow: none;
	}
	.container {
		margin: 0;
		padding: 0;
		max-width: none;
		width: auto;
	}
	.icon,
	.top-bar,
	.panel,
	.footer,
	.product__kits,
	.product__additional,
	.product__additional-products,
	.product-order__buttons,
	.product__thumbs,
	.breadcrumbs,
	.product-tabs__btn:not(.product-tabs__btn_active),
	.rating__form,
	.ribbons,
	.compare-btn,
	.installment-btn,
	.product__gallery .swiper-slide:not(:first-child) {
		display: none;
	}
	.header,
	.product__meta-row,
	.product-order__indicators,
	.availability {
		display: block;
	}
	.header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-bottom: 32px;
	}
	.product-order {
		text-align: center;
	}
	.product-order__main {
		padding: 0;
	}
	.product__gallery,
	.product-gallery__img {
		width: 100%;
	}
	.swiper-slide {
		width: 100% !important;
	}
	.product-gallery__img {
		max-width: 100%;
		height: 100%;
	}
	.product__grid {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 0;
	}
	.product__photos {
		flex-shrink: 0;
		width: 300px;
	}
	.product__sidebar {
		width: calc(100% - 300px);
	}
	.product__tabs {
		width: 100%;
	}
	.product-tabs__btn {
		font-size: 18px;
		font-weight: bold;
		padding: 0;
	}
	.dynamic-content td,
	.dynamic-content th {
		padding: 2px 5px;
	}
	a[href^="http"]:after {
		content: " (" attr(href) ")";
	}
	.documents__item {
		padding: 0;
	}
}

/* utilities */
.u-my-16 {
	margin-top: 16px;
	margin-bottom: 16px;
}
.u-mb-16 {
	margin-bottom: 16px;
}
.u-mb-20 {
	margin-bottom: 20px;
}
.u-text-primary {
	color: #B20600;
}
.u-text-black {
	color: #000;
}
.u-text-muted {
	color: #9c9c9c;
}
.u-min-width {
    width: 1%;
}
.u-overflow-hidden {
	overflow: hidden;
}
.u-h-full {
	height: 100%;
}

.w-100 {
    width: 100% !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.filter__btn {
    text-align: left;
}

.filter-options_collapsed {
	max-height: 142px;
	overflow-y: auto;
}

.comparison.added .comparison-remove .compare-btn__icon {
    color: #B20600 !important;
}

.filter-options__title {
    display: block;
}

.filter-options__title sup {
    font-weight: 600;
    margin-left: 2px;
    margin-top: -3px;
}

.comparison.added {
    display: block !important;
}

.no-underline {
    text-decoration: none !important;
}

.search__white {
    background: white !important;
    color: black !important;
}
.comparison .comparison-add{
    display:inline-flex !important;
}

/* SERVICE PAGE */
.service_hero {
	display: flex;
	align-items: center;
	width: 100%;
	position: relative;
}
.service_hero .wrapper {
	display: flex;
	align-items: stretch;
	background-color: #d0d0d0;
}
.service_hero .wrapper .list {
	width: 30%;
	display: flex;
	align-items: center;
}
.service_hero .wrapper .list ul {
	list-style: none;
	background-color: rgba(0, 0, 0, .5);
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 15% auto auto;
}
.service_hero .wrapper .list ul li {
	color: white;
	font-weight: bold;
	font-size: 18px;
	position: relative;
	padding-left: 20px;
}
.service_hero .wrapper .list ul li::before {
	content: "\f054";
	font-family: 'Font Awesome 5 Pro';
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: #ffe800;
    font-size: 16px;
    position: absolute;
    top: 4px;
    left: 0;
    transform: scaleY(1.3);
}
.service_hero .wrapper .img-wrapper {
	width: 45%;
	display: flex;
	align-items: center;
}
.service_hero .wrapper .img-wrapper img {
	margin: auto auto 0 -40px;
}
.service_hero .wrapper .form {
	width: 25%;
	background-color: #252525;
}
.service_hero .wrapper .form h2 {
	color: #ffe800;
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    margin: auto auto 20px;
}
/* SERVICE PAGE END */