:root {
	--blue-main: #180f4d;
	--blue-main-160: rgba(24, 15, 77, 0.16);
	--blue-main-120: rgba(24, 15, 77, 0.12);
	--blue-main-40: rgba(24, 15, 77, 0.04);
	--blue-lighter: #382c79;
	--orange-main: #f58220;
	--black: #080420;
	--grey-800: #1d1a2e;
	--grey-500: #4d4a5e;
	--grey-500-240: rgba(77, 74, 94, 0.24);
	--grey-500-120: rgba(77, 74, 94, 0.12);
	--grey-400: #797786;
	--grey-300: #b7b6be;
	--grey-200: #e1e1e4;
	--grey-100: #f5f5f6;
	--grey-100-480: rgba(245, 245, 246, 0.48);
	--grey-100-120: rgba(245, 245, 246, 0.12);
	--white: #fff;
	--success: #00ae20;
	--green-240: rgba(0, 174, 32, 0.24);
	--green-120: rgba(0, 174, 32, 0.12);
	--green-80: rgba(0, 174, 32, 0.08);
	--warning: #fc0;
	--info: #0059bf;
	--blue-240: rgba(0, 89, 191, 0.24);
	--info-120: rgba(0, 89, 191, 0.12);
	--info-80: rgba(0, 89, 191, 0.08);
	--error: #bf1d00;
	--red-240: rgba(191, 29, 0, 0.24);
	--red-120: rgba(191, 29, 0, 0.12);
	--blue-main-dark: #5959e5;
	--blue-main-dt-40: rgba(89, 89, 229, 0.04);
	--blue-main-dt-160: rgba(89, 89, 229, 0.16);
	--blue-main-dt-80: rgba(89, 89, 229, 0.08);
	--orange-dark: #c3610d;
	--orange: #eb740e;
	--orange-240: rgba(235, 116, 14, 0.24);
	--orange-120: rgba(235, 116, 14, 0.12);
	--orange-80: rgba(235, 116, 14, 0.08);
	--white-200: rgba(255, 255, 255, 0.2);
	--red-80: rgba(191, 29, 0, 0.08);
	--grey-400-120: rgba(121, 119, 134, 0.12);
	--blue-main-280: rgba(24, 15, 77, 0.28);
	--error-dt: #e23235;
	--red-dt-240: rgba(226, 50, 53, 0.24);
	--text-black: #080420;
	--text-secondary: #4d4a5e;
	--text-secondary-dark: #b7b6be;
	--text-white: #fff;
	--text-disabled: #797786;
	--text-disabled-light: #b7b6be;
}

.custom-preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;

	background: rgba(255, 255, 255, 0.4);
	/* лёгкая белая прозрачность */
	backdrop-filter: blur(2px);
	/* опционально — лёгкий блюр */

	display: flex;
	align-items: center;
	justify-content: center;

	z-index: 99999;
	/* перекрывает всё */

	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
}

.custom-preloader.active {
	opacity: 1;
	visibility: visible;
}

/* минималистичный CSS-спиннер */
.spinner {
	width: 48px;
	height: 48px;
	border: 5px solid rgba(0, 0, 0, 0.2);
	border-top-color: var(--orange-main);
	border-radius: 50%;
	animation: spinner 0.75s linear infinite;
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

html {
	height: 100%;
}

body {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0;
	/* font-family:var(--body-font, 'Verdana'); */
	font-family: "NotoSans";
	color: var(--body-c);
	background: var(--body-bg, #fff);
	overflow-anchor: none;
}

body.scroll-disabled,
body.scroll-disabled2 {
	overflow: hidden;
}

h1 {
	font-weight: 600;
	font-size: 36px;
	line-height: 130%;
	color: var(--grey-800);
	margin-top: 0;
	margin-bottom: 40px;
}

h2 {
	font-size: 1.6em;
	margin: 0 0 15px;
	color: var(--h2-c);
}

h3 {
	font-size: 1.4em;
	margin: 0 0 15px;
	color: var(--h3-c);
}

h4 {
	font-size: 1.2em;
	margin: 0 0 15px;
	color: var(--h4-c);
}

h5 {
	font-size: 1.1em;
	margin: 0 0 10px;
	color: var(--h5-c);
}

h6 {
	font-size: 1em;
	margin: 0 0 10px;
	color: var(--h6-c);
}

a,
a:focus,
a:hover,
a:visited {
	text-decoration: none;
	cursor: pointer;
	outline: none !important;
}

button,
select,
.btn,
.btn:active,
.btn:hover,
.btn:focus,
.nav-tabs .li {
	outline: none !important;
	-moz-user-select: none !important;
	-webkit-user-select: none !important;
}

button {
	border: none !important;
}

iframe {
	max-width: 100%;
}

a,
.dropdown-menu li > a i {
	color: var(--a-c);
}

a:hover,
a:focus,
a:active {
	color: var(--a-c-hover);
}

.row {
	margin: 0 -10px;
}

.row-flex {
	display: flex;
	flex-wrap: wrap;
}

.row-flex:before,
.row-flex:after {
	display: none;
}

*[class*="col-"] {
	padding: 0 10px;
}

div.heading {
	display: flex;
	align-items: center;
	margin: 0 0 24px;
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--heading-c);
}

.heading__link {
	margin: 0 0 0 20px;
	text-decoration: underline;
	font-size: 0.7em;
}

label {
	font-weight: 400;
}

hr {
	margin: 10px 0;
}

.checkbox,
.radio {
	margin: 15px 0;
}

.radio label {
	display: flex !important;
	padding: 0;
}

.radio input {
	position: relative !important;
	margin: 0 10px 0 0 !important;
}

.radio input + img {
	margin-right: 10px;
}

.input {
	display: flex;
	align-items: center;
	padding: 0 !important;
	cursor: pointer;
}

.input input {
	position: relative !important;
	min-width: 14px;
	width: 14px;
	height: 14px;
	margin: 0 16px 0 0 !important;
	padding: 0 !important;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: #fff;
	border: solid 1px #ccc;
	outline: none !important;
	cursor: pointer;
}

.input input:hover {
	border-color: #aaa;
}

.input input[type="checkbox"] {
	border-radius: 2px;
}

.input input[type="checkbox"]:checked {
	background: var(--input-checked-bg);
	border: none;
}

.input input[type="checkbox"]:checked:after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 10px;
	height: 5px;
	border: solid 2px #fff;
	border-top: none;
	border-right: none;
	transform: translate(-50%, -80%) rotate(-45deg);
}

.input input[type="radio"] {
	border-radius: 100%;
}

.input input[type="radio"]:checked {
	background: var(--input-checked-bg);
	border: none;
}

.input input[type="radio"]:checked:after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border: solid 3px #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.input-group .input-group-addon {
	text-align: center;
	font-size: 0.95em;
	background: #f5f5f5;
	padding: 0 10px;
	border: solid 1px #e6e6e6;
	border-right: none;
}

.input-group .input-group-addon i + span {
	padding: 0 0 0 6px;
}

.input-group-btn {
	font-size: 0.9em;
}

.input-group-btn .btn {
	height: 34px;
}

form .form-control {
	height: 36px;
}

form textarea.form-control {
	height: auto;
}

.form-control {
	font-size: 0.95em;
	border: 1px solid var(--grey-200);
	border-radius: 8px;
	/* border: solid 1px rgba(0 0 0 / .1);
	border-radius: var(--border-radius-1) */
}

.form-control.input-warning {
	border-color: var(--input-warning-border-c) !important;
}

.form-control[readonly] {
	opacity: 0.7;
	pointer-events: none;
}

.form-control:focus {
	box-shadow: none;
}

.form-control:focus::-webkit-input-placeholder {
	opacity: 0;
	transition: all ease 0.3s;
}

.form-control:focus::-moz-placeholder {
	opacity: 0;
	transition: all ease 0.3s;
}

.form-control:focus:-ms-input-placeholder {
	opacity: 0;
	transition: all ease 0.3s;
}

.form-control:focus:-input-placeholder {
	opacity: 0;
	transition: all ease 0.3s;
}

.search-btn-clear {
	display: none;
	position: absolute;
	z-index: 2;
	top: 8px;
	right: 10px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	padding: 0;
	text-align: center;
	border: none;
	border-radius: 100%;
	background: rgba(0 0 0 / 0.03);
	cursor: pointer;
}

select.form-control {
	padding-right: 30px;
	background: url(../image/chevron.png) no-repeat #fff;
	background-size: 7px;
	background-position: top 50% right 10px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.img-responsive {
	margin: 0 auto;
}

.img-thumbnail {
	border: none;
}

.highlight {
	font-weight: 500;
	background: #fcf8e3;
}

.alert {
	position: relative;
	padding: 12px 30px 12px 15px;
	font-size: 0.95em;
	border: none;
	border-radius: var(--border-radius-1);
}

.alert a {
	text-decoration: underline;
}

.alert i {
	margin: 0 5px 0 0;
}

.alert .close {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.text-danger {
	padding: 4px 0 0;
	line-height: normal;
	font-size: 0.95em;
	color: var(--input-warning-c, #f00);
}

span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
	display: inline;
}

.visible-xxl,
.visible-xl {
	display: none;
}

.required .control-label:before {
	content: "* ";
	color: #f00;
}

.div-text-empty {
	padding: 20px;
	margin: 0 0 40px;
	background: #f7f7f7;
	border-radius: var(--border-radius-1);
}

.dropdown-menu {
	min-width: 200px;
	max-height: 50vh;
	overflow: auto;
	padding: 10px;
	border-radius: var(--border-radius-1);
	scrollbar-width: thin;
}

.dropdown-menu li > a {
	display: flex;
	align-items: center;
	padding: 7px 10px;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
	border-radius: var(--border-radius-1);
}

.dropdown-menu li > a i,
.dropdown-menu li > a img {
	min-width: 15px;
	margin: 0 7px 0 0;
	text-align: center;
}

.dropdown-menu::-webkit-scrollbar {
	width: 8px;
	background: #eee;
	border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 4px;
}

.buttons {
	overflow: auto;
	margin: 0 0 20px;
}

.btn {
	height: 40px;
	font-size: 14px;
	padding: 6px 16px;
	border: none;
	border-radius: var(--border-radius-1, 4px);
	transition:
		color linear 0.2s,
		background linear 0.2s;
}

a.btn {
	line-height: 32px;
}

a.btn-lg {
	line-height: 34px;
}

a.btn-xl {
	line-height: 38px;
}

.btn .fa + span,
.btn .fas + span,
.btn .far + span {
	margin: 0 0 0 8px;
}

.btn i.visible-xs + span {
	margin: 0;
}

.btn-xs {
	height: 26px;
	padding: 0 10px;
	line-height: 22px;
}

.btn-sm {
	height: 40px;
	line-height: 28px !important;
}

.btn-lg {
	height: 36px;
	font-size: 1em;
	font-weight: 500;
	padding: 0 15px;
}

.btn-xl {
	height: 38px;
	font-size: 1.1em;
	font-weight: 500;
	padding: 0 20px;
}

.btn + .btn-lg,
.btn + .btn-xl {
	margin: 0 0 0 15px;
}

.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
	font-size: 1em;
}

.btn-group > .btn-xs {
	font-size: 9px;
}

.btn-group > .btn-sm {
	font-size: 10.2px;
}

.btn-group > .btn-lg {
	font-size: 15px;
}

.btn.disabled {
	opacity: 1;
	cursor: default;
}

.btn.disabled2 {
	display: none !important;
}

.btn-default {
	color: var(--btn-default-c);
	background: var(--btn-default-bg);
}

.btn-default:hover,
.btn-default:focus {
	color: var(--btn-default-c-hover);
	background: var(--btn-default-bg-hover);
}

.btn-primary {
	color: var(--btn-primary-c);
	background: var(--btn-primary-bg);
}

.btn-primary:hover,
.btn-primary:focus {
	color: var(--btn-primary-c-hover);
	background: var(--btn-primary-bg-hover);
}

.btn-danger {
	color: var(--btn-danger-c);
	background: var(--btn-danger-bg);
}

.btn-danger:hover,
.btn-danger:focus {
	color: var(--btn-primary-c-hover);
	background: var(--btn-primary-bg-hover);
}

.list-group-item:not(.ocfilter-option) {
	display: flex;
	align-items: center;
	min-height: 44px;
	font-size: 0.95em;
	background: none !important;
	border: none;
}

.list-group-item:not(:first-child) {
	border-top: solid 1px rgba(0 0 0 / 0.06);
}

.list-group-item:hover {
	background: rgba(0 0 0 / 0.03) !important;
}

header {
	flex: 0 0 auto;
	background: var(--header-bg, transparent);
	border-bottom: 1px solid var(--grey-200);
	margin-bottom: 24px;
}

.top-menu {
	background: var(--top-menu-bg);
	height: 44px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--grey-200);
}

.top-menu .container {
	display: flex;
	align-items: center;
	height: 44px;
}

.top-menu__links {
	flex: 1 1 auto;
}

.top-menu__buttons {
	display: flex;
	white-space: nowrap;
}

.top-menu__buttons .btn-group {
	margin: 0 0 0 10px;
}

.top-menu .btn-group {
	display: flex;
	vertical-align: unset;
}

.top-menu__btn {
	font-size: 0.85em;
	padding: 2px 10px;
	border-radius: var(--border-radius-1);
	color: var(--top-menu-btn-c);
	background: rgba(0 0 0 / 0.03);
	transition:
		color linear 0.15s,
		background linear 0.15s;
}

.top-menu__btn span {
	margin: 0 0 0 8px;
}

.top-menu__btn:hover,
#top .open .btn-group__btn {
	color: var(--top-menu-btn-c-hover);
	background: rgba(0 0 0 / 0.05);
}

.top-menu__account:not(.status-1),
.top-menu__wishlist:not(.status-1),
.top-menu__compare:not(.status-1) {
	display: none;
}

.top-menu__wishlist.status-1 {
	margin: 0 30px 0 0;
}

.top-menu__compare.status-1 {
	margin: 0 30px 0 -30px;
}

.top-menu__compare-icon {
	transform: rotate(90deg);
}

.top-menu__wishlist-total.uni-badge,
.top-menu__compare-total.uni-badge {
	margin-right: -2px;
	padding: 0 6px;
	font-size: 0.95em;
	color: inherit;
}

.header-block {
	display: flex;
	flex-wrap: nowrap;
	padding: 16px 0;
	transition: padding linear 0.15s;
}

header.fixed .header-block {
	padding: 15px 0;
}

.header-block__item {
	display: flex;
	align-items: center;
}

.header-block__item-logo {
	order: 0;
	padding: 0 15px 0 0;
}

.header-logo {
	max-width: 105px;
	display: block;
}

.header-logo span,
.header-logo a {
	font-weight: 500;
	font-size: 1.6em;
	color: var(--header-phones-m-c);
}

.header-block__item-search {
	flex: 1 1 auto;
	order: 1;
	padding: 0 30px 0 5px;
}

.header-search {
	width: 100%;
}

.header-search__form {
	position: relative;
	display: flex;
}

.header-search__category-btn {
	display: flex;
	align-items: center;
	height: 40px;
	font-size: 0.9em;
	padding: 0 15px;
	color: var(--header-search-cat-btn-c);
	background: var(--header-search-cat-btn-bg);
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.header-search__category-icon {
	line-height: 34px !important;
}

.header-search__category-span {
	display: none;
	overflow: hidden;
	max-width: 80px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.header-search__category-span.v {
	display: inline;
}

.header-search__input {
	padding: 0 12px;
	color: var(--header-search-input-c);
	background: var(--header-search-input-bg);
	border-radius: 0 8px 8px 0;
	border: 1px solid var(--grey-200);
	height: 40px;
}

.header-search__category + .header-search__input {
	border-radius: var(--border-radius-0-1-1-0);
}

.header-search__btn {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 1px;
	height: calc(100% - 2px);
	width: 40px;
	color: var(--header-search-input-c);
	background: none;
	transform: translate(0, -50%);
}

.header-search__btn:hover {
	background: rgba(0 0 0 / 0.03);
	border-color: rgba(0 0 0 / 0.07);
	border-radius: var(--border-radius-0-1-1-0);
}

.header-search .search-btn-clear {
	top: 7px;
	right: 45px;
}

.header-search__input::-webkit-input-placeholder {
	color: var(--header-search-input-c);
}

.header-search__input::-moz-placeholder {
	color: var(--header-search-input-c);
}

.header-search__input:-ms-input-placeholder {
	color: var(--header-search-input-c);
}

.header-search__input:-input-placeholder {
	color: var(--header-search-input-c);
}

.header-block__item-telephone {
	order: 2;
	padding: 0 20px;
}

.header-phones {
	position: relative;
	padding-right: 10px;
	display: grid;
	gap: 8px;
}

.header-phones.has-addit {
	padding-right: 30px;
}

.header-phones__main {
	display: flex;
	align-items: center;
	font-weight: 500;
	color: var(--header-phones-m-c);
	white-space: nowrap;
	cursor: pointer;
	font-size: 16px;
	line-height: 16px;
	height: 16px;
}

.header-phones__main:hover {
	color: var(--header-phones-m-c-hover);
}

.header-phones__main-img-i {
	width: 28px;
	text-align: center;
}

.header-phones__main.two-line:first-child {
	margin: 0 0 2px;
}

.header-phones__main img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 16px;
}

.header-phones__main i {
	font-size: 0.85em;
}

.header-phones__main.two-line i {
	font-size: 0.8em;
}

.header-phones__show-phone {
	display: flex !important;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	font-size: 0.8em;
	color: var(--header-phones-m-c);
	background: rgba(0 0 0 / 0.04);
	transform: translateY(-50%);
	border-radius: 100%;
	cursor: pointer;
}

.header-phones__show-phone:hover {
	color: var(--header-phones-m-c);
	background: rgba(0 0 0 / 0.08);
}

.open .header-phones__show-phone {
	transform: rotate(-180deg) translateY(50%);
}

.header-phones__additionals {
	text-align: right;
}

.header-phones__additional {
	color: var(--header-phones-m-c-hover);
	font-size: 0.9em;
	font-weight: 500;
	cursor: pointer;
}

.header-phones__additional.selected {
	color: var(--header-phones-m-c);
	cursor: default;
}

.header-phones__additional img {
	width: auto;
	height: auto;
	margin-top: -2px;
	max-height: 16px;
}

.header-phones__additional + span {
	margin: 0 0 0 10px;
}

.header-phones__a {
	color: var(--header-phones-a-c) !important;
}

.header-phones__a:hover {
	background-color: transparent;
}

.header-phones__span {
	border-bottom: dotted 1px;
}

.header-phones__text {
	padding: 5px 10px;
	color: #888;
	font-size: 0.95em;
}

.header-phones__callback {
	padding: 10px !important;
	text-transform: uppercase;
	text-decoration: underline dotted;
	font-weight: 500 !important;
	color: var(--a-c) !important;
}

.header-cart__btn {
	position: relative;
	cursor: pointer;
}

.header-cart__icon {
	font-size: 2.6em;
}

.header-cart__dropdown {
	display: none;
}

.header-cart__wrapper {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	overflow-y: auto;
	max-height: 70vh;
	border-bottom: solid 1px rgba(0 0 0 / 0.07);
	scrollbar-width: thin;
}

.header-cart__wrapper::-webkit-scrollbar {
	width: 8px;
	background: #eee;
	border-radius: 4px;
}

.header-cart__wrapper::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 4px;
}

.header-cart__wrapper .preloader {
	position: fixed;
	border-radius: var(--border-radius-1);
}

.header-cart__item {
	display: flex;
	align-items: center;
	padding: 15px 0;
	width: 100%;
	min-height: 80px;
}

.header-cart__item:first-child {
	padding-top: 0;
}

.header-cart__item:not(:first-child) {
	border-top: solid 1px rgba(0 0 0 / 0.07);
}

.header-cart__item-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
}

.header-cart__image {
	flex: 0 0 80px;
	margin: 0 15px 0 0;
}

.header-cart__name {
	flex: 1 1 0;
	min-width: 155px;
	font-size: 0.95em;
	font-weight: 500;
	padding: 0 20px 0 0;
	overflow: hidden;
	word-wrap: break-word;
}

.header-cart__stock {
	margin: 10px 0;
	font-weight: 700;
	font-size: 0.75em;
	color: #f00;
}

.header-cart__option-item,
.header-cart__recurring {
	margin: 5px 0 0;
	font-size: 0.75em;
}

.header-cart__quantity {
	padding: 0 25px 0 0;
}

.header-cart__quantity .qty-switch {
	margin: 0;
	position: relative;
	height: 36px;
	width: 140px;
}

.header-cart__price {
	flex: 0 1 80px;
	padding: 0 10px 0 0;
	white-space: nowrap;
	font-weight: 500;
}

.header-cart__total {
	flex: 0 1 100px;
	white-space: nowrap;
	font-weight: 500;
}

.header-cart__price-text,
.header-cart__total-text {
	margin: 0 0 5px;
	color: #888;
	line-height: 1em;
	font-size: 0.65em;
}

.header-cart__remove-btn {
	border: none;
	background: none;
	color: var(--a-c);
}

.header-cart__buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-cart__totals {
	margin: 25px 0;
}

.header-cart__totals-item:not(:first-child) {
	display: none;
}

.header-cart__totals-item:not(:first-child) {
	margin: 5px 0 0;
}

.header-cart__totals-item {
	display: flex;
	justify-content: flex-end;
	font-size: 1.2em;
	font-weight: 700;
}

.header-cart__totals-text {
	margin: 0 5px;
	white-space: nowrap;
}

.header-cart__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 20px auto !important;
	width: 180px;
	height: 180px;
	max-width: 100%;
	max-height: 100%;
	text-align: center;
	font-weight: 500;
	color: #888;
}

.header-cart__empty-icon {
	margin: 0 0 20px;
	font-size: 6em;
}

.header-block__item-account,
.header-block__item-wishlist,
.header-block__item-compare,
.header-block__item-cart {
	order: 3;
	padding: 0 15px;
	flex-direction: column;
	justify-content: center;
}

.header-account,
.header-wishlist,
.header-compare {
	position: relative;
}

.header-account__icon,
.header-wishlist__icon,
.header-compare__icon {
	font-size: 2em;
	cursor: pointer;
}

.header-compare__icon {
	transform: rotate(90deg);
}

.header-block__item-wishlist + .header-block__item-cart .header-cart__icon,
.header-block__item-compare + .header-block__item-cart .header-cart__icon,
.header-block__item-account + .header-block__item-cart .header-cart__icon {
	font-size: 2em;
}

.header-cart__total-items,
.header-wishlist__total-items,
.header-compare__total-items {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -4px;
	right: -10px;
	color: var(--header-icon-total-c);
	background: var(--error-dt);
	padding: 0 3px;
	min-width: 16px;
	height: 16px;
	font-size: 0.8em;
	border-radius: 100%;
}

.header-account__icon,
.header-wishlist__icon,
.header-compare__icon,
.header-cart__icon {
	color: var(--header-icon-c);
}

.header-block__item-telephone
	+ .header-block__item-cart
	.header-block__item-caption {
	display: none;
}

.menu {
	position: relative;
	z-index: 998;
	min-height: 46px;
	color: var(--menu-main-c);
	background: var(--menu-main-bg);
	-webkit-transform: translate3d(0, 0, 0);
}

.menu__header {
	display: flex;
	align-items: center;
	height: 46px;
	padding: 0 12px;
	font-weight: 500;
	cursor: pointer;
}

.menu__collapse {
	position: absolute;
	z-index: 900;
	width: 100%;
	top: 46px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu__level-1-li {
	position: relative;
	border-top: solid 1px rgba(0 0 0 / 0.05);
	transition: all linear 0.15s;
}

/* .menu__level-1-li:last-child{border-radius:var(--border-radius-0-0-1-1)} */
.menu__level-1-a {
	display: flex;
	flex: 1 1 100%;
	min-height: 46px;
	height: 100%;
	align-items: center;
	padding: 0 0 0 15px;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--black);
}

.menu__level-1-a:hover {
	color: var(--menu-main-level-1-c-hover);
}

.menu__level-1-a.disabled {
	pointer-events: none;
	cursor: default;
}

.menu__level-1-li:after,
.menu__chevron-level-1 {
	color: var(--menu-main-level-1-c);
}

.menu__level-1-icon {
	margin: 0 10px 0 0;
}

.menu__level-1-img {
	width: 16px;
	height: 16px;
	margin: 0 7px 0 0;
}

.menu__level-2 {
	background: var(--menu-main-level-2-bg);
}

.menu__level-2-ul {
	list-style: none;
	padding: 0;
}

.menu__level-2-a {
	display: flex;
	align-items: center;
	min-height: 46px;
	font-weight: 500;
	color: var(--menu-main-level-2-c);
}

.menu__level-2-a:hover {
	color: var(--menu-main-level-2-c-hover);
}

.menu__level-2-a.disabled {
	pointer-events: none;
	cursor: default;
}

.menu__chevron-level-2 {
	color: var(--menu-main-level-2-c);
}

.menu__level-3-ul {
	list-style: none;
	padding: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--grey-800);
}

.menu__level-3-a {
	display: flex;
	align-items: center;
	color: var(--menu-main-level-3-c);
}

.menu__level-3-a:hover {
	color: var(--menu-main-level-3-c-hover);
}

.menu__more {
	color: var(--menu-main-level-2-c);
}

.menu__more-span {
	text-decoration: underline;
}

.menu__additional {
	width: 50px;
	max-width: 50px;
}

.menu__level-1-a.additional {
	font-size: 1.4em;
}

.menu1 .menu__header {
	color: var(--menu-main-header-c);
	background: var(--menu-main-header-bg);
}

.menu1 .menu__collapse {
	color: var(--menu-main-c);
	background: var(--menu-main-bg);
}

.menu1 .menu__level-1-li.open {
	background: var(--grey-500-120);
}

.menu1 .menu__level-1-li:first-child {
	border-top: none;
}

.menu2 .menu__level-1-li:hover {
	background: rgba(0 0 0 / 0.05);
}

main {
	flex: 1 0 auto;
	padding: 0;
	background: var(--main-bg, transparent);
	padding-bottom: 40px;
}

main.blur {
	position: relative;
}

.breadcrumb-h1.col-md-offset-3 {
	overflow: hidden;
	padding: 0 0 0 6px;
}

.breadcrumb {
	list-style: none;
	margin-bottom: 40px;
	padding: 0 0 10px;
	overflow-x: auto;
	white-space: nowrap;
	background: 0;
	font-size: 0.95em;
}

.breadcrumb li {
	display: inline-block;
}

.breadcrumb li + li:before {
	padding: 0 5px;
	color: #ccc;
	font-family: "Font Awesome\ 5 Free";
	font-weight: 900;
	font-size: 0.75em;
	content: "\f101";
}

.breadcrumb {
	scrollbar-width: thin;
}

.breadcrumb::-webkit-scrollbar {
	height: 5px;
	background: #eee;
	border-radius: 5px;
}

.breadcrumb::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 5px;
}

.banner {
	margin: 0 0 20px;
}

.banner-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 8px 10px;
	text-align: center;
	font-size: 0.95em;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 0 15px #000;
	border-top: solid 1px rgba(255 255 255 / 0.2);
	background: rgba(0 0 0 / 0.2);
	border-radius: var(--border-radius-0-0-1-1);
}

.menu-module__ul,
.list-group {
	background: var(--menu-module-bg);
	border-radius: var(--border-radius-1);
	overflow: hidden;
}

.menu-module__ul {
	list-style: none;
	margin: 0 0 25px;
	padding: 0;
}

.menu-module__li:not(:first-child) {
	border-top: solid 1px rgba(0 0 0 / 0.06);
}

.menu-module__a {
	display: flex;
	justify-content: space-between;
	padding: 13px 15px;
	font-weight: 500;
}

.menu-module__children-a {
	display: flex;
	align-items: center;
	padding: 0 15px 7px;
	font-size: 0.95em;
	color: var(--menu-module-c2) !important;
}

.menu-module__children-a:hover {
	color: var(--menu-module-c2-hover) !important;
}

.menu-module__children-a:first-child {
	margin-top: -2px;
}

.menu-module__children-a:last-child {
	padding-bottom: 15px;
}

i.menu-module__chevron {
	display: flex;
	width: 24px;
	height: 20px;
	margin: 0 -5px 0 0;
	justify-content: center;
	align-items: center;
	font-size: 0.8em;
	color: rgba(0 0 0 /0.5);
	border-radius: var(--border-radius-1);
}

.menu-module__chevron:hover,
.menu-module__chevron.open {
	background: rgba(0 0 0 / 0.05);
}

.menu-module__chevron.open {
	transform: rotate(-180deg);
}

.menu-module__a,
.menu-module__a:focus,
a.list-group-item {
	color: var(--menu-module-c1);
}

.menu-module__a:hover,
a.list-group-item:hover a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus,
a.list-group-item:hover {
	color: var(--menu-module-c1-hover);
}

.uni-badge {
	width: 16px;
	height: 16px;
	margin: 0 0 0 8px;
	/* padding: 0 8px; */
	color: white;
	text-align: center;
	line-height: 16px;
	font-size: 10px;
	/* background: rgba(0 0 0 / .07); */
	border-radius: 50%;
	background: var(--error-dt);
}

.uni-form {
	overflow: hidden;
	padding: 20px;
	background: #f7f7f7;
	border-radius: var(--border-radius-1);
}

.uni-form__heading {
	margin: 0 0 5px;
	color: #666;
}

.sticker {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 8;
	display: grid;
	gap: 6px;
}

.sticker__item {
	display: flex;
	width: fit-content;
	height: 23px;
	align-items: center;
	clear: both;
	font-size: 0.85em;
	border-radius: 6px;
	padding: 2px 8px;
	opacity: 0.8;
	white-space: nowrap;
	font-weight: 400;
	font-size: 10px;
	line-height: 130%;
	color: var(--white);
}

.sticker__item.reward {
	color: var(--sticker-reward-c);
	background: var(--sticker-reward-b);
}

.sticker__item.special {
	color: var(--sticker-special-c);
	background: var(--sticker-special-b);
}

.sticker__item.bestseller {
	color: var(--sticker-bestseller-c);
	background: var(--sticker-bestseller-b);
}

.sticker__item.new {
	color: var(--sticker-new-c);
	background: var(--sticker-new-b);
}

.sticker__item.sku {
	color: var(--sticker-sku-c);
	background: var(--sticker-sku-b);
}

.sticker__item.upc {
	color: var(--sticker-upc-c);
	background: var(--sticker-upc-b);
}

.sticker__item.ean {
	color: var(--sticker-ean-c);
	background: var(--sticker-ean-b);
}

.sticker__item.jan {
	color: var(--sticker-jan-c);
	background: var(--sticker-jan-b);
}

.sticker__item.isbn {
	color: var(--sticker-isbn-c);
	background: var(--sticker-isbn-b);
}

.sticker__item.mpn {
	color: var(--sticker-mpn-c);
	background: var(--sticker-mpn-b);
}

.option {
	position: relative;
	z-index: 1;
}

.option__group {
	margin: 0 0 5px;
}

.option__group-name {
	display: block;
	margin: 0 0 10px;
	font-size: 0.95em;
	font-weight: 500;
}

.option__item {
	float: left;
	position: relative;
	z-index: 1;
	margin: 0 15px 15px 0;
	cursor: pointer;
}

.option__item.ended {
	cursor: not-allowed;
}

.option__item.ended .option__name,
.option__item.ended:hover .option__name {
	opacity: 0.5;
	filter: grayscale(100%);
}

.option__item.ended .option__img {
	opacity: 0.5;
	filter: grayscale(100%);
	border: solid 2px rgba(0 0 0 / 0.25) !important;
}

.option__item input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.option__select {
	margin: 0 0 10px;
	padding: 0 13px;
	height: 26px;
	line-height: 20px;
	color: var(--option-select-c);
}

.option__name {
	display: block;
	white-space: nowrap;
	margin: 0;
	padding: 0 10px;
	font-size: 0.9em;
	width: auto;
	height: 26px;
	line-height: 26px;
	color: var(--option-name-c);
	background: var(--option-name-bg);
	border-radius: var(--border-radius-1);
	transition: all linear 0.1s;
}

.option__item:not(.ended):hover .option__name {
	color: var(--option-name-c-hover);
	background: var(--option-name-bg-hover);
}

.option__item:not(.ended) input:checked + .option__name {
	color: var(--option-name-c-checked);
	background: var(--option-name-bg-checked);
}

.option__img {
	width: 26px;
	padding: 1px;
	border: solid 2px rgba(0 0 0 / 0.1);
	border-radius: 3px;
	pointer-events: none;
	transition: all ease-in-out 0.15s;
}

.option__img:hover,
.option input:hover + .option__img,
.option input:checked + .option__img {
	border-color: var(--option-img-hover);
}

.option__popup {
	position: absolute;
	z-index: 9999;
	display: none;
	overflow: hidden;
	max-width: 95%;
	padding: 4px;
	text-align: center;
	font-size: 0.8em;
	background: #fff;
	border-radius: var(--border-radius-1);
	box-shadow: 0 4px 10px rgba(0 0 0 / 0.2);
}

.option__popup-img {
	margin: 0 0 5px;
}

.option .text-danger {
	position: absolute;
	top: -8px;
	font-weight: 500;
	padding: 7px 10px;
	border-radius: var(--border-radius-1);
	background: #fff;
	box-shadow: 0 0 15px rgba(0 0 0 / 0.3);
}

.option__popup.module {
	width: var(--option-popup-img-w);
}

/* .qty-switch{display:flex;float:left;margin:0 12px 0 0} */
/* .qty-switch__input{width:36px;height:34px;padding:0;text-align:center;border-right:none;border-radius:var(--border-radius-1-0-0-1)} */
/* .qty-switch__btn.fa{display:block;width:20px;height:17px;line-height:15px;text-align:center;font-size:.5em;color:#666;background:#f2f2f2;border:solid 1px #e3e3e3;cursor:pointer}
.qty-switch__btn.fa:hover{background:#eaeaea}
.qty-switch__btn.fa-plus{border-radius:var(--border-radius-0-1-0-0)}
.qty-switch__btn.fa-minus{border-top:none;border-radius:var(--border-radius-0-0-1-0)} */

.qty-switch__cart .qty-switch__input {
	height: 36px !important;
	border: 1px solid var(--grey-200);
	border-radius: 8px;
	text-align: center;
}

.qty-switch__cart .qty-switch__btn {
	width: 36px;
	height: 36px;
	line-height: 36px;
	border: none !important;
	position: absolute;
	cursor: pointer;
	text-align: center;
	top: 0;
}

.qty-switch__cart .qty-switch__btn.fa-plus {
	right: 0;
}

.qty-switch__cart .qty-switch__btn.fa-minus {
	left: 0;
}

.rating {
	display: flex;
	align-items: center;
	min-height: 20px;
	font-size: 0.95em;
}

.rating .fa-star {
	margin: 0 2px 0 0;
	color: var(--rating-star-c-active);
}

.rating .far.fa-star {
	color: #ccc;
}

.rating .fa-comment {
	margin: 0 3px 0 10px;
	color: #999;
}

.rating:hover .fas {
	color: var(--rating-star-c-active);
}

.rating .uni-badge {
	line-height: 14px;
	font-weight: 500;
	color: #666;
}

.price {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: var(--price-c);
	white-space: nowrap;
	font-weight: 600;
	font-size: 20px;
	line-height: 130%;
}

.price .price-old {
	font-weight: 500;
	font-size: 0.7em;
	color: var(--price-old-c);
	text-decoration: line-through;
}

.price .price-new {
	/* margin: 0 15px 0 0; */
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: var(--grey-800);
	display: flex;
	align-items: center;
	gap: 8px;
}

.product_price-wrap .text_price {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--grey-400);
}

.product_price-wrap {
	display: grid;
	gap: 8px;
}

.product-thumb__price,
.product-thumb__price_wholesale {
	display: grid;
	grid-template-columns: 1fr 3fr;
	align-items: center;
	gap: 8px;
}
.product-thumb__price_wholesale {
	height: 48px;
}

.product-thumb__price_wholesale .price_wholesale-wrap {
	display: grid;
}

.product-thumb__price_wholesale .price_wholesale-wrap .price_wholesale {
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
	color: var(--grey-800);
}

.product-thumb__price_wholesale .price_wholesale-wrap .price_wholesale_empty {
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: var(--grey-800);
}

.product-thumb__price_wholesale .price_wholesale-wrap .text_economy {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: var(--success);
}

.price-tax {
	margin: 10px 0 0;
	color: #999;
	font-size: 0.8em;
}

.add_to_cart {
	color: var(--add-to-cart-btn-c);
	background: var(--add-to-cart-btn-bg);
}

.add_to_cart:hover,
.add_to_cart:focus,
.add_to_cart:active {
	color: var(--add-to-cart-btn-c-hover);
	background: var(--add-to-cart-btn-bg-hover);
}

.add_to_cart.in_cart {
	color: var(--add-to-cart-btn-c-incart);
	background: var(--add-to-cart-btn-bg-incart);
}

.add_to_cart.in_cart:hover,
.add_to_cart.in_cart:focus,
.add_to_cart.in_cart:active {
	color: var(--add-to-cart-btn-c-incart-hover);
	background: var(--add-to-cart-btn-bg-incart-hover);
}

.add_to_cart.qty-0 {
	color: var(--add-to-cart-btn-c-disabled);
	background: var(--add-to-cart-btn-bg-disabled);
}

.add_to_cart.qty-0:hover,
.add_to_cart.qty-0:focus,
.add_to_cart.qty-0:active {
	color: var(--add-to-cart-btn-c-disabled-hover);
	background: var(--add-to-cart-btn-bg-disabled-hover);
}

.add_to_cart.disabled {
	color: var(--add-to-cart-btn-c-disabled);
	background: var(--add-to-cart-btn-bg-disabled);
}

.add_to_cart.disabled:hover,
.add_to_cart.disabled:focus,
.add_to_cart.disabled:active {
	color: var(--add-to-cart-btn-c-disabled-hover);
	background: var(--add-to-cart-btn-bg-disabled-hover);
}

.btn.quick-order {
	color: var(--quick-order-btn-c);
	background: var(--quick-order-btn-bg);
}

.btn.quick-order:hover,
.btn.quick-order:focus,
.btn.quick-order:active {
	color: var(--quick-order-btn-c-hover);
	background: var(--quick-order-btn-bg-hover);
}

button.compare,
button.wishlist {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 1;
	width: 28px;
	height: 28px;
	font-size: 0.8em;
	border-radius: 8px;
	transition: all linear 0.15s;
	background: #e9e9eb;
}

button.compare .fas {
	transform: rotate(90deg);
}

.wishlist,
.wishlist a {
	color: var(--wishlist-btn-c);
	background: var(--wishlist-btn-bg);
}

.wishlist:hover,
.wishlist a:hover,
.wishlist.active {
	color: var(--wishlist-btn-c-hover);
	background: var(--wishlist-btn-bg-hover);
}

.compare,
.compare a {
	color: var(--compare-btn-c);
	background: var(--compare-btn-bg);
}

.compare:hover,
.compare a:hover,
.compare.active {
	color: var(--compare-btn-c-hover);
	background: var(--compare-btn-bg-hover);
}

.uni-href {
	cursor: pointer;
}

.uni-item {
	width: 100%;
	background: #fff;
	border: 1px solid var(--grey-200);
	border-radius: 12px;
	background-clip: padding-box;
	transition: box-shadow linear 0.1s;
}

.uni-item-bg {
	align-items: center !important;
	padding: 15px;
	border-radius: var(--border-radius-1);
	transition: all ease-in-out 0.15s;
	font-size: 18px;
}

/* .uni-module {
	margin-bottom: 100px
} */

.uni-module__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	opacity: 0;
}

.uni-module__wrapper.load-complete {
	opacity: 1;
	transition: none !important;
}

.uni-module .owl-stage {
	display: flex;
}

.uni-module__item,
.uni-module .owl-item {
	display: flex;
	float: left;
	padding: 0 10px;
}

.uni-module .owl-nav {
	left: -5px !important;
	right: -5px !important;
	margin: -7px 0 0;
}

.uni-module .owl-dots {
	margin: 0 0 48px !important;
}

.product-thumb {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	margin: 0 0 20px;
}

.product-thumb.hover {
	position: absolute;
	z-index: 99;
}

.product-thumb__image {
	position: relative;
	z-index: 1;
	padding: 16px 16px 8px;
}

.product-thumb__image:hover .uni-timer {
	visibility: hidden;
	opacity: 0;
}

.product-thumb__name {
	margin: 0 0 4px;
	word-wrap: break-word;
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: var(--grey-800);
	flex-shrink: 0;
}

.product-thumb__name:hover {
	color: var(--prod-thumb-name-hover);
}

.product-thumb__caption {
	display: flex;
	flex-direction: column;
	flex: 1 1 100%;
	overflow: hidden;
	border-radius: 8px;
	padding: 8px 16px 16px;
}

.product-thumb__model {
	margin-top: auto;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: var(--grey-400);
}

.product-thumb__model:before {
	content: attr(data-text);
	margin: 0 5px 0 0;
}

.product-thumb__description {
	flex: 0 1 100%;
	margin: 0 0 10px;
	font-size: 0.95em;
	word-wrap: break-word;
}

.product-thumb__description.description {
	color: #666;
}

.product-thumb__attribute {
	flex-basis: content;
	color: #888;
}

.product-thumb__attribute-value:not(:last-child):after {
	content: "/";
	padding: 0 2px 0 5px;
	color: #ccc;
}

.product-thumb__attribute-value {
	color: var(--body-c);
}

.product-thumb__option {
	margin: 0;
}

.product-thumb__option .option__group {
	margin: 0;
	clear: both;
}

.product-thumb__option .option__group:after {
	display: block;
	clear: both;
	content: "";
	height: 5px;
}

.product-thumb__rating {
	margin: 0 0 8px;
	color: var(--a-c);
}

.product-thumb__rating-text {
	margin: 0 0 0 5px;
}

.product-thumb__quick-order {
	margin: 0 0 0 15px;
	opacity: var(--prod-thumb-quick-order-opacity, 0);
}

.product-thumb:hover .product-thumb__quick-order {
	opacity: 1;
}

.product-thumb__wishlist,
.product-thumb__compare {
	top: 16px;
	right: 16px;
}

.product-thumb__wishlist:not(.hidden) + .product-thumb__compare {
	top: 48px;
}

.product-thumb__price {
	font-size: 1.3em;
}

.product-thumb__cart {
	display: flex;
	margin: 12px 0 0;
}

.product-thumb__cart.disabled2 {
	min-height: 34px;
}

.product-thumb__addit {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	width: 100%;
	height: 100%;
	text-align: center;
}

.product-thumb__addit-item {
	display: flex;
	flex: 1 1 auto;
	margin: 0 5px;
	border-bottom: solid 1px #ddd;
}

.product-thumb__addit-item.active {
	border-color: var(--a-c);
	opacity: 0.8;
}

.product-thumb__addit-item:first-child {
	margin-left: 0;
}

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

.sorts-block {
	display: flex;
	align-items: center;
	margin: 0 0 20px;
}

.sorts-block__limit {
	width: auto;
	margin: 0 0 0 20px;
}

.sorts-block__wrapper {
	display: grid;
	width: 100%;
	align-items: center;
	grid-template-columns: 1fr auto;
}
.sorts-block__sorts {
	flex: 1 1 auto;
}

.sorts-block__span {
	margin: 0 20px 0 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: var(--grey-400);
	cursor: pointer;
	white-space: nowrap;
}

.sorts-block__span.selected {
	color: var(--grey-800);
}

.sorts-block__span.selected:after {
	margin: 0 0 0 5px;
	font-family: "Font Awesome\ 5 Free";
	font-weight: 900;
	font-size: 0.85em;
}

.sorts-block__span.selected.up:after {
	content: "\f160";
}

.sorts-block__span.selected.down:after {
	content: "\f884";
}

.sorts-block__btn-group {
	display: flex;
	white-space: nowrap;
	margin: 0 0 0 20px;
}

.sorts-block__btn {
	padding: 0 12px;
	font-size: 0.85em !important;
}

.sorts-block__btn.selected:before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	content: "";
	background: rgba(0 0 0 / 0.06);
	border-radius: inherit;
}

.product-category-list {
	margin: 0 0 30px;
	padding: 20px 20px 10px;
	background: #f7f7f7;
	border-radius: var(--border-radius-1);
}

.product-category-list ul {
	margin: 0;
}

.product-category-list__item {
	position: relative;
	display: inline-block;
	margin: 0 20px 8px 0;
	line-height: 2em;
	font-weight: 500;
	font-size: 0.95em;
	white-space: nowrap;
}

.product-category-list__item.selected {
	color: #666;
}

.product-category-list__item a {
	position: relative;
	z-index: 1;
}

.product-category-list__item:before {
	position: absolute;
	content: "";
	width: calc(100% + 20px);
	height: 100%;
	transform: translateX(-10px);
	border-radius: var(--border-radius-1);
	transition: background linear 0.1s;
}

.product-category-list__item:hover:before,
.product-category-list__item.selected:before {
	background: rgba(0 0 0 / 0.05);
}

.product-category-list__reset {
	position: relative;
	top: 2px;
	margin: 0 0 0 5px;
	line-height: normal;
	font-size: 1.2em;
}

.grid-view {
	display: flex;
}

.list-view .product-thumb {
	flex-direction: row;
}

.list-view .product-thumb__image {
	flex: 1 0 auto;
	margin: 0;
	padding: 0;
}

.list-view .product-thumb__addit-dot {
	transform: translate(0, -15px);
}

/* .list-view .product-thumb__caption{padding:0 25px} */
/* .list-view .product-thumb__name{margin:0} */
.list-view .product-thumb__description {
	display: block !important;
}

.list-view .product-thumb__option {
	display: block !important;
}

.list-view .option__select {
	max-width: 200px;
}

.list-view .product-thumb__price {
	margin-top: auto;
}

.list-view .product-thumb__cart {
	margin-right: -20px;
	margin-top: auto;
}

.list-view .product-thumb__rating {
	display: none;
}

.list-view .product-thumb__wishlist,
.list-view .product-thumb__compare {
	top: 16px;
	right: auto;
	left: 224px;
}

.list-view .product-thumb__wishlist:not(.hidden) + .product-thumb__compare {
	top: 50px;
}

.list-view .product-thumb__model {
	margin-bottom: 12px;
}

.list-view .qty-indicator {
	padding-top: 0;
	margin-bottom: 12px;
}

.product-thumb__model {
	margin-bottom: 8px;
}

.compact-view {
	flex: 1 1 100%;
}

.compact-view .product-thumb {
	flex-direction: row;
	align-items: center;
	flex: 1 1 100%;
	padding: 16px;
}

.compact-view .product-thumb__image {
	margin: 0;
	padding: 0;
	flex-shrink: 0;
	margin-right: 24px;
}

.compact-view .product-thumb__caption {
	width: 100%;
	align-items: center;
	padding: 0;
	gap: 20px;
	display: grid;
	grid-template-columns: 1fr 250px 100px;
}

.compact-view .qty-indicator,
.compact-view .product-thumb__quick-order {
	margin: 0;
}

.compact-view .product-thumb__name {
	flex: 1 1 100%;
	padding: 0;
}

.compact-view .product-thumb__option {
	display: block !important;
	min-height: 75px;
	flex: 0 0 20%;
	margin: 0;
	padding: 0 10px;
}

/* .compact-view .qty-indicator{display:none;min-height:75px;margin:0;padding:0 10px;justify-content:center}
.compact-view .qty-indicator:before{display:none} */
.compact-view .product-thumb__price {
	text-align: center;
	font-size: 1.2em;
}

.compact-view .product-thumb__price .price-new {
	margin: 0;
}

.compact-view .product-thumb__cart {
	flex-wrap: nowrap;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.compact-view .product-thumb__add-to-cart span {
	margin: 0;
}

.compact-view .product-thumb__quick-order {
	opacity: 1;
}

.compact-view .product-thumb__addit,
.compact-view .sticker,
.compact-view .uni-timer,
.compact-view .product-thumb__description,
.compact-view .product-thumb__rating,
.compact-view .product-thumb__wishlist,
.compact-view .product-thumb__compare,
.compact-view .product-thumb__add-to-cart i,
.compact-view .product-thumb__quick-order {
	display: none;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 10px 0 0;
}

.pagination li a,
.pagination li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 32px;
	margin: 0 0 15px;
	border-radius: var(--border-radius-1);
	font-weight: 700;
}

.pagination li + li {
	margin: 0 0 0 10px;
}

.pagination li a,
.pagination li a:hover,
.pagination li a:visited {
	color: var(--pagination-c);
	background: var(--pagination-bg);
}

.pagination li.active span,
.pagination li.active span:hover,
.pagination li.active span:focus {
	color: var(--pagination-c-active);
	background: var(--pagination-bg-active);
}

.pagination-text {
	margin: 0 0 40px;
	font-size: 0.95em;
	color: #888;
	text-align: center;
}

.article_description {
	margin: 0 0 40px;
	line-height: 1.7em;
	word-wrap: break-word;
}

.article_description a {
	text-decoration: underline;
}

.article_description img {
	width: auto !important;
	max-width: 100%;
}

.html-module {
	margin: 0 0 30px;
}

.home-page .html-module {
	padding: 20px 20px 10px;
	background: rgba(0 0 0 / 0.03);
	border-radius: var(--border-radius-1);
}

.home-page .html-module h1 {
	font-size: 1.6em;
	margin: 0 0 15px;
}

.home-page .html-module p {
	line-height: 1.7em;
}

.category-info {
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin: 0 0 40px;
	padding: 15px;
	background: #f7f7f7;
	border-radius: var(--border-radius-1);
	line-height: 1.5em;
	font-size: 0.95em;
}

.category-info_description {
	height: 100%;
}

.category-info__image {
	float: left;
	max-width: 150px;
	margin: 0 20px 5px 0;
}

.category-info img {
	max-width: 100%;
	border-radius: var(--border-radius-1);
}

.category-info-bottom .category-info {
	display: block !important;
}

.category-info .desc-collapse {
	background: inherit;
}

.category-info .desc-collapse:before {
	background: linear-gradient(0deg, #f7f7f7 0%, transparent 100%);
}

.desc-collapse {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px 0;
	text-align: center;
	font-weight: 500;
	background: #fff;
}

.desc-collapse:before {
	content: "";
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 50px;
	background: linear-gradient(0deg, #fff 0%, transparent 100%);
}

.category-list {
	margin-bottom: 25px;
}

.category-list > div {
	margin: 0 0 20px;
}

.category-list__item {
	display: flex;
	height: 100%;
	align-items: center;
	border: 1px solid var(--grey-200);
	border-radius: 12px;
	padding: 16px;
	gap: 20px;
	transition: all 0.3s ease;
}

.category-list__item.middle {
	padding: 12px 16px;
}

.category-list__item:hover .category-list__name {
	color: var(--orange-main);
}

.category-list-wrap {
	display: grid;
	gap: 4px;
}

.category-list__img {
	border-radius: var(--border-radius-1-1-0-0);
	margin: 0;
}

.category-list__name {
	width: 100%;
	word-wrap: break-word;
	font-weight: 600;
	font-size: 20px;
	line-height: 130%;
	color: var(--grey-800);
	transition: color 0.3s ease;
}

.category-list__name.subcat {
	font-size: 16px;
}

.category-list__name.active {
	color: var(--orange-main);
}

.category-list__product_count {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--grey-400);
}

.manufacturer-page-list__name {
	margin: 0 10px 20px;
	font-weight: 700;
}

.nav-tabs {
	display: flex;
	justify-content: space-between;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0;
	border-radius: var(--border-radius-1);
	margin: 0 0 20px;
	background: var(--nav-tabs-bg);
	white-space: nowrap;
}

.nav-tabs li {
	display: flex;
	align-items: center;
	height: 48px;
	margin: 0;
	padding: 0 15px;
}

.nav-tabs li a {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.1em;
	font-weight: 700;
	color: var(--nav-tabs-c);
}

.nav-tabs li.active a,
.nav-tabs li.active a:focus,
.nav-tabs li.active a:hover {
	color: var(--nav-tabs-c-active);
}

.nav-tabs li a:after {
	position: absolute;
	left: 0;
	width: 0;
	bottom: -2px;
	content: "";
	transition: all ease-in-out 0.15s;
	border-bottom: solid 2px !important;
}

.nav-tabs li.active a:after,
.nav-tabs li a:hover:after {
	width: 100%;
}

.carousel {
	margin: 0 0 25px;
	border: solid 1px rgba(0 0 0 / 0.08);
	background: #fff;
	border-radius: var(--border-radius-1);
}

.footer {
	flex: 0 1 auto;
	padding: 25px 0 0;
	color: var(--footer-c);
	background: var(--footer-bg);
}

.footer.blur {
	position: relative;
	z-index: 1;
}

.footer__column-heading {
	display: flex;
	align-items: center;
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 1.2em;
	color: var(--footer-heading-c);
}

.footer__column-icon {
	margin: 0 5px 0 -5px;
	font-size: 0.8em;
}

.footer__column-ul {
	margin: 0;
}

.footer__column-li {
	display: flex;
	align-items: center;
	margin: 0 0 10px;
	font-size: 0.95em;
	font-weight: 500;
}

.footer__column-li:last-child {
	margin: 0 0 20px;
}

.footer a,
.footer__column-a,
.footer__column-a:hover,
.footer__column-a:active,
.footer__column-a:visited {
	color: var(--footer-c) !important;
}

.footer__column-a:hover {
	text-decoration: underline;
}

.footer__contacts-icon {
	min-width: 15px;
	margin: 0 5px 0 0;
}

.footer__contacts-icon.fa-phone-alt {
	font-size: 0.8em;
}

.footer__contacts-img {
	width: auto;
	height: auto;
	max-height: 16px;
	margin: 0 5px 0 0;
}

.footer__text {
	padding: 20px 0;
	font-size: 0.95em;
	border-top: solid 1px rgba(0 0 0 / 0.08);
}

.footer__socials-payments {
	overflow: hidden;
	padding: 15px 0;
	background: rgba(0 0 0 / 0.05);
}

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

.footer__socials-icon {
	width: 30px;
	height: 30px;
	line-height: 30px !important;
	text-align: center;
	font-size: 1.15em;
	color: #fff;
	border-radius: var(--border-radius-1);
	opacity: 0.8;
	transition: all ease-in-out 0.15s;
	cursor: pointer;
}

.footer__socials-icon:hover {
	opacity: 1;
}

.footer__socials-icon + .footer__socials-icon {
	margin: 0 0 0 15px;
}

.footer__socials-icon.fa-odnoklassniki {
	background: #ef8117;
}

.footer__socials-icon.fa-vk {
	background: #597ba0;
}

.footer__socials-icon.fa-facebook {
	background: #3a5795;
}

.footer__socials-icon.fa-twitter {
	background: #59adea;
}

.footer__socials-icon.fa-instagram {
	background: #125688;
}

.footer__socials-icon.fa-youtube {
	background: #e62117;
}

.footer__socials-icon.fa-viber {
	background: #563dbd;
}

.footer__socials-icon.fa-whatsapp {
	background: #00e676;
}

.footer__socials-icon.fa-tiktok {
	background: #fe2c55;
}

.footer__socials-icon.fa-telegram-plane {
	background: #0088cc;
}

.footer__payments {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	overflow: hidden;
	margin: 0 0 -10px 0;
}

.footer__payments-icon {
	overflow: hidden;
	margin: 0 0 10px 10px;
	width: 50px;
	height: 30px;
	border-radius: var(--border-radius-1);
}

.footer__payments-icon:not(img) {
	background-image: url("../image/payment_icon_sprite.png");
}

.footer__payments-icon.visa {
	background-position: -150px -120px;
}

.footer__payments-icon.master {
	background-position: -100px -30px;
}

.footer__payments-icon.yandex {
	background-position: -150px -150px;
}

.footer__payments-icon.webmoney {
	background-position: -100px -150px;
}

.footer__payments-icon.qiwi {
	background-position: 0 0px;
}

.footer__payments-icon.sberbank {
	background-position: -150px -30px;
}

.footer__payments-icon.cyberplat {
	background-position: 0 -30px;
}

.footer__payments-icon.alfa {
	background-position: -50px 0px;
}

.footer__payments-icon.paypal {
	background-position: 0 -90px;
}

.footer__payments-icon.eport {
	background-position: 0 -60px;
}

.footer__payments-icon.mailofrussia {
	background-position: -100px 0px;
}

.footer__payments-icon.rapida {
	background-position: -100px -120px;
}

.footer__payments-icon.contact {
	background-position: 0 -120px;
}

.footer__payments-icon.vtb24 {
	background-position: 0 -150px;
}

.footer__payments-icon.sms {
	background-position: -150px -90px;
}

.footer__payments-icon.skrill {
	background-position: -150px -60px;
}

.footer__payments-icon.rbk {
	background-position: -150px 0px;
}

.footer__payments-icon.western-union {
	background-position: -200px 0px;
}

.footer__payments-icon.mir {
	background-position: -199px -30px;
}

.fly-block {
	position: fixed;
	z-index: 1020;
	right: 20px;
	bottom: 20px;
}

.fly-block__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin: 0 0 20px;
	font-size: 18px;
	cursor: pointer;
	border-radius: 100%;
	transition: all ease-in-out 0.3s;
}

.fly-block__back {
	color: #666;
	background: #e2e2e2;
}

.fly-block__scrollup {
	margin: 0;
	color: #fff;
	background: rgba(0 0 0 / 0.3);
	transform: scale(0);
}

.fly-block__scrollup.visible {
	transform: scale(1);
}

.fly-block__scrollup:hover {
	background: rgba(0 0 0 / 0.5);
}

.fly-block__scrollup:not(.visible) {
	margin: -66px 0 0;
}

.simplecheckout .radio label,
.simpleregister .radio label {
	display: flex;
}

.simplecheckout-cart .quantity .input-group .btn {
	height: 30px;
}

.animated.fade:not(.disabled) {
	display: block !important;
	padding: 0 !important;
}

.modal {
	z-index: 1070;
	text-align: center;
}

.modal-content {
	border: none;
	border-radius: var(--border-radius-1);
}

.modal-header {
	display: flex;
	align-items: center;
	position: relative;
	background: #f7f7f7;
	border-bottom: none;
	border-radius: var(--border-radius-1-1-0-0);
}

.modal-title {
	margin-right: 45px;
}

.modal-header .close {
	position: absolute;
	right: 0;
	width: 42px;
	height: 100%;
	z-index: 99;
	color: #444;
	background: rgba(0 0 0 / 0.05);
	opacity: 1;
}

.modal-dialog {
	max-width: 95%;
	display: inline-block;
	text-align: left;
	vertical-align: middle;
	-webkit-transform: translate(0, 0) !important;
	-ms-transform: translate(0, 0) !important;
	-o-transform: translate(0, 0) !important;
	transform: translate(0, 0) !important;
}

.modal-dialog.modal-sm {
	width: 400px;
}

.modal-dialog.modal-fit {
	width: fit-content;
}

.modal-body {
	background: #fff;
	border-radius: var(--border-radius-0-0-1-1);
}

.modal-backdrop.in {
	background: var(--backdrop-bg-dark);
	opacity: 1;
}

#modal-cart .modal-dialog {
	width: 740px;
}

#modal-cart img {
	padding: 5px;
	background: #fff;
	border-radius: 4px;
}

.modal-body .uni-wrapper {
	padding: 0;
}

.owl-carousel {
	position: relative;
	display: none;
}

.owl-carousel .owl-stage {
	touch-action: manipulation;
}

.owl-carousel .owl-stage-outer {
	overflow: hidden;
}

.owl-carousel .owl-item {
	position: relative;
	z-index: 1;
	min-height: 1px;
	float: left;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.owl-carousel .owl-nav:not(.disabled) {
	opacity: 1;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.no-js .owl-carousel {
	display: block;
}

.owl-carousel .animated {
	animation-duration: 1000ms;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("../image/owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.owl-carousel .owl-nav {
	position: absolute;
	z-index: 100;
	top: 50%;
	left: 10px;
	right: 10px;
	opacity: 0;
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: solid 2px rgba(0 0 0 / 0.08) !important;
	transform: translate(0, -50%);
}

.owl-carousel .owl-next:hover,
.owl-carousel .owl-prev:hover {
	border-color: rgba(0 0 0 / 0.2) !important;
}

.owl-carousel .owl-nav .disabled {
	cursor: default;
	opacity: 0;
}

.owl-carousel .owl-nav .owl-next {
	right: 0;
}

.owl-carousel .owl-nav button {
	color: var(--carousel-nav-btn-c);
	background: var(--carousel-nav-btn-bg);
}

.owl-carousel .owl-dots {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
	text-align: center;
	gap: 8px;
}

.owl-carousel .owl-dots .owl-dot {
	display: block;
	width: 40px;
	height: 6px;
	background: var(--carousel-dot-bg);
	border-radius: var(--border-radius-1);
	transition: all linear 0.2s;
	padding: 0;
	border: none;
}

/* .owl-carousel .owl-dots .owl-dot + .owl-dot{margin:0 0 0 10px} */
.owl-carousel .owl-dots .owl-dot.active {
	background: var(--carousel-dot-bg-active);
	cursor: default;
}

.uni-timer {
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 11px;
	width: 100%;
	display: flex;
	justify-content: center;
	transition: opacity ease-in-out 0.15s;
}

.uni-timer__group {
	text-align: center;
	min-width: 45px;
	padding: 2px 6px;
	background: var(--timer-bg);
	border-radius: var(--border-radius-1);
}

.uni-timer__group:not(:last-child) {
	margin: 0 5px 0 0;
}

.uni-timer__digit {
	letter-spacing: 2px;
	font-weight: 700;
	color: var(--timer-digit-c);
}

.uni-timer__text {
	margin: -3px 0 0;
	color: var(--timer-text-c);
	font-size: 0.65em;
}

.uni-alert {
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 1080;
	top: 50px;
	right: 15px;
	width: 320px;
	max-width: 95%;
	font-size: 0.95em;
	border: 0;
	padding: 15px 25px 15px 15px;
	border-radius: var(--border-radius-1);
	box-shadow: 3px 3px 10px rgba(0 0 0 / 0.2);
	align-items: center;
}

.uni-alert__icon {
	margin: 0 13px 0 0;
	font-size: 2.5em;
}

.uni-alert__icon.fa-times {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 8px 10px;
	font-size: 0.9em;
	opacity: 1;
	cursor: pointer;
}

.uni-alert a {
	text-decoration: underline;
}

.alert-success,
.alert-success a {
	color: var(--alert-success-c);
	background: var(--alert-success-bg);
}

.alert-warning,
.alert-warning a {
	color: var(--alert-warning-c);
	background: var(--alert-warning-bg);
}

.alert-danger,
.alert-danger a {
	color: var(--alert-danger-c);
	background: var(--alert-danger-bg);
}

.swiper-viewport {
	border-radius: var(--border-radius-1);
}

.swiper-viewport .swiper-button-prev:before,
.swiper-viewport .swiper-button-next:before,
.dream-filter .rdf- s .rdf-group .checkbox > label > span:after {
	font-family: "Font Awesome\ 5 Free" !important;
	font-weight: 900;
}

.swiper-viewport .swiper-pager .swiper-button-next:before,
.swiper-viewport .swiper-pager .swiper-button-prev:before {
	color: var(--swiper-pagination-bg-active);
}

.swiper-viewport .swiper-pagination .swiper-pagination-bullet {
	background: var(--swiper-pagination-bg);
}

.swiper-viewport .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--swiper-pagination-bg-active);
}

.tooltip-inner {
	max-width: 220px;
}

.tooltip-inner {
	padding: 3px -5px;
	color: var(--tooltip-c);
	background: var(--tooltip-bg);
	border-radius: var(--border-radius-1);
}

.tooltip.top .tooltip-arrow {
	border-top-color: var(--tooltip-bg);
	border-radius: var(--border-radius-1);
}

.tooltip.bottom .tooltip-arrow {
	border-bottom-color: var(--tooltip-bg);
}

.tooltip.left .tooltip-arrow {
	border-left-color: var(--tooltip-bg);
}

.tooltip.right .tooltip-arrow {
	border-right-color: var(--tooltip-bg);
}

.preloader {
	position: absolute;
	z-index: 1050;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(255, 255, 255, 0.4);
	/* лёгкая белая прозрачность */
	backdrop-filter: blur(2px);
	/* опционально — лёгкий блюр */
}

.preloader:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 48px;
	height: 48px;
	margin: -18px auto auto -18px;
	content: "";
	border: 5px solid rgba(0, 0, 0, 0.2);
	border-top-color: var(--orange-main);
	border-radius: 50%;
	animation: spinner 0.75s linear infinite;
}

.captcha {
	overflow: hidden;
	margin-bottom: 15px !important;
}

.captcha__input {
	float: left;
	width: 200px;
	max-width: 45%;
}

.captcha__img {
	height: 33px;
	padding-left: 15px;
}

.pass-wrap {
	position: relative;
	height: 100%;
}

.subscribe .pass-wrap {
	top: -100%;
}

.pass-wrap .far {
	position: absolute;
	top: 50%;
	right: 10px;
	color: #888;
	transform: translateY(-50%);
	cursor: pointer;
}

.error-not-found {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 370px;
	margin: 0 0 40px;
	font-weight: 500;
	color: #888;
}

.error-not-found__404 {
	font-size: 9em;
}

.error-not-found__404-text {
	padding: 0 25px;
}

.nav-tabs.custom {
	justify-content: space-between;
	align-items: center;
	height: 51px;
}

.nav-tabs.custom li {
	display: inline;
	width: calc(100% / 3);
	height: auto;
	text-align: center;
}

.nav-tabs.custom li a {
	display: inline;
}

.custom-under-price {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: var(--grey-400);
}

.video-reviews {
	margin-bottom: 100px;
}

.video-reviews__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.video-reviews__item {
	position: relative;
	cursor: pointer;
	aspect-ratio: 5 / 3;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
}

.video-reviews__item > iframe {
	aspect-ratio: 5 / 3;
}

.video-reviews__item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.video-play {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.48);
	/* затемнение снизу вверх */
}

.video-play__wrap {
	pointer-events: auto;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 42px;
	height: 42px;
	border-radius: 100%;
	background: #fff;
	border: 4px solid #fff;
	transition: all 0.3s ease;
}

.video-play__icon {
	position: absolute;
	top: 50%;
	left: 53%;
	transform: translate(-50%, -50%);
	color: #000;
	transition: all 0.3s ease;
}

.video-play__wrap:hover {
	border: 4px solid #f58220;
}

.video-play__wrap:hover .video-play__icon {
	color: #f58220;
}

.video-title {
	position: absolute;
	font-weight: 600;
	font-size: 20px;
	line-height: 130%;
	text-align: center;
	color: var(--white);
	left: 50%;
	transform: translateX(-50%);
	bottom: 12px;
	margin: 0;
}

.video-reviews__placeholder {
	text-align: center;
}

.video-reviews__placeholder img {
	margin-bottom: 24px;
}

.video-reviews__placeholder h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 130%;
	text-align: center;
	color: var(--grey-400);
	margin-bottom: 4px;
}

.video-reviews__placeholder p {
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	text-align: center;
	color: var(--grey-400);
}

.uni-module .owl-carousel .owl-nav .owl-prev,
.uni-module .owl-carousel .owl-nav .owl-next {
	border: 1px solid var(--grey-100) !important;
	border-radius: 100px;
	padding: 6px 16px;
	width: 40px;
	height: 40px;
	box-shadow:
		0 1px 3px 1px rgba(0, 0, 0, 0.15),
		0 1px 2px 0 rgba(0, 0, 0, 0.3);
	background: var(--white);
	color: var(--grey-500);
	transition: all 0.3s;
}

.uni-module .owl-carousel .owl-nav .owl-prev:hover,
.uni-module .owl-carousel .owl-nav .owl-next:hover {
	color: var(--orange-main);
}

.about {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 100px;
}

.about-item:nth-child(1) {
	order: 1;
}

.about-h1 {
	margin-bottom: 16px;
}

.about-subtitle-wrap {
	margin-bottom: 16px;
}

.about-subtitle {
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: var(--grey-800);
	margin: 0;
}

.about-descr {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--grey-800);
	margin-bottom: 36px;
	white-space: pre-wrap;
}

.about-advantages {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.about-advantages-item {
	border: 1px solid var(--grey-200);
	border-radius: 12px;
	padding: 16px;
	height: 80px;
	text-align: center;
}

.about-advantages-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 130%;
	color: var(--orange-main);
	margin-bottom: 4px;
}

.about-advantages-subtitle {
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: var(--grey-800);
}

.about img {
	border-radius: 12px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.uni-filter {
	position: relative;
	overflow-y: auto;
}

.uni-filter .sidebar-block {
	position: relative;
	overflow-y: auto;
}

.uni-filter .sidebar-block h3 {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 11;
}

.uni-filter .noUi-target {
	background: var(--grey-400-120);
	border-radius: 100px;
	padding-left: 8px;
	padding-right: 18px;
	height: 12px;
	box-shadow: none;
	border: none;
}

.uni-filter .noUi-horizontal .noUi-handle {
	border-radius: 100%;
	fill: var(--white);
	box-shadow:
		0 1px 3px 1px rgba(0, 0, 0, 0.15),
		0 1px 2px 0 rgba(0, 0, 0, 0.3);
	width: 24px;
	height: 24px;
}

.uni-filter .noUi-horizontal .noUi-handle:before,
.uni-filter .noUi-horizontal .noUi-handle:after {
	content: none;
}

.uni-filter .noUi-connect {
	background: var(--orange-main);
}

.product-page__row {
	display: grid;
	grid-template-columns: 4fr 3fr 3fr;
	gap: 24px;
}

#modal-quick-order .modal-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
	color: var(--black);
}

#modal-quick-order .modal-header {
	padding: 20px !important;
	background: #fff !important;
}

#modal-quick-order .modal-header .close {
	background: none !important;
	width: auto !important;
	aspect-ratio: 1 / 1 !important;
	font-size: 24px !important;
	line-height: 1 !important;
}

#modal-quick-order .modal-body.quick-order {
	padding: 20px;
}

#modal-quick-order .qty-switch {
	display: none;
}

#modal-quick-order .quick-order__input,
#modal-quick-order .quick-order__input.full-width {
	border: 1px solid var(--grey-400);
	border-radius: 8px;
	padding: 16px 12px;
	height: 56px;
	width: 100%;
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--grey-500);
}

#modal-quick-order .quick-order__form {
	flex-direction: column;
	flex-wrap: nowrap;
	margin: 0 0 24px 0;
	gap: 24px;
}

/* #modal-quick-order .modal-dialog {
	min-width: 800px;
} */

#modal-quick-order .add_to_cart {
	background: var(--orange-main);
	border-radius: 8px;
	padding: 12px 20px;
	height: 48px;
	width: 100%;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--white);
}

#modal-quick-order .callme.input {
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	color: var(--black);
}

#modal-quick-order .callme.input input {
	background: var(--blue-main);
}

#modal-quick-order .quick-order__agree > label.callme {
	justify-content: start;
}

#modal-quick-order textarea.quick-order__input.full-width {
	height: auto;
}

#modal-quick-order .quick-order__btns {
	display: flex;
	justify-content: center;
	gap: 24px;
	align-items: center;
	width: 100%;
}

#modal-quick-order .quick-order__close {
	background: var(--blue-main-40);
	border-radius: 8px;
	padding: 0px 20px;
	width: 100%;
	height: 48px;
}

.ellipsis {
	white-space: nowrap;
	/* Не переносить строки */
	overflow: hidden;
	/* Скрыть лишнее */
	text-overflow: ellipsis;
	/* Добавить "..." */
}

@media (-webkit-min-device-pixel-ratio: 0) and (hover: none) and (pointer: coarse) {
	select:focus,
	textarea:focus,
	input:focus {
		font-size: 16px;
	}
}

.custom-tabs {
	background: var(--grey-100);
	padding: 8px 0px;
	margin-bottom: 24px;
}

.custom-tabs li {
	width: 100%;
	justify-content: center;
	border-right: 1px solid var(--grey-200);
	padding: 8px 0px;
	height: 55px;
}
.custom-tabs li:last-child {
	border-right: none;
}

.custom-tabs li .customer_group-name-wrap svg {
	display: none;
}
.custom-tabs li.active .customer_group-name-wrap svg {
	display: block;
}

.custom-tabs li.active .customer_group-name-wrap .customer_group-name {
	text-decoration: underline;
	color: var(--orange-main);
}
.custom-tabs li a {
	width: 100%;
	height: 100%;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
}
.custom-tabs li a:after {
	border-bottom: none !important;
}

@media (max-width: 1199px) {
	.top-menu__account.switch-on-tablet {
		display: block;
	}

	.header-block__item-account.switch-on-tablet {
		display: none;
	}

	.header-block__item-telephone {
		padding: 0 15px;
	}

	.header-block__item-caption {
		display: none;
	}

	.menu1 .menu__banner {
		display: none;
	}

	.uni-module .product-thumb__description,
	.grid-view .product-thumb__description {
		display: none;
	}

	.uni-module .product-thumb__option,
	.grid-view .product-thumb__option,
	.compact-view .product-thumb__option {
		display: none !important;
	}

	.product-thumb .qty-switch__input {
		width: 28px;
	}

	.product-thumb__add-to-cart i {
		display: none;
	}

	.product-thumb__add-to-cart span {
		margin: 0 !important;
	}
}

@media (max-width: 991px) {
	header {
		padding-bottom: var(--header-padding-bottom, 16px);
	}

	.top-menu {
		display: block;
	}

	.top-menu__btn-text {
		display: none;
	}

	.header-block__item-logo {
		flex: 1 1 auto;
	}

	.header-logo {
		max-width: 195px;
	}

	#search2 {
		padding: 0 10px;
	}

	#search2 .header-search__category + .header-search__input {
		flex: 1 1 auto;
	}

	.menu-wrapper {
		position: fixed;
		z-index: 1070;
		top: 0;
		left: -100%;
		margin: 0;
		padding: 0;
		overflow-y: auto;
		width: 100%;
		height: 100%;
		background: var(--menu-main-bg);
		transition: all ease-in-out 0.15s;
	}

	.menu-wrapper.show {
		left: 0;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	}

	.menu__header {
		height: 54px;
		background: rgba(0, 0, 0, 0.06);
	}

	.menu__collapse {
		top: 54px;
	}

	.menu__header-title {
		font-size: 1.25em;
		flex: 1 1 auto;
	}

	.menu__header-icon.fa-times {
		display: flex !important;
		width: 44px;
		height: 100%;
		margin: 0 -12px 0 0;
		align-items: center;
		justify-content: center;
		background: rgba(0 0 0 / 0.05);
	}

	.menu-open {
		float: left;
		display: flex !important;
		align-items: center;
		justify-content: center;
		margin: 0 20px 0 10px;
		font-weight: 500;
		color: var(--menu-main-header-c);
		background: var(--menu-main-header-bg);
	}

	.menu__collapse {
		display: block;
		height: auto !important;
		font-size: 1em;
	}

	header .menu,
	header .menu__level-1-li {
		border-radius: 0 !important;
	}

	.menu__level-1-a {
		padding-right: 40px;
	}

	.menu__level-2 {
		overflow: hidden;
	}

	.menu__level-2:not(.in) {
		height: 0;
	}

	.menu__level-2-a {
		padding: 0 32px 0 15px;
		border-top: solid 1px rgba(0 0 0 / 0.1);
	}

	.menu__level-3 {
		overflow: hidden;
		padding: 0;
		margin: 0;
	}

	.menu__level-3:not(.in) {
		height: 0;
	}

	.menu__level-3-li {
		border-top: solid 1px rgba(0 0 0 / 0.05);
	}

	.menu__level-3-a {
		padding: 0 32px 0 25px;
	}

	.menu__level-1-a,
	.menu__level-2-a,
	.menu__level-3-a {
		min-height: 50px;
	}

	.menu__chevron {
		position: absolute;
		top: 10px;
		right: 6px;
		z-index: 9;
		width: 30px;
		height: 30px;
		line-height: 30px !important;
		text-align: center;
		font-size: 0.85em;
		cursor: pointer;
		border-radius: var(--border-radius-1);
	}

	.menu__chevron.open {
		background: rgba(0 0 0 / 0.05);
		transform: rotateX(180deg);
	}

	.menu__banner,
	.menu__additional,
	.menu__level-2-img {
		display: none;
	}

	.list-view .product-thumb__image {
		width: 42%;
		min-width: 35%;
	}

	.compact-view .product-thumb__image {
		display: none;
	}

	.compact-view .qty-switch {
		display: none;
	}

	.compact-view .product-thumb__name {
		padding-left: 0;
	}

	.product-thumb__quick-order,
	.owl-carousel .owl-nav {
		opacity: 1;
	}

	.footer__payments {
		justify-content: flex-start;
		margin: 0 0 0 -10px;
	}

	.error-not-found {
		width: 100%;
		height: 320px;
	}

	.video-reviews__row {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
	}

	.video-title {
		font-size: 14px;
	}

	.menu__subtitle {
		padding: 20px 0 0 15px;
	}

	.menu__level-2.custom .menu-group {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 767px) {
	.product-thumb__price_wholesale .price_wholesale-wrap .price_wholesale {
		font-size: 18px;
	}

	h1 {
		margin: 0 0 20px;
		font-size: 1.5em;
		line-height: 1.3;
	}

	div.heading {
		font-size: 20px;
	}

	.customer_group-name-wrap {
		font-size: 12px !important;
	}

	.customer_group-description {
		font-size: 8px !important;
	}

	.custom-tabs {
		margin-left: auto !important;
		margin-right: auto !important;
		border-radius: 8px !important;
	}

	.checkout-cart__wrapper {
		margin: 0 0 40px;
	}

	.checkout-login {
		font-size: 14px;
		margin: 0 0 40px;
	}

	.header-block {
		margin: 0;
		padding: 22px 0;
	}

	.header-logo {
		max-width: 175px;
	}

	.header-phones__main {
		font-size: 1.1em;
	}

	.header-phones__show-phone {
		font-size: 0.65em;
	}

	.header-phones__additionals {
		display: none;
	}

	.header-phones__ul {
		left: auto;
		right: 0;
	}

	.header-cart__icon {
		font-size: 2.1em;
	}

	.header-cart__totals-item,
	.header-cart__buttons {
		justify-content: center;
	}

	.header-cart__buttons .btn-default {
		display: none;
	}

	.breadcrumb li:not(:first-child):not(:last-child) {
		display: var(--breadcrumb-mobile-display, inline);
	}

	.uni-module .owl-nav > div:not(.disabled) {
		opacity: 0.8;
	}

	.grid-view {
		flex: 0 0 50%;
		width: 50%;
		max-width: 50%;
	}

	.list-view {
		flex: 0 1 100%;
	}

	.nav-tabs li {
		padding-right: 5px;
	}

	.nav-tabs li a {
		font-size: 1.1em;
	}

	.footer__column {
		width: 100%;
	}

	.footer__column-heading {
		position: relative;
	}

	.footer__column-heading .fa-chevron-down {
		position: absolute;
		right: 0;
		font-size: 0.7em;
	}

	.footer__column-heading.open .fa-chevron-down {
		transform: rotate(180deg);
	}

	.footer__column:not(:first-child) {
		padding-top: 15px;
		border-top: solid 1px rgba(0 0 0 / 0.07);
	}

	.fly-block__item {
		width: 40px;
		height: 40px;
	}

	.fly-block__item.visible-xs {
		display: flex !important;
	}

	.sorts-block__btn-group {
		display: none !important;
	}

	.sorts-block__wrapper {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.uni-filter {
		margin-bottom: 0;
		overflow-y: auto;
		height: 100%;
	}

	.sorts-block {
		background: #fff;
		margin: 0 0 15px;
		padding: 15px 0;
		position: sticky;
		top: 0;
		z-index: 99;
		border-bottom: 1px solid var(--grey-200);
	}

	.product-thumb__caption {
		padding: 4px 0 0 0;
	}
}

@media (max-width: 575px) {
	.top-links.btn-group {
		display: var(--top-menu-links-display, flex);
	}

	.top-menu__wishlist {
		display: var(--top-menu-wishlist-display, block) !important;
	}

	.top-menu__compare {
		display: var(--top-menu-compare-display, block) !important;
	}

	.top-menu__account {
		display: var(--top-menu-account-display, block) !important;
	}

	.header-logo {
		max-width: 155px;
	}

	.header-block__item-telephone {
		padding: var(--header-telephone-padding, 0 15px 0 5px);
	}

	.top-menu__wishlist.status-1,
	.top-menu__compare.status-1 {
		margin: 0;
	}

	.top-menu__wishlist.status-2,
	.top-menu__compare.status-2,
	.top-menu__account.status-2 {
		display: block;
	}

	.header-block__item-wishlist,
	.header-block__item-compare,
	.header-block__item-account {
		display: none;
	}

	.header-block__item-cart {
		display: var(--header-cart-display, flex);
		min-width: 31px;
		padding: 0 0 0 5px;
	}

	.header-cart__total-items {
		right: -6px;
		bottom: -4px;
		padding: 0 3px;
		min-width: 14px;
		height: 14px;
		font-size: 0.6em;
	}

	.header-cart__item-wrapper {
		flex-wrap: wrap;
	}

	.header-cart__name {
		flex: 1 1 100%;
		margin: 0 0 15px;
	}

	.header-cart__quantity {
		padding: 0 15px 0 0;
	}

	.header-cart__quantity .qty-switch__input {
		height: 28px !important;
	}

	.header-cart__quantity .qty-switch__btn {
		width: 25px;
		height: 28px;
		line-height: 28px;
	}

	.top-menu__compare {
		margin: 0;
	}

	.header-phones__main {
		font-size: 1em;
	}

	.menu-open__title:not(.show-on-mobile) {
		display: none;
	}

	.header-search__category.hide-on-mobile {
		display: none;
	}

	.header-search__input.hide-on-mobile {
		border-radius: var(--border-radius-1);
	}

	.sorts-block__item:first-child {
		min-width: 90px;
	}

	.product-category-list__item {
		white-space: normal;
	}

	.uni-module {
		padding: 0 5px;
	}

	.uni-module .owl-item,
	.uni-module__item {
		padding: 0 5px;
	}

	.uni-module__wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.uni-module .owl-dots {
		margin: 0 0 48px !important;
	}

	.products-block {
		margin-bottom: 20px;
	}

	.product-thumb {
		margin: 0 0 10px;
		padding: 10px;
	}

	.product-thumb__image {
		padding: 0;
	}

	.product-thumb__name {
		font-weight: 600;
		font-size: 14px;
		line-height: 130%;
		color: var(--grey-800) !important;
		margin-bottom: 4px;
	}

	.custom-under-price {
		font-size: 10px;
	}

	.product-thumb__wishlist:not(.hidden) + .product-thumb__compare {
		top: 42px;
	}

	.qty-indicator {
		font-size: 12px !important;
	}

	.product-thumb__wishlist,
	.product-thumb__compare {
		top: 9px;
	}

	.product-thumb .sticker {
		top: 0;
		left: 0;
	}

	.product-thumb__model:before {
		display: var(--prod-thumb-model-before-display, none);
	}

	.product-thumb__add-to-cart,
	.product-thumb__cart.disabled2 {
		flex: 1 1 auto;
		max-width: 100%;
	}

	.product-thumb__cart .btn {
		font-size: 0.9em;
	}

	.product-thumb .uni-timer,
	.product-thumb .product-thumb__description,
	.product-thumb__option,
	.list-view .product-thumb__option,
	.product-thumb__addit {
		display: none !important;
	}

	.product-thumb__wishlist,
	.product-thumb__compare {
		right: 9px;
	}

	/* .list-view .product-thumb__caption{padding:0 25px 0 12px} */
	.compact-view .product-thumb__image {
		display: none;
	}

	.compact-view .product-thumb__price {
		justify-content: flex-end;
		font-size: 1.1em;
		padding-right: 15px;
	}

	.compact-view .product-thumb__add-to-cart i {
		display: inline !important;
	}

	.compact-view .product-thumb__add-to-cart span {
		display: none;
	}

	.category-info__image {
		display: none;
	}

	.hidden-on-mobile {
		display: none !important;
	}

	.owl-carousel .owl-dots .owl-dot {
		height: 2px;
		margin-bottom: 10px !important;
	}
}

@media (max-width: 425px) {
	.header-logo {
		max-width: 135px;
	}

	.product-thumb__rating-text {
		display: none;
	}
}

@media (max-width: 380px) {
	.header-logo a,
	.header-logo span {
		font-size: 1em;
	}

	.header-phones__main {
		font-size: 0.97em;
	}

	.header-cart__total {
		flex: 0 1 auto;
	}
}

@media (max-width: 350px) {
	.header-phones__main {
		font-size: 0.9em;
	}

	.product-thumb .qty-switch,
	.product-thumb__quick-order {
		display: none;
	}

	.btn-xl {
		padding: 0 15px;
	}
}

@media (min-width: 575px) {
	.top-menu.switch-on-mobile {
		display: none;
	}

	.header-block__item-account.switch-on-mobile {
		display: flex;
	}
}

@media (min-width: 768px) {
	.modal:before {
		display: inline-block;
		vertical-align: middle;
		content: "";
		height: 100%;
	}

	.footer__column-ul {
		display: block !important;
		height: auto !important;
	}
}

@media (min-width: 992px) {
	header {
		position: var(--header-position);
		top: var(--header-position-top);
		z-index: var(--header-position-z);
	}

	header.fixed {
		box-shadow: var(--header-box-shadow);
	}

	.top-links .top-menu__btn {
		display: none;
	}

	.top-links__ul {
		position: static;
		display: flex;
		align-items: center;
		background: none;
		box-shadow: none;
		list-style: none;
		margin: 0;
		padding: 0;
		border-radius: 0;
	}

	.top-links__li {
		margin: 0 20px 0 0;
	}

	.top-links .top-links__a {
		margin-top: -3px;
		padding: 0;
		font-size: 0.85em;
		color: var(--top-menu-btn-c);
		background: none !important;
	}

	.top-links .top-links__a:hover {
		color: var(--top-menu-btn-c-hover);
	}

	.header-block__item-search.order-2 {
		order: 2;
		padding-left: 10px;
	}

	.header-block__item-telephone.order-1 {
		order: 1;
		padding-left: 5px;
	}

	.header-block__item-menu {
		padding: 0 15px;
	}

	.header-block__item-menu
		+ .header-block__item-search
		+ .header-block__item-telephone {
		padding-left: 15px;
	}

	.header-menu__btn {
		font-weight: 500;
		color: var(--menu-main-header-c);
		background: var(--menu-main-header-bg);
	}

	.header-menu__btn.show .header-menu__icon:before {
		content: "\f00d";
	}

	.main-menu {
		position: relative;
		z-index: 998;
	}

	.main-menu.set-before:before {
		position: absolute;
		top: 0;
		left: 50%;
		width: 100vw;
		height: 46px;
		content: "";
		background: var(--menu-main-before);
		transform: translateX(-50%);
	}

	.menu1:hover .menu__collapse {
		display: block !important;
	}

	.menu__header-icon {
		margin: 0 10px 0 0;
	}

	.menu1 .menu__collapse,
	i.menu__chevron {
		display: none;
	}

	.menu1:not(.new) .menu__collapse {
		border-radius: var(--border-radius-0-0-1-1);
	}

	.menu:not(.new) .menu__level-2 {
		max-height: 67vh;
	}

	.menu__level-1-li {
		display: flex;
		align-items: center;
	}

	.menu__level-1-li.has-children:after {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 46px;
		text-align: center;
		font-family: "Font Awesome\ 5 Free";
		font-weight: 900;
		content: "\f107";
		font-size: 0.75em;
		transition: transform ease-in-out 0.15s;
	}

	.menu__level-1-li.open:after {
		transform: rotate(-90deg);
	}

	.menu__level-2 {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 100%;
		display: none;
		align-content: flex-start;
		flex-wrap: wrap;
		overflow-y: auto;
		padding: 0 10px;
		border-radius: var(--border-radius-0-1-1-0);
		box-shadow: 0 4px 10px rgba(0 0 0 / 0.2);
		scrollbar-width: thin;
	}

	.menu__level-2.open {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.menu__level-2::-webkit-scrollbar {
		width: 8px;
		background: #eee;
		border-radius: var(--border-radius-1);
	}

	.menu__level-2::-webkit-scrollbar-thumb {
		background-color: #ccc;
		border-radius: var(--border-radius-1);
	}

	.menu__level-2.column-1 {
		flex-wrap: nowrap;
		flex-direction: column;
	}

	.menu__level-2-wrap {
		display: flex;
		flex-wrap: wrap;
		height: fit-content;
	}

	.menu__level-2-ul.has-image {
		padding: 16px 16px 16px 96px;
		min-height: 96px;
	}

	.menu__level-2-ul.has-image:not(.has-children) > div {
		display: flex;
		align-items: center;
		min-height: 64px;
	}

	.menu__level-2-img {
		position: absolute;
		top: 16px;
		left: 16px;
		width: 64px;
	}

	.menu__level-2-ul {
		flex: 0 0 auto;
		min-height: 96px;
	}

	.menu__level-2-a.has-children {
		min-height: auto;
		margin-bottom: 12px;
	}

	.menu__level-2:not(.column-10) .menu__level-2-a {
		font-weight: 600;
		font-size: 20px;
		line-height: 130%;
		color: var(--grey-800);
	}

	.menu__level-3 {
		padding: 0;
	}

	.menu__level-3-li + li {
		margin: 6px 0 0;
	}

	.menu__level-3-a:hover {
		text-decoration: underline;
	}

	/* .menu1 .column-1{width:255px} */
	.menu1 .column-1 {
		width: calc(100% - calc(25% - 15px));
		padding: 24px;
	}
	.menu1 .column-2 {
		width: 490px;
	}

	.menu1 .column-3,
	.menu1 .column-4 {
		width: 720px;
	}

	.menu-wrapper.new {
		display: none;
		position: absolute;
		top: 0%;
		left: 10px;
		right: 10px;
		z-index: 988;
		padding: 0;
		border-radius: var(--border-radius-0-0-1-1);
	}

	.menu1.new {
		max-height: 80vh;
		overflow-x: hidden;
		overflow-y: auto;
		background: var(--menu-bg, var(--menu-main-level-2-bg));
		box-shadow: var(--menu-shadow, 0 4px 10px rgba(0 0 0 / 0.2));
		border-radius: var(--border-radius-0-0-1-1);
		scrollbar-width: thin;
	}

	.menu1.new .menu__header {
		display: none;
	}

	.menu1.new .menu__collapse {
		position: static;
		top: 0;
		display: block;
		width: calc(25% - 15px);
		height: var(--menu-height);
		overflow-y: auto;
		overflow-x: hidden;
		border-radius: var(--border-radius-0-0-0-1);
		scrollbar-width: thin;
	}

	.menu1.new .menu__level-1-li {
		position: static;
	}

	/* .menu1.new .menu__level-1-li:last-child {border-radius:var(--border-radius-0-0-0-1)} */
	.menu1.new .menu__level-2 {
		/* height:var(--menu-height); */
		height: auto;
		max-height: 100%;
		left: 220px;
		border-radius: var(--border-radius-0-0-1-0);
		box-shadow: none;
	}

	.menu2 .collapse {
		height: fit-content !important;
	}

	.menu2 .menu__header {
		display: none;
	}

	.menu2 .menu__collapse {
		display: flex;
		top: 0;
	}

	.menu2 .menu__level-1-li {
		flex: 1 1 auto;
		position: static;
		border: none;
		box-shadow: inset 1px 0 0 rgba(0 0 0 / 0.08);
	}

	.menu2 .menu__level-1-li:last-child {
		border-right: solid 1px rgba(0 0 0 / 0.08);
		border-radius: 0;
	}

	.menu2 .menu__level-1-li:after {
		margin-left: -15px;
	}

	.menu2 .menu__level-1-li.open:after {
		transform: rotateX(-180deg);
	}

	.menu2 .menu__level-1-a {
		justify-content: center;
		padding: 0 15px;
		white-space: nowrap;
	}

	.menu2 .menu__level-1-li.menu__additional:after {
		display: none;
	}

	.menu2 .menu__level-2 {
		top: 100%;
		left: auto !important;
		border-radius: var(--border-radius-0-0-1-1);
	}

	.menu2 .column-1 {
		width: 25%;
	}

	.menu2 .column-2 {
		width: 50%;
	}

	.menu2 .column-3 {
		width: 75%;
	}

	.menu2 .column-4 {
		width: 100%;
	}

	.menu2.new {
		margin-left: 0;
	}

	.menu2.new .menu__level-1-li:first-child {
		box-shadow: inset 1px 0 0 rgba(0 0 0 / 0.08);
	}

	.menu-right {
		z-index: 98;
		height: 46px;
		margin-left: -20px;
		background: var(--menu-right-bg);
	}

	.menu-right .menu__level-1-li:first-child {
		box-shadow: none;
	}

	.menu-right .menu__level-1-a,
	.menu-right .menu__level-1-li:after {
		color: var(--menu-right-level-1-c);
	}

	.menu-right .menu__level-1-li:hover .menu__level-1-a {
		color: var(--menu-right-level-1-c-hover);
	}

	.menu-right .menu__level-2 {
		background: var(--menu-right-level-2-bg);
	}

	.menu-right .menu__level-2-a {
		color: var(--menu-right-level-2-c);
	}

	.menu-right .menu__level-2-a:hover {
		color: var(--menu-right-level-2-c-hover);
	}

	.menu-right .menu__level-3-a {
		color: var(--menu-right-level-3-c);
	}

	.menu-right .menu__level-3-a:hover {
		color: var(--menu-right-level-3-c-hover);
	}

	.column-3 .menu__level-2-wrap {
		flex: 1 1 66.67%;
	}

	.column-4 .menu__level-2-wrap {
		flex: 1 1 75%;
	}

	.column-3 .menu__banner {
		flex: 0 1 33.33%;
	}

	.column-4 .menu__banner {
		flex: 0 1 25%;
	}

	.menu__banner {
		max-width: 300px;
		margin: 20px 0;
		padding: 0 10px;
		overflow: hidden;
		border-radius: 3px;
	}

	.menu__banner img {
		max-width: 100%;
		border-radius: 2px;
		cursor: pointer;
	}

	.nav-tabs {
		scrollbar-width: thin;
	}

	.nav-tabs::-webkit-scrollbar {
		height: 5px;
		background: #eee;
		border-radius: 5px;
	}

	.nav-tabs::-webkit-scrollbar-thumb {
		background-color: #ccc;
		border-radius: 5px;
	}

	.category-list__item:hover {
		border: solid 1px transparent;
		box-shadow: 0 5px 15px rgba(0 0 0 / 0.12);
	}

	.modal-header {
		padding: 15px 20px;
	}

	.modal-header .close:hover {
		opacity: 1;
	}

	.modal-body {
		padding: 20px;
	}

	.about-advantages {
		grid-template-columns: repeat(3, 1fr);
	}

	.about-advantages-item {
		text-align: left;
	}
}

@media (min-width: 767px) and (max-width: 1200px) {
	.uni-module .product-thumb__quick-order,
	.grid-view .product-thumb__quick-order {
		margin: 0 0 0 10px;
		padding: 0 10px;
	}
}

@media (min-width: 1200px) {
	.top-menu.switch-on-tablet {
		display: none;
	}

	.header-logo span,
	.header-logo a {
		font-size: 1.9em;
	}

	.header-block__item-account.switch-on-tablet {
		display: flex;
	}

	.header-block__item-caption {
		margin: 5px 0 0;
		text-align: center;
		font-size: 11px;
		color: var(--header-block-caption-c);
	}

	.menu1.new .menu__level-2 {
		left: 270px;
	}

	/* .menu1 .column-1{width:270px} */
	.menu1 .column-1 {
		width: calc(100% - calc(25% - 15px));
		padding: 24px;
	}
	.menu1 .column-2 {
		width: 540px;
	}

	.menu1 .column-3,
	.menu1 .column-4 {
		width: 870px;
	}

	.list-view .product-thumb {
		padding: 12px 16px;
	}

	.list-view .product-thumb__caption {
		padding: 0 16px 0 24px;
	}

	.list-view .product-thumb__option .option__group {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.list-view .product-thumb__option .option__group:first-child {
		margin: 5px 0 0;
	}

	.list-view .product-thumb__option .option__group-name {
		margin: 0 15px 14px 0;
	}

	.list-view .product-thumb__option .text-danger {
		z-index: 9;
		top: 0;
	}

	.compact-view .qty-indicator,
	.compact-view .product-thumb__quick-order {
		display: flex;
		padding-top: 0;
	}

	.compact-view .product-thumb__quick-order {
		display: inline;
	}

	.about {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-item:nth-child(1) {
		order: 0;
	}

	.about-advantages-subtitle {
		font-size: 12px;
	}
}

@media (min-width: 1345px) {
	.container {
		width: 1340px;
	}

	.menu1.new .menu__level-2 {
		left: 310px;
	}

	/* .menu1 .column-1{width:257px} */
	.menu1 .column-1 {
		width: calc(100% - calc(25% - 15px));
		padding: 24px;
	}
	.menu1 .column-2 {
		width: 494px;
	}

	.menu1 .column-3 {
		width: 736px;
	}

	.menu1 .column-4 {
		width: 997px;
	}

	.visible-xl {
		display: block;
	}

	.hidden-xl {
		display: none;
	}

	.about-advantages-subtitle {
		font-size: 14px;
	}
}

@media (min-width: 1600px) {
	.container {
		width: 1500px;
	}

	.menu-wrapper.new .menu__collapse {
		width: calc(20% - 15px);
	}

	.menu1.new .menu__level-2 {
		left: 279px;
	}

	/* .menu1 .column-1{width:313px} */
	.menu1 .column-1 {
		width: calc(100% - calc(20% - 15px));
		padding: 24px;
	}
	.menu1 .column-2 {
		width: 606px;
	}

	.menu1 .column-3 {
		width: 904px;
	}

	.menu1 .column-4 {
		width: 1191px;
	}

	.col-xxl-1 {
		width: 5%;
	}

	.col-xxl-2 {
		width: 10%;
	}

	.col-xxl-2-1 {
		width: 12.5%;
	}

	.col-xxl-3 {
		width: 15%;
	}

	.col-xxl-3-1 {
		width: 16.66666667%;
	}

	.col-xxl-4 {
		width: 20%;
	}

	.col-xxl-5 {
		width: 25%;
	}

	.col-xxl-6 {
		width: 30%;
	}

	.col-xxl-6-1 {
		width: 33.33333333%;
	}

	.col-xxl-8 {
		width: 40%;
	}

	.col-xxl-9 {
		width: 45%;
	}

	.col-xxl-10 {
		width: 50%;
	}

	.col-xxl-11 {
		width: 55%;
	}

	.col-xxl-12 {
		width: 60%;
	}

	.col-xxl-13 {
		width: 65%;
	}

	.col-xxl-15 {
		width: 75%;
	}

	.col-xxl-16 {
		width: 80%;
	}

	.col-xxl-17 {
		width: 85%;
	}

	.col-xxl-18 {
		width: 90%;
	}

	.col-xxl-20 {
		width: 100%;
	}

	.col-xxl-offset-4 {
		margin-left: 20%;
	}

	.col-xxl-offset-5 {
		margin-left: 25%;
	}

	.col-xxl-offset-6 {
		margin-left: 30%;
	}

	.visible-xxl {
		display: block;
	}

	span.visible-xxl {
		display: inline;
	}
}

.popover-content {
	display: flex;
	gap: 4px;
	align-items: center;
}

.swiper-pagination {
	line-height: 1 !important;
}

.menu-module__a.active {
	background: var(--grey-500-120);
}

.menu-module__chevron.custom-open {
	transform: rotate(270deg);
}

.menu__level-2.custom {
	grid-template-columns: 1fr;
}

.menu__level-2.custom .menu-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 20px;
}

.menu__level-2.custom .menu-group:last-child {
	margin-bottom: 0;
}

.menu__subtitle {
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: var(--grey-400);
	margin-bottom: 12px;
}

.custom-popular-products-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
	color: var(--grey-800);
	margin-bottom: 24px;
}

.category-seo__description {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--grey-800);
	margin-top: 80px;
	margin-bottom: 80px;
}

.custom-category-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
	color: var(--grey-800);
	margin-bottom: 24px;
}

.custom-category-main-title {
	font-weight: 600;
	font-size: 36px;
	line-height: 130%;
	color: var(--grey-800);
	margin-top: 0;
	margin-bottom: 28px;
}

.product.price-wrap {
	display: grid;
}

.product-thumb-wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.list-view .product-thumb-wrap,
.compact-view .product-thumb-wrap {
	height: auto;
}

.list-view .sticker {
	top: 0;
	left: 0;
}

.filter-group {
	padding: 6px 0 12px 0;
	border-bottom: 1px solid var(--grey-200);
}

.filter-group.custom-hide {
	padding: 6px 0;
}

.filter-title {
	padding: 12px 0;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--black);
	cursor: pointer;
}
.filter-title svg {
	transition: all 0.2s ease;
}
.filter-title svg.rotate {
	transform: rotate(90deg);
}

.filter-body {
	padding-left: 28px;
	height: auto;
}

.filter-body.custom-hide {
	overflow: hidden;
	height: 0;
	padding-bottom: 0 !important;
}

.filter-group.price-group .filter-body,
.filter-group.slider-group .filter-body {
	padding-left: 0;
	padding-bottom: 12px;
}

.filter-group.amperage-group .filter-body {
	padding-left: 0;
	padding-bottom: 12px;
}

.price-inputs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 16px;
}

.price-inputs input {
	border: 1px solid var(--grey-200);
	border-radius: 8px;
	padding: 16px 12px;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--black);
	padding-left: 32px;
}

.price-inputs input::placeholder {
	color: var(--grey-400);
}

.price-inputs .input-wrap {
	position: relative;
}

.price-inputs .input-wrap:nth-child(1)::before {
	content: "от";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--black);
}

.price-inputs .input-wrap:nth-child(2)::before {
	content: "до";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--black);
}

.icon-toggle {
	transition: transform 0.2s ease;
}

.icon-toggle.rotated {
	transform: rotate(90deg);
}

.options label {
	cursor: pointer;
	margin: 0;
	display: flex;
	/* align-items: center; */
	gap: 12px;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--black);
	padding: 6px 0;
}
.options label.disabled {
	cursor: not-allowed;
	color: var(--grey-300);
}

.options label input {
	margin: 3px 0 0 0;
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.option-name-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.option-name-wrap .count {
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--grey-400);
}

.show-more,
.show-less {
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	color: var(--orange-main);
	height: auto;
	padding: 4px 0;
	transition: all 0.2s ease;
}

.show-more:hover,
.show-less:hover {
	text-decoration: none;
	color: var(--black);
}

.reset-filters {
	border-radius: 8px;
	padding: 6px 16px;
	width: 100%;
	height: 40px;
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	color: var(--error);
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border: none;
	cursor: pointer;
	transition: color 0.3s ease;
}

.reset-filters:hover {
	color: var(--black);
}

.filter-found {
	margin-top: 20px;
	border-radius: 8px;
	padding: 6px 16px;
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	color: var(--blue-main);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	background: var(--blue-main-40);
	margin-bottom: 8px;
}

button.filter-found {
	background: var(--orange-main);
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	color: var(--white);
	width: 100%;
}

.filter-reset-find {
	visibility: hidden;
	/* transition: visibility 0.2s ease; */
}

.no-results {
	width: 100%;
	text-align: center;
	padding-top: 100px;
}

.product-thumb__image img {
	object-fit: cover;
}

.compact-view .product-thumb__image img {
	width: 100px;
	height: 100px;
}

.filter-btn {
	border-radius: 8px;
	padding: 6px 16px;
	font-weight: 600;
	font-size: 12px;
	line-height: 130%;
	color: var(--grey-800);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid var(--grey-200) !important;
}

.sorts-block__select {
	font-weight: 600;
	font-size: 12px;
	line-height: 130%;
	color: var(--grey-800);
}

.filter-close-btn {
	border: none;
	background: none;
	position: sticky;
	top: 2px;
	right: 0;
	float: right;
	padding: 0;
}

.popular-searches {
	position: absolute;
	left: 0;
	top: 44px;
	border-radius: 8px;
	padding: 20px;
	box-shadow:
		0 2px 3px 0 rgba(0, 0, 0, 0.3),
		0 6px 10px 4px rgba(0, 0, 0, 0.15);
	background: var(--white);
	width: 100%;
}

.popular-searches .title {
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--black);
	margin-bottom: 12px;
}

.popular-searches ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.popular-searches ul li {
	padding: 4px 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.popular-searches ul li svg path {
	fill: var(--grey-200);
	transition: fill 0.3s ease;
}

.popular-searches ul li:hover svg path {
	fill: var(--orange-main);
}

.popular-searches ul li a {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--grey-800);
}

.dropdown-body {
	position: relative;
	padding-left: 0;
}

.dropdown-selected {
	border: 1px solid var(--grey-200);
	border-radius: 8px;
	padding: 4px 40px 4px 12px;
	cursor: pointer;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	height: max-content;
	min-height: 40px;
	position: relative;
}

.dropdown-selected svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	right: 12px;
	transition: all 0.2s ease;
}

.dropdown-selected svg.open {
	transform: translateY(-50%) rotate(180deg);
}

.dropdown-search {
	border: none;
	outline: none;
	flex: 1;
	min-width: 80px;
}

.chip {
	background: var(--grey-400-120);
	padding: 0 12px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
	height: 32px;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--grey-400);
}

.chip .remove {
	cursor: pointer;
	font-weight: bold;
}

.dropdown-options {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	border: 1px solid var(--grey-200);
	border-radius: 8px;
	background: #fff;
	max-height: 400px;
	overflow-y: auto;
	display: none;
	z-index: 50;
}

.dropdown-options.open {
	display: block;
}

.dropdown-options label {
	cursor: pointer;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--black);
	padding: 6px 12px;
}

.dropdown-options label input {
	margin: 0;
	width: 15px;
	height: 15px;
}

.dropdown-options label:hover {
	background: #f0f0f0;
}

.no-results {
	display: none;
	padding: 10px;
	color: #666;
}

.city-lock-scroll {
	overflow: hidden !important;
	height: 100% !important;
}

.top-menu__city {
	margin-right: 8px;
}
.top-menu__city-btn {
	border: none;
	background: none;
	cursor: pointer;
}
.top-menu__city-btn i {
	margin-right: 6px;
}
