@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
	--green-color-1: #00B500;
	--green-color-2: #DEFFDE;
	--gray-color-1: #EDEDED;
	--gray-color-2: #515151;
	--brown-color-1: #60251E;
	--black-color-1: #353535;
	--yellow-color-1: #EAB736;

	--mobile-fixed-menu-height: 75px;
	--mobile-fixed-header-height: 90px;
}

::-moz-selection{background:var(--green-color-1);color:#FFF}
::selection{background:var(--green-color-1);color:#FFF}

html {
	color: #4c4c4c;
	scrollbar-width: thin;
	scroll-behavior: smooth;
	background: transparent;
	scrollbar-color: #AAA #FFF;
	font: normal 400 16px/1.5 "Inter", sans-serif;
}

::-webkit-scrollbar {
	background: #FFF;
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #FFF;
	border-radius: 2px;
	box-shadow: inset 0 0 1px 0 rgba(0,0,0,.3);
}
::-webkit-scrollbar-thumb {
	background-color: #CCC;
	border-radius: 2px;
	box-shadow: inset 0 0 1px 1px #888;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #AAA;
}

img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
    font-weight: 500;
    margin: 10px 0;
}
h2, h3 {
    color: var(--brown-color-1);
    text-transform: uppercase;
}
h2{font-size:1.25rem}
h3{font-size:1.125rem;font-weight: 400}
h4{font-size:1rem}
h5{font-size:.875rem}
h6{font-size:.75rem;text-transform: uppercase}

.mt-5{margin-top:5px}
.mt-10{margin-top:10px}
.mt-15{margin-top:15px}
.mt-20{margin-top:20px}
.mt-30{margin-top:30px}
.mt-35{margin-top:35px}
.mt-40{margin-top:40px}
.mt-50{margin-top:50px}
.mt-60{margin-top:60px}
.mt-70{margin-top:70px}
.mt-90{margin-top:90px}
.mt-150{margin-top:150px}

.mb-20{margin-bottom:20px}
.mb-30{margin-bottom:30px}

.ml-5{margin-left:5px}
.ml-10{margin-left:10px}
.ml-15{margin-left:15px}
.ml-20{margin-left:20px}
.ml-30{margin-left:30px}
.ml-40{margin-left:40px}
.ml-50{margin-left:50px}
.ml-100{margin-left:100px}

.row-gap-5{row-gap: 5px}
.row-gap-10{row-gap: 10px}
.row-gap-15{row-gap: 15px}
.row-gap-35{row-gap: 35px}

.column-gap-5{column-gap: 5px}
.column-gap-10{column-gap: 10px}
.column-gap-15{column-gap: 15px}
.column-gap-20{column-gap: 20px}

.line-height_17 {
	line-height: 1.0625rem;
}
.line-height_20 {
	line-height: 1.25rem;
}

.font-size_14 {
	font-size: .875rem;
}
.font-size_18 {
	font-size: 1.125rem;
}

.font-weight_500 {
	font-weight: 500;
}
.font-weight_600 {
	font-weight: 600;
}

.text-green {
	color: var(--green-color-1);
}
.text-gray_2 {
	color: var(--gray-color-2);
}

.h-100 {
	height: 100%
}
.w-100 {
	width: 100%
}
.w-50 {
	width: 50%
}

.lh_21 {
	line-height: 21px;
}
.lh_22 {
	line-height: 22px;
}

.text-black {
	color: var(--black-color-1);
}
.text-brown {
	color: var(--brown-color-1);
}
.text-center {
	text-align: center;
}

.min-h_35 {
	min-height: 35px;
}

.link {
	color: var(--green-color-1);
}

.decoration_none {
	text-decoration: none;
}

.container {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0 10px;
	max-width: 1140px;
}

.button {
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: .875rem;
    line-height: 1;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
	user-select: none;
	transition: .2s;
	color: #FFF;
	border: 1px solid transparent;
	background: var(--green-color-1);
}
.button:hover {
	background: var(--yellow-color-1);
	box-shadow: 0 0 10px 2px rgba(240, 194, 74, .40);
}
.button:focus {
	background: #FFF;
	box-shadow: unset;
	color: var(--green-color-1);
	border: 1px solid var(--green-color-1);
}

.button.button--dark {
    background-color: var(--black-color-1);
    color: #FFF;
}
.button.button--white {
    background-color: #FFF;
    color: #242424;
}
.button--gray {
    background-color: #ebebeb;
    box-shadow: 0 0 0 1px #cacaca, inset 0 8px 15px -1px #FFF;
    color: #242424;
    text-shadow: 0 1px 2px #FFF;
    text-transform: none;
}
.button.button_fw {
    display: block;
    width: 100%;
}
.button_white_translucent {
	color: var(--black-color-1);
	border: 1px solid var(--gray-color-2);
	background-color: rgba(255, 255, 255, .3);
}
.button_white_translucent:hover {
	color: #FFF;
	border: 1px solid transparent;
}
.button_white_translucent:focus {
	color: var(--green-color-1);
	border: 1px solid var(--green-color-1);
}

.modal-dialog {
    border-radius: 10px;
    box-sizing: border-box;
    display: none;
    max-width: 100%;
    position: relative;
	padding: 20px;
	background: #FFF;
}
.modal-dialog_form {
	padding: 40px;
}
.modal-dialog>.md__close {
	top: 10px;
	right: 10px;
	width: 13px;
	height: 13px;
	cursor: pointer;
	position: absolute;
}
.modal-dialog>.md__close::before,
.modal-dialog>.md__close::after {
	top: 50%;
	left: 50%;
	content: '';
	height: 2px;
	width: 13px;
	position: absolute;
	border-radius: 2px;
	background: var(--gray-color-2);
}
.modal-dialog>.md__close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-dialog>.md__close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal-dialog>.md__title {
	display: block;
	font-size: 25px;
	font-weight: 500;
	width: 315px;
	margin: 0 auto;
	text-align: center;
	line-height: 35px;
	color: var(--brown-color-1);
}
.modal-dialog>.md__subtitle {
	display: block;
	margin-top: 15px;
	text-align: center;
	line-height: 1.25rem;
	color: var(--black-color-1);
}
.modal-dialog>.md__content {
	margin-top: 10px;
}
.modal-dialog_form>.md__content {
	margin-top: 25px;
}
.modal-dialog .button {
	padding: 20px;
	font-size: 1rem;
	margin-top: 30px;
	font-weight: 400;
	border-radius: 5px;
	line-height: 1.25rem;
}

.blockOverlay {
	background-color: rgba(169, 169, 169, .5) !important;
}

.simple-form .sf__note {
    margin-bottom: .75rem
}
.simple-form .sf__field {
    position: relative
}
.modal-dialog .sf__field:not(:first-child) {
	margin-top: 15px;
}
.simple-form .sf__checkbox {
	cursor: pointer;
}
.sf__checkbox-span {
	display: block;
	position: relative;
	font-size: .875rem;
	padding-left: 28px;
	line-height: 1.4375rem;
	color: var(--gray-color-2);
}
.sf__checkbox-span::after {
	transition: .4s;
}
.sf__checkbox-span::before {
	transition: .4s;
	background: #FFF;
	border-radius: 3px;
	box-sizing: border-box;
	content: '';
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 1px solid var(--gray-color-2);
	width: 20px;
}
.sf__checkbox-choice {
	display: none;
}
.sf__checkbox-choice:checked + .sf__checkbox-span::after {
	background: transparent;
	border: 0 solid #FFF;
	border-bottom-width: 2px;
	border-left-width: 2px;
	content: '';
	display: block;
	height: 5px;
	left: 7px;
	position: absolute;
	top: calc(50% - 2px);
	transform: rotate(-45deg) translateY(-50%);
	width: 9px;
}
.sf__checkbox-choice:checked + .sf__checkbox-span::before {
	background: var(--green-color-1 );
	border: none;
}
.simple-form .sf__input,
.simple-form .sf__textarea {
    background-color: transparent;
    border: 1px solid rgba(81, 81, 81, .5);
    box-sizing: border-box;
    border-radius: 5px;
    display: block;
	line-height: 1.25rem;
    outline: none;
    padding: 20px;
    width: 100%;
}
.simple-form input::placeholder,
.simple-form textarea::placeholder {
	color: var(--gray-color-2);
	line-height: 1.25rem;
	opacity: .5;
}
.sf__input-name {
	line-height: 1.25rem;
	color: var(--black-color-1);
}
.simple-form .sf__textarea {
    height: 6.25rem;
	max-height: 15rem;
	min-height: 3.25rem;
	resize: vertical;
}
.simple-form .required {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAJUlEQVR42mM4q2zUCsSfQTQTAwNDCRDzAHEeiNMDxF8ZGBgmAQDLKghpAOazgQAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-position: right 6px top 6px
}
.simple-form .sf__footnote {
	opacity: .5;
	margin-top: 15px;
	font-size: .75rem;
	line-height: .937rem;
	color: var(--gray-color-2);
}
.simple-form .input-right{box-shadow:inset 0 0 0 1px #3F3,inset 0 0 4px 2px rgba(51,255,51,.6)!important}
.simple-form .input-wrong{box-shadow:inset 0 0 0 1px #F33,inset 0 0 4px 2px rgba(255,51,51,.6)!important}

.measurement-form-static {
    background-color: var(--green-color-1);
}
.measurement-form-static__container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 100%;
    padding: 20px 10px;
    width: 600px;
}
.measurement-form-static .title {
    color: #FFF;
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
    margin: 0 15px 20px;
    text-align: center;
}

.user-form {
	margin: 0 auto;
	max-width: 100%;
	width: 320px;
}
.user-form__row {
	margin: 15px 0;
}
.user-form__label {
	display: block;
}
.user-form__input {
	border: 0;
	border-radius: 4px;
	box-shadow: inset 0 0 0 1px #444;
	box-sizing: border-box;
	display: block;
	font-size: .875rem;
	height: 1.75rem;
	line-height: 1.75rem;
	outline: none;
	padding: 0 8px;
	width: 100%;
}
.user-form .captcha {
	cursor: pointer;
	display: block;
	margin-bottom: 5px;
}
.user-form__input-captcha {
	width: 150px !important;
}
.user-form__link:not(:last-child) {
	margin-right: 10px;
}

.pagination {
    display: block;
    margin: 20px 0;
}
.pagination > div {
    display: inline-block;
    margin: 0 2px;
}
.pagination > div > a {
    border-radius: 8px;
    box-sizing: border-box;
    color: var(--green-color-1);
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    min-width: 30px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
}
.pagination > div:not(.active) > a:hover {
    background-color: #e0e0e0;
}
.pagination > div.active > a {
    background-color: var(--gray-color-1);
    color: #FFF;
}

.page-content {
	min-width: 360px;
	min-height: 100%;
	width: 100%;
}

.header,
.footer {
	flex: 0 0 auto;
	width: 100%;
}
.footer {
	background-color: var(--gray-color-2);
}
.main {
	flex: 1 0 auto;
	width: 100%;
}

.text-content {
    font-size: .875rem;
}
.text-content p,
.text-content pre {
    margin: 1em 0;
}
.text-content a,
.link {
    color: var(--green-color-1);
}
.text-content img {
    height: auto !important;
}
.text-content table {
    border-collapse: collapse;
    max-width: 100%;
}
.text-content table td {
    font-size: .75rem;
    padding: 5px 10px;
    vertical-align: top;
}
.text-content blockquote {
    border-left: 2px solid var(--gray-color-1);
    color: var(--gray-color-2);
    font-style: italic;
    margin: 20px 0 20px 20px;
    padding: 10px 0 10px 20px;
}
.text-content hr {
    border: 0;
    border-top: 2px solid var(--gray-color-1);
    margin: 20px 0;
}
.text-content ul,
.text-content ol {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.text-content ul li,
.text-content ol li {
    margin: 10px 0;
    padding: 0 0 0 25px;
    position: relative;
}
.text-content ul li::before {
    background-color: var(--gray-color-2);
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 5px;
    position: absolute;
    top: 5px;
    width: 10px;
}
.text-content ol {
    counter-reset: textContentOlCounter;
}
.text-content ol li::before {
    color: var(--gray-color-2);
    counter-increment: textContentOlCounter;
    content: counter(textContentOlCounter) '.';
    font-size: 1rem;
    font-weight: 700;
    left: 5px;
    top: 0;
    position: absolute;
}

.contacts-map {
    height: 535px;
    width: 100%;
    overflow: hidden;
	max-height: 75vh;
	margin-top: 20px;
}
.contacts-map > p {
	margin: 0;
	height: 100%;
}
.contacts-map iframe {
	border:0 !important;
	display: block;
	max-width: 100%;
}

.svg-ico {
	flex: 0 0 auto;
	transition: .4s;
	width: 20px;
	height: 20px;
}

.svg-ico_12 {
	width: 12px;
	height: 12px;
}
.svg-ico_14 {
	width: 14px;
	height: 14px;
}
.svg-ico_21 {
	width: 21px;
	height: 21px;
}
.svg-ico_22 {
	width: 22px;
	height: 22px;
}
.svg-ico_23 {
	width: 23px;
	height: 23px;
}
.svg-ico_24 {
	width: 24px;
	height: 24px;
}
.svg-ico_25 {
	width: 25px;
	height: 25px;
}
.svg-ico_26 {
	width: 26px;
	height: 26px;
}
.svg-ico_27 {
	width: 27px;
	height: 27px;
}
.svg-ico_28 {
	width: 28px;
	height: 28px;
}
.svg-ico_30 {
	width: 30px;
	height: 30px;
}

.svg-ico_white {
	fill: #FFF;
}
.svg-ico_green {
	fill: var(--green-color-1);
}
.svg-ico_gray-2 {
	fill: var(--gray-color-2);
}
.svg-ico_black {
	fill: var(--black-color-1);
}

.logo {
	width: 190px;
	height: 62px;
}
.footer .text-sub-logo {
	color: #FFF;
}

.text-ellipses {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.text-ellipses_2 {
	-webkit-line-clamp: 2;
}
.text-ellipses_3 {
	-webkit-line-clamp: 3;
}
.text-ellipses_4 {
	-webkit-line-clamp: 4;
}
.text-ellipses_5 {
	-webkit-line-clamp: 5;
}

.header__top {
	background: #FFF;
}

.bg-ico {
	width: 25px;
	height: 25px;
	position: relative;
	border-radius: 50%;
	background: var(--gray-color-1);
}
.bg-ico .svg-ico {
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

.bg-ico_35 {
	width: 35px;
	height: 35px;
}
.bg-ico_45 {
	width: 45px;
	height: 45px;
}

.bg-ico_green {
	background: var(--green-color-1);
}
.bg-ico_yellow {
	background: var(--yellow-color-1);
}

.header__icon {
	background: var(--green-color-1)
	url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAkCAMAAABPJrEfAAABa1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+JdpW7AAAAeHRSTlMABAMVAkatQAEms8AUWkj5+JAPX+RoC0PJB/BMtenu32Mk5XSiI0ny3POVMOwzdlcQczK9XEdSPP4NwbRhiqY2bgzaG/t9RCCqVW+h2x/Oj0UtfLzXiBqZN0vWCv2dKbiEv8pn1VH1cJ/QsszSHU4impEF4RPTODpVpx+VAAABXElEQVR42pXRA69jYRRG4VUc49q2jY5t27aN9+dPske3ble0k+fgA6oesoY35tcSxyt46ebyp2jmvw0vj1GUHxyfk9nQSazV9a3t9EeMdbDVbA2Az9/dRUlfo/EJAObNegCYCfk5p9mAkdcA7DM7DcCQC9+WvsDbJwAcMjsFOeeVRsF6pOuXcuT3mGm2U9KbPP70y2mfu72SxkdkZt3vIzMoKczQ3lu8d9eHDps6oP1ckQXARZvagK0iA0hs2gQyO+0YQH5S0mQWYFfpe7CwsgDAbu20bnYWFNnZHu9/J/YWWUlNmfvhY7CyUcleDGA9vVduz4Gp98BEmT2EsXfS4xz5a6WWkH0mSYNwpdQesCRrldulNkVB1g2cUnPo7pekO9BVajdhu0XqvwVXS631MpzvGo0hVanpQh9W3FluagPAD1XBNABwRhVt8Sist1Q2RdnDR1TFtP9Aw3f7C9WpOFgFdJUpAAAAAElFTkSuQmCC)
	no-repeat 0 0;
	height: 18px;
	margin-right: 5px;
	width: 27px;
}
.header__icon--location {
	background-position: 0 -18px;
}

.header__menu-button {
	width: 25px;
	height: 25px;
	position: relative;
	border-radius: 50%;
	background-color: var(--gray-color-1);
}
.header__menu-button::before,
.header__menu-button > i,
.header__menu-button::after {
	width: 13px;
	background-color: var(--gray-color-2);
	border-radius: 1px;
	content: '';
	height: 2px;
	left: 50%;
	position: absolute;
	transition: .3s;
	transform: translate(-50%, -50%);
}
.header__menu-button::after {
	top: calc(50% + 5px);
}
.header__menu-button::before {
	top: calc(50% - 5px);
}
.header__menu-button > i {
	top: 50%;
}
.header.active .header__menu-button::after {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.header.active .header__menu-button::before {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.header.active .header__menu-button > i {
	opacity: 0;
}

.header-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.header-nav li.active > a {
	font-weight: 500;
	color: var(--green-color-1);
}
.header-nav li > a:hover {
	color: var(--green-color-1);
}
.header-nav li a {
	color: var(--gray-color-2);
	display: block;
	-webkit-user-select: none;
	user-select: none;
	transition: .2s;
}
.header-nav > li > a {
	padding: 15px 10px;
	font-size: .9375rem;
	line-height: 1.125rem;
	text-decoration: none;
}
.header-nav__submenu {
	background-color: var(--gray-color-2);
	margin: 0;
	min-width: 200px;
	list-style: none;
	opacity: 0;
	padding: 0;
	position: absolute;
	transform-origin: 0 0;
	transform: rotateX(-90deg);
	transition: .3s linear;
	visibility: hidden;
	z-index: 5;
}
.header-nav__submenu li a {
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	font-size: .75rem;
	padding: 10px 20px;
}
.header-nav__submenu .header-nav__submenu {
	transform: rotateY(-90deg);
	left: 100%;
	top: 0;
}
.header-nav li:hover > .header-nav__submenu {
	opacity: 1;
	transform: rotate(0);
	visibility: visible;
}

.header-search__input {
	height: 42px;
	width: 570px;
	outline: none;
	font-style: italic;
	border-radius: 15px;
	font-size: .9375rem;
	box-sizing: border-box;
	padding: 12px 40px 13px 15px;
	border: 1px solid rgba(53, 53, 53, .5);
}
.header-search__input::placeholder {
	color: rgba(81, 81, 81, .9);
}
.header-search__btn {
	top: 0;
	right: 0;
	bottom: 0;
	border: none;
	padding: 0 15px;
	cursor: pointer;
	transition: .4s;
	background: none;
	position: absolute;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}
.header-search__btn:focus,
.header-search__btn:hover {
	background: var(--green-color-1);
}
.header-search__btn:focus .svg-ico,
.header-search__btn:hover .svg-ico {
	fill: #FFF;
}
.header-search .svg-ico {
	width: 12px;
	height: 12px;
	fill: rgba(81, 81, 81, .5);
}

.header__bottom .catalog__category {
	font-size: .875rem;
	border: 1px solid rgba(81, 81, 81, .3);
	width: 25%;
}
.header__bottom .catalog__category:hover {
	border-color: var(--green-color-1);
}

.main__aside {
	margin-right: 20px;
	width: 220px;
}

.callback-form-on-banner {
	left: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 450px;
}
.callback-form-on-banner__container {
	background-color: var(--gray-color-2);
	border-radius: 10px;
	padding: 20px;
}
.callback-form-on-banner__title {
	color: #FFF;
	display: block;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
	text-transform: uppercase;
}
.callback-form-on-banner .sf__footnote a {
	color: #FFF;
}

.breadcrumb {
	margin: 30px 0;
	font-size: .8125rem;
	line-height: .9375rem;
}
.breadcrumb .svg-ico {
	width: 8px;
	height: 6px;
	margin: 0 5px;
	transform: rotate(-90deg);
	fill: var(--gray-color-2);
}
.breadcrumb a {
	text-decoration: none;
	color: var(--gray-color-2);
}
.breadcrumb a::after {
	display: inline-block;
	margin: 0 5px;
	vertical-align: middle;
}
.breadcrumb a:hover {
	text-decoration: underline;
}

.footer-navigator {
	width: 100%;
}
.footer-navigator__title {
	color: #FFF;
	font-weight: 700;
	user-select: none;
	font-size: 1.125rem;
	text-decoration: none;
	line-height: 1.3125rem;
}
.footer-navigator__title .svg-ico {
	width: 10px;
	height: 5px;
	fill: #FFF;
}
.footer-navigator__link,
.footer-navigator__link a {
	transition: .3s;
	text-decoration: none;
	color: var(--gray-color-1);
}
.footer-navigator__link:hover,
.footer-navigator__link:hover a {
	color: var(--green-color-1);
}
.footer-navigator__link .svg-ico {
	width: 15px;
	height: 15px;
	fill: var(--green-color-1);
}

.footer__informer {
	color: #FFF;
	font-size: .75rem;
	margin-top: 25px;
	text-align:center;
}
.footer__informer a {
	color: inherit;
	text-decoration: underline;
}

.shops-contacts {
	padding: 50px 0;
	background-color: var(--gray-color-1);
}
.shops-contacts__title {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.5rem;
	color: var(--brown-color-1);
}
.shops-contacts__subtitle {
	font-weight: 500;
	color: var(--brown-color-1);
}
.shops-contacts__value {
	color: var(--black-color-1);
}
.shops-contacts__shop .svg-ico {
	fill: var(--green-color-1);
}
.shops-contacts__shop {
	font-size: .875rem;
	line-height: 1.0625rem;
}
.shops-contacts__ico {
	width: 25px;
	height: 25px;
}

.footer__top {
	color: #FFF;
	padding-top: 50px;
}
.footer__icon--location {
	background-position: 0 -18px;
}
.footer__top_content {
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 40px;
}

.footer__bottom {
	padding: 20px 0;
}
.footer__bottom-text {
	font-weight: 500;
	font-size: .875rem;
	line-height: 1.0625rem;
	color: var(--gray-color-1);
}
.footer__link > img {
	margin-left: 5px;
	max-height: 35px;
	max-width: 90px;
}
.footer__logo {
	width: 164px;
	height: 25px;
	display: block;
}
.footer__shops-contacts {
	color: #FFF;
	width: 100%;
	border: unset;
	padding: 10px;
	cursor: pointer;
	text-align: center;
	font-size: .9375rem;
	border-radius: 10px;
	line-height: 1.125rem;
	text-decoration: none;
	box-sizing: border-box;
	background: var(--black-color-1);
}

.contacts-content table td {
	padding: 10px 20px 10px 0;
	vertical-align: top;
	line-height: 1.3;
	border: 0 !important;
}
.contact__item {
	cursor: pointer;
	padding: 3px;
	text-decoration: none;
}
.contact__item .svg-ico {
	display: block;
	fill: var(--green-color-1);
}
.contact__item a {
	color: var(--black-color-1);
	text-decoration: none;
	transition: .4s;
}
.contact__item:hover .contact__phone,
.contact__item:hover a {
	color: var(--yellow-color-1);
}
.contact__item:hover .svg-ico {
	fill: var(--yellow-color-1);
}
.contact__phone {
	color: var(--black-color-1);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.3125rem;
	text-decoration: none;
	transition: .4s;
}

.order-measurement {
	margin-top: 2px;
	transition: .3s;
	font-weight: 500;
	font-size: .8125rem;
	line-height: .9375rem;
	color: var(--gray-color-2);
}
.order-measurement:hover {
	color: var(--green-color-1);
}
.mobile-order-measurement {
	font-weight: 400;
	padding: 12px 0;
	border-radius: 10px;
	font-size: .9375rem;
	line-height: 1.125rem;
}
.text-sub-logo {
	margin-top: 7px;
	line-height: 19px;
	white-space: nowrap;
	color: var(--black-color-1);
}

.widget {
	line-height: 18px;
	font-size: .9375rem;
	text-decoration: none;
}
.widget .svg-ico {
	height: 23px;
	fill: var(--green-color-1);
}
.widget__text {
	transition: .3s;
	margin-left: 10px;
	color: var(--black-color-1);
}
.widget:hover .svg-ico {
	fill: var(--yellow-color-1);
}
.header__widgets {
	margin-left: 65px;
}

.counter-widget {
	position: relative;
}
.counter-widget__bg {
	top: -20px;
	left: 10px;
	padding: 11px;
	transition: .4s;
	max-width: 20px;
	max-height: 20px;
	position: absolute;
	border-radius: 50%;
	box-sizing: border-box;
	background: var(--gray-color-1);
}
.counter-widget__value {
	line-height: 0;
	font-size: .8rem;
	color: var(--black-color-1);
}
.counter-widget:not(.active) .counter-widget__bg {
	opacity: 0;
	user-select: none;
}

.front-section__subtitle {
	width: 470px;
	text-align: center;
	line-height: 1.3125rem;
	color: var(--black-color-1);
}
.front-section__content {
	margin-top: 35px;
}
.front-section_stock .front-section__content {
	margin-top: 80px;
}
.front-section_reviews .front-section__content {
	margin-top: 40px;
}

.position_show-all {
	position: relative;
}
.show-all {
	transition: .3s;
	line-height: 18px;
	font-size: .9375rem;
	text-decoration: none;
	color: var(--gray-color-2);
}
.show-all .svg-ico {
	width: 14px;
	height: 7px;
	margin: 3px 0 0 8px;
	fill: var(--gray-color-2);
}
.show-all:hover {
	color: var(--green-color-1);
}
.show-all:hover .svg-ico {
	fill: var(--green-color-1);
}

.review-services {
	margin-top: 15px;
}
.review-services__item {
	transition: .3s;
	background: unset;
	line-height: 18px;
	padding: 11px 30px;
	border-radius: 10px;
	font-size: .9375rem;
	text-decoration: none;
	color: var(--black-color-1);
	border: 1px solid var(--gray-color-2);
}
.review-services__item:hover,
.review-services__item.active {
	color: #FFF;
	border: 1px solid var(--green-color-1);
	background: var(--green-color-1);
}
.review-services__item:not(.active) {
	cursor: pointer;
}

.front-section__btn {
	margin-top: 30px;
	padding: 12px 30px;
	border-radius: 15px;
	font-size: .9375rem;
	line-height: 1.125rem;
	text-decoration: none;
}

.review {
	padding: 20px;
	position: relative;
	border-radius: 10px;
	box-sizing: border-box;
	border: 1px solid var(--gray-color-1);
}
.review__text {
	height: 88px;
	margin-top: 15px;
	user-select: text;
	line-height: 1.3125rem;
	color: var(--gray-color-2);
}
.review.active {
	height: fit-content;
}
.front-section_reviews .slick-active .review.active .review__text,
.project-page_reviews .review.active .review__text {
	height: auto;
	display: block;
}
.project-page_reviews .review:not(.active) {
	max-height: 233px;
}
.review__bottom {
	height: 18px;
}
.review__head-left {
	width: 65px;
	height: 65px;
}
.review__head-right {
	overflow: hidden;
	margin-left: 20px;
}
.review__name {
	overflow: hidden;
	user-select: text;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.review__read {
	opacity: .5;
	font-size: .875rem;
	line-height: 1.125rem;
	text-decoration: none;
	color: var(--gray-color-2);
}
.review__read::before {
	content: 'Читать целиком';
}
.review.active .review__read::before {
	content: 'Свернуть';
}
.review__rating-num {
	user-select: text;
}
.review__rating .svg-ico {
	width: 15px;
	height: 15px;
	fill: var(--yellow-color-1);
}
.review__rating[data-rating="1"] .svg-ico:nth-child(1) ~ .svg-ico,
.review__rating[data-rating="2"] .svg-ico:nth-child(2) ~ .svg-ico,
.review__rating[data-rating="3"] .svg-ico:nth-child(3) ~ .svg-ico,
.review__rating[data-rating="4"] .svg-ico:nth-child(4) ~ .svg-ico,
.review__rating[data-rating="5"] .svg-ico:nth-child(5) ~ .svg-ico {
	fill: var(--gray-color-2);
}
.review__black-text {
	line-height: 1.3125rem;
	color: var(--black-color-1);
}
.review__avatar {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: var(--green-color-1);
}
.slider-wrapper .control-btn_add {
	margin: 0 0 5px 10px;
}
.project-page .control-btn_add {
	margin-bottom: 5px;
}
.review-wrapper {
	padding: 0 10px;
	box-sizing: border-box;
}

.project-page_reviews .review {
	width: 32.1%
}
.project-page_reviews .project-page__reviews-gap {
	row-gap: 20px;
	column-gap: 1.8%;
}
.project-page__reviews-mt {
	margin-top: 40px;
}

.slider-wrapper__arrows {
	top: 50%;
	width: 100%;
	position: absolute;
}
.front-section_reviews .slider-wrapper__arrows {
	top: 117px;
}

.slider-wrapper__arrow {
	width: 40px;
	height: 40px;
	border: unset;
	cursor: pointer;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	background: var(--green-color-1);
	transition: .3s;
}
.slider-wrapper__arrow[aria-disabled=true] {
	background: var(--gray-color-1);
}
.slider-wrapper__arrow[aria-disabled=true] .svg-ico {
	fill: var(--gray-color-2);
}
.slider-wrapper__arrow .svg-ico {
	fill: #FFF;
	width: 12px;
}
.slider-wrapper__arrow_prev {
	left: -44px;
}
.slider-wrapper__arrow_next {
	right: -44px;
}
.slider-wrapper__arrow_prev .svg-ico {
	transform: rotate(90deg);
}
.slider-wrapper__arrow_next .svg-ico {
	transform: rotate(-90deg);
}

.front-section_reviews .control-btns ~ .slider-wrapper__arrows .slider-wrapper__arrow {
	transform: unset;
}
.js__review-content:not(.active) {
	height: 0;
	opacity: 0;
	pointer-events: none;
}

.shops {
	cursor: pointer;
	position: relative;
}
.shops__btn {
	padding: 0;
	border: none;
	cursor: pointer;
	background: none;
}
.shops__count {
	width: 20px;
	height: 18px;
	font-weight: 700;
	border-radius: 2px;
	text-align: center;
	font-size: .9375rem;
	line-height: 1.125rem;
	color: var(--green-color-1);
	background: var(--gray-color-1);
}
.shops__preview {
	font-size: .9375rem;
	line-height: 1.125rem;
}
.shops .svg-ico {
	width: 10px;
	height: 5px;
}

.shops:not(.active) .shops__items {
	height: 0;
	opacity: 0;
	pointer-events: none;
}
.shops.active .shops__btn .svg-ico {
	transform: rotate(-180deg);
}

.shops__items {
	width: 400px;
	transition: .3s;
	background: #FFF;
}
.shops__item {
	cursor: default;
	transition: .3s;
	background: #FFF;
	padding: 15px 20px;
}
.shops__item:not(:last-child) {
	border-bottom: 1px solid var(--gray-color-1);
}
.shops__text {
	cursor: text;
}
.shops__text_top {
	column-gap: 10px;
	font-size: .9375rem;
	line-height: 1.125rem;
}
.shops__address {
	color: var(--green-color-1);
}
.shops__schedule {
	margin-top: 5px;
	font-size: .75rem;
	line-height: .875rem;
}

.front-slider {
	overflow: hidden;
}

.front-section_articles .article {
	padding: 0 10px;
	position: relative;
	box-sizing: border-box;
}
.front-section_articles .article__content {
	display: block;
}
.article__content {
	overflow: hidden;
	border-radius: 10px;
	text-decoration: none;
	border: 1px solid rgba(81, 81, 81, 0.3);
}
.article img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-bottom: 1px solid rgba(81, 81, 81, 0.3);
}
.article__title {
	height: 70px;
	transition: .3s;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.3125rem;
	text-transform: uppercase;
	color: var(--black-color-1);
}
.article__content:hover .article__title {
	color: var(--green-color-1);
}
.article__padding {
	padding: 15px;
}
.article .control-btns {
	margin-top: 5px;
	justify-content: flex-end;
}

.front-section {
	margin-top: 95px;
}

.stock-items {
	flex-direction: column;
}
.stock-content {
	padding: 0 30px;
	overflow: hidden;
	border: 1px solid #D4D4D4;
	border-left: 0;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.front-section_stock .position_show-all .show-all {
	top: 60px;
	transform: unset;
}
.stock-content__title {
	width: 300px;
	font-weight: 500;
	line-height: 41px;
	font-size: 1.875rem;
	text-transform: uppercase;
	color: var(--green-color-1);
}
.stock-content__explanation {
	line-height: 21px;
	color: var(--black-color-1);
}
.stock-content__condition {
	line-height: 19px;
	color: var(--gray-color-2);
}
.stock-img {
	min-width: 305px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.front-section_stock .control-btn_add {
	margin-bottom: 5px;
}
.stock-items__item .control-btns {
	right: 10px;
	bottom: 10px;
	position: absolute;
}

.front-section_advantages .front-section__content {
	margin-top: 40px;
}
.advantages {
	overflow: hidden;
	border-radius: 10px;
}
.advantage img {
	width: auto;
}
.advantage__content {
	width: 100%;
	padding: 0 50px;
	box-sizing: border-box;
}
.advantage__list {
	padding: 0;
	list-style: none;
	margin-bottom: 0;
	margin-left: 30px;
	position: relative;
}
.advantage__list::before {
	content: '';
	left: -20px;
	height: 90%;
	position: absolute;
	border: 1px dashed rgba(81, 81, 81, 0.5);
}
.advantage__list > li {
	line-height: 18px;
	position: relative;
	font-size: .9375rem;
	color: var(--black-color-1);
}
.advantage__list > li:before {
	z-index: 2;
	content: '';
	left: -30px;
	width: 20px;
	height: 20px;
	display: block;
	background: #FFF;
	position: absolute;
	border-radius: 50%;
	border: 1px dashed rgba(81, 81, 81, 0.5);
}
.advantage__list > li:after {
	top: 50%;
	left: -29px;
	z-index: 2;
	content: '';
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	border-radius: 50%;
	transform: translate(50%, -50%);
	background: var(--green-color-1);
}
.advantage__num {
	font-weight: 500;
	line-height: 30px;
	font-size: 1.5625rem;
	color: var(--black-color-1);
}
.advantage:nth-child(1) .advantage__content {
	border-right: 1px solid;
	border-color: rgba(81, 81, 81, 0.2);
}
.advantage:nth-child(2) .advantage__content {
	border-left: 1px solid;
	border-radius: 0 10px 0 0;
	border-color: rgba(81, 81, 81, 0.2);
}
.advantage:nth-child(3) .advantage__content {
	border-right: 1px solid;
	border-bottom: 1px solid;
	border-radius: 0 0 10px 0;
	border-color: rgba(81, 81, 81, 0.2);
}
.advantage__bottom-text {
	font-weight: 500;
	margin-top: 55px;
	font-style: italic;
	line-height: 1.3125rem;
	color: var(--brown-color-1);
}

.callback-form {
	margin-top: 150px;
}
.callback-form__main-content {
	align-items: flex-end;
	column-gap: 20px;
}
.callback-form h1 {
	width: 570px;
	text-align: left;
}
.callback-form .button {
	font-size: 1rem;
	font-weight: 400;
	padding: 20px 15px;
	border-radius: 5px;
	line-height: 1.25rem;
}
.callback-form .sf__footnote {
	opacity: .5;
	font-size: .75rem;
	line-height: .9375rem;
	color: var(--gray-color-2);
}
.callback-form .simple-form {
	margin-top: 35px;
}

.front-banners__item {
	width: 33%;
	transition: .3s;
	border-radius: 10px;
	text-decoration: none;
	box-sizing: border-box;
	padding: 20px 25px 0 30px;
	background: var(--gray-color-1);
}
.front-banners__item_title {
	width: 70%;
	transition: .3s;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.625rem;
	color: var(--black-color-1);
}
.front-banners__item_left {
	padding-bottom: 30px;
}
.front-banners__item:hover {
	background: var(--green-color-1);
	box-shadow: 0 0 8px rgba(0, 181, 0, .4);
}
.front-banners__item:hover .front-banners__item_title,
.front-banners__item:hover .show-all {
	color: #FFF;
}
.front-banners__item:hover .show-all .svg-ico {
	fill: #FFF;
}

.position_center {
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

.soc-networks_mobile {
	padding: 30px 0;
}
.soc-networks_mobile a {
	width: 30px;
	height: 30px;
}
.header-search__container {
	position: relative;
}

.mobile-menu {
	bottom: 0;
	z-index: 2;
	position: fixed;
	background: #FFF;
	padding: 15px 0;
	box-sizing: border-box;
	height: var(--mobile-fixed-menu-height);
	box-shadow: 0 -3px 3px rgba(237, 237, 237, .3);
}
.mobile-menu .svg-ico {
	width: 13px;
	height: 13px;
	fill: var(--gray-color-2);
}
.mobile-menu__text {
	margin-top: 5px;
	font-size: .75rem;
	line-height: .875rem;
	color: var(--gray-color-2);
}
.mobile-menu .svg-ico_logo {
	width: 15px;
	height: 15px;
}
.mobile-menu__item.active .svg-ico {
	fill: var(--green-color-1);
}
.mobile-menu__item.active .mobile-menu__text {
	color: var(--green-color-1);
}
.mobile-menu a {
	text-decoration: none;
}

.front-section_brands {
	margin-top: 90px;
}
.front-brands img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}
.position_relative {
	position: relative;
}

.num-list {
	overflow: hidden;
	margin-top: 50px;
	position: relative;
	border-radius: 10px;
	padding: 35px 50px 45px 105px;
	background: var(--gray-color-1);
}
.num-list .svg-ico_logo {
	opacity: .05;
	width: 440px;
	height: 520px;
	position: absolute;
	fill: var(--gray-color-2);
}
.project-page_installation .num-list .svg-ico_logo {
	width: 340px;
	height: 395px;
}
.num-list ol {
	margin: 0;
	padding: 0;
	counter-reset: item;
	list-style-type: none;
}
.num-list__items > li:not(:first-child) {
	margin-top: 20px;
}
.num-list__items > li {
	z-index: 1;
	display: flex;
	position: relative;
	align-items: center;
}
.num-list__items > li::before {
	top: 50%;
	left: -15px;
	width: 38px;
	height: 38px;
	background: #FFF;
	position: absolute;
	border-radius: 50%;
	transform: translate(-100%, -50%);
	border: 1px solid var(--green-color-1);

	line-height: 38px;
	text-align: center;
	counter-increment: item;
	content: counter(item, decimal) "";
}
.num-list__sublist {
	padding: 0;
	list-style-type: disc;
	list-style-position: inside;
}
.project-page_img {
	margin-top: 50px;
	border-radius: 10px;
	filter: drop-shadow(0 0 13px var(--gray-color-1));
}

.main__title {
	margin: 0;
	text-align: center;
	font-size: 1.875rem;
	line-height: 2.1875rem;
	text-transform: uppercase;
	color: var(--brown-color-1);
}

.project-page .text-content {
	margin-top: 20px;
	line-height: 1.3125rem;
}
.project-page .text-content p {
	margin: 0;
}
.text-content__width {
	max-width: 521px;
}
.project-page_about-us .text-content__width {
	max-width: 551px;
}

.project-page_guarantee .project-page__content {
	background: var(--gray-color-1);
	border-radius: 10px;
	overflow: hidden;
	padding: 15px 190px 30px 190px;
	position: relative;
}
.project-page_guarantee .svg-ico_logo {
	fill: var(--gray-color-2);
	height: 520px;
	opacity: .05;
	position: absolute;
	right: -170px;
	top: 50%;
	transform: translateY(-50%);
	width: 440px;
}

.project-page__content p {
	margin: 12px 0 0 0;
}
.project-page__content ul {
	margin: 10px 0 0 23px;
	padding: 0;
}
.project-page__delimiter:not(:last-child) {
	padding-bottom: 30px;
	border-bottom: 1px solid rgb(81, 81, 81, .5);
}

.privilege {
	margin-top: 30px;
}
.privilege__item {
	padding: 30px;
	border-radius: 10px;
	box-sizing: border-box;
	background: var(--gray-color-1);
}
.privilege__item:last-child {
	padding: 120px 50px;
}
.privilege__item_title {
	font-weight: 500;
	max-width: 280px;
	font-size:1.125rem;
	line-height: normal;
	color: var(--brown-color-1);
}
.privilege__item > ul {
	padding: 0;
	row-gap: 25px;
	display: flex;
	margin: 25px 0 0 0;
	list-style-type: none;
	flex-direction: column;
}
.privilege__item_text {
	margin-left: 20px;
	font-size: .875rem;
	line-height: 1.0625rem;
	color: var(--black-color-1);
}

.project-page__title {
	margin-top: 100px;
}
.certificates-slider {
	margin-top: 30px;
}
.certificates-slider__slide {
	position: relative;
	box-sizing: border-box;
}
.certificates-slider__img {
	border-radius: 10px;
	object-fit: scale-down;
}
.certificates-slider__slide .control-btns {
	bottom: 10px;
	position: absolute;
}

.project-page__questions {
	row-gap: 40px;
	margin-top: 40px;
}
.questions__title {
	padding: 10px;
	font-weight: 500;
	font-size: .9375rem;
	border-radius: 10px;
	display: inline-flex;
	line-height: 1.125rem;
	text-transform: uppercase;
	color: var(--brown-color-1);
	background: var(--gray-color-1);
}
.questions__text-question {
	transition: .3s;
	font-weight: 500;
	font-size: 1.5625rem;
	line-height: 1.875rem;
	color: var(--black-color-1);
}
.questions__text-answer {
	height: 0;
	opacity: 0;
	user-select: none;
	padding-right: 12px;
	transform: scaleY(0);
	line-height: 1.1875rem;
	transform-origin: 50% 0;
	color: var(--black-color-1);
}
.questions__item.active .questions__text-answer {
	opacity: 1;
	height: auto;
	margin-top: 15px;
	user-select: text;
	transform: scaleY(1);
	transition: .4s ease;
}
.questions__items {
	display: flex;
	row-gap: 40px;
	margin-top: 20px;
	flex-direction: column;
}
.questions__item {
	transition: .3s;
	user-select: none;
	padding: 0 30px;
}
.questions__item.active {
	border-radius: 10px;
	background: #F4F4F4;
	padding: 30px;
}
.questions__item.active .questions__text-question {
	color: var(--green-color-1);
}
.questions__item.active .svg-ico {
	transform: rotate(-180deg);
	fill: var(--green-color-1);
}

.project-page_stock .stock-items {
	margin-top: 40px;
}
.project-page_reviews .control-btn_add {
	margin-top: 10px;
}

.paginator-container .paginator {
	margin-top: 20px;
}
.paginator-container .paginator__page {
	opacity: 0.5;
	line-height: 30px;
	border-radius: 5px;
	font-size: .9375rem;
	color: var(--gray-color-2);
	border: 1px solid var(--gray-color-2);
}
.paginator-container .paginator__page:hover,
.paginator-container .paginator__page:focus,
.paginator-container .paginator__page:active,
.paginator-container .paginator__page.selected {
	opacity: 1;
	background: var(--green-color-1);
	border: 1px solid var(--green-color-1);
}

.project-page_articles {
	margin-top: 30px;
}
.project-page_articles .article {
	width: 32.1%;
}
.project-page__articles-gap {
	row-gap: 20px;
	column-gap: 1.8%;
}

.slider-wrapper {
	position: relative;
}

.one-article .main__title {
	text-align: left;
}
.one-article .control-btns {
	margin-bottom: 10px;
}
.one-article__img {
	border-radius: 10px;
	border: 1px solid var(--gray-color-1);
}
.one-article__content {
	color: var(--black-color-1);
}
.one-article__content p, .one-article__content pre {
	margin: 10px 0;
}
.one-article__content ul, .one-article__content ol {
	padding: 0;
	margin: 10px 0 10px 15px;
}

.letter-to-director {
	padding: 50px 0;
	background: #F0F0F0;
}
.letter-to-director__subtitle {
	width: 415px;
	margin-top: 15px;
	line-height: 22px;
}
.letter-to-director__gratitude {
	margin-top: 15px;
	font-weight: 500;
	line-height: 22px;
	font-style: italic;
	color: var(--green-color-1);
}
.letter-to-director .simple-form {
	margin-top: 25px;
}
.letter-to-director .callback-form__main-content {
	margin-top: 15px;
}

.page-content_contacts footer {
	margin-top: 0;
}

.shops-videos {
	gap: 20px;
	margin-top: 50px;
}
.shops-videos__item {
	width: 49%;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
}
.shops-videos__item .control-btns {
	top: 5px;
	right: 5px;
	position: absolute;
}
.shops-videos__iframe {
	height: 270px;
}
.shops-videos__address {
	color: #FFF;
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.3125rem;
	text-transform: uppercase;
	background: var(--green-color-1);
}
.shops-videos__address {
	padding: 20px 15px;
}
.shops-videos__address::selection {
	color: var(--green-color-1);
	background: var(--gray-color-1);
}

.catalog__category {
	transition: .4s;
	font-weight: 500;
	padding: 15px;
	text-decoration: none;
	line-height: 1.1875rem;
	text-transform: uppercase;
	color: var(--black-color-1);
}
.catalog__category .svg-ico {
	width: 30px;
	height: 30px;
	fill: var(--brown-color-1);
}
.catalog__left {
	flex-direction: column;
	box-sizing: border-box;
}
.preset {
	transition: .4s;
	padding: 5px 15px;
	font-size: .875rem;
	text-align: center;
	border-radius: 15px;
	text-decoration: none;
	line-height: 1.0625rem;
	color: rgba(81, 81, 81, .60);
	background: rgba(81, 81, 81, .20);
}
.preset-price.active,
.preset-price:hover,
.preset.active,
.preset:hover {
	color: var(--gray-color-2);
	background: rgba(0, 181, 0, .20);
}
.presets {
	gap: 10px;
}

.attr__title {
	font-weight: 500;
	font-size: .75rem;
	line-height: .875rem;
	text-transform: uppercase;
	color: var(--black-color-1);
}
.attr__img {
	height: auto;
	max-width: 34px;
	margin-right: 10px;
}
.attr__link {
	transition: .3s;
	text-decoration: none;
}
.attr__link:hover {
	color: var(--green-color-1);
}
.attr__items {
	row-gap: 5px;
	margin-top: 10px;
}
.attr__item_lh {
	line-height: 1.375rem;
}
.attr__item {
	font-size: .875rem;
	text-decoration: none;
	color: var(--gray-color-2);
}
.attr__ico-bg {
	margin-right: 10px;
}
.attr__ico-bg .svg-ico {
	fill: #FFF;
	width: 22px;
	height: 22px;
}
.catalog__attrs {
	flex-flow: column wrap;
}

.catalog__close-attrs {
	width: 25px;
	height: 25px;
	position: relative;
	border-radius: 50%;
	display: inline-block;
	background-color: var(--gray-color-1);
}
.catalog__close-attrs::before,
.catalog__close-attrs::after {
	width: 13px;
	background-color: var(--gray-color-2);
	border-radius: 1px;
	content: '';
	height: 2px;
	left: 50%;
	position: absolute;
	transition: .3s;
	top: 50%;
}
.catalog__close-attrs::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.catalog__close-attrs::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.category-title {
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 2.625rem;
	color: var(--green-color-1);
}
.preset-price {
	color: #FFF;
	transition: .4s;
	padding: 5px 12px;
	font-size: .875rem;
	border-radius: 10px;
	text-decoration: none;
	line-height: 1.3125rem;
	background: var(--yellow-color-1);
}
.total-products {
	font-size: .9375rem;
	line-height: 1.125rem;
}
.sort-products-wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.products-content {
	margin-top: 20px;
}
.filter {
	z-index: 1;
	row-gap: 20px;
	flex: 0 0 auto;
	transition: .4s;
	height: fit-content;
	box-sizing: border-box;
	padding: 30px 20px 20px 20px;
}
.filter__title {
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.3125rem;
	color: var(--black-color-1);
}
.filter__checkbox {
	cursor: pointer;
}
.filter__span {
	display: block;
	position: relative;
	font-size: .875rem;
	padding-left: 28px;
	line-height: 1.4375rem;
	color: var(--gray-color-2);
}
.filter__span::after {
	transition: .4s;
}
.filter__span::before {
	transition: .4s;
	background: #FFF;
	border-radius: 3px;
	box-sizing: border-box;
	content: '';
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 1px solid var(--gray-color-2);
	width: 20px;
}
.filter__checkbox-choice {
	display: none;
}
.filter__checkbox-choice:checked + .filter__span::after {
	background: transparent;
	border: 0 solid #FFF;
	border-bottom-width: 2px;
	border-left-width: 2px;
	content: '';
	display: block;
	height: 5px;
	left: 7px;
	position: absolute;
	top: calc(50% - 2px);
	transform: rotate(-45deg) translateY(-50%);
	width: 9px;
}
.filter__checkbox-choice:checked + .filter__span::before {
	background: var(--green-color-1 );
	border: none;
}
.filter__values {
	row-gap: 6px;
	margin-top: 15px;
}
.filter__switch-span {
	position: relative;
}
.filter__switch-span::before {
	content: '';
	width: 45px;
	height: 25px;
	display: block;
	cursor: pointer;
	transition: .4s;
	border-radius: 20px;
	background: rgb(81, 81, 81, .2);
}
.filter__switch-span::after {
	top: 50%;
	right: 22px;
	content: '';
	width: 19px;
	height: 19px;
	display: block;
	cursor: pointer;
	transition: .3s;
	background: #FFF;
	position: absolute;
	border-radius: 50%;
	transform: translateY(-50%);
}
.filter__switch-choice {
	display: none;
}
.filter__switch-choice:checked + .filter__switch-span::before {
	background: var(--green-color-1);
}
.filter__switch-choice:checked + .filter__switch-span::after {
	right: 4px;
}

.filter__btns {
	row-gap: 10px;
	bottom: 20px;
	z-index: 1;
	transition: .2s;
}
.filter__btn {
	text-align: center;
	border-radius: 10px;
	font-size: .9375rem;
	text-decoration: none;
	line-height: 1.125rem;
	box-sizing: border-box;
}
.filter__btn_search {
	padding: 12px 40px;
}
.filter__btn_reset {
	padding: 11px 40px;
	color: var(--black-color-1);
	background: #F3F3F3;
	border: 1px solid var(--gray-color-2);
}
.filter__btn_reset:hover {
	color: #FFF;
	border: 1px solid transparent;
	background: var(--yellow-color-1);
}
.filter__btn_reset:focus {
	background: #FFF;
	border: 1px solid var(--green-color-1);
	color: var(--green-color-1)
}
.filter__slider {
	margin-top: 20px;
}
.filter__slider-inputs {
	margin-top: 20px;
}
.filter__img {
	height: auto;
	max-width: 25px;
	margin-right: 10px;
}

.popup-search-container {
	position: relative;
}
.filter__btn_popup-search {
	position: absolute;
	font-size: .875rem;
	padding: 14px 24px;
	line-height: 1rem;
	background: var(--yellow-color-1);
	z-index: 1;
	right: 0;
	transform: translateX(100%);
}
.filter__btn_popup-search:hover,
.filter__btn_popup-search:focus {
	background: var(--yellow-color-1);
	color: #FFF;
	border: 1px solid transparent;
	box-shadow: 0 0 10px 2px rgba(240, 194, 74, .40);
}
.filter__btn_popup-search .svg-ico {
	fill: var(--yellow-color-1);
	position: absolute;
	width: 13px;
	height: 25px;
	left: 0;
	top: 50%;
	transform: translate(-80%, -50%);
}

/* noUi slider */
.filter__input {
	border: 1px solid var(--gray-color-2);
	border-radius: 5px;
	box-sizing: border-box;
	color: var(--black-color-1);
	padding: 10px 10px 10px 30px;
	width: 105px;
	outline: none;
	font-size: .9375rem;
	line-height: 1.125rem;
	font-weight: 500;
}
.filter__slider-text {
	top: 50%;
	left: 10px;
	position: absolute;
	padding-bottom: 3px;
	line-height: 1.125rem;
	transform: translateY(-50%);
	color: var(--black-color-1);
}
.noUi-target,
.noUi-target * {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgb(81, 81, 81, .3);
	-ms-touch-action: none;
	touch-action: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}
.noUi-target {
	height: 2px;
	position: relative;
	background: #F3F3F3;
}
.noUi-base {
	border-radius: 6px;
	background: rgb(81, 81, 81, .3);
}
.noUi-base,
.noUi-connects {
	height: 100%;
	position:relative;
	z-index:1
}
.noUi-connect,
.noUi-origin {
	position:absolute;
	top:0;
	transform-origin: 0 0;
	-webkit-transform-style: preserve-3d;
	transform-style: flat;
	width: 100%;
	will-change: transform;
	z-index: 1
}
.noUi-connect {
	left:0;
	height:100%;
}
.noUi-origin {
	left:auto;
	height:0
}
.noUi-handle {
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	background: var(--green-color-1);
	border-radius: 50%;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: -6px;
	width: 15px;
	height: 15px
}
.filter .noUi-tooltip {
	display: none;
}
.filter__slider .noUi-handle {
	right: -8px;
}
.create-preset-btn {
	transition: .4s;
	text-align: center;
	text-decoration: none;
	color: var(--black-color-1);
}
.create-preset-btn:hover {
	color: var(--green-color-1);
}

.sort {
	padding: 5px 0;
	position: relative;
}
.sort__title {
	background: unset;
	border: unset;
	cursor: pointer;
	margin-left: 10px;
	padding: 0;
}
.sort__left {
	font-weight: 500;
	font-size: .9375rem;
	line-height: 1.125rem;
	color: var(--green-color-1);
}
.sort__items {
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
	padding: 10px;
	position: absolute;
	right: 0;
	row-gap: 10px;
	top: 100%;
	transition: all .2s ease-in-out;
	z-index: 2;
}
.sort:not(.active) .sort__items {
	opacity: 0;
	pointer-events: none;
	transform: translateY(5px);
}
.sort__title,
.sort__item {
	white-space: nowrap;
	font-size: .9375rem;
	line-height: 1.125rem;
	text-decoration: none;
	color: var(--gray-color-2);
}
.sort__item {
	transition: .4s;
}
.sort__item:hover {
	color: var(--green-color-1);
}
.sort__title .svg-ico {
	width: 10px;
	margin-left: 5px;
	fill: var(--gray-color-2);
}
.sort.active .svg-ico {
	transform: rotate(-180deg);
}

.mob-filter-switch {
	justify-content: flex-start;
}
.mob-filter-switch > a {
	padding: 12px 0;
	font-size: .9375rem;
	line-height: 1.125rem;
	text-decoration: none;
	color: var(--black-color-1);
}
.mob-filter-switch .svg-ico {
	width: 16px;
	height: 16px;
	fill: var(--black-color-1);
}
.mob-filter:not(.active) .mob-filter-switch {
	overflow: hidden;
	border-radius: 10px;
	justify-content: center;
	border: 1px solid var(--gray-color-2);
}
.mob-filter:not(.active) .mob-filter-switch > a {
	width: 100%;
	padding: 11px 40px;
}
.mob-filter:not(.active) .mob-filter__close{
	display: none;
}
.mob-filter.active .svg-ico_filter {
	display: none;
}
.mob-filter__title {
	font-weight: 500;
	font-size: 1.25rem;
	color: var(--black-color-1);
}
.svg-ico_arrow {
	transform: rotate(-180deg);
}
.mob-filter__close .svg-ico {
	width: 13px;
	height: 13px;
	fill: var(--gray-color-2);
}
.mob-filter__close {
	width: 26px;
	height: 26px;
	background: rgba(81, 81, 81, .3);
}

.product-card {
	border-radius: 10px;
	box-sizing: border-box;
	border: 1px solid rgba(81, 81, 81, .30);
}
.products-content__right {
	flex: 1 1 auto;
}
.products-content__list {
	row-gap: 20px;
	column-gap: 2%;
}
.products-content__list .product-card {
	width: 32%;
	box-sizing: border-box;
}
.product-card__top {
	width: 100%;
	position: relative;
	text-decoration: none;
}
.product-card__img {
	height: 210px;
	object-fit: scale-down;
}
.product-card__bottom {
	padding: 15px;
}
.product-card__title {
	transition: .2s;
	font-weight: 500;
	min-height: 38px;
	text-decoration: none;
	line-height: 1.1875rem;
	color: var(--black-color-1);
}
.product-card__title:hover {
	color: var(--green-color-1);
}
.product-in-stock {
	margin-top: 5px;
	font-size: .875rem;
	line-height: 1.0625rem;
	color: var(--black-color-1);
}
.product-in-stock .svg-ico {
	width: 15px;
	height: 15px;
	fill: var(--green-color-1);
}
.product-price {
	font-weight: 500;
	font-size: 1.3125rem;
	line-height: 1.6875rem;
	color: var(--black-color-1);
}
.product-old-price {
	font-weight: 500;
	line-height: 1.1875rem;
	color: var(--gray-color-2);
	text-decoration-line: line-through;
}
.product-count-text {
	line-height: 1.1875rem;
	color: var(--gray-color-2);
}
.product-card__shop {
	margin-top: 15px;
}
.product-count-label {
	display: block;
	max-width: 110px;
	overflow: hidden;
	position: relative;
}
.product-count-input {
	width: 100%;
	outline: none;
	color: #454545;
	padding: 5px 30px;
	line-height: 100%;
	border-radius: 3px;
	text-align: center;
	box-sizing: border-box;
	background: transparent;
	border: 1px solid rgba(81, 81, 81, .30);
}
.product-count-label__btn {
	top: 50%;
	width: 30px;
	height: 100%;
	display: flex;
	color: #454545;
	line-height: 100%;
	position: absolute;
	align-items: center;
	text-decoration: none;
	box-sizing: border-box;
	justify-content: center;
	transform: translateY(-50%);
}
.product-count-label__btn[data-action="dec"] {
	left: 0;
	border-right: 1px solid rgba(81, 81, 81, .30);
}
.product-count-label__btn[data-action="inc"] {
	right: 0;
	border-left: 1px solid rgba(81, 81, 81, .30);
}
.product-btn {
	text-align: center;
	border-radius: 10px;
	font-size: .9375rem;
	text-decoration: none;
	line-height: 1.125rem;
}
.product-btn_measurement {
	padding: 11px 0;
	transition: .2s;
	background: transparent;
	color: var(--black-color-1);
	border: 1px solid rgba(81, 81, 81, .30);
}
.product-btn_measurement:hover {
	color: #FFF;
	border: 1px solid transparent;
}
.product-btn_measurement:focus {
	color: var(--green-color-1);
	border: 1px solid var(--green-color-1);
}
.in-basket {
	padding: 12px 0;
}
.in-basket:focus .svg-ico {
	fill: var(--green-color-1);
}
.product-stock {
	color: #FFF;
	padding: 5px 10px;
	font-size: .75rem;
	border-radius: 5px;
	width: fit-content;
	line-height: .875rem;
	text-transform: uppercase;
	background: var(--green-color-1);
}
.product-stock_hit {
	background: #24B9DA;
}
.product-stocks {
	row-gap: 10px;
	overflow-y: auto;
	max-height: 185px;
	position: absolute;
}
.product__top-left .product-stocks {
	max-height: 385px;
}
.product-in-stock.active .to-order {
	display: none;
}
.product-in-stock:not(.active) .in-stock {
	display: none;
}
.product-in-stock:not(.active) .svg-ico {
	fill: rgb(81, 81, 81, .3);
 }
.in-basket__text::before {
	content: 'Добавить в корзину';
}
.in-basket.active .in-basket__text::before {
	content: 'Перейти в корзину';
}

.product__title {
	margin: 0;
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 2.625rem;
	color: var(--black-color-1);
}
.product__top {
	margin-top: 20px;
}
.product__top-left {
	height: 425px;
	position: relative;
	border-radius: 10px;
	border: 1px solid var(--gray-color-1);
}
.product__img {
	z-index: 1;
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
.product__img > img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}
.official-seller .svg-ico {
	width: 15px;
	height: 15px;
	fill: var(--green-color-1);
}
.official-seller__text {
	margin-left: 5px;
	font-size: .875rem;
	line-height: 1.0625rem;
	color: var(--black-color-1);
}
.product__colors-title {
	font-weight: 500;
	font-size: .9375rem;
	line-height: 1.125rem;
	text-transform: uppercase;
	color: var(--black-color-1);
}
.product__calculate-turnkey {
	transition: .4s;
	margin-top: 15px;
	text-align: center;
	font-size: .9375rem;
	line-height: 1.125rem;
	color: var(--gray-color-2);
}
.product__calculate-turnkey:hover {
	color: var(--green-color-1);
}
.product__color {
	width: 82px;
	height: 75px;
	display: block;
	transition: .4s;
	overflow: hidden;
	border-radius: 10px;
	box-sizing: border-box;
	border: 1px solid var(--gray-color-1);
}
.product__color > img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}
.product__color.active,
.product__color:hover {
	border-color: var(--green-color-1);
}
.product__colors-list {
	gap: 10px;
	margin-top: 10px;
}
.product__comparisons {
	opacity: .6;
	transition: .4s;
	margin-bottom: 20px;
	font-size: .9375rem;
	text-decoration: none;
	line-height: 1.125rem;
	color: var(--gray-color-2);
}
.product__comparisons-ico .svg-ico {
	width: 18px;
	height: 18px;
	fill: var(--gray-color-2);
}
.product__comparisons-ico {
	width: 25px;
	height: 25px;
	margin-right: 5px;
}
.product__comparisons:hover {
	opacity: 1;
}
.product__comparisons.active .svg-ico {
	fill: var(--green-color-1);
}
.product__comparisons.active {
	color: var(--green-color-1);
}
.product__top .product-characteristics {
	margin-top: 20px;
}
.product-characteristics__title {
	font-weight: 500;
	font-size: .9375rem;
	line-height: 1.125rem;
	text-transform: uppercase;
	color: var(--black-color-1);
}
.product-characteristics__items {
	row-gap: 10px;
	margin-top: 10px;
}
.product-characteristics__name {
	font-weight: 500;
	font-size: .875rem;
	padding: 0 30px 2px 0;
	line-height: 1rem;
	color: var(--black-color-1);
	border-bottom: 1px dashed rgba(81, 81, 81, .50);
}
.product-characteristics__value {
	line-height: 1rem;
	font-size: .875rem;
	padding: 0 0 2px 5px;
	color: var(--gray-color-2);
}
.product-characteristics__values {
	max-width: 50%;
}
.product-characteristics__go-to-all {
	display: block;
	transition: .4s;
	margin-top: 10px;
	font-weight: 500;
	font-size: .875rem;
	line-height: 1.0625rem;
	color: var(--black-color-1);
}
.product-characteristics__go-to-all:hover {
	color: var(--green-color-1);
}
.product__tab-header {
	padding: 15px;
	transition: .4s;
	font-weight: 500;
	font-size: .875rem;
	text-align: center;
	border-radius: 10px;
	text-decoration: none;
	box-sizing: border-box;
	line-height: 1.0625rem;
	text-transform: uppercase;
	color: var(--black-color-1);
	background: var(--gray-color-1);
}
.product__tab-headers {
	column-gap: 10px;
	padding-top: 20px;
}
.product__tab-header:hover,
.product__tab-header.active {
	color: #FFF;
	background: var(--green-color-1);
}
.product__tab-cols {
	display: flex;
	column-gap: 10px;
}
.product__tab-content_block p {
	margin: 0;
}
.product__tab-body {
	margin-top: 20px;
}
.product__tab-content_block {
	padding: 30px 25px;
	border-radius: 10px;
	background: #F3F3F3;
}
.product__tab-content_advantages {
	padding: 30px 40px;
}
.product__tab-cols .product-characteristics__items {
	overflow-y: auto;
	padding-right: 10px;
	scrollbar-width: thin;
	scrollbar-color: var(--green-color-1) rgb(81, 81, 81, .2);
}
.product__tab-cols .product-characteristics__items::-webkit-scrollbar {
	width: 6px;
}
.product__tab-cols .product-characteristics__items::-webkit-scrollbar-thumb {
	border: 3px solid var(--green-color-1);
}
.product__tab-cols .product-characteristics__items::-webkit-scrollbar-track {
	background: rgb(81, 81, 81, .2);
}
.product__tab-content_title {
	font-weight: 500;
	font-size: .9375rem;
	line-height: 1.125rem;
	text-transform: uppercase;
	color: var(--black-color-1);
}
.product__tab-col {
	box-sizing: border-box;
}
.product__advantages {
	margin-top: 35px;
	row-gap: 35px;
}
.product__advantage-text {
	width: 154px;
	margin-left: 15px;
	font-size: .875rem;
	line-height: 1.0625rem;
	color: var(--gray-color-2);
}
.fix-price {
	border-radius: 10px;
	background: #F3F3F3;
	padding: 35px 50px 35px 25px;
}
.product__fix-price {
	margin-top: 20px;
}
.fix-price__title {
	width: 187px;
	font-weight: 500;
	margin-right: 73px;
	font-size: 1.0625rem;
	line-height: 1.5625rem;
	text-transform: uppercase;
	color: var(--green-color-1);
}
.fix-price .sf__input-name {
	font-size: .875rem;
	line-height: 1.0625rem;
}
.fix-price .sf__input {
	padding: 11px;
	line-height: 1rem;
	font-size: .875rem;
	border: 1px solid rgba(81, 81, 81, .3);
}
.fix-price .sf__input::placeholder {
	color: rgba(81, 81, 81, .50);
}
.fix-price .button {
	font-weight: 400;
	padding: 10px 40px;
	border-radius: 10px;
	font-size: .9375rem;
	line-height: 1.125rem;
}
.fix-price__fields {
	column-gap: 20px;
}
.product__shop .product-stock {
	margin-bottom: 20px;
}
.product-slider {
	margin-top: 70px;
}
.product-slider__slide {
	padding: 0 10px;
	box-sizing: border-box;
}
.product-slider__title {
	padding: 0 10px;
	font-weight: 500;
	line-height: 2rem;
	font-size: 1.875rem;
	text-transform: uppercase;
	color: var(--brown-color-1);
}
.product-slider .slider-wrapper {
	margin-top: 30px;
}
.product__top .product-stock {
	z-index: 1;
}

.product-attr-banners {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0;
}
.product-attr-banners__item {
	position: relative;
}
.product-attr-banners__item > img {
	display: block;
	height: 268px;
	object-fit: cover;
	width: 265px;
}
.product-attr-banners__content {
	bottom: 0;
	left: 0;
	padding: 20px;
	position: absolute;
	right: 0;
	top: 0;
}
.product-attr-banners__item-title {
	background-color: #FFF;
	border: 1px solid #A0D1A0;
	border-radius: 4px;
	color: var(--green-color-1);
	font-size: .75rem;
	font-weight: 700;
	padding: 3px 6px;
	text-transform: uppercase;
	width: fit-content;
}
.product-attr-banners__item-values {
	font-size: 1.125rem;
	line-height: 1.2;
	margin-top: 10px;
	width: 70%;
	word-wrap: break-word;
}

.cart .main__title {
	text-align: left;
}
.cart__bg {
	border-radius: 10px;
	background: #F3F3F3;
}
.cart__products {
	padding: 20px;
	box-sizing: border-box;
}
.cart__products-title {
	font-size: .875rem;
	line-height: 1.125rem;
	color: var(--gray-color-2);
}
.cart__product {
	padding: 20px 0;
	position: relative;
	border-top: 1px solid #D0D0D0;
}
.cart__products_mt {
	margin-top: 20px;
}
.cart__product-img {
	width: 80px;
	height: 110px;
	background: #FFF;
	overflow: hidden;
	margin-right: 20px;
	border-radius: 10px;
}
.cart__product-img > img {
	height: 100%;
	object-fit: contain;
}
.cart__product-name {
	transition: .4s;
	font-size: .875rem;
	text-decoration: none;
	line-height: 1.125rem;
	color: var(--black-color-1);
}
.cart__product-name:hover {
	color: var(--green-color-1);
}
.cart .product-in-stock {
	color: var(--gray-color-2);
}
.cart .product-old-price {
	opacity: .5;
	line-height: 1rem;
	font-size: .875rem;
}
.cart .product-price {
	font-size: 1.125rem;
	line-height: 1.25rem;
}
.svg-ico_basket-remove {
	width: 30px;
	height: 30px;
	fill: var(--green-color-1);
}
.cart__basket-remove {
	width: 30px;
	height: 30px;
}
.cart__basket-remove:hover .svg-ico {
	fill: var(--yellow-color-1);
}
.cart__top {
	margin-top: 20px;
}
.cart__clear {
	transition: .2s;
	font-size: .875rem;
	text-decoration: none;
	line-height: 1.125rem;
	color: var(--black-color-1);
}
.cart__clear:hover {
	color: var(--green-color-1);
}
.cart-info {
	flex: 1 1 auto;
	padding: 30px 25px;
}
.cart-info__title {
	font-weight: 500;
	font-size: .875rem;
	line-height: 1.125rem;
	text-transform: uppercase;
	color: var(--black-color-1);
}
.cart-info__name {
	font-size: .875rem;
	line-height: 1rem;
	padding: 0 30px 2px 0;
	color: var(--black-color-1);
	border-bottom: 1px dashed rgba(81, 81, 81, .50);
}
.cart-info__value {
	line-height: 1rem;
	font-size: .875rem;
	padding: 0 0 2px 5px;
	color: var(--black-color-1);
}
.cart-info__items {
	row-gap: 10px;
	margin: 10px 0 50px 0;
}
.cart__top {
	column-gap: 20px;
}
.cart-info__total {
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.25rem;
	text-transform: uppercase;
	color: var(--green-color-1);
}
.cart-info__btn {
	display: block;
	text-align: center;
	padding: 12px 40px;
	font-size: .9375rem;
	border-radius: 10px;
	text-decoration: none;
	line-height: 1.125rem;
}
.cart-info__bottom {
	gap: 20px;
}
.cart__design-order {
	margin-top: 70px;
}
.cart__form-title {
	font-weight: 500;
	line-height: 1.25rem;
	text-transform: uppercase;
	color: var(--black-color-1);
}
.cart__form {
	padding: 30px;
	margin-top: 20px;
	border-radius: 10px;
	background: #F3F3F3;
}
.cart-info__mob-switch {
	top: 0;
	left: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	user-select: none;
	border-radius: 50%;
	position: absolute;
	background: #F3F3F3;
	transform: translate(-50%, -50%);
}
.cart-info__mob-switch .svg-ico {
	top: 40%;
	left: 50%;
	width: 14px;
	height: 14px;
	position: absolute;
	fill: var(--gray-color-2);
	transform: translate(-50%, -40%) rotate(-180deg);
}
.cart-info.active .cart-info__mob-switch .svg-ico {
	transform: translate(-50%, -40%);
}
.cart__form .sf__input-name {
	font-size: .9375rem;
	line-height: 1.125rem;
}
.cart__form-fields {
	margin-top: 20px;
	gap: 20px
}
.cart__form .sf__input {
	padding: 15px;
	font-size: .9375rem;
	line-height: 1.125rem;
}
.cart__form-title_additional {
	margin-top: 30px;
}
.cart__switch-span {
	position: relative;
}
.cart__switch-span::before {
	content: '';
	width: 45px;
	height: 25px;
	display: block;
	cursor: pointer;
	transition: .4s;
	border-radius: 20px;
	background: #FFF;
}
.cart__switch-span::after {
	top: 50%;
	right: 22px;
	content: '';
	width: 19px;
	height: 19px;
	display: block;
	cursor: pointer;
	transition: .3s;
	position: absolute;
	border-radius: 50%;
	transform: translateY(-50%);
	background: rgb(81, 81, 81, .5);
}
.cart__switch-choice {
	display: none;
}
.cart__switch-choice:checked + .cart__switch-span::after {
	right: 4px;
	background: var(--green-color-1);
}
.cart__form_question {
	padding: 10px 20px;
	border-radius: 10px;
	background: rgba(0, 181, 0, .10);
}
.cart__form_questions {
	row-gap: 15px;
}
.cart__form-bottom {
	margin-top: 20px;
	column-gap: 20px;
}
.cart__form_question-text {
	line-height: 1.125rem;
	color: var(--black-color-1);
}
.cart__form .sf__textarea {
	height: 100%;
	resize: none;
	padding: 15px;
	font-size: .9375rem;
	line-height: 1.125rem;
}
.cart__form .sf__textarea::placeholder {
	color: rgb(81, 81, 81, .5);
}
.cart-empty__title-text {
	margin: 5px 0;
	font-weight: 700;
	font-size: 1.5rem;
}
.cart-empty__main-text {
	width: 215px;
	font-weight: 500;
	line-height: 22px;
	text-align: center;
	color: var(--gray-color-2);
}
.cart-empty__buttons {
	margin-top: 20px;
	column-gap: 20px;
}
.cart-empty__buttons .button {
	width: 160px;
	line-height: 1.125rem;
}

.comparisons__products {
	margin-top: 20px;
}
.comparisons__products .product-card {
	overflow: hidden;
}
.comparisons__attributes {
	margin-top: 5px;
	border-top: 1px solid var(--gray-color-1);
}
.comparisons__attribute {
	padding: 20px 15px;
	box-sizing: border-box;
}
.comparisons__attribute .product-characteristics__value {
	color: var(--black-color-1);
}
.comparisons__attribute:nth-child(even) {
	background: #EFEFEF;
}
.comparisons__slide {
	padding: 0 10px;
	box-sizing: border-box;
}
.comparisons-menu {
	gap: 15px;
	margin-top: 20px;
}
.comparisons-menu__item {
	transition: .4s;
	padding: 5px 15px;
	font-size: .875rem;
	border-radius: 15px;
	text-decoration: none;
	line-height: 1.125rem;
	color: var(--gray-color-2);
	border: 1px solid rgba(81, 81, 81, .30);
}
.comparisons-menu__item:hover,
.comparisons-menu__item.active {
	border: 1px solid transparent;
	background: rgba(0, 181, 0, .20);
}
.comparisons-menu__count {
	margin-left: 5px;
}
.comparisons .main__title {
	text-align: left;
}

.unique-attributes {
	margin-top: 20px;
	display: inline-block;
}
.unique-attributes__checkbox {
	cursor: pointer;
}
.unique-attributes__span {
	display: block;
	position: relative;
	font-size: .875rem;
	padding-left: 28px;
	line-height: 1.25rem;
	color: var(--black-color-1);
}
.unique-attributes__span::after {
	transition: .4s;
}
.unique-attributes__span::before {
	transition: .4s;
	background: #FFF;
	border-radius: 3px;
	box-sizing: border-box;
	content: '';
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	width: 20px;
	transform: translateY(-50%);
	border: 1px solid rgba(81, 81, 81, .50);
}
.unique-attributes__checkbox-choice {
	display: none;
}
.unique-attributes__checkbox-choice:checked + .unique-attributes__span::after {
	background: transparent;
	border: 0 solid #FFF;
	border-bottom-width: 2px;
	border-left-width: 2px;
	content: '';
	display: block;
	height: 5px;
	left: 7px;
	position: absolute;
	top: calc(50% - 2px);
	transform: rotate(-45deg) translateY(-50%);
	width: 9px;
}
.unique-attributes__checkbox-choice:checked + .unique-attributes__span::before {
	background: var(--green-color-1 );
	border: none;
}
.comparisons .callback-form {
	margin-top: 100px;
}
.comparisons .product-card {
	position: relative;
}
.nothing-to-compare {
	font-weight: 500;
	margin-top: 20px;
	font-size: 1.25rem;
}
.comparisons__slide .product-in-stock {
	margin-top: 0;
}
.comparisons__slide .product-card__title {
	margin-bottom: 5px;
}
.comparisons__slide .product-old-price {
	opacity: .5;
}
.rm-from-comparisons:hover .svg-ico {
	fill: var(--yellow-color-1);
}
.product-card__btns .svg-ico {
	width: 16px;
	height: 16px;
	fill: #FFF;
}
.products-content__banners {
	display: flex;
	width: 100%;
}
.products-content__banner {
	align-items: center;
	border-radius: 10px;
	box-shadow: 0 0 13px 0 var(--gray-color-1);
	display: flex;
	justify-content: center;
	overflow: hidden;
}
.products-content__banner > img {
	height: auto;
	width: 100%;
}
.explanation-toggle {
	width: 15px;
	height: 15px;
	text-decoration: none;
	background: var(--yellow-color-1);
	border-radius: 50%;
	font-size: .875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	color: #FFF;
	cursor: help;
	margin: 0 0 3px 5px;
	border: unset;
	position: relative;
}

.video-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 20px;
}

.video-gallery-item {
	max-width: 100%;
}

.video-gallery-item__iframe {
	border: none;
	height: 250px;
	width: 100%;
}

.notification {
	border-radius: 10px;
	font-weight: 500;
	padding: 15px;
	text-align: center;
	width: 100%;
}
.notification_info {
	background-color: var(--green-color-2);
	color: var(--green-color-1);
}