@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@keyframes bxSunCover {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes grow {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(2.5);
	}
}

@keyframes grow-arrow {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.3);
	}
}

@-webkit-keyframes jittery {

	5%,
	50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}

	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}

	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}

	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}

	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}

	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}

	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}

@keyframes jittery {

	5%,
	50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}

	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}

	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}

	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}

	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}

	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}

	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}

@-webkit-keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}

@keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	width: 100%;
	/*overflow-x: hidden;*/
}

body {
	/*background: #EBEAEA;
	background-image: url('https://ep-exfork.ru/wp-content/themes/exfork/img/background-epexfork.jpg');
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;*/
	margin: 0;
	padding: 0;
	position: relative;
	min-height: 100%;
	font: 14px/1.25 'Inter', sans-serif;
	color: #000;
}

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

section.descr-section.section li,
section.descr-section.section ul {
	margin: 10px 0 0 10px;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

p {
	margin-bottom: 10px;
}

input,
button,
select,
textarea {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	font-family: 'Inter', sans-serif;
}

button,
a {
	cursor: pointer;
	transition: 200ms;
}

table {
	width: 100%;
}

img {
	max-width: 100%;
}

.maxwidth {
	background: #eaeaea;
	max-width: 100%;
	margin: 0 auto;
	box-shadow: none;
}

.grey-text {
	color: #333333;
}

.fixed {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 20px;
}

.fixed-wide {
	padding: 0 20px;
}

.fixed:after {
	content: '';
	clear: both;
	display: table;
}

*:before,
*:after {
	box-sizing: border-box;
}

*[class*="-btn"] {
	transition: 200ms;
}

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

.flex-center {
	justify-content: center;
}

.grid {
	display: grid !important;
}

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

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.section-title,
.section-title * {
	font-size: 32px !important;
	font-weight: bold;
}

.section-title.size-52,
.section-title.size-52 * {
	font-size: 58px !important;
}

.section-title.size-48,
.section-title.size-48 * {
	font-size: 48px !important;
}

.section-title.size-40,
.section-title.size-40 * {
	font-size: 40px !important;
}

.section-title.size-34,
.section-title.size-34 * {
	font-size: 34px !important;
}

.section-title.size-24,
.section-title.size-24 * {
	font-size: 24px !important;
}

.section-title.size-20,
.section-title.size-20 * {
	font-size: 20px !important;
}

.section-subtitle {
	font-size: 20px;
}

.section-title * {
	margin: 0;
	padding: 0;
}

.section-subtitle p:not(:last-child) {
	margin-bottom: 10px;
}

.ease-in-out {
	opacity: 0;
	animation: ani 2.5s forwards;
}

.ease-in-out:nth-child(1) {
	animation: ani 0.5s ease-in-out forwards;
}

.ease-in-out:nth-child(2) {
	animation: ani 0.5s forwards 0.5s;
}

.ease-in-out:nth-child(3) {
	animation: ani 0.5s forwards 1s;
}

.ease-in-out:nth-child(4) {
	animation: ani 0.5s forwards 1.5s;
}

.ease-in-out:nth-child(5) {
	animation: ani 0.5s forwards 2s;
}

@keyframes ani {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.section-gradient {
	position: relative;
}

.section-gradient:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.section-gradient-black {
	color: white;
}

.section-gradient-black .buy-text a {
	color: white;
}

.section-gradient-black:after {
	background: linear-gradient(90.00deg, rgb(20 20 20 / 80%) 40%, rgba(22, 26, 34, 0) 100%);
}

.section-gradient-testdrive:after {
	background: linear-gradient(90.00deg, rgb(20 20 20 / 94%) 10%, rgb(223 183 170 / 0%) 100%);
}

.section-gradient-black-lising:after {
	/*background: linear-gradient(90.00deg, rgb(20 20 20 / 94%) 10%, rgb(223 183 170 / 0%) 100%);*/
}

.section-gradient-white:after {
	background: linear-gradient(90.00deg, rgb(255 255 255) 40%, rgba(196, 196, 196, 0) 100%);
}

.section-gradient .fixed {
	position: relative;
	z-index: 3;
}

.btn {
	background: linear-gradient(180.00deg, rgb(65, 202, 0), rgb(46, 143, 0) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 23px;
	color: #fff;
	transition: 200ms;
	text-align: center;
	text-decoration: none !important;
	font-size: 14px;
	max-width: 100%;
	border-radius: 12px;
	min-width: 203px;
	position: relative;
	overflow-x: hidden;
}

.btn .flare {
	position: absolute;
	top: 0;
	height: 100%;
	width: 45px;
	transform: skewX(-45deg);
	left: -150%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
	animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
	0% {
		left: -150%;
	}

	100% {
		left: 150%;
	}
}

.btn-white {
	background: #fff;
	color: #D7000F;
}

.btn:hover {
	background: linear-gradient(0deg, rgb(46, 143, 0), rgb(43 135 0) 100%);
	transition: 200ms;
}

.btn:active {
	background: linear-gradient(0deg, rgb(46, 143, 0), rgb(43 135 0) 100%);
	box-shadow: 0 3px 0 #1B5400;
	transition: 200ms;
}

.input-class {
	display: block;
	width: 100%;
	height: 62px;
	border-radius: 20px;
	background: #fff;
	border: 3px solid transparent;
	padding: 0 18px;
	font-size: 18px;
	color: #000;
	outline: none;
}

textarea.input-class {
	height: 140px;
	resize: none;
	padding: 15px 18px;
}

.input-class::placeholder {
	transition: 200ms;
}

.input-class:focus::placeholder {
	font-size: 0;
}

.image img {
	display: block;
}

.head {
	position: sticky;
	z-index: 55;
	top: 0;
	background: #fff;
	box-shadow: 0 0 5px #9797976e;
}

.head-top {
	background: #ffffff;
	padding: 14px 0 0 0;
}

.head-top-row {
	display: grid;
	grid-template-columns: 12% 35% 53%;
}

.head-top-geo {
	overflow: hidden;
	flex-shrink: 0;
	width: auto;
}

.head-top-geo-icon {
	width: 20px;
	height: 20px;
	position: relative;
	top: 3px;
	left: 0;
}

.head-top-geo-city-name {
	position: relative;
	top: -1px;
	left: 5px;
}

.head-contacts {
	align-items: center;
	gap: 12px 13px;
	justify-content: flex-end;
}

.head-contacts-item {
	align-items: center;
}

.head-contacts-item-ico {
	margin-right: 8px;
}

.head-contacts-item-ico-1>svg {
	transform: translateY(-1px);
}

.head-contacts-item-text {
	position: relative;
}

.head-contacts-item-text,
.head-contacts-item-text a {
	color: #D7000F;
	transition: 200ms;
}

.head-contacts-item-text span {
	color: #181c18;
	font-size: 12px;
}

.head-contacts-item-text a:hover {
	color: #000;
	text-decoration: none;
}

.whatsapp img {
	width: 25px;
}

.whatsapp a {
	color: #14a455;
}

.head-main {
	background: #fff;
	padding: 10px 0;
}

.head-main-row {
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
}

/*.head-logo {
	background: url(../img/head-logo-ep.svg) no-repeat;
	width: 129px;
	height: 64px;
	position: relative;
}*/
.head-logo {
	background: url(../img/head-logo.svg) no-repeat;
	width: 127px;
	height: 46px;
	position: relative;
	transition: 0.2s;
}

.head-logo>a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.head-logo:hover {
	left: 5px;
	transition: 200ms;
}

.head-center {
	gap: 20px;
	padding: 0 20px;
}

.head-model-button {
	background: #FFC341;
	border-radius: 50px;
	justify-content: center;
	align-items: center;
	color: #000;
	font-weight: bold;
	padding: 12px 26px;
	cursor: pointer;
	transition: 200ms;
	border: 2px solid transparent;
}

.head-model-button:hover {
	background: #93000a;
	color: #fff;
}

.head-model-button-arrow {
	margin-left: 24px;
	transition: 200ms;
}

.head-model-button .head-model-button-arrow svg path {
	fill: #000;
	transition: 200ms;
}

.head-model-button.active {
	background: #fff;
	border-color: #D7000F;
	color: #D7000F;
}

.head-model-button.active .head-model-button-arrow {
	transform: rotate(180deg);
}

.head-model-button.active .head-model-button-arrow svg path {
	fill: #D7000F;
}

.head-model-button:hover svg path {
	fill: #fff;
}

.head-model-dropdown {
	background: #fff;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 10;
	padding: 16px 20px 48px 20px;
	display: none;
	width: 100%;
	max-width: 100%;
	transform: translateX(-50%);
	overflow: auto;
	max-height: calc(100vh - 84px);
	border-radius: 0 0 20px 20px;
}

.head-model-items {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0px;
}

.head-model-items.test-drive {
	grid-template-columns: repeat(4, 1fr);
}

.head-model-item-box {
	position: relative;
	transition: 200ms;
	border-radius: 10px;
	padding: 10px;
	border: 1px solid #ffffff80;
	box-shadow: none;
	transition: 200ms;
}

.head-model-item-image {
	height: 190px;
}

.head-model-item-image>a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.head-model-item-image img {
	max-width: 96%;
	max-height: 96%;
	transition: 200ms;
}

.head-model-item-title {
	text-align: center;
	justify-content: center;
	font-size: 17px;
	font-weight: bold;
	transition: 200ms;
}

.head-model-item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.head-model-item-box:hover {
	background: #f2f2f2;
	border: 1px solid #80808080;
	box-shadow: 0px 0px 20px 0px #00000030;
	transition: 200ms;
}

.head-model-item-box:hover .head-model-item-image img {
	transform: scale(0.94);
}

.head-model-item-box:hover .head-model-item-title {
	color: #D7000F;
}

.head-search {
	width: 100%;
	height: 45px;
	position: relative;
}

.head-search-box {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: 200ms;
	overflow: hidden;
	border-radius: 50px;
	border: 1px solid rgba(0, 0, 0, 0.25);
	background: rgba(224, 224, 224, 0.24);
}

.head-search-box:hover {
	background: #ffffff;
}

.head-search-input {
	width: calc(100% - 45px);
	height: 100%;
}

.head-search-input>input {
	background: transparent;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 14px;
	transition: 200ms;
}

.head-search-input>input::placeholder {
	transition: 0ms;
}

.head-search-input>input:focus::placeholder {
	font-size: 0;
	color: #1A1A1A;
}

.head-search-btn {
	background: transparent;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	transition: 200ms;
}

.head-search-btn:hover {
	background: #fbfbfb;
}

.head-menu {
	gap: 0 27px;
	flex: 1;
}

.head-menu>li {
	position: relative;
	overflow: hidden;
}

.head-menu>li>a {
	transition: 200ms;
	position: relative;
}

/* Единые отсупы */
.buy-in,
.calculator,
.cats-in,
.close-in,
.cs-in,
.descr-in,
.ltblock-in,
.master-in,
.news-in,
.one-in,
.other-in,
.par-in,
.prep-in,
.rem-in,
.show-in,
.single-buy,
.spec-in,
.stblock-in,
.tblock-in {
	padding: 75px 0;
}

.single-section {
	padding-bottom: 50px;
	margin-top: 30px;
}

.head-menu>li a:hover {
	color: #d7000f;
	text-decoration: underline;
}

.head-menu>li>ul {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.27);
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	padding: 45px 0 5px 0;
	opacity: 0;
	transition: 200ms;
	height: 0;
}

.head-menu>li>ul>li {
	padding: 10px 15px;
}

.head-menu>li>ul>li:last-child {
	margin-bottom: 0;
}

.head-menu>li>ul>li>a {
	display: block;
}

.head-menu>li:hover {
	overflow: visible;
}

.head-menu>li:hover>a {
	z-index: 81;
}

.head-menu>li:hover>ul {
	opacity: 1;
	z-index: 80;
	z-index: 10;
	height: auto;
	width: max-content;
	min-width: -webkit-fill-available;
}

.head-menu>li.menu-item-has-children>a:after {
	content: '';
	background: url(../img/filter-arrow.svg) no-repeat center / contain;
	width: 15px;
	height: 7px;
	transition: 300ms;
	margin: -4.5px 0 0 0;
	transition: 300ms;
	display: inline-block;
	margin-left: 5px;
}

.head-menu>li.menu-item-has-children:hover>a:after {
	transform: rotate(180deg);
}

.head-product {
	display: none;
}

.first-section {
	position: relative;
}

.first-bg {
	justify-content: flex-end;
}

.first-bg>img {
	width: 100%;
	height: 690px;
	object-fit: cover;
}

.first-layer {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.first-layer .fixed,
.cat-side {
	height: 100%;
}

.first-in {
	height: 100%;
	align-items: center;
	position: relative;
	z-index: 7;
}

.first-row {
	align-items: center;
}

.first-col-1 {
	flex: 1;
}

.first-col-2 {
	flex: 0 0 40%;
}

.first-cont {
	max-width: 655px;
}

.first-title {
	margin-bottom: 24px;
}

.first-actions {
	margin-top: 48px;
	gap: 10px 32px;
	position: relative;
}

.first-actions:after {
	content: '';
	background: url(../img/farrow.png) no-repeat;
	width: 206px;
	height: 92px;
	position: absolute;
	left: calc(100% + 33px);
	top: 50%;
	margin: -50px 0 0 0;
}

.first-item {
	position: relative;
}

.first-items {
	position: relative;
}

.first-arrow {
	width: 200px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 5;
	top: 0;
	cursor: pointer;
}

.first-arrow:before {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #00000050, transparent);
	position: absolute;
	top: 0;
	left: 0;
}

.first-arrow.first-prev-arrow.slick-arrow:hover {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	transition: 0.2s;
}

.first-arrow.first-next-arrow.slick-arrow:hover {
	background: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	transition: 0.2s;
}

.first-prev-arrow {
	left: 0;
}

.first-next-arrow {
	right: 0;
}

.first-next-arrow:before {
	left: auto;
	right: 0;
	background: linear-gradient(to left, #00000050, transparent);
}

.first-arrow svg {
	width: 100px;
	position: relative;
	z-index: 2;
	height: 60px;
	transition: 0.2s;
}

.first-arrow svg:active {
	height: 30px;
	transition: 0.2s;
}

.first-arrow svg path {
	fill: #fff;
}

.first-next-arrow svg {
	transform: rotate(180deg);
}

@media(min-width: 1200px) {
	.first-arrow:hover:before {
		opacity: 0.92;
	}
}

.first-items .slick-dots {
	margin: 0;
	width: 100%;
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 7px;
	position: absolute;
	bottom: 25px;
	left: 0;
	z-index: 5;
}

.first-items .slick-dots>li button {
	display: none;
}

.first-items .slick-dots>li {
	background: #fff;
	width: 14px;
	height: 14px;
	border-radius: 50px;
	cursor: pointer;
	transition: 300ms;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.first-items .slick-dots>li.slick-active {
	width: 35px;
}

.cats-title {
	margin-bottom: 17px;
	text-align: center;
}

.cats-subtitle {
	margin-bottom: 47px;
	text-align: center;
}

.cats-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.cats-item-box {
	overflow: hidden;
	height: 300px;
	border-radius: 10px;
	position: relative;
	transition: 200ms;
	bottom: 0px;
}

.cats-item-box:hover {
	box-shadow: 0px 5px 10px rgb(0 0 0 / 76%);
	transition: 200ms;
	bottom: 5px;
}

.cats-item-image {
	width: 100%;
	height: 100%;
	position: relative;
}

.cats-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(30%);
	transition: 200ms;
}

.cats-item-box:hover .cats-item-image img {
	filter: brightness(50%);
	transform: scale(1.05);
}

.cats-item-cont {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	color: #fff;
	z-index: 2;
	padding: 20px;
}

.cats-item-title {
	font-size: 24px;
	text-align: center;
}

.cats-item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}

.buy-section {
	background: no-repeat right center #363432;
}

.buy-in {
	padding: 90px 0;
}

.buy-row {
	align-items: center;
}

.buy-col-1 {
	width: 560px;
}

.buy-col-2 {
	margin-left: auto;
}

.buy-title {
	margin-bottom: 20px;
}

.buy-text {
	font-size: 18px;
	line-height: normal;
}

.buy-text p:not(:last-child) {
	margin-bottom: 23px;
}

.buy-text a {
	color: #004CFF;
	text-decoration: underline;
}

.buy-text a:hover {
	text-decoration: none;
}

.spec-title {
	text-align: center;
	margin-bottom: 43px;
}

.spec-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.spec-item-box {
	background: #fffee2;
	border-radius: 10px;
	border: 1px solid #00000029;
	height: 285px;
	position: relative;
}

.spec-item-box:hover {
	background: linear-gradient(to right, rgb(255 227 0 / 36%), rgb(255 0 0 / 18%));
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	transition: 200ms;
}

.spec-item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.spec-item-image {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.spec-item-cont {
	max-width: 300px;
	padding: 40px 15px 30px 49px;
}

.spec-item-title {
	margin-bottom: 16px;
}

.spec-item-subtitle {
	height: 74px;
}

.spec-item-more {
	font-size: 20px;
}

.spec-item-more a {
	color: #D7000F;
	text-decoration: underline;
}

.spec-item-more a:hover {
	color: #000;
	text-decoration: none;
}

.spec-item span.more {
	margin-top: 10px;
	position: absolute;
	color: #d7000f;
}

.rem-section {
	background: no-repeat right center #000;
	color: #fff;
}

.rem-in {
	padding: 137px 0 135px 0;
}

.rem-cont {
	max-width: 705px;
}

.rem-title {
	margin-bottom: 42px;
}

.rem-text {
	font-size: 24px;
	line-height: 1.83;
	margin-bottom: 42px;
	max-width: 650px;
}

.rem-actions {
	gap: 18px 47px;
	align-items: center;
}

.rem-actions-btn-more {
	color: #fff;
	border-bottom: 1px solid #fff;
	transition: 200ms;
}

.rem-actions-btn-more:hover {
	color: #D7000F;
	border-bottom-color: transparent;
	text-decoration: none;
}

.close-row {
	align-items: center;
}

.close-col-1 {
	width: 45%;
}

.close-col-2 {
	width: 51%;
	margin-left: auto;
}

.close-cont {
	padding: 0px;
}

.close-title {
	margin-bottom: 42px;
}

.close-text {
	font-size: 16px;
}

.close-text p:not(:last-child) {
	margin-bottom: 22px;
}

.close-video {
	position: relative;
}

.close-video-image img {
	width: 100%;
}

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

.close-video-play>svg {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.close-video-play-shape {
	fill-opacity: 0.8;
}

.close-video-play .close-video-play-icon {
	fill: #fff;
}

.close-video-play:hover .close-video-play-shape {
	fill: red;
	fill-opacity: 1;
}

.par-title {
	text-align: center;
	margin-bottom: 17px;
}

.par-subtitle {
	text-align: center;
	margin-bottom: 52px;
}

.par-title,
.par-subtitle {
	position: relative;
	z-index: 5;
}

.mslider {
	position: relative;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
	z-index: 10;
}

.slider-prev-arrow {
	left: 0;
}

.slider-next-arrow {
	right: 0;
}

.mslider .slick-dots {
	width: 100%;
	display: flex !important;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	margin: 0;
	gap: 10px;
}

.mslider .slick-dots>li button {
	display: none !important;
}

.mslider .slick-dots>li {
	cursor: pointer;
	background: #ADADAD;
	width: 12px;
	height: 12px;
	transition: 200ms;
	border-radius: 50px;
}

.mslider .slick-dots>li.slick-active {
	background: #D7000F;
}

.par-items {
	padding: 0 25px;
}

.par-item {
	padding: 0 15px;
}

.par-items .slider-prev-arrow svg,
.sert-slider .slider-prev-arrow svg {
	transform: rotate(180deg);
}

.par-items .slick-track {
	display: flex !important;
	align-items: center;
}

.par-item-image img {
	margin: 0 auto;
}

.par-all {
	justify-content: center;
	margin-top: 65px;
	position: relative;
	z-index: 5;
}

.par-all-btn {
	min-width: 1px;
}

.par-section {
	position: relative;
}

.par-section:after {
	content: '';
	background: linear-gradient(to right, transparent, #fff);
	height: 100%;
	width: 49%;
	position: absolute;
	top: 0;
	right: 0;
}

.news-section {
	background: #F2F2F2;
}

.news-title {
	text-align: center;
	margin-bottom: 47px;
}

.news-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.news-item-box {
	background: #fff;
	overflow: hidden;
	box-shadow: 0 0 20px #C9C9C9;
	border-radius: 10px;
	transition: 200ms;
	position: relative;
}

.news-item-image {
	height: 0;
	position: relative;
	padding-bottom: 74.72%;
}

.news-item-image a {
	display: block;
}

.news-item-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	transition: 200ms;
}

.news-item-cont {
	padding: 20px 30px 29px 17px;
}

.news-item-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 13px;
}

.news-item-text {
	font-size: 12px;
	line-height: 1.83;
	font-weight: 500;
	margin-bottom: 15px;
}

.news-item-bottom {
	font-size: 12px;
	justify-content: space-between;
}

.news-item-date {
	color: #1A1A1A;
}

.news-item-more {
	color: #D7000F;
	text-decoration: underline;
	transition: 200ms;
}

.news-item-more a:hover {
	color: #000;
	text-decoration: none;
}

.news-item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.news-item-box:hover {
	box-shadow: 0 0 50px #C9C9C9;
}

.news-item-box:hover .news-item-image img {
	filter: brightness(77%);
}

.news-item-box:hover .news-item-more {
	color: #000;
	text-decoration: none;
}

.show-section {
	background: no-repeat left center / cover #000;
	color: #fff;
}

.show-in {
	padding: 75px 0;
}

.show-cont {
	max-width: 559px;
	padding: 0 0 0 15px;
}

.show-title {
	margin-bottom: 22px;
}

.show-subtitle {
	margin-bottom: 36px;
}

.show-form {
	min-height: 419px;
}

.show-form-temp {
	background: #fff;
	height: 370px;
}

.bform .b24-form-header-padding {
	display: none;
}

.bform .b24-form-content {
	padding: 0;
}

.bform .b24-form-recaptcha {
	display: none;
}

.bform .b24-form-control-desc {
	color: #fff;
}

.bform .b24-form-sign {
	display: none;
}

.bform .b24-form-control-label {
	font-size: 18px;
	color: #000;
	opacity: 1;
}

.bform .b24-form-control {
	background: #fff !important;
	border-radius: 20px !important;
	height: 85px !important;
	padding: 0 22px !important;
}

.bform .b24-form-btn {
	width: 134px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 400;
}

.footer {
	background: #1A1A1A;
	color: #ffffff;
}

.footer-in {
	padding: 60px 0;
	position: relative;
}

.footer-copy-new {
	color: #939393;
	font-size: 12px;
}

.footer-col-1 {
	width: 50%;
}

.footer-col-2,
.footer-col-3 {
	width: 24%;
}

.footer-logo {
	align-items: center;
	margin-bottom: 46px;
}

.footer-logo-ico {
	background: url(../img/footer-logo.svg) no-repeat;
	width: 139px;
	height: 88px;
}

.footer-logo-text {
	margin-left: 21px;
	font-size: 20px;
}

.footer-logo-text>span {
	font-weight: 800;
	font-size: 36px;
	display: block;
}

.footer-info {
	font-size: 24px;
}

.footer-info a {
	color: #fff;
	text-decoration: none;
	transition: 200ms;
}

.footer-info a:hover {
	color: #D7000F;
}

.footer-info p:not(:last-child) {
	margin-bottom: 20px;
}

.footer-menu-title {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 16px;
}

.footer-menu-list>li {
	font-size: 16px;
	margin-bottom: 14px;
}

.footer-menu-list>li:last-child {
	margin: 0;
}

.footer-menu-list>li>a {
	color: #fff;
	text-decoration: none;
	transition: 200ms;
}

.footer-menu-list>li>a:hover {
	color: #D7000F;
}

.footer-bottom {
	width: 100%;
	margin-top: 60px;
}

.footer-verify {
	margin-top: 45px;
}

.footer-verify img {
	height: 50px;
}

.footer-copy {
	font-size: 12px;
	position: absolute;
}

.footer-copy p:not(:last-child) {
	margin-bottom: 10px;
}

.b24-window-popup-body,
.b24-window-popup-title {
	color: #fff !important;
}

/*.head.search-hover .head-main,
.head.search-hover .head-main .fixed {
	background: #E0E0E0;
}*/
.head.search-hover .head-search-box {
	background: #fff;
}

.head-fix .head {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 55;
}

.head-fix .head-top {
	height: 0;
	padding: 0;
}

.head-fix .head-top-col-1 {
	display: none;
}

.head-fix .head-main .fixed {
	background: #fff;
	margin: -10px auto;
	padding: 10px 20px;
}

@media(min-width: 1171px) {
	.head-fix.is-product .head-search {
		display: none;
	}

	.head-fix .head-top {
		display: none;
	}
}

.head-fix.is-product .head-menu {
	display: none;
}

.head-fix.is-product .head-product {
	display: block;
}

.head-fix.is-product .head-product-row {
	display: grid;
	grid-template-columns: repeat(4, auto);
	align-items: center;
	gap: 20px;
}

.head-fix.is-product .head-product-image {
	/* background: radial-gradient(50.00% 50.00% at 50% 50%,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.1) 100%); - фон у галереи */
	width: 66px;
	height: 66px;
	border-radius: 20px;
	border: 2px solid #c9c9c9;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.head-fix.is-product .head-product-image img {
	max-width: 100%;
	max-height: 100%;
}

.head-fix.is-product .head-product-title {
	font-size: 18px;
	/*font-weight: bold;*/
}

.head-fix.is-product .head-product-price {
	font-size: 20px;
	font-weight: bold;
	padding-right: 25px;
}

.btn-order,
.wp-block-button__link {
	background: linear-gradient(180.00deg, rgb(65, 202, 0), rgb(46, 143, 0) 100%);
	border: none;
	box-shadow: 0 5px 0 #1B5400;
	width: 241px;
	font-size: 16px;
	font-weight: bold;
}

.btn-order:hover,
.wp-block-button__link:hover {
	background: linear-gradient(0deg, rgb(46, 143, 0), rgb(43 135 0) 100%);
	transition: 200ms;
}

.btn-order:active,
.wp-block-button__link:active {
	background: linear-gradient(0deg, rgb(46, 143, 0), rgb(43 135 0) 100%);
	box-shadow: 0 3px 0 #1B5400;
	margin-top: 2px !important;
	transition: 200ms;
}

.head-fix.is-not-main .head-main {
	box-shadow: none;
	position: relative;
	z-index: 3;
}

.ptop-in {
	padding: 28px 10px;
}

.ptop-breadcrumbs {
	gap: 4px;
}

.ptop-breadcrumbs .current-item {
	color: #919191;
}

.ptop-section.align-left .ptop-breadcrumbs {
	justify-content: flex-start;
}

.ptop-section.align-left .fixed-wide {
	padding: 0 50px;
}

.ptop-title {
	margin-top: 14px;
}

.filter {
	margin-bottom: 60px;
}

.cat-in {
	padding: 20px 0 50px 0;
}

.cat-banner {
	margin-bottom: 15px;
}

.cat-banner img {
	width: 100%;
	display: block;
	border-radius: 5px;
}

.cat-col-1 {
	flex: 0 0 300px;
}

.cat-col-2 {
	flex: 1;
	padding-left: 30px;
}

.cat-top {
	grid-template-columns: 100%;
	gap: 20px;
	margin-bottom: 20px !important;
	background-color: #ffffff;
	border: 1px solid #c9c9c9;
	padding: 15px !important;
	border-radius: 10px;
}

.cat-ep {
	align-items: flex-end;
	justify-content: space-between;
}

.cat-minprice {
	font-size: 20px;
	font-weight: bold;
	display: ruby;
}

.why-ep {
	margin: 0 !important;
}

.cat-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #C9C9C9;
	border-left: 1px solid #C9C9C9;
}

.template-3 .cat-items,
.other-items {
	grid-template-columns: repeat(4, 1fr);
}

.cat-item {
	border-right: 1px solid #C9C9C9;
	border-bottom: 1px solid #C9C9C9;
}

.cat-item-box {
	border-radius: 0;
	background: #fff;
	transition: 200ms;
	position: relative;
	height: 100%;
	padding-top: 60px;
}

.cat-item-image {
	overflow: hidden;
	height: 253px;
	justify-content: center;
	align-items: center;
}

.cat-item-image img {
	max-width: 94%;
	max-height: 94%;
	transition: 200ms;
}

.cat-item-cont {
	padding: 12px 13px 73px 13px;
}

.cat-item-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 13px;
	transition: 200ms;
}

.cat-item-chars {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 10px;
	font-size: 12px;
	font-weight: 300;
	color: #1A1A1A;
	margin-bottom: 20px;
}

.cat-item-chars-item>span {
	font-weight: 500;
	display: block;
}

.cat-item-price {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: flex-end;
	gap: 12px 10px;
}

.cat-item-price-new {
	color: #1A1A1A;
	font-size: 18px;
	font-weight: 700;
}

.cat-item-price-old {
	font-size: 12px;
	color: #5D5D5D;
	font-weight: 300;
}

.cat-item-bottom {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	align-items: center;
	min-height: 40px;
	position: absolute;
	bottom: 17px;
	left: 13px;
	right: 13px;
}

.cat-item-get {
	position: absolute;
	bottom: 17px;
	left: 13px;
	z-index: 7;
}

.cat-item-get-btn {
	min-width: 140px;
	padding: 10px 23px;
}

.cat-item-gifter {
	background: rgba(236, 235, 235, 1);
	border-radius: 50px;
	padding: 7px 11px;
	gap: 7px;
	position: absolute;
	bottom: 17px;
	right: 19px;
	z-index: 7;
	align-items: center;
	max-width: 166px;
	flex-wrap: nowrap;
}

.cat-item-gifter>span {
	font-size: 10px;
	font-weight: 500;
}

.cat-item-gifter>a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.cat-item-more {
	font-size: 14px;
	font-weight: 300;
	color: #D7000F;
	transition: 200ms;
	position: absolute;
	bottom: 27px;
	right: 15px;
}

.cat-item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 6;
}

.cat-item-pre {
	background: #fff;
	padding: 8px 19px 20px 13px;
	position: absolute;
	top: 100%;
	left: -1px;
	right: -1px;
	display: none;
	font-size: 12px;
	border: 1px solid rgba(201, 201, 201, 1);
	border-top: none;
}

@media(min-width: 1100px) {
	.cat-item-box:hover {
		box-shadow: 0px 0px 46px -4px rgba(0, 0, 0, 0.24);
		z-index: 53;
	}

	.cat-item-box:hover .cat-item-image img {
		/*filter: brightness(77%);*/
		transform: scale(1.05);
	}

	.cat-item-box:hover .cat-item-pre {
		display: block;
	}

	.cat-item-box:hover .cat-item-more {
		color: #000;
	}

	.cat-item-box:hover .cat-item-title {
		color: #D7000F;
	}
}

.cat-filter {
	border: 1px solid rgba(201, 201, 201, 1);
	background: rgba(249, 249, 249, 1);
	border-radius: 5px;
}

.cat-filter-title {
	padding: 20px 18px;
	font-weight: 600;
	border-bottom: 1px solid #c9c9c9;
}

.pre-item {
	height: 100%;
}

.pre-item-box {
	background: #f6f6f6;
	border: 1px solid #e7e7e7;
	border-bottom: 0;
	height: 100%;
	padding: 14px 13px 14px 10px;
	align-items: center;
	position: relative;
	transition: 0.1s;
}

.pre-item-box:hover {
	background: linear-gradient(to right, rgb(245 245 245), rgb(255 255 255));
	box-shadow: 0px 0px 5px #00000030;
	transition: 0.1s;
}

.pre-item-title {
	width: calc(100% - 50px);
	font-size: 14px;
	color: #1A1A1A;
	line-height: 20px;
}

.pre-item-title b {
	font-size: 16px;
	font-weight: 500;
}

.pre-item-title span {
	color: #1c274c;
	font-size: 12px;
	text-decoration: underline;
}

.pre-item-ico {
	margin-left: auto;
	transition: 200ms;
}

.pre-item-ico svg {
	width: 40px;
	fill: #848484;
}

.pre-item-box:hover .pre-item-ico {
	margin-right: 6px;
}

.cat-load {
	justify-content: center;
	margin-top: 47px;
}

.tblock-col-1 {
	width: 47.5%;
}

.tblock-col-2 {
	width: 46.38%;
	margin-left: auto;
}

.tblock-image {
	position: relative;
	padding: 0 10px 10px 0;
}

.tblock-image:after {
	background: linear-gradient(45.00deg, rgba(179, 104, 14, 0.46) 0%, rgba(183, 62, 8, 0.46) 100%);
	border-radius: 20px;
	box-shadow: 0px 4px 67px 0px rgba(0, 0, 0, 0.47);
	position: absolute;
	top: 30px;
	left: 30px;
	bottom: 0;
	right: 0;
	content: "Загрузка";
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.green .tblock-image:after {
	background: linear-gradient(45.00deg, #47c68d 0%, rgb(0 103 2) 100%);
}

.tblock-image-top {
	padding: 10px 10px 0 0;
}

.tblock-image-top:after {
	top: 0;
	right: 0;
	bottom: 30px;
	left: 30px;
	content: "Загрузка";
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tblock-image-in {
	position: relative;
	z-index: 2;
	border-radius: 20px;
	overflow: hidden;
}

.tblock-image-in img {
	width: 100%;
}

.tblock-title {
	margin-bottom: 20px;
}

.tblock-text {
	font-size: 14px;
	line-height: 1.5;
}

.is-text>* {
	margin-top: 20px;
}

.is-text>*:first-child {
	margin-bottom: 0;
}

.is-text ol li {
	list-style: numeric outside;
}

.is-text ul li {
	list-style: disc outside;
}

.is-text ol,
.is-text ul {
	margin-left: 16px;
}

.is-text *:not(ul):not(ol)+ul,
.is-text *:not(ul):not(ol)+ol {
	margin-top: 0;
}

.is-text h1 {
	font-size: 32px;
	font-weight: bold;
	margin-top: 15px;
}

.is-text h2 {
	font-size: 24px;
	font-weight: bold;
	margin-top: 15px;
}

.is-text h3 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 12px;
}

.is-text h4 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 12px;
}

.is-text h5 {
	font-size: 10px;
	font-weight: bold;
	margin-top: 10px;
}

.is-text h6 {
	font-size: 14px;
	font-weight: bold;
	margin-top: 15px;
}

.is-text a {
	color: #fd2427;
	text-decoration: underline;
}

.is-text a:hover {
	text-decoration: none;
}

.is-text img {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	display: block;
	height: auto;
}

.is-text .wp-block-button a {
	color: #ffffff !important;
	text-decoration: none !important;
}

.prod-main-row {
	display: grid;
	grid-template-columns: repeat(2, auto);
}

.prod-left {
	/*max-height: 480px;*/
	height: 100%;
	overflow: hidden;
	position: relative;
}

.prod-images {
	/* background: radial-gradient(50.00% 50.00% at 50% 50%,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.1) 100%); - фон у галереи */
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	overflow: hidden;
	width: 475px;
	margin-left: 18px;
}

.prod-images-item-image {
	height: 533px;
}

.prod-images-item-image>a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.prod-images-item-image>a>img {
	max-width: 97%;
	max-height: 97%;
}

.prod-images .slider-arrow,
.bslider .slider-arrow {
	border: 2px solid #c9c9c9;
	background: #fff;
	width: 54px;
	height: 54px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 200ms;
}

.prod-images .slider-prev-arrow,
.bslider .slider-prev-arrow {
	left: 12px;
}

.prod-images .slider-next-arrow,
.bslider .slider-next-arrow {
	right: 12px;
}

.prod-thumbs {
	width: 143px;
	position: relative;
	/*margin: -11px 0;*/
}

.prod-thumbs-item {
	padding: 1px 0px;
}

.prod-thumbs-item-image {
	border: 1px solid #ffffff;
	border-radius: 10px;
	overflow: hidden;
	height: 143px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 200ms;
}

.prod-thumbs-item-image.active {
	border-color: #c2c2c2;
	box-shadow: 0px 0px 6px #00000040;
}

.prod-thumbs-item-image>img {
	max-width: 97%;
	max-height: 97%;
}

.prod-thumbs-item-image:hover {
	background: #fff;
}

.prod-thumbs .slider-arrow {
	border: 1px solid #d9d9d9;
	background: rgba(255, 255, 255, 0.8);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -20px;
	top: auto;
	transform: none;
	transition: 200ms;
	display: flex !important;
	opacity: 0;
}

.prod-thumbs .slider-arrow svg {
	zoom: 0.8;
}

.prod-thumbs .slider-prev-arrow {
	top: 20px;
}

.prod-thumbs .slider-next-arrow {
	bottom: 22px;
}

.prod-thumbs .slider-next-arrow svg {
	transform: rotate(90deg) translateX(2px);
}

.prod-thumbs .slider-prev-arrow svg {
	transform: rotate(90deg);
}

.prod-thumbs .slider-arrow:hover,
.prod-images .slider-arrow:hover,
.bslider .slider-arrow:hover {
	background: #fff;
	border: 2px solid #000000;
	box-shadow: 0 0 10px 0px #00000066;
	scale: 1.05;
}

.prod-thumbs .slider-arrow:active,
.prod-images .slider-arrow:active {
	scale: 1 !important;
	transition: 200ms;
}

.prod-thumbs:hover .slider-arrow {
	opacity: 1;
}

.prod-chars-title {
	margin-bottom: 15px;
}

.prod-chars {
	margin: 0 0 23px 0;
}

a.see-all-chars {
	color: #758CFF;
	font-size: 14px;
	font-weight: 400;
}

.prod-chars-item {
	margin-bottom: 10px;
	color: #1A1A1A;
	font-size: 14px;
	font-weight: 300;
}

.prod-chars-item:last-child {
	margin-bottom: 0;
}

.prod-chars-item>span {
	/*display: block;*/
	font-weight: 500;
}

.prod-price-div {
	margin-bottom: 15px;
	align-items: center;
}

.prod-price {
	font-size: 24px;
	font-weight: bold;
	color: #1A1A1A;
}

.old_price {
	font-size: 16px;
	color: #aeaeae;
	font-weight: 300;
}

.prod-price>s {
	font-size: 16px;
	font-weight: 300;
	color: #5D5D5D;
}

.prod-order-btn,
.close-order-btn {
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 0 0px 10px rgba(0, 0, 0, 0.7);
}

.prod-order.whatsapp {
	width: 100%;
}

.prod-order.whatsapp a {
	font-size: 20px;
}

.prod-order.test-drive {
	margin: 20px 0;
	text-align: center;
}

.prod-order.test-drive a {
	font-weight: 500;
	font-size: 16px;
	padding: 12px 0;
	border: 1px solid;
	border-radius: 12px;
	width: 100%;
	display: block;
}

.prod-order.test-drive a:hover {
	text-decoration: none;
	background-color: #000000;
	color: white;
}

.prod-pre,
.cat-spre {
	display: grid;
	grid-template-columns: 100%;
	gap: 0;
	border-bottom: 1px solid #e7e7e7;
}

.prod-pre p {
	font-weight: 600;
	padding-left: 10px;
	padding-top: 3px;
}

.prod-info {
	padding: 66px 0 87px 0;
}

.prod-info-row {
	justify-content: space-between;
}

.prod-info-col {
	width: 47.59%;
}

.prod-os-title {
	margin-bottom: 48px;
}

.prod-os-item {
	margin-bottom: 30px;
}

.prod-os-item:last-child {
	margin-bottom: 0;
}

.prod-os-item-image {
	width: 200px;
}

.prod-os-item-cont {
	width: calc(100% - 220px);
	margin-left: auto;
}

.prod-table-title {
	margin-bottom: 17px;
}

.is-table {
	border: 5px solid #ffc342;
	border-radius: 5px;
}

.is-table th,
.is-table td {
	font-size: 16px;
	text-align: center;
	font-weight: 400;
}

.is-table th:first-child,
.is-table td:first-child {
	text-align: left;
	border-left: none;
}

.is-table th {
	background: #E0E0E0;
	font-size: 14px;
	padding: 14px 18px;
}

.is-table td {
	padding: 8px 18px;
}

.is-table tbody tr:nth-child(2n) {
	background: #f1f1f1;
}

.is-table tbody tr:hover {
	background: #ffeeca;
}

.descr-in {
	line-height: 1.5;
}

.descr-title {
	margin-bottom: 20px;
}

.descr-order {
	margin-top: 35px;
}

.files-in {
	padding: 0px 0px 0px 0px;
}

.files-title {
	margin-bottom: 20px;
}

.files-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.files-item-box {
	background: #f1f1f1;
	border-radius: 10px;
	height: 100%;
	position: relative;
	transition: 200ms;
	padding: 20px;
	border: 1px solid #8080805c;
}

.files-item-ico {
	background: url(../img/pdf.svg) no-repeat;
	width: 69px;
	height: 76px;
}

.files-item-cont {
	width: calc(100% - 85px);
	margin-left: auto;
	padding: 8px 0 0 0;
}

.files-item-title {
	font-size: 16px;
	font-weight: bold;
}

.files-item-down {
	font-size: 12px;
	color: #004CFF;
	border-bottom: 1px solid #004CFF;
	transition: 200ms;
	display: inline-block;
}

.files-item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.files-item-box:hover {
	background: #d9d9d9;
	box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.files-item-box:hover .files-item-down {
	color: #D7000F;
	border-color: #D7000F;
}

.other-in {
	padding: 93px 0 58px 0;
}

.other-title {
	text-align: center;
	margin-bottom: 38px;
}

.other-more {
	justify-content: center;
	margin-top: 47px;
}

.xmodal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	display: none;
	backdrop-filter: blur(10px);
}

.xmodal-background {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.xmodal-in {
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	padding: 30px 0px;
	overflow: auto;
}

.xmodal-box {
	background: #fff;
	width: 580px;
	max-width: 100%;
	border-radius: 20px;
	position: relative;
	z-index: 5;
	padding: 40px 50px;
	border: 2px solid #000000;
	box-shadow: 0px 0px 20px 0px black;
}

.xmodal-box--reasons {
	width: 1388px;
}

.xmodal-close {
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 2.76px;
	position: absolute;
	bottom: calc(100% + 11px);
	right: 0;
	cursor: pointer;
	text-transform: uppercase;
	transition: 200ms;
	color: rgba(255, 255, 255, 0.8);
}

.xmodal-close:hover {
	color: #fff;
}

.xmodal-title {
	text-align: center;
	margin-bottom: 18px;
}

.xmodal-body .b24-form-header-padding {
	display: none;
}

.xmodal-body .b24-form-content {
	padding: 0;
}

.xmodal-body .b24-form-recaptcha {
	display: none;
}

.xmodal-body .b24-form-sign {
	display: none;
}

.xmodal-subtitle {
	font-size: 18px;
	text-align: center;
	margin-bottom: 25px;
}

.overflow {
	overflow: hidden;
}

.warn-text {
	border: 2px solid orange;
	padding: 18px;
}

.err-max {
	margin: 100px 0;
}

.err-max h1 {
	font-size: 100px;
	margin: 50px 0;
}

.err-text {
	font-size: 24px;
	line-height: 2;
}

.pfirst-section:after {
	background: linear-gradient(90.00deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.36) 100%, rgba(76, 76, 76, 0.36) 100%), url(6269b06ef618393acc5eae1cb2e3180a);
}

.pfirst-col-1 {
	width: 58%;
}

.pfirst-col-2 {
	width: 35%;
	margin-left: auto;
	margin-right: 40px;
}

.b24-form-control {
	resize: none !important;
}

.bform-middle .b24-form-control {
	font-size: 18px !important;
}

.bform-middle input.b24-form-control {
	height: 62px !important;
	padding: 0 18px !important;
}

.bform-middle textarea.b24-form-control {
	height: 140px !important;
	padding: 32px 18px !important;
}

.pfirst-form {
	min-height: 450px;
}

.pfirst-subtitle {
	max-width: 690px;
	line-height: 1.7;
}

.pfirst-items {
	width: 570px;
	max-width: 100%;
	gap: 15px 40px;
	margin: 30px 0 0 0;
	position: relative;
}

.pfirst-item {
	flex: 1;
}

.pfirst-item-box {
	height: 100%;
	background: #fff;
	font-size: 24px;
	border-radius: 20px;
	height: 133px;
	padding: 5px 10px 5px 24px;
	align-items: center;
	color: #000;
}

.pfirst-item-box span {
	color: #2E8F00;
	font-weight: 900;
	font-size: 36px;
	line-height: 1;
	display: block;
}

.pfirst-item-box i {
	font-style: normal;
	font-size: 24px;
}

.pfirst-items:after {
	content: '';
	background: url(../img/pfirst-arrow.png) no-repeat;
	width: 213px;
	height: 91px;
	left: calc(100% + 27px);
	bottom: -28px;
	position: absolute;
	z-index: 2;
}

.one-title {
	text-align: center;
	margin-bottom: 54px;
}

.one-row {
	align-items: center;
}

.one-col-1 {
	width: 720px;
}

.one-col-2 {
	width: 600px;
	margin-left: auto;
}

.one-images {
	width: 100%;
	height: 445px;
	position: relative;
	justify-content: space-between;
	align-items: flex-end;
}

.one-images:after {
	content: '';
	position: absolute;
	top: 33px;
	left: 70px;
	right: 70px;
	bottom: 33px;
	border-radius: 20px;
	box-shadow: 0 4px 67px rgba(0, 0, 0, 0.47);
	background: linear-gradient(45.00deg, rgba(179, 104, 14, 0.46) 0%, rgba(183, 62, 8, 0.46) 100%);
}

.one-images-item {
	position: relative;
	z-index: 2;
}

.one-images-item-1 {
	width: 45.3%;
	margin-bottom: auto;
}

.one-images-item-2 {
	width: 53.16%;
}

.one-images-item img {
	border-radius: 20px;
}

.one-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 90px 15px;
}

.one-item-in {
	align-items: center;
}

.one-item-ico {
	width: 100px;
	height: 100px;
	background: no-repeat center;
}

.one-item-cont {
	width: calc(100% - 110px);
	margin-left: auto;
}

.one-item-cont div {
	margin: 10px 0;
	line-height: 25px;
}

.one-item-text {
	font-size: 16px;
}

.one-actions {
	margin-top: 70px;
	align-items: center;
	gap: 12px 84px;
}

.one-actions-btn-order {
	width: 425px;
	font-size: 24px;
}

.one-actions.test-drive {
	margin-top: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px 84px;
}

.one-actions-btn-order.test-drive {
	width: 425px;
	font-size: 24px;
	text-align: center;
}

.one-actions-link {
	font-size: 18px;
	font-weight: bold;
	color: #004CFF;
	text-decoration: underline;
}

.one-actions-link:hover {
	color: #000;
	text-decoration: none;
}

.plan-section {
	background: no-repeat top center;
	position: relative;
	color: #fff;
	margin-bottom: 100px;
}

.plan-center {
	max-width: 1260px;
	margin: 0 auto;
}

.plan-in {
	padding: 80px 0 0 0;
	position: relative;
	z-index: 3;
}

.plan-title {
	text-align: center;
	margin-bottom: 13px;
}

.plan-subtitle {
	text-align: center;
	margin-bottom: 40px;
}

.plan-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px 30px;
}

.plan-item-box {
	background: #F0F0F0;
	border-radius: 20px;
	height: 100%;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.58);
	color: #000;
	padding: 17px 32px 35px 32px;
	text-align: center;
}

.plan-item-ico {
	background: no-repeat center / contain;
	width: 163px;
	height: 163px;
	margin: 0 auto 3px auto;
}

.plan-item-title {
	font-weight: 900;
	margin-bottom: 58px;
}

.plan-item-chars {
	font-size: 19px;
	margin-bottom: 57px;
}

/*.plan-item-chars > li {
	margin-bottom: 2px;
}
.plan-item-chars > li:last-child {
	margin-bottom: 0;
}*/
.plan-item-price {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 44px;
}

.plan-item-order-btn {
	width: 100%;
	font-size: 24px;
}

.plan-btext {
	text-align: center;
	color: #8D8D8D;
	margin: 24px -20px 0 -20px;
}

.master-in {
	padding: 83px 0 116px 0;
}

.master-title {
	text-align: center;
	margin-bottom: 13px;
}

.master-subtitle {
	text-align: center;
	margin-bottom: 30px;
}

.master-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 30px;
}

.master-item-image img {
	/*height: 408px;*/
	border-radius: 20px;
	object-fit: cover;
}

.master-item-name {
	text-align: center;
	margin-top: 14px;
}

.is-text .section-title.size-36 {
	font-size: 34px !important;
}

.tblock-repair-text {
	font-size: 18px;
}

.lfirst-section:after {
	background: linear-gradient(90.00deg, rgba(0, 0, 0, 0.79) 0%, rgba(0, 0, 0, 0.79) 100%, rgba(76, 76, 76, 0.79) 100%), url(skladskoe_hozyaystvo_sklad_ko);
}

.prep-in {
	padding: 100px 0 50px 0;
}

.white-back {
	background-color: #ffffff;
}

.prep-title {
	text-align: center;
	margin-bottom: 20px;
}

.prep-col-1 {
	width: 52.51%;
}

.prep-col-2 {
	width: 46.82%;
	margin-left: auto;
}

.prep-cont {
	padding-top: 50px;
}

.prep-item {
	margin-bottom: 35px;
}

.prep-item:last-child {
	margin-bottom: 0;
}

.prep-item-ico {
	background: no-repeat center / contain;
	width: 90px;
	height: 90px;
}

.prep-item-cont {
	width: calc(100% - 115px);
	margin-left: auto;
}

.prep-item-text {
	font-size: 20px;
	line-height: 2;
}

.prep-item-text>p:not(:last-child) {
	margin-bottom: 4px;
}

.lpar-in {
	padding: 0 0 85px 0;
}

.lpar-title {
	text-align: center;
	margin-bottom: 30px;
}

.lpar-image img {
	margin: 0 auto;
}

.lshow-section {
	background: no-repeat center top right #000;
}

.tblock-order {
	margin-top: 50px;
}

.tblock-order-btn {
	width: 400px;
	font-size: 24px;
}

.tblock-mini-image [class*="col-2"] {
	width: 37%;
}

.ab-in {
	padding: 9px 0 70px 0;
}

.ab-cont {
	position: relative;
}

.ab-tbox {
	background: #ffffff;
	border-radius: 20px 0 0 20px;
	padding: 35px 40px 26px 35px;
	position: absolute;
	right: 0;
	top: 34px;
	z-index: 2;
	width: 446px;
}

.atblock-in {
	padding: 0 0 50px 0;
}

.tblock-repair-company {
	font-size: 16px;
	line-height: 1.95;
	font-weight: 500;
}

.abuy-in {
	padding: 108px 0;
}

.abuy-text {
	line-height: 1.95;
	font-size: 16px;
	font-weight: 500;
}

.stblock-in {
	padding: 74px 0 108px 0;
}

.tblock-repair-service {
	font-size: 16px;
	line-height: 1.95;
	font-weight: 500;
}

.cs-in {
	padding: 12px 0 30px 0;
}

.cs-col-1 {
	width: 50%;
}

.cs-col-2 {
	width: 48%;
	margin-left: auto;
}

.cs-title {
	margin-bottom: 20px;
}

.cs-item {
	margin-bottom: 25px;
}

.cs-item:last-child {
	margin: 0;
}

.cs-item-in {
	align-items: center;
}

.cs-item-ico {
	background: no-repeat center / contain;
	width: 50px;
	height: 50px;
}

.cs-item-cont {
	font-size: 24px;
	width: 100%;
}

.group-contacts {
	margin-bottom: 15px;
}

.cs-rekv {
	font-size: 16px;
	line-height: 1.7;
}

.cs-rekv a {
	color: #004CFF;
	text-decoration: underline;
}

.cs-rekv a:hover {
	text-decoration: none;
}

.single-max {
	max-width: 700px;
	margin: 20px auto;
}

.single-title {
	margin-bottom: 0px;
}

.single-content {
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
}

.single-buy-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.single-buy-items .cat-item-image {
	height: 259px;
}

.single-buy-title {
	margin-bottom: 24px;
}

.art-in {
	padding: 0 0 108px 0;
}

.art-title {
	text-align: center;
	margin-bottom: 45px;
}

.single-col-2 {
	width: 360px;
	margin-left: auto;
}

.single-col-1 {
	width: calc(100% - 400px);
}

.single-col-2 {
	position: sticky;
	top: 0;
}

.prod-section .single-col-2 {
	width: 380px;
	padding-right: 0;
	margin-left: auto;
}

.single-side-title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.single-side-item {
	margin-bottom: 17px;
}

.single-side-item:last-child {
	margin-bottom: 0;
}

.single-side-item-box {
	background: #fff;
	transition: 200ms;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 -1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	position: relative;
	padding: 24px 36px 23px 17px;
}

.single-side-item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.single-side-item-box:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.single-side-item-box:hover .news-item-more {
	color: #000;
	text-decoration: none;
}

.single-breadcrumbs {
	margin-bottom: 20px;
	justify-content: flex-start;
}

.cs-map-mob {
	display: none
}

.show-section-repair:after {
	max-width: 75%;
}

.model-background {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	display: none;
	backdrop-filter: blur(5px);
}

.blog-in {
	padding: 70px 0 101px 0;
}

.b24-form-control-alert .b24-form-control-alert-message {
	display: none !important;
}

.b24-form-control-alert .b24-form-control {
	border: 3px solid red !important;
}

body .b24-form-control-alert {
	margin-bottom: 15px !important;
}

.small-contacts a {
	color: #d7000f;
	text-decoration: underline;
}

.small-contacts {
	font-size: 16px;
}

.small-contacts a:hover {
	text-decoration: unset;
}

.show-section+.rem-section {
	/*margin-top: 60px;*/
}

.b24-form-wrapper {
	background: transparent !important;
}

.prep-ar-title {
	margin-bottom: 50px;
	text-align: center;
}

.prep-cont-nopadding {
	padding: 0;
}

.head-burger {
	width: 45px;
	height: 45px;
	border: 1px solid #D7000F;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	cursor: pointer;
	position: relative;
	margin-left: 14px;
	display: none;
}

.head-burger-item {
	width: 25px;
	height: 25px;
	transition: 400ms;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12.5px 0 0 -12.5px;
}

.head-burger-item svg {
	width: 100%;
	height: 100%;
}

.head-burger-item svg path {
	fill: #D7000F;
}

.head-burger-close {
	opacity: 0;
	transform: scale(0);
}

.head-burger.opened .head-burger-open {
	opacity: 0;
	transform: scale(0);
}

.head-burger.opened .head-burger-close {
	opacity: 1;
	transform: scale(1);
}

.head-contacts-item-search {
	display: none;
	cursor: pointer;
}

.xmenu {
	background: #f2f2f2;
	position: fixed;
	width: 100%;
	top: 115px;
	left: 0;
	bottom: 0;
	transition: 200ms;
	z-index: -1;
	opacity: 0;
}

.xmenu-background {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.xmenu ul,
.xmenu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.xmenu.active {
	opacity: 1;
	z-index: 99999;
}

.xmenu .xmenu-box {
	/*width: 900px;*/
	position: absolute;
	bottom: 0;
	top: 0;
	left: -120%;
	z-index: 5;
	display: flex;
}

.xmenu.active .xmenu-box {
	left: 0;
}

.xmenu-col {
	height: 100%;
	background: #f2f2f2;
	border-right: 1px solid #dcdcdc;
	padding: 20px 0;
	overflow: auto;
}

.xmenu ul {
	/*height: 100%;*/
	padding: 0 20px;
}

.xmenu ul li a {
	display: block;
	border-radius: 8px;
	padding: 10px 0;
	transition: 200ms;
	position: relative;
}

.xmenu ul li.with-child a {
	padding-right: 35px;
}

.xmenu ul li.with-child a:after {
	content: '';
	opacity: 0;
	transition: 200ms;
	width: 10px;
	height: 10px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	position: absolute;
	top: 50%;
	transform: rotate(45deg) translateY(-65%) translateZ(0);
	right: 22px;
}

.xmenu ul li.active a {
	background: #f2f2f2;
}

.xmenu ul li.active a:after {
	opacity: 1;
}

.xmenu-col-2,
.xmenu-col-3 {
	display: none;
}

.xmenu-col-2 ul,
.xmenu-col-3 ul {
	display: none;
}

.xmenu ul::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

.xmenu ul::-webkit-scrollbar-track-piece {
	background-color: #E8E8E8;
}

.xmenu ul::-webkit-scrollbar-thumb:vertical {
	height: 6px;
	background-color: #bc0008;
}

.xmenu ul::-webkit-scrollbar-thumb:horizontal {
	width: 6px;
	background-color: #bc0008;
}

.xmenu-mlink {
	display: none;
}

.xmenu-back {
	display: none;
	padding: 0 0 20px 27px;
}

.xmenu-back a {
	font-weight: bold;
}

.xmenu-back a span {
	transition: 200ms;
	width: 10px;
	height: 10px;
	border-top: 2px solid #333;
	border-left: 2px solid #333;
	transform: rotate(-45deg) translateZ(0);
	display: inline-block;
}

.xmenu .head-model-items {
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
	padding: 0 20px;
	margin-bottom: 20px;
}

.xmenu .head-model-item-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
}

.xmenu .head-model-item-image {
	width: 40px;
	height: 40px;
}

.xmenu .head-model-item-title {
	width: calc(100% - 55px);
	margin-left: auto;
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	justify-content: flex-start;
}

.pfirst-bg img {
	width: 100%;
}

th.up-table-title {
	font-size: 110%;
	font-weight: 600;
	color: #1a1a1a;
	text-shadow: 0 0 black;
	background: #ffc342;
	border: none;
}

.fancybox-content {
	background: #fff !important;
}

.prod-labels {
	position: absolute;
	left: 183px;
	top: 15px;
	z-index: 5;
}

.labels-items {
	gap: 10px;
}

.labels-item {
	background: #BDFF9D;
	border-radius: 5px;
	padding: 4px 9px;
	font-size: 13px;
	color: #133502;
}

.labels-item-sale {
	background: #FFB7B1;
	color: #9d0016;
}

.labels-item-new {
	background: #9ADFFF;
	color: #002c5b;
}

.cat-item-labels {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 7;
}

.cat-compare {
	position: absolute;
	top: 13px;
	right: 14px;
	z-index: 8;
}

.cat-item-gift {
	position: absolute;
	top: 7px;
	left: 7px;
	z-index: 7;
	border-radius: 10px;
	align-items: center;
	width: 56px;
	padding: 8px;
	overflow: hidden;
	cursor: pointer;
}

.cat-item-gift-ico {
	/* background: url(../img/gift-ico.png) no-repeat; */
	width: 40px;
	height: 41px;
	font-size: 30px;
}

.cat-item-gift-text {
	width: calc(100% - 52px);
	margin-left: auto;
	font-weight: bold;
	display: none;
}

.cat-item-gift>a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.cat-item-prej {
	background: rgba(0, 0, 0, 0.5);
	height: 253px;
	width: 100%;
	position: absolute;
	transition: 200ms;
	left: 0;
	top: 0;
	z-index: 6;
	color: #fff;
	backdrop-filter: blur(5px);
	opacity: 0;
	/*border-radius: 0 0 20px 20px;*/
}

.cat-item-prej-text {
	width: 100%;
	position: absolute;
	bottom: -150%;
	left: 0;
	height: 100%;
	align-items: center;
	transition: 200ms;
	padding: 40px 20px 0 20px;
}

.prod-gift {
	position: absolute;
	top: 10px;
	left: 171px;
}

.prod-gift {
	background: #f2f2f2;
	width: 170px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.prod-gift .cat-item-gift-text {
	display: block;
}

.cat-item-discount {
	position: absolute;
	bottom: 70px;
	right: 0;
}

.discount {
	padding: 10px 20px 10px 30px;
	position: relative;
	font-weight: bold;
	overflow: hidden;
	background: #F7D44A;
	background: linear-gradient(135deg, #F7D44A, #E5CE6B);
}

.discount:before {
	content: '';
	height: 0;
	border: 18px solid transparent;
	border-left: 18px solid #fff;
	position: absolute;
	top: 0;
	left: 0;
}

.prod-price-div .discount {
	margin-left: auto;
	zoom: 1.2;
}

section.other-section.section {
	border-top: 1px solid #d3d3d3;
	border-bottom: 1px solid #d3d3d3;
}

table {
	border: 1px solid #bbbbbb;
	table-layout: fixed;
	width: 100%;
}

table th {
	font-weight: bold;
	padding: 5px;
	background: #efefef;
	border: 1px solid #dddddd;
}

table td {
	padding: 5px 10px;
	border: 1px solid #eee;
	text-align: left;
}

table tbody tr:nth-child(odd) {
	background: #fff;
}

table tbody tr:nth-child(even) {
	background: #F7F7F7;
}

.eform {
	position: relative;
}

.eform-label {
	position: relative;
	margin-bottom: 15px;
}

.eform-label:last-child {
	margin-bottom: 0;
}

.eform-input .input-class::placeholder {
	font-size: 0;
}

.eform-input {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
}

.eform-input .input-class {
	background: transparent;
	position: relative;
	z-index: 3;
	border: 1px solid #80808080;
}

.eform-input textarea.input-class {
	padding: 25px 18px;
}

.eform-input>label {
	display: block;
	color: #000;
	font-size: 18px;
	position: absolute;
	top: 19px;
	left: 18px;
	transition: 200ms;
}

.eform-input>label>span {
	color: red;
}

.eform-input.focused>label {
	top: 5px;
	font-size: 12px;
}

.eform-check {
	margin-top: 10px;
}

.eform-check span {
	opacity: 0.5;
	font-size: 10px;
	line-height: 1;
}

.eform-sbm {
	margin-top: 15px;
}

.eform-loader,
.eform-success {
	background: rgba(255, 255, 255, 0.68);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
	top: 0;
	left: 0;
	border-radius: 20px;
	display: none;
}

.eform-loader svg {
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.eform-loader .b24-form-loader-icon-sun-ring {
	stroke: rgb(46, 143, 0);
}

.eform-loader svg g>path {
	fill: #fff;
	stroke: #fff;
}

.eform-loader .bx-sun-lines-animate {
	fill: rgb(46, 143, 0);
	animation: linear bxSunCover 25s infinite;
	transform-origin: 79px 79px;
}

.eform.proccessing .eform-loader {
	display: block;
}

.eform-success {
	padding: 50px 0 0 0;
}

.eform-success-ico svg {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	display: block;
}

.eform-success-text {
	text-align: center;
	color: rgb(46, 143, 0);
	font-size: 20px;
	font-weight: 600;
	margin-top: 20px;
}

.xmodal .eform-input {
	background: #f2f2f2;
}

.eform-check a {
	color: white;
	background-color: black;
	text-decoration: underline;
}

.prod-table,
.prod-os,
.close-video,
.files-in,
#descr,
.descr-button {
	padding: 30px 0;
}

.prod-os,
.prod-table,
.tab-product,
.prod-prej,
.close-video {
	margin-top: 20px;
}

.prod-prej-box {
	background: #fffee0;
	border-radius: 20px;
	padding: 30px 35px;
	border: 1px dotted #d9d9d9;
	align-items: center;
}

.prod-prej-ico {
	background: url(../img/pre-ico.png) no-repeat center / contain;
	width: 60px;
	height: 60px;
}

.prod-prej-text {
	font-size: 20px;
	width: calc(100% - 95px);
	margin-left: auto;
}

.single-section.template-3 .single-max {
	max-width: none;
}

.cat-item-i {
	background: url(../img/pre-ico.png) no-repeat center / contain;
	width: 15px;
	height: 15px;
	position: absolute;
	right: 8px;
	top: 230px;
}

.elementor-widget-container {
	overflow-x: auto;
}

/* Расположите контейнер с изображением (необходимо расположить стрелки влево и вправо) */
.galery {
	position: relative;
}

/* Скрыть изображения по умолчанию */
.galery .mySlides {
	display: none;
}

/* Добавление указателя при наведении указателя мыши на миниатюры изображений */
.galery .cursor {
	cursor: pointer;
}

/* Вперед и назад кнопки */
.galery .prev,
.galery .next {
	cursor: pointer;
	position: absolute;
	top: 45%;
	width: auto;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 20px;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}

/* Расположите кнопку "вперед" справа */
.galery .next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* При наведении курсора мыши добавьте черный цвет фона с небольшим прозрачным слоем */
.galery .prev:hover,
.galery .next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Номер текста (1/3 и т.д.) */
.galery .numbertext {
	color: #000000;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
	background-color: white;
	border-radius: 3px;
	margin-left: 7px;
	margin-top: 7px;
}

/* Контейнер для текста изображения */
.galery .caption-container {
	text-align: center;
	background-color: #222;
	padding: 15px;
	color: white;
}

.galery .row:after {
	content: "";
	display: table;
	clear: both;
}

/* Шесть колонн бок о бок */
.galery .column {
	float: left;
	width: 16.66%;
}

/* Добавьте эффект прозрачности для миниатюрных изображений */
.galery .demo {
	opacity: 0.6;
	padding: 0 2px;
}

.galery .active,
.galery .demo:hover {
	opacity: 1;
}

.galery img {
	border-radius: 10px;
}

.sticky {
	position: sticky;
	top: 150px;
}

.tab-fix .tab-product {
	background: #fff;
	position: fixed;
	z-index: 1;
	width: 1400px;
	top: 50px;
}

section.other-section.section,
section.spec-section.section,
section#show-section,
section.why-ep {
	position: relative;
	z-index: 2;
}

.wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
	width: 100%;
}

.nal-brand {
	width: 100%;
	display: flow-root;
	overflow: hidden;
}

.nal-brand img {
	float: right;
	width: 50px;
	margin-top: 7px;
}

p.nalichie {
	background: rgba(189, 255, 157, 1);
	padding: 5px 10px;
	width: fit-content;
	float: left;
	margin-bottom: 14px;
}

p.pod-zakaz {
	background-color: #ffffb6;
	padding: 10px;
	width: fit-content;
}

.single-side {
	margin-bottom: 50px;
}

.wadmin {
	background: #fbfbfb;
	border: 1px solid #c9c9c9;
	padding: 15px;
}

.ulinks {
	gap: 20px;
	grid-template-columns: 100%;
}

.ulinks-item {
	gap: 15px;
}

.ulinks-title {
	font-weight: 600;
	flex: 0 0 165px;
	padding-top: 5px;
}

.ulinks-list {
	gap: 10px;
	flex: 1;
}

.ulinks-list>li>a {
	display: block;
	background: #fff;
	border-radius: 5px;
	padding: 6px 10px;
	border: 1px solid rgba(155, 155, 155, 1);
}

.ulinks-list>li>a:hover {
	background: rgba(213, 213, 213, 1);
	text-decoration: none;
}

.xmodal-box--sales {
	width: 1100px;
	padding: 0 !important;
}

.msales {
	background: #fff;
	box-shadow: 0px 0px 20px 0px #00000045;
}

.msales-col-1 {
	flex: 0 0 65%;
}

.msales-col-2 {
	flex: 0 0 35%;
}

.msales-cont {
	padding: 40px 25px;
}

.msales-image {
	height: 100%;
}

.msales-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.msales-timer {
	justify-content: center;
}

.flipper {
	width: 100%;
}

.flip-countdown {
	zoom: 0.55;
}

.msales-timer {
	margin-bottom: 14px;
}

.cat-spre {
	margin-top: 30px !important;
}

.current-menu-item>a {
	font-weight: bold;
}

.fancybox-container {
	z-index: 99999999 !important;
}

.head .special-menu {
	background-color: #ffc342;
	padding: 10px;
}

.grid-scroll-992::-webkit-scrollbar {
	display: none;
}

.grid-scroll-992::-webkit-scrollbar {
	width: 5px;
}

.grid-scroll-992 {
	grid-auto-flow: column;
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	overflow-y: hidden;
	grid-column-gap: 10px;
	padding-bottom: 20px;
	grid-template-columns: unset !important;

	-ms-overflow-style: none;
	scrollbar-width: none;
}

.grid-scroll-992 .grid-scroll-item {
	display: inline-grid;
	min-width: 260px;
	scroll-snap-align: start;
}

.btn-scroll-box {
	display: none;
	align-items: center;
	column-gap: 15px;
	margin-top: 0;
}

.btn-scroll-box button {
	background: linear-gradient(0deg, rgb(46, 143, 0), rgb(43 135 0) 100%);
	border-radius: 4px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 9px;
	color: #fff;
}

.btn-scroll-box button svg {
	width: 100px;
	height: 100px;
}

.d-mob {
	display: none;
}

.exhibition-logos {
	background-color: #fff;
	max-width: fit-content;
	padding: 10px;
	border: 1px solid black;
	border-radius: 3px;
}

.my-captcha {
	position: relative;
	margin-top: 14px;
}

.my-captcha__items {
	display: flex;
	gap: 10px;
}

.my-captcha__item {
	position: relative;
}

.my-captcha__item>input {
	position: absolute;
	opacity: 0;
}

.my-captcha__item>label {
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.my-captcha__item--blue>label {
	background: blue;
}

.my-captcha__item--yellow>label {
	background: yellow;
}

.my-captcha__item--green>label {
	background: green;
}

.my-captcha__item--gray>label {
	background: gray;
}

.my-captcha__item>input:checked+label {
	transform: scale(0.89);
}

.my-captcha__item>input:checked+label:after {
	content: '✓';
	color: #fff;
	line-height: 30px;
	width: 30px;
	height: 30px;
	text-align: center;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
}

.my-captcha__item--yellow>input:checked+label:after {
	color: #000;
}

.my-captcha--correct {
	pointer-events: none;
}

.my-captcha--correct:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.my-captcha__title {
	margin-bottom: 4px;
}

.wpc-filter-price .wpc-filters-range-column {
	position: relative;
}

.wpc-filter-price .wpc-filters-range-column:after {
	content: '₽';
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
}

.wpc-filter-price .wpc-filters-range-column>input {
	padding-right: 20px !important;
	width: 100%;
	box-sizing: border-box;
	-webkit-appearance: none;
}

.sert-slider {
	padding: 0 25px;
	display: none;
}

.sert-slider.slick-initialized {
	display: block;
}

.sert-slider .slick-track {
	display: flex !important;
	align-items: center;
	margin: 0 auto;
}

.sert-slider__item {
	padding: 0 15px;
}

.sert-slider__item img {
	width: 100%;
	height: 100%;
	transition: 300ms;
}

.sert-slider__item img:hover {
	filter: brightness(80%);
}

.blog-slider {
	width: 100% !important;
	margin: 0;
}

.blog-slider img+br {
	display: none !important;
}

.blog-slider .prod-images-item-image {
	height: auto !important;
}

.head__row {
	align-items: center;
	padding: 20px 0;
	position: relative;
}

.head__col--2 {
	flex: 0 0 232px;
}

.head__col--1 {
	flex: 1;
}

.head__top {
	margin-bottom: 22px;
	justify-content: space-between;
	align-items: center;
}

.head__topleft {
	gap: 20px 40px;
	align-items: center;
}

.head__top-col--2 {
	flex-shrink: 0;
}

.head__top-col--1 {
	flex: 1;
}

.head-contacts-item--border {
	border-radius: 50px;
	border: 1px dashed #C1C1C1;
	padding: 5px 10px;
}

.head__main {
	align-items: center;
	justify-content: space-between;
	gap: 20px 15px;
}

.head__main-col--1 {
	flex: 0 0 540px;
}

.head__main-col--2 {
	flex-shrink: 0;
}

.head__main-col--3 {
	flex: 1;
}

.head__left {
	align-items: center;
}

.head-logo {
	flex-shrink: 0;
}

.head__info {
	flex: 1;
	padding-left: 30px;
}

.head__slogan {
	color: rgba(127, 127, 127, 1);
	min-height: 37px;
}

.head__geo {
	flex: 0 0 100px;
}

.head__actions {
	padding-left: 35px;
}

.head__action {
	flex: 1;
	position: relative;
}

.head__action-ico {
	height: 50px;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
	transition: 300ms;
}

.head__action-ico>svg {
	display: block;
	height: 35px;
	width: auto;
}

.head__action-text {
	text-align: center;
	display: block;
	margin-top: 5px;
}

.head__action:hover {
	text-decoration: none;
	color: #93000a;
}

.head__action:hover .head__action-ico {
	opacity: 1;
	transform: translateY(-2px);
}

.head__action-count {
	background: #fff;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	border-radius: 50px;
	color: #93000a;
	font-weight: bold;
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 70%;
	transform: translateX(-32%);
	box-shadow: 0px 0px 5px 0px #0000008a;
}

.head__action-count[data-count="0"] {
	display: none;
}

.head-contacts-item.email .head-contacts-item-ico,
.head-contacts-item.phone .head-contacts-item-ico {
	display: none;
}

.basket {
	background: #fff;
}

.basket__in {
	padding: 0px 0 70px 0;
}

.basket__title {
	text-align: center;
	color: rgba(34, 34, 40, 1);
	font-size: 26px;
	margin-bottom: 40px;
}

.basket__col--2 {
	flex: 0 0 33.7%;
	padding-left: 24px;
}

.basket__col--1 {
	flex: 1;
}

.basket__items {
	display: grid;
	grid-template-columns: 100%;
	gap: 30px;
}

.basket__item {
	border: 1px solid #D2D2D2;
	border-radius: 10px;
	padding: 15px 14px;
	position: relative;
	transition: 0.1s;
}

.basket__item:hover,
.basket__order:hover,
.basket__order .input-class:hover {
	border-color: #898989;
	transition: 0.1s;
}

.basket__item-col--1 {
	flex: 0 0 175px;
}

.basket__item-col--2 {
	flex: 1;
	padding: 0 15px 0 0;
}

.basket__item-col--3 {
	flex-shrink: 0;
}

.basket__item-col--4 {
	flex: 0 0 275px;
}

.basket__item-image {
	height: 175px;
	justify-content: center;
	align-items: center;
}

.basket__item-image a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.basket__item-image img {
	max-width: 95%;
	max-height: 95%;
}

.basket__item-info {
	padding-left: 30px;
}

.basket__item-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 9px;
}

.basket__item-props {
	display: grid;
	grid-template-columns: 100%;
	gap: 5px;
	font-size: 14px;
	font-weight: 300;
}

.basket__item-props>li>span {
	font-weight: 500;
}

.basket__item-labels {
	margin-bottom: 9px;
}

.xlabels {
	gap: 5px;
}

.xlabel {
	background: rgba(255, 183, 177, 1);
	padding: 3px 9px;
	font-size: 13px;
	border-radius: 6px;
}

.xlabel--akc {
	background: rgba(189, 255, 157, 1);
}

.xlabel--gift {
	background: rgba(255, 223, 154, 1);
}

.quantity {
	border: 1px solid rgba(232, 232, 232, 1);
	border-radius: 5px;
	background: rgba(242, 242, 242, 1);
	width: 90px;
	height: 37px;
	overflow: hidden;
}

.quantity__btn {
	flex: 0 0 30px;
	text-align: center;
	line-height: 37px;
	font-weight: bold;
	cursor: pointer;
}

.quantity__btn:hover,
.quantity__input input:hover {
	background: #fff;
	transition: 0.1s;
}

.quantity__input {
	flex: 1;
}

.quantity__input input {
	display: block;
	width: 100%;
	height: 100%;
	background: transparent;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.basket__item-col--4 {
	padding: 4px 0 0 16px;
}

.basket__item-price {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 7px;
}

.basket__item-oldprice {
	font-size: 12px;
	font-weight: 300;
	color: rgba(93, 93, 93, 1);
	text-decoration: line-through;
}

.basket__item-gift {
	margin-top: 10px;
	align-items: center;
}

.basket__item-gift>img {
	width: 15px;
}

.basket__item-gift>span {
	font-size: 14px;
	padding-left: 3px;
}

.basket__item-discount {
	/*background: url(../img/discount.png) no-repeat;
	width: 70px;
	height: 40px;
	text-align: center;
	font-size: 14px;
	line-height: 40px;
	font-weight: 800;*/
	position: absolute;
	top: 20px;
	right: -1px;
}

.basket__item-delete {
	align-items: center;
	position: absolute;
	bottom: 16px;
	right: 22px;
	cursor: pointer;
	gap: 6px;
}

.basket__item-delete-text {
	color: rgba(141, 141, 141, 1);
	font-size: 12px;
	font-weight: 300;
	transition: 300ms;
}

.basket__item-delete-ico {
	background: url(../img/remove.svg) no-repeat;
	width: 19px;
	height: 20px;
}

.basket__item-delete:hover .basket__item-delete-text {
	color: #000;
}

.basket__bottom {
	margin-top: 30px;
}

.basket__bottom-col--1 {
	flex: 1;
}

.basket__bottom-col--2 {
	flex-shrink: 0;
}

.basket__info a {
	color: #000D4D;
}

.basket__summary {
	font-size: 24px;
	font-weight: 500;
}

.basket__old-summary {
	margin-top: 2px;
	font-size: 14px;
	font-weight: 300;
	color: rgba(93, 93, 93, 1);
	text-align: right;
}

.basket__order {
	border: 1px solid rgba(210, 210, 210, 1);
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
	padding: 38px 30px;
}

.basket__order-title {
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 3px;
}

.basket__order-subtitle {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 20px;
	text-align: center;
}

.basket__form-items {
	display: grid;
	grid-template-columns: 100%;
	gap: 20px;
	margin-bottom: 20px;
}

.basket__form-item .input-class {
	border: 1px solid rgba(210, 210, 210, 1);
}

.basket__empty {
	padding: 110px 0;
	text-align: center;
}

.basket__empty-title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px;
}

.basket__empty-text {
	font-size: 12px;
	font-weight: 500;
}

.basket__empty-back {
	justify-content: center;
	margin-top: 35px;
}

.obtn {
	border-radius: 50px;
	background: rgba(39, 120, 0, 1);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	min-width: 243px;
}

.basket__form-license {
	font-size: 10px;
}

.features {
	background: #fff;
}

.features__in {
	padding-bottom: 70px;
}

.features__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 27px;
}

.fet__items {
	display: grid;
	grid-template-columns: 100%;
	gap: 8px;
}

.fet__item-box {
	border-radius: 10px;
	background: linear-gradient(135.00deg, rgba(255, 249, 205, 1), rgba(255, 230, 223, 1) 100%);
	overflow: hidden;
	padding: 19px 27px;
	position: relative;
}

.fet__item-title {
	color: rgba(26, 26, 26, 1);
	font-size: 18px;
	margin-bottom: 1px;
}

.fet__item-subtitle {
	font-size: 10px;
}

.fet__leasing {
	margin-top: 12px;
	margin-bottom: 15px;
}

.fet__leasing-progress {
	background: rgba(201, 201, 201, 1);
	height: 2px;
}

.fet__leasing-progress>div {
	background: rgba(60, 188, 0, 1);
	height: 100%;
}

.fet--autoheight,
.fet--autoheight .fet__items,
.fet--autoheight .fet__item,
.fet--autoheight .fet__item-box {
	height: 100%;
}

.fet--autoheight .fet__item-box {
	padding-bottom: 60px;
}

.fet__leasing-bottom {
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 15px;
	margin-top: 12px;
}

.fet__leasing-mark {
	font-size: 10px;
	line-height: 1.7;
}

.fet__leasing-mark>span {
	font-size: 16px;
}

.fet__leasing-mark i {
	font-style: normal;
}

.fet__leasing-mark--right {
	text-align: right;
}

.fet__action {
	position: absolute;
	bottom: 19px;
	left: 27px;
	right: 27px;
	justify-content: space-between;
	align-items: center;
}

.fet__action-btn {
	font-size: 12px;
	padding: 8px 20px;
	border: 1px solid rgba(74, 74, 74, 0.35);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.45);
	flex: 0 0 152px;
	text-align: center;
}

.fet__action-btn:hover {
	background: #D7000F;
	color: #fff;
	border-color: #D7000F;
	text-decoration: none;
}

.fet__action-text {
	flex: 1;
	color: rgba(157, 157, 157, 1);
	font-size: 8px;
	font-weight: 300;
	padding-left: 16px;
}

.fet__days {
	margin: 20px 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 4px;
}

.fet__day {
	cursor: pointer;
	font-size: 9px;
	text-align: center;
	color: rgba(26, 26, 26, 0.8);
	border: 1px solid rgba(240, 240, 240, 1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.5);
	transition: 300ms;
	padding: 8px 10px;
}

.fet__day:hover {
	border-color: #4848487a;
	background-color: white;
}

.fet__day>span {
	font-size: 14px;
	display: block;
}

.fet__day--selected {
	background: #fff;
	color: rgb(0 0 0);
	border-color: #555555;
}

.fet__item--mini {
	align-items: center;
	padding: 25px 27px;
}

.fet__item-ico {
	flex: 0 0 46px;
	justify-content: center;
	align-items: center;
}

.fet__item-ico>* {
	transition: 300ms;
}

.fet__item-cont {
	flex: 1;
	padding-right: 15px;
}

.fet__item-more {
	font-size: 14px;
	color: #878787;
	margin-top: 4px;
	transition: 300ms;
}

.fet__item-alink {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.fet__item--mini:hover .fet__item-ico>* {
	transform: rotate(360deg);
}

.fet__item--mini:hover .fet__item-more {
	color: #000;
}

.features+.other-section,
.wish+.other-section {
	background: #fff;
	border: none !important;
}

.features+.other-section .other-in,
.wish+.other-section .other-in {
	padding-top: 0;
}

.features+.other-section .other-more-btn,
.wish+.other-section .other-more-btn {
	background: rgba(215, 0, 15, 1);
	border-radius: 50px;
}

.is-basket .head__top-col--1 {
	display: none;
}

.is-basket .head__main-col--2,
.is-basket .head__main-col--3 {
	display: none;
}

.is-basket .head__col--2 {
	display: none;
}

.is-basket .head__info,
.is-basket .head__geo {
	display: none;
}

@media(min-width: 1171px) {
	.is-basket .head__top {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}

.b-add {
	position: absolute;
	top: 46%;
	right: 0;
	width: 435px;
	display: none;
	z-index: 500;
	transition: 300ms;
}

.b-add.active {
	display: block;
}

.b-add__box {
	border-radius: 18px;
	box-shadow: 0px 4px 29px 0px rgba(0, 0, 0, 0.25);
	background: rgba(255, 255, 255, 1);
	padding: 6px 36px 6px 6px;
	position: relative;
	align-items: center;
}

.b-add__image {
	flex: 0 0 120px;
	height: 120px;
	justify-content: center;
	align-items: center;
}

.b-add__image img {
	max-width: 95%;
	max-height: 95%;
}

.b-add__cont {
	padding-left: 12px;
	flex: 1;
	font-size: 12px;
}

.b-add__added {
	font-weight: bold;
	margin-bottom: 12px;
}

.b-add__close {
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 18px;
}

.menu-opened .head__row {
	position: static;
}

.cat-fet {
	display: grid;
	grid-template-columns: 100%;
	gap: 10px;
	margin-top: 34px;
}

.xalert {
	background: green;
	border-color: #badbcc;
	color: #fff;
	padding: 0.7rem 1rem;
	position: fixed;
	top: -100%;
	left: 50%;
	transform: translatex(-50%);
	transition: 400ms;
	z-index: 999999;
	font-weight: 500;
	border-radius: 10px;
	font-weight: bold;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

.xalert.active {
	transform: translatex(-50%);
	top: 50px;
}

.xalert-success {
	color: #fff;
}

.xalert-warning {
	color: #664d03;
	background: #fff3cd;
}

.xalert-danger {
	color: #842029;
	background: #e8757f;
}

.basket-block__added {
	display: none;
}

.basket-block__added-in {
	border: 1px solid rgba(39, 120, 0, 1);
	border-radius: 50px;
	align-items: center;
	overflow: hidden;
}

.basket-block__added-text {
	width: 142px;
	font-size: 18px;
	font-weight: bold;
	color: rgba(39, 120, 0, 1);
	text-align: center;
}

.basket-block__added-text a {
	color: rgba(39, 120, 0, 1);
}

.basket-block__added-quantity {
	width: 103px;
	height: 50px;
	background: none;
	border-left: 1px solid rgba(39, 120, 0, 1);
	border-radius: 0;
	color: rgba(39, 120, 0, 1);
	padding: 0 8px;
}

.basket-block__added-quantity .quantity__btn {
	font-size: 18px;
	font-weight: bold;
	line-height: 41px;
}

.basket-block__added-quantity .quantity__input input {
	font-size: 18px;
	font-weight: bold;
	color: rgba(39, 120, 0, 1);
}

.basket-block--inbasket .basket-block__add {
	display: none;
}

.basket-block--inbasket .basket-block__added {
	display: block;
}

.basket-block__add-btn {
	background: rgba(46, 143, 0, 1);
	border-radius: 50px;
	min-width: 125px;
	font-size: 12px;
	padding: 8px 23px;
}

.compare-block__button {
	cursor: pointer;
	align-items: center;
	gap: 6px;
}

.compare-block--active .compare-block__button svg path {
	fill: rgba(94, 112, 204, 1);
	fill-opacity: 1;
}

.compare-block__button>span {
	color: #758CFF;
}

.prod-fet {
	display: grid;
	grid-template-columns: 100%;
	gap: 10px;
}

.prod-fet .fet__action-btn {
	flex: 0 0 113px;
	padding: 8px 5px;
}

.prod-fet .fet__action-text {
	padding-left: 12px;
	font-size: 8px;
}

.prod-fet .fet__item-box {
	padding-left: 20px;
	padding-right: 20px;
}

.prod-fet .fet__action {
	left: 20px;
	right: 20px;
}

.fet__item-box.fet__item--full {
	box-shadow: 0px 0px 0px #00000029;
	transition: 0.1s;
	border: 1px solid #d1d1d1;
	border-radius: 16px;
}

.fet__item-box.fet__item--full:hover {
	box-shadow: 0px 0px 10px #00000029;
	transition: 0.1s;
}

.prod-in p.nalichie {
	margin-bottom: 29px;
}

.prod-line {
	background: #D2D2D2;
	height: 1px;
	margin: 23px 0;
}

.prod-gifter {
	align-items: center;
	gap: 10px;
}

.prod-gifter img {
	animation: 3s jittery infinite;
}

.prod-chars-bottom {
	align-items: center;
	justify-content: space-between;
	margin-top: 11px;
}

.prod-basket .basket-block__add-btn {
	border-radius: 50px;
	background: rgba(39, 120, 0, 1);
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	min-width: 245px;
}

.prod-basket .basket-block__add-btn:hover {
	background: #000;
}

.prod-action-item .prod-order.test-drive a {
	border-radius: 40px;
	width: 184px;
}

@media(min-width: 1321px) {
	.prod-center {
		margin-left: -45px;
	}
}

.cat-item-get .basket-block__added,
.wish__actions .basket-block__added {
	zoom: 0.67;
}

.cat-item-get .basket-block__added-text,
.wish__actions .basket-block__added-text {
	width: 120px;
}

.cat-item-get .basket-block__added-quantity,
.wish__actions .basket-block__added-quantity {
	padding: 0 3px;
	width: 90px;
}

.wish {
	background: #fff;
}

.wish__in {
	padding: 15px 0 87px 0;
}

.wish__item {
	height: 268px;
	align-items: center;
	justify-content: center;
}

.wish__item a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wish__item img {
	max-width: 94%;
	max-height: 94%;
}

.wish__orange td {
	border: 1px solid rgba(255, 195, 66, 1);
	background: rgba(255, 195, 66, 1) !important;
}

.wish table {
	border: none;
}

.wish table td {
	padding: 10px;
}

.compare__title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 22px;
}

.compare__categories>label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 19px;
}

.compare__diff {
	margin-top: 89px;
}

.bullet {
	position: relative;
}

.bullet>input {
	position: absolute;
	opacity: 0;
}

.bullet>label {
	position: relative;
	padding: 0 0 0 46px;
	font-size: 14px;
	cursor: pointer;
}

.bullet>label:before {
	content: '';
	border: 1px solid #C4C4C4;
	width: 40px;
	height: 20px;
	border-radius: 50px;
	position: absolute;
	top: 0;
	left: 0;
	transition: 300ms;
}

.bullet>label:after {
	content: '';
	background: #dcdcdc;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 3px;
	left: 4px;
	transition: 300ms;
	border-radius: 50px;
}

.bullet>input:checked+label:after {
	background: rgba(39, 120, 0, 1);
}

.bullet>input:checked+label:after {
	left: 22px;
}

.compare__categories select {
	border: 1px solid rgba(196, 196, 196, 1);
	border-radius: 0;
	height: 41px;
	font-size: 14px;
	font-weight: 500;
}

.compare {
	overflow: auto;
	padding-bottom: 12px;
}

.compare table,
.compare tbody {
	display: block;
}

.compare tr {
	background: transparent !important;
	display: flex;
}

.compare td:first-child {
	flex: 0 0 335px;
}

.compare td {
	flex: 0 0 265px;
}

.compare tr:nth-child(2n) td {
	background: #f7f7f7;
}

.wish__title {
	height: 100%;
	align-items: center;
}

.wish__bottom td {
	border: none;
}

.wish__actions {
	align-items: center;
	justify-content: space-between;
}

.wish__delete {
	align-items: center;
	cursor: pointer;
	gap: 6px;
}

.wish__delete-text {
	color: rgba(141, 141, 141, 1);
	font-size: 12px;
	font-weight: 300;
	transition: 300ms;
}

.wish__delete-ico {
	background: url(../img/remove.svg) no-repeat;
	width: 19px;
	height: 20px;
}

.wish__delete-delete:hover .wish__delete-text {
	color: #000;
}

.mdiv:not(:last-child) {
	display: none;
}

.mprod-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #C9C9C9;
	border-left: 1px solid #C9C9C9;
}

.mtabs {
	justify-content: center;
	margin-bottom: 29px;
	gap: 15px;
}

.mtabs__item {
	background: #fff;
	border: 1px solid rgba(113, 113, 113, 1);
	border-radius: 5px;
	font-size: 16px;
	padding: 11px 14px;
	transition: 300ms;
	cursor: pointer;
}

.mtabs__item:hover {
	background: #f2f2f2;
}

.mtabs__item--active {
	background: rgba(73, 73, 73, 1) !important;
	border: 1px solid rgba(26, 26, 26, 1);
	color: #fff;
}

.xcat-item .news-item-box {
	height: 100%;
}

.xcat-item .news-item-more {
	color: #fff;
	border-radius: 50px;
	font-weight: bold;
}

.xmodal-service-item {
	display: none;
}