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

:root {
	--color-black: #252525;

	--color-gray-1: #BABABA;
	--color-gray-2: #727272;
	--color-gray-3: #F1F1F1;
	--color-gray-4: #E6E6E6;
	--color-gray-5: #EAEAEA;

	--color-green-1: #369E06;
	--color-green-2: #43B20F;
	--color-green-3: #58D81D;
	--color-green-4: #E1F1DA;
	--color-green-gradient: linear-gradient(45deg, var(--color-green-1) 0%, var(--color-green-2) 50%, var(--color-green-3) 100%);

	--color-blue-1: #E7F2FF;

	--color-red-1: #DC2929;

	--container-desktop-width: 1400px;
}

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

html {
    background: transparent;
    color: var(--color-black);
    font: normal 400 16px/1.3 'Nunito', Arial, sans-serif;
}

.container {
	box-sizing: border-box;
	margin: 0 auto !important;
}

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

h1,h2,h3,h4,h5,h6 {
    display: block;
    font-weight: 700;
	line-height: 1.2;
    margin: 10px 0;
}
h1 {
	font-size: 1.625rem;
	margin: 0 0 15px;
}
h2{font-size:1.5rem}
h3{font-size:1.25rem}
h4{font-size:1.125rem}
h5{font-size:1rem}
h6{font-size:1rem}

.mt-10{margin-top:10px}
.mt-15{margin-top:15px}
.mt-20{margin-top:20px}
.mt-30{margin-top:30px}
.mt-40{margin-top:40px}
.mt-60{margin-top:60px}

.ml-10{margin-left:10px}
.ml-15{margin-left:15px}

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

.row-gap-5{row-gap:5px}
.row-gap-10{row-gap:10px}
.row-gap-20{row-gap:20px}
.row-gap-30{row-gap:30px}

.no-underline{text-decoration-line: none}

.text-black{color:var(--color-black)}

.text-medium{font-weight:500}
.text-bold{font-weight:700}

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

.font-s-0_875{font-size:.875rem;}
.font-s-1{font-size:1rem;}
.font-s-1_125{font-size:1.125rem;}
.font-s-1_25{font-size:1.25rem;}

.font-w-600{font-weight:600}
.font-w-700{font-weight:700}

.ta-c{text-align:center}

.of-h{overflow:hidden}

.d-block{display:block}

.default-link {
	color: var(--color-gray-2);
	text-decoration: none;
	border-bottom: 1px solid;
	display: inline-block;
	font-weight: 600;
	font-size: .875rem;
	line-height: 0.85rem;
}

.back-link {
	align-items: center;
	color: var(--color-gray-1);
	display: inline-flex;
	text-decoration: none;
}
.back-link::before {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAHBAMAAADKaWEqAAAAJFBMVEUAAAC3t7e5ubm8vLy9vb26urq7u7u8vLy7u7u8vLy9vb28vLzUnLLDAAAAC3RSTlMAIFBfYGCAr8/f342COKUAAAAqSURBVHjaY2AIZwAD1k0MYBCdKAgEDAyrd4PATgZvAwYwYNnMAAEeYBIA/McIlKvc7XoAAAAASUVORK5CYII=');
	content: '';
	display: inline-block;
	height: 7px;
	margin-right: 8px;
	width: 14px;
}

.list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
}

.stop-scroll {
	overflow: hidden;
}

.button {
	border: 0;
	border-radius: 10px;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	padding: 14px 15px;
	text-align: center;
	text-decoration: none;
	transition: .2s;
	user-select: none;
}
.button.button_fw {
	display: block;
	width: 100%;
}
.button.button_big {
	font-size: 1.25rem;
	letter-spacing: 1px;
	min-width: 200px;
	padding: 20px;
}

.button.button_green {
	background-color: var(--color-green-1);
	color: #FFF;
	text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}
.button.button_green:hover {
	background-color: var(--color-green-3);
}

.button.button_green_gradient {
	background: var(--color-green-gradient);
	color: #FFF;
	text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}
.button.button_green_gradient:hover {
	filter: brightness(110%);
}

.button.button_white_translucent {
	background-color: rgba(255,255, 255, .3);
	border: 1px solid var(--color-green-1);
	color: var(--color-black);
}

.button.button_gray {
	background-color: var(--color-gray-2);
	color: #FFF;
}

.button.button_with_icon {
	align-items: center;
	column-gap: 8px;
	display: inline-flex;
	justify-content: center;
}
.button.button_with_icon svg {
	fill: var(--color-green-1);
	height: 20px;
	width: 20px;
}

.content-box_gray {
	background-color: var(--color-gray-3);
}
.content-box_blue {
	background-color: var(--color-blue-1);
}
.content-box_green {
	background-color: var(--color-green-4);
}
.content-box__title {
	font-size: 1.875rem;
	font-weight: 700;
}
.content-box__subtitle {
	color: var(--color-gray-2);
	font-size: 1.125rem;
}
.content-box__text {
	font-size: 1.125rem;
	font-weight: 600;
}
.content-box__text ul > li,
.content-box__text ol > li {
	margin: 20px 0;
}

.tiny-slider {
	position: relative;
}
.tiny-slider .tns-controls button {
	background-color: var(--color-gray-1);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	font-size: 0;
	height: 28px;
	position: absolute;
	top: 50%;
	transition: .3s;
	width: 28px;
	z-index: 1;
}
.tiny-slider .tns-controls button[disabled] {
	pointer-events: none;
	opacity: 0;
}
.tiny-slider .tns-controls button:hover {
	background-color: var(--color-green-1);
}
.tiny-slider .tns-controls button::before {
	background: transparent;
	border-left: 2px solid #FFF;
	border-top: 2px solid #FFF;
	border-radius: 1px;
	content: '';
	height: 8px;
	left: 10px;
	position: absolute;
	top: 10px;
	width: 8px;
}
.tiny-slider .tns-controls button[data-controls='prev'] {
	left: -8px;
	transform: rotate(-45deg);
}
.tiny-slider .tns-controls button[data-controls='next'] {
	right: -8px;
	transform: rotate(135deg);
}

.breadcrumb {
	color: var(--color-gray-2);
	font-size: 1rem;
	margin: 20px 0;
}
.breadcrumb__item {
	display: inline-block;
}
.breadcrumb a {
	color: var(--color-gray-2);
	display: inline-block;
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb a::after {
	content: '/';
	display: inline-block;
	margin: 0 5px;
	vertical-align: middle;
}

.submenu {
	margin-bottom: 25px;
	position: relative;
}
.submenu::before {
	border-bottom: 2px solid var(--color-gray-4);
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	width: 100%;
}
.submenu__item {
	border-bottom: 2px solid transparent;
	color: var(--color-gray-2);
	font-size: .875rem;
	font-weight: 600;
	line-height: 1;
	padding: 8px 0;
	position: relative;
	text-align: center;
	text-decoration: none;
}
.submenu__item.active {
	border-bottom-color: var(--color-green-1);
	color: var(--color-green-1);
	font-weight: 700;
}

.inline-buttons-nav {
	column-gap: 10px;
	display: flex;
	overflow: auto;
}
.inline-buttons-nav__button {
	background-color: var(--color-green-4);
	color: var(--color-black);
}
.inline-buttons-nav__button:hover {
	background-color: var(--color-green-2);
	color: #FFF;
}
.inline-buttons-nav__button.active {
	background: var(--color-green-gradient);
	color: #FFF;
	text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.modal-dialog {
	background-color: #FFF;
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    box-sizing: border-box;
    cursor: default;
    display: none;
    max-width: 100%;
    overflow: hidden;
	padding: 35px 50px;
    position: relative;
    width: 430px;
}
.modal-dialog > .md__close {
	cursor: pointer;
    height: 35px;
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
}
.modal-dialog > .md__close::before,
.modal-dialog > .md__close::after {
    background: var(--color-gray-2);
    border-radius: 2px;
    content: '';
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 20px;
}
.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 {
    color: var(--color-black);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
    text-align: center;
}
.modal-dialog > .md__content {
}

.input-file {
	cursor: pointer;
	display: block;
}
.input-file__input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
.input-file__container {
	border-radius: 5px;
	padding: 5px;
}
.input-file__icon {
	fill: var(--color-gray-2);
	height: 18px;
	margin-right: 10px;
	width: 14px;
}
.input-file__text {
	color: var(--color-gray-2);
	font-size: .875rem;
}
.input-file__input:focus + .input-file__container {
	outline: 2px solid var(--color-black);
}
.input-file__input:focus + .input-file__container .input-file__text {
	font-weight: 700;
}

.simple-form .sf__field,
.simple-form .sf__note,
.simple-form .sf__footnote {
    margin-bottom: .75rem
}
.simple-form .sf__field {
    position: relative
}
.simple-form .sf__input,
.simple-form .sf__textarea {
    background-color: #F0F0F0;
	border: 0;
    box-sizing: border-box;
    border-radius: 5px;
    display: block;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1rem;
    padding: .75rem;
    width: 100%;
}
.simple-form input::placeholder,
.simple-form textarea::placeholder {
	color: var(--color-gray-2);
    font-size: .875rem;
    font-weight: 400;
}
.simple-form .sf__textarea {
    height: 100px
}
.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 {
    font-size: .875rem;
}
.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}

.user-form--container-400 {
	max-width: 400px;
	width: 100%;
}
.user-form--container-600 {
	max-width: 600px;
	width: 100%
}
.user-form__input,
.user-form__textarea {
	box-sizing: border-box;
	border: 1px solid var(--color-gray-1);
	border-radius: 10px;
	display: block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	padding: 10px;
	width: 100%;
}
.user-form__label {
	margin-bottom: 5px;
	display: block;
}
.user-form__row:not(:last-child) {
	margin-bottom: 10px;
}
.user-form__agreement {
	color: var(--color-gray-2);
	font-size: .875rem;
}
.user-form__password-notice {
	color: var(--color-gray-2);
	font-size: .875rem;
}
.user-form__password-notice ul {
	display: block;
	list-style: none;
	margin: 5px 0 0 0;
	padding-left: 10px;
}

.pagination {
	justify-content: center;
    margin: 20px 0;
}
.pagination > div {
    margin: 0 2px;
}
.pagination > div > a {
    border-radius: 5px;
    box-sizing: border-box;
    color: var(--color-green-1);
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    min-width: 30px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
}
.pagination > div > a:hover {
    background-color: var(--color-gray-3);
}
.pagination > div.active > a {
    background-color: var(--color-green-1);
    color: #FFF;
}
.pagination > div > a.arrow {
	background-color: var(--color-gray-1);
	border-radius: 50%;
	display: block;
	font-size: 0;
	height: 30px;
	padding: 0;
	position: relative;
	width: 30px;
}
.pagination > div > a.arrow:hover {
	background-color: var(--color-gray-2);
}
.pagination > div > a.arrow::after {
	border: 2px solid #FFF;
	border-bottom-width: 0;
	border-right-width: 0;
	content: '';
	height: 6px;
	left: 12px;
	position: absolute;
	top: 12px;
	width: 6px;
}

.pagination > div > a.prev {
	transform: rotate(-45deg);
}
.pagination > div > a.next {
	transform: rotate(135deg);
}

.text-content {
    font-size: .875rem;
}
.text-content p,
.text-content pre {
    margin: 1em 0;
}
.text-content a,
.link {
    color: var(--color-green-1);
	text-decoration-style: dashed;
	text-underline-offset: 2px;
}
.text-content img {
    height: auto;
    max-width: 100%;
}
.text-content table {
    border-collapse: collapse;
    max-width: 100%;
}
.text-content table td {
    font-size: .875rem;
    padding: 5px 10px;
    vertical-align: top;
}
.text-content blockquote {
    border-left: 2px solid var(--color-green-1);
    color: var(--color-green-1);
    font-style: italic;
    margin: 20px 0 20px 20px;
    padding: 10px 0 10px 20px;
}
.text-content hr {
    border: 0;
    border-top: 2px solid var(--color-green-1);
    margin: 20px 0;
}
.text-content ul,
.text-content ol {
    margin: 20px 0 20px 15px;
    padding: 0;
}
.text-content ul li,
.text-content ol li {
    margin: 10px 0;
	padding: 0;
}

.text-content ul li {
	list-style: none;
	position: relative;
}
.text-content ul li::before {
	background: linear-gradient(40deg, var(--color-green-1) 10%, var(--color-green-2) 60%, var(--color-green-3) 100%);
	border-radius: 50%;
	content: '';
	height: 6px;
	left: -15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
}

.front-section__title {
	color: var(--color-black);
	font-size: 1.875rem;
	font-weight: 700;
}
.front-section__subtitle {
	color: var(--color-gray-2);
	font-size: 1rem;
}

.profile-link {
	color: var(--color-gray-2);
	text-decoration: none;
}
.profile-link__ico {
	display: block;
	fill: var(--color-gray-2);
	height: 16px;
	margin: 0 auto;
	width: 17px;
}
.profile-link__name {
	display: block;
	font-size: .875rem;
	line-height: 1;
	padding: 5px 0;
}

.profile-menu {
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
	box-sizing: border-box;
	padding: 0 10px 15px 10px;
}
.profile-menu__item {
	padding: 5px 0;
	transition: .2s;
	position: relative;
}
.profile-menu__item:not(:last-child) {
	border-bottom: 1px solid var(--color-gray-1);
}
.profile-menu__link {
	color: var(--color-gray-2);
	line-height: 1;
	padding: 10px 2px;
	text-decoration: none;
	cursor: pointer;
}
.profile-menu__link.active {
	color: var(--color-black);
	font-weight: 600;
}

.profile-menu__item:not(.active) .profile-menu__submenu {
	display: none;
}
.profile-menu__subitem-link {
	color: var(--color-gray-2);
	line-height: 1;
	padding: 10px 2px;
	text-decoration: none;
	position: relative;
}
.profile-menu__subitem-link.active {
	color: var(--color-black);
	font-weight: 600;
}
.profile-menu__ico {
	fill: var(--color-gray-2);
	height: 20px;
	margin-right: 10px;
	width: 20px;
}

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

.header,
.footer {
	flex: 0 0 auto;
	width: 100%;
}
.main {
	flex: 1 0 auto;
}

.footer {
	background-color: #252525;
	padding-top: 20px;
}
.footer__top {
	border-bottom: 1px solid var(--color-gray-1);
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.footer__link {
	color: #FFF;
	font-size: .875rem;
	text-decoration: none;
}

.footer-soc-links__link {
	align-items: center;
	background-color: #424249;
	border-radius: 50%;
	display: flex;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.footer__copyright {
	color: var(--color-gray-1);
	font-size: .875rem;
}

.footer__informer {
	background-color: #52525B;
	color: #FFF;
	font-size: .875rem;
	font-weight: 500;
	margin-top: 25px;
	padding: 20px 30px;
}
.footer__informer a {
	color: inherit;
	text-decoration: underline;
}

.profile__title {
	color: var(--color-black);
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.vacancies__item {
	background-color: var(--color-gray-3);
	border-radius: 10px;
}
.vacancies__name {
	color: var(--color-black);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 5px;
}
.vacancies__image > img {
	display: block;
}

.vacancies-menu {
	margin: 15px 0;
	width: 100%;
}
.vacancies-menu__item {
	background-color: var(--color-gray-3);
	border-radius: 6px;
	box-sizing: border-box;
	color: var(--color-gray-2);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-decoration: none;
}
.vacancies-menu__item.active {
	background-color: var(--color-green-1);
	color: #FFF;
}

.vacancy-page {
	margin-top: 30px;
}
.vacancy-page__name {
	font-size: 1.25rem;
	font-weight: 600;
}
.vacancy-page__image > img {
	display: block;
}

.location-city {
	align-items: center;
	cursor: default;
	display: flex;
	gap: 8px;
}
.location-city__ico {
	fill: var(--color-gray-1);
	height: 16px;
	width: 12px;
}
.location-city__name {
	color: var(--color-gray-2);
	font-size: .875rem;
	font-weight: 500;
}

.header-search {
	position: relative;
	width: 100%;
}
.header-search__field {
	background-color: var(--color-black);
	border: 2px solid transparent;
	border-radius: 10px;
	box-sizing: border-box;
	display: flex;
	height: 40px;
	z-index: 1;
}
.header-search__input {
	background: #FFF;
	border: none;
	border-radius: 8px;
	box-sizing: border-box;
	display: block;
	font-size: 1rem;
	height: 100%;
	line-height: 40px;
	outline: none;
	padding: 0 45px 0 20px;
	width: 100%;
}

.header-search__btn {
	align-items: center;
	background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADfSURBVHgBlZA9EoIwEIUTPQUdN9CCvzKewCtwE/AEeAQsrdTSCqxp4gmkoqamIL51lkyGGYbxzWyW7O637EYKVhAESkqZwRTdjTE13KVpmlI42tIRRREVlrAedkXoSSAs9TxPdF33skQYhikAgz/kYibEc84pG4zjuELwIxZEOTStpvsGsyrYYwng3N4FevGHNpDGcselAs69LYDACd7HYtm8GLMXlMMUd9uADnoNOALaaR/u7HNdOwzDQWvdSqdbSu8OYMcAjXGGFQz+IClWlCSJP45jxaPVq4AD3ej7C9v3W+rCpVPzAAAAAElFTkSuQmCC') no-repeat 50%;
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	height: 100%;
	padding: 0;
	width: 45px;
}
.header-search__ico {
	fill: #FFF;
	height: 15px;
	width: 15px;
}

.front-banners__item {
	background-color: var(--color-gray-3);
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}
.front-banners__item_blue {
	background-color: var(--color-blue-1);
}
.front-banners__item_green {
	background-color: var(--color-green-4);
}
.front-banners__item_title {
	font-weight: 700;
	color: var(--color-black);
}
.front-banners__item_description {
	color: var(--color-gray-2);
}
.front-banners__item_img {
	position: absolute;
	right: 0;
	bottom: 0;
}

.vertical-videos__slide {
	border-radius: 20px;
	display: block;
	overflow: hidden;
	position: relative;
	width: 264px;
}
.vertical-videos__slide > img {
	display: block;
}
.vertical-videos__admin-controls {
	background-color: rgba(255, 255, 255, .7);
	left: 0;
	padding: 8px;
	position: absolute;
	top: 0;
}
.vertical-videos__modal {
	height: 100%;
	margin: 0 auto;
}
.vertical-videos__frame {
	border: none;
	display: block;
	max-height: 100%;
	width: 100%;
}

.our-works__gallery {
	position: relative;
}
.our-works__grid {
	display: grid;
	grid-template-areas:
        "i1 i4 i6"
        "i2 i5 i6"
        "i3 i5 i7";
}
.our-works__image {
	border-radius: 10px;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, .5);
	outline: none;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}
.our-works__image > img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: 50%;
	width: 100%;
}
.our-works__image:nth-child(1) {
	grid-area: i1;
}
.our-works__image:nth-child(2) {
	grid-area: i2;
}
.our-works__image:nth-child(3) {
	grid-area: i3;
}
.our-works__image:nth-child(4) {
	grid-area: i4;
}
.our-works__image:nth-child(5) {
	grid-area: i5;
}
.our-works__image:nth-child(6) {
	grid-area: i6;
}
.our-works__image:nth-child(7) {
	grid-area: i7;
}

.call-engineer {
	background: var(--color-green-gradient);
	border-radius: 20px;
}
.call-engineer__wrapper {
	background-image: url("/static/img/pattern.png");
	background-position: 50% 0;
	background-repeat: no-repeat;
}
.call-engineer__title {
	color: #FFF;
	font-weight: 500;
	text-align: center;
}
.call-engineer__title > span {
	display: block;
	font-weight: 700;
}
.call-engineer__form {
	background-color: #FFF;
	border-radius: 20px;
	margin: 0 auto;
}
.call-engineer__form .user-form__label {
	color: var(--color-gray-2);
}
.call-engineer__form .user-form__input {
	height: 60px;
	padding: 0 18px;
}

.reviews-about-us {
	position: relative;
}
.reviews-about-us__item {
	border: 1px solid var(--color-gray-1);
	border-radius: 20px;
	box-sizing: border-box;
	height: 100%;
}
.reviews-about-us__avatar {
	margin-right: 5px;
}
.reviews-about-us__head {
	overflow: hidden;
	position: relative;
}
.reviews-about-us__head::after {
	background: linear-gradient(to right, transparent, #FFF);
	bottom: 0;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 8px;
}
.reviews-about-us__name {
	color: var(--color-black);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 5px;
	white-space: nowrap;
}
.reviews-about-us__avatar_ph {
	background-color: var(--color-green-2);
	border-radius: 50%;
	font-size: 1.125rem;
	font-weight: 700;
	height: 55px;
	width: 55px;
}
.reviews-about-us__content {
	padding-bottom: 18px;
	position: relative;
}
.reviews-about-us__text {
	color: var(--color-gray-2);
	min-height: 120px;
	overflow-y: hidden;
}
.reviews-about-us__item:not(.active) .reviews-about-us__text {
	max-height: 120px;
}
.reviews-about-us__readmore {
	bottom: 0;
	color: var(--color-black);
	font-size: .875rem;
	line-height: 1;
	position: absolute;
	right: 0;
	text-decoration: underline;
}
.reviews-about-us__readmore::before {
	content: 'Подробнее';
}
.reviews-about-us__item.active .reviews-about-us__readmore::before {
	content: 'Свернуть';
}
.reviews-about-us__date {
	color: var(--color-gray-2);
	font-size: .875rem;
	line-height: 1;
	margin-left: 5px;
}
.reviews-about-us .tns-controls button {
	top: 100px;
}

.reviews-about-us__services_title {
	color: var(--color-gray-2);
	font-size: 1.25rem;
	font-weight: 600;
	text-align: right;
}

.reviews-rating {
	display: flex;
	column-gap: 3px;
}
.reviews-rating > span {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNCAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuMDQ4OTQgMC45MjcwNTJDNi4zNDgzIDAuMDA1NzQxNiA3LjY1MTcgMC4wMDU3NDA4OCA3Ljk1MTA2IDAuOTI3MDUyTDguNzk2MTEgMy41Mjc4NkM4LjkyOTk5IDMuOTM5ODkgOS4zMTM5NCA0LjIxODg1IDkuNzQ3MTcgNC4yMTg4NUgxMi40ODE4QzEzLjQ1MDUgNC4yMTg4NSAxMy44NTMzIDUuNDU4NDYgMTMuMDY5NiA2LjAyNzg2TDEwLjg1NzIgNy42MzUyNUMxMC41MDY3IDcuODg5OSAxMC4zNjAxIDguMzQxMjcgMTAuNDk0IDguNzUzMjlMMTEuMzM5IDExLjM1NDFDMTEuNjM4NCAxMi4yNzU0IDEwLjU4MzkgMTMuMDQxNSA5LjgwMDE3IDEyLjQ3MjFMNy41ODc3OSAxMC44NjQ3QzcuMjM3MyAxMC42MTAxIDYuNzYyNyAxMC42MTAxIDYuNDEyMjIgMTAuODY0N0w0LjE5OTgzIDEyLjQ3MjFDMy40MTYxMiAxMy4wNDE1IDIuMzYxNjQgMTIuMjc1NCAyLjY2MDk5IDExLjM1NDFMMy41MDYwNCA4Ljc1MzI5QzMuNjM5OTIgOC4zNDEyNyAzLjQ5MzI2IDcuODg5OSAzLjE0Mjc3IDcuNjM1MjVMMC45MzAzOTEgNi4wMjc4N0MwLjE0NjY3NyA1LjQ1ODQ2IDAuNTQ5NDUyIDQuMjE4ODUgMS41MTgxOCA0LjIxODg1SDQuMjUyODNDNC42ODYwNiA0LjIxODg1IDUuMDcwMDEgMy45Mzk4OSA1LjIwMzg5IDMuNTI3ODZMNi4wNDg5NCAwLjkyNzA1MloiIGZpbGw9IiNGMEE4MUMiLz4KPC9zdmc+Cg==");
	height: 13px;
	width:14px;
}

.reviews-rating[data-rating='1'] > span:nth-child(1) ~ span,
.reviews-rating[data-rating='2'] > span:nth-child(2) ~ span,
.reviews-rating[data-rating='3'] > span:nth-child(3) ~ span,
.reviews-rating[data-rating='4'] > span:nth-child(4) ~ span,
.reviews-rating[data-rating='5'] > span:nth-child(5) ~ span {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNCAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuMDQ4OTQgMC45MjcwNTJDNi4zNDgzIDAuMDA1NzQxNiA3LjY1MTcgMC4wMDU3NDA4OCA3Ljk1MTA2IDAuOTI3MDUyTDguNzk2MTEgMy41Mjc4NkM4LjkyOTk5IDMuOTM5ODkgOS4zMTM5NCA0LjIxODg1IDkuNzQ3MTcgNC4yMTg4NUgxMi40ODE4QzEzLjQ1MDUgNC4yMTg4NSAxMy44NTMzIDUuNDU4NDYgMTMuMDY5NiA2LjAyNzg2TDEwLjg1NzIgNy42MzUyNUMxMC41MDY3IDcuODg5OSAxMC4zNjAxIDguMzQxMjcgMTAuNDk0IDguNzUzMjlMMTEuMzM5IDExLjM1NDFDMTEuNjM4NCAxMi4yNzU0IDEwLjU4MzkgMTMuMDQxNSA5LjgwMDE3IDEyLjQ3MjFMNy41ODc3OSAxMC44NjQ3QzcuMjM3MyAxMC42MTAxIDYuNzYyNyAxMC42MTAxIDYuNDEyMjIgMTAuODY0N0w0LjE5OTgzIDEyLjQ3MjFDMy40MTYxMiAxMy4wNDE1IDIuMzYxNjQgMTIuMjc1NCAyLjY2MDk5IDExLjM1NDFMMy41MDYwNCA4Ljc1MzI5QzMuNjM5OTIgOC4zNDEyNyAzLjQ5MzI2IDcuODg5OSAzLjE0Mjc3IDcuNjM1MjVMMC45MzAzOTEgNi4wMjc4N0MwLjE0NjY3NyA1LjQ1ODQ2IDAuNTQ5NDUyIDQuMjE4ODUgMS41MTgxOCA0LjIxODg1SDQuMjUyODNDNC42ODYwNiA0LjIxODg1IDUuMDcwMDEgMy45Mzk4OSA1LjIwMzg5IDMuNTI3ODZMNi4wNDg5NCAwLjkyNzA1MloiIGZpbGw9IiNCQUJBQkEiLz4KPC9zdmc+Cg==");
}

.contacts-common {
	display: grid;
	grid-template-columns: 1fr;
}
.contacts-common__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.contacts-soc__item {
	transition: .2s;
}
.contacts-soc__item:hover {
	transform: translateY(-2px);
}
.contacts-soc__item > img {
	display: block;
}
.contacts-soc__item_shadowed {
	border-radius: 7px;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, .4);
}

.contact-addresses__item {
	border-top: 1px solid var(--color-gray-4);
}
.contact-addresses__address {
	font-weight: 700;
	margin-bottom: 10px;
}
.contact-addresses__address-ico {
	display: inline-block;
	fill: var(--color-green-1);
	margin-right: 5px;
}
.contact-addresses__schedule {
	line-height: 1.4;
	margin-top: 10px;
}
.contact-addresses__cols {
	display: grid;
	margin-top: 10px;
}
.contact-addresses__photo {
	object-fit: cover;
	object-position: 50%;
}
.contact-addresses__map > iframe {
	border: 1px solid var(--color-gray-1);
	height: 100%;
	width: 100%;
}

.gray-block {
	background-color: var(--color-gray-3);
	border-radius: 10px;
	column-gap: 60px;
}

.our-history {
	padding-top: 50px;
	position: relative;
}
.our-history__arrow {
	background: linear-gradient(to bottom, var(--color-green-1) 10%, var(--color-green-3) 100%);
	bottom: 0;
	left: 8px;
	position: absolute;
	top: 3px;
	z-index: 1;
}
.our-history__arrow > svg {
	fill: var(--color-green-1);
	position: absolute;
	transform: rotate(180deg);
}
.our-history__date {
	box-sizing: border-box;
	position: relative;
}
.our-history__date::before {
	background-color: #DFA81B;
	border-radius: 50%;
	content: '';
	height: 22px;
	left: 0;
	position: absolute;
	top: 0;
	width: 22px;
	z-index: 2;
}
.our-history__text {
	background-color: var(--color-gray-3);
	border-radius: 20px;
}

.services-categories {
	display: grid;
}
.services-categories__item {
	background-color: var(--color-green-4);
	display: flex;
	flex-direction: column;
}
.services-categories__heading {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 10px 0;
}
.services-categories__name {
	align-items: center;
	display: flex;
	font-weight: 700;
}
.services-categories__image {
	border-radius: 10px;
	height: auto;
	width: 100%;
}

.services-advantages {
	display: grid;
}
.services-advantages__item {
	background-color: var(--color-gray-3);
	border-radius: 20px;
}
.services-advantages__title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}
.services-advantages__description {
	font-size: 1.25rem;
	margin-top: 10px;
	text-align: center;
}

.tender-department__btn {
	padding: 8px 35px;
	align-self: flex-start;
	font-size: 1.125rem;
	line-height: 1.5625rem;
}
.tender-department__subtitle,
.tender-department__item_subtitle {
	opacity: 0.8;
}
.tender-department__item_content {
	max-width: 70%;
}
.tender-department__item_wrapper {
	text-align: right;
}
.tools-for-rent__btn {
	padding: .5rem 3.75rem;
	font-size: 1.125rem;
	line-height: 1.5625rem;
}

.service-center__item {
	border-radius: 30px;
	text-align: center;
	background-repeat: no-repeat;
}
.service-center__item_bg1 {
	background-image: url('/img/service-center/diagnostic.png');
}
.service-center__item_bg2 {
	background-image: url('/img/service-center/inform.png');
}
.service-center__item_bg3 {
	background-image: url('/img/service-center/repair.png');
}

.payment-methods__item {
	box-sizing: border-box;
}
.payment-methods__wrapper {
	display: flex;
	flex-shrink: 0;
}

.installment__gray-block {
	background-color: var(--color-gray-3);
}
.installment__img {
	object-fit: cover;
}
.installment__title,
.installment__description,
.installment__subtitle,
.installment__count,
.installment__percent  {
	margin: 0;
}
.installment__bet {
	border: 1px solid var(--color-gray-1);
	border-radius: 20px;
	text-align: center;
}
.installment__count {
	border-bottom: 3px solid var(--color-green-1);
}
.installment__overpayment {
	color: var(--color-gray-2);
}

.delivery__item {
	border-radius: 20px;
	border: 1px solid var(--color-gray-1);
	text-align: center;
	background-repeat: no-repeat;
}
.delivery__item_bg-1 {
	background-image: url('/img/delivery/delivery-icon-1.png');
}
.delivery__item_bg-2 {
	background-image: url('/img/delivery/delivery-icon-2.png');
}
.delivery__item_bg-3 {
	background-image: url('/img/delivery/delivery-icon-3.png');
}
.delivery__item_bg-4 {
	background-image: url('/img/delivery/delivery-icon-4.png');
}
.delivery__title,
.delivery__subtitle {
	margin: 0;
}

.about-us__title,
.about-us__descr {
	margin: 0;
}
.about-us__welcome {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('/img/about-us/welcome-bg.png');
}
.about-us__white-block {
	border: 1px solid var(--color-gray-1);
	background: #FFF;
	color: var(--color-gray-2);
}
.about-us__item {
	box-sizing: border-box;
	border-radius: 20px;
	background-color: var(--color-gray-3);
	text-align: center;
	background-repeat: no-repeat;
}
.about-us__item_bg-1 {
	background-image: url('/img/about-us/item_bg-1.png');
}
.about-us__item_bg-2 {
	background-image: url('/img/about-us/item_bg-2.png');
}
.about-us__item_bg-3 {
	background-image: url('/img/about-us/item_bg-3.png');
}
.about-us__item_bg-4 {
	background-image: url('/img/about-us/item_bg-4.png');
}
.about-us__item_bg-5 {
	background-image: url('/img/about-us/item_bg-5.png');
}
.about-us__item_bg-6 {
	background-image: url('/img/about-us/item_bg-6.png');
}
.about-us__item_bg-7 {
	background-image: url('/img/about-us/item_bg-7.png');
}
.about-us__item_bg-8 {
	background-image: url('/img/about-us/item_bg-8.png');
}
.about-us__subtitle {
	margin: 0 0 10px;
	font-weight: 600;
}
.about-us__geography .about-us__subtitle {
	max-width: 555px;
	color: var(--color-gray-2);
}
.about-us__regions-wrapper {
	box-sizing: border-box;
	background: var(--color-gray-3);
	border-radius: 20px;
}
.about-us__regions {
	overflow-y: auto;
	height: 100%;
}
.about-us__region {
	position: relative;
	line-height: 1.5625rem;
	margin-bottom: 5px;
	padding-left: 15px;
}
.about-us__region::before {
	content:"\2022";
	position: absolute;
	left: 0;
	color: var(--color-gray-2);
}
.about-us__text-content .about-us__descr {
	color: var(--color-gray-2);
}
.about-us__text-content .about-us__descr:not(:last-child) {
	margin-bottom: 1rem;
}

.become-provider__block {
	background: var(--color-gray-3);
}
.become-provider__form {
	box-sizing: border-box;
	max-width: 575px;
	border: 1px solid var(--color-gray-4);
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
	background: #FFFFFF;
}
.become-provider__form .sf__textarea {
	resize: none;
}
.become-provider__btn {
	padding: 8px 30px;
	font-size: 1.125rem;
	line-height: 1.5625rem;
	display: block;
	margin: 0 auto;
}

/* Стили для страниц Кондиционеры, Видеонаблюдение, Вентиляция в разделе Услуги */

.service-form-banner {
	background-color: var(--color-green-4);
}
.service-form-banner__cover {
	display: block;
}
.service-form-banner__title {
	font-weight: 700;
	line-height: 1.2;
}
.service-form-banner__subtitle {
	line-height: 1.2;
	margin-top: 5px;
}
.service-form-banner__form {
	margin-top: 15px;
}
.service-form-banner__form .user-form__label {
	color: var(--color-gray-2);
}

.about-service {
	display: grid;
}
.about-service .text-content {
	font-size: 1rem;
}
.about-service__image {
	border-radius: 20px;
	display: block;
	width: 100%;
}
.about-service__list {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}
.about-service__list-item {
	background-color: var(--color-gray-3);
	border-radius: 20px;
	column-gap: 15px;
	display: flex;
	font-size: 1.375rem;
	font-weight: 600;
	padding: 26px 20px 26px 75px;
	position: relative;
}
.about-service__list-item > img {
	left: 20px;
	position: absolute;
	top: 20px;
}

.technical-support-banner {
	overflow: hidden;
}
.technical-support-banner__img {
	display: block;
	width: 100%;
}
.technical-support-banner__content {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.pluses {
	display: grid;
}
.pluses__item {
	background: var(--color-gray-3);
	box-sizing: border-box;
}
.pluses__title {
	color: var(--color-green-1);
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.process__title {
	color: var(--color-green-1);
	font-size: 1.875rem;
	font-weight: 700;
}
.process__stages {
	background: var(--color-green-gradient);
	counter-reset: item;
}
.process__stage {
	background-color: #FFF;
	counter-increment: item;
	display: flex;
	flex-direction: column;
}
.process__stage::before {
	content: counter(item);
	line-height: 1;
}
.process__stage-text {
	font-size: 1rem;
	font-weight: 600;
}
.process__stage-text > span {
	color: var(--color-green-1);
}

/* Школа Глобалтек */

.school-menu__btn {
	color: var(--color-gray-2);
	text-decoration: none;
	font-weight: 600;
	padding: 7px 5px;
	border-bottom: 4px solid #fff;
}
.school-menu__btn.active {
	border-bottom-color: var(--color-green-1);
	color: var(--color-green-1);
}

.school__title,
.school-search__text-content p,
.school-analogs__title,
.installation-item__title {
	margin: 0;
}
.school-search {
	margin-bottom: 20px;
	background: var(--color-gray-3);
}
.school-search__text-content {
	margin-bottom: 20px;
}
.school-search__text-content p:not(:last-child) {
	margin: 0 0 10px;
}
.school-search__text-content strong {
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.6875rem;
}
.school-search__form {
	position: relative;
	margin-bottom: 10px;
}
.school-search__input {
	box-sizing: border-box;
	width: 100%;
	border: none;
	outline: none;
	line-height: 1.375rem;
}
.school-search__btn {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	width: 48px;
	z-index: 2;
	border: none;
	background-color: var(--color-green-1);
	background-image: url('/img/school/search.png');
	background-repeat: no-repeat;
	background-position: 50%;
	cursor: pointer;
}
.school-search__tag {
	background-color: var(--color-gray-1);
	border-radius: 4px;
	color: var(--color-black);
	padding: 5px 15px;
	text-decoration: none;
	transition: transform .3s, background-color .3s;
}
.school-search__tag.active {
	background-color: var(--color-green-1);
	color: #FFF;
}

.training-item {
	box-sizing: border-box;
}
.training-item__img {
	object-fit: cover;
}
.training-item__title {
	margin: 0;
	font-weight: 700;
}
.training-item__descr {
	margin: 0;
	max-width: 585px;
}
.training-item__btn {
	align-self: flex-start;
	font-size: 1rem;
	line-height: 1.5625rem;
}
.school-show-more {
	display: block;
	background: var(--color-gray-3);
	text-align: center;
	padding: 14px 0;
	text-decoration: none;
	color: var(--color-gray-2);
	border-radius: 8px;
}
.school__subtitle {
	margin: 0;
	font-weight: 600;
}
.school-analogs__item {
	text-decoration: none;
	color: var(--color-black);
}
.school-analogs__img {
	border-radius: 8px;
	display: block;
	object-fit: cover;
	margin-bottom: 5px;
	width: 100%;
}
.school-installation {
	background-repeat: no-repeat;
	background-position: top center;
}
.school-installation h1 {
	color: #fff
}
.school-installation .school-menu__btn {
	padding-left: 20px;
	padding-right: 20px;
	color: #fff;
}
.school-installation .school-menu__btn.active {
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	border-radius: 8px 8px 0 0;
}

.school-installation .school-menu__btn.active {
	color: var(--color-black);
}
.school-installation .school__title {
	color: #fff;
}
.school-installation .school-search {
	background: rgba(236, 236, 236, 0.7);
}
.installation-group {
	margin-bottom: 40px;
}
.installation-group__title {
	column-gap: 5px;
	color: var(--color-black);
	font-weight: 700;
	text-decoration: none;
	margin-bottom: 15px;
}
.installation-item {
	font-weight: 500;
	color: var(--color-black);
	text-decoration: none;
}
.installation-item__img {
	border-radius: 8px;
}
.installation-group:not(.active) .installation-list {
	display: none;
}
.installation-item__descr {
	margin: 0 0 5px 0;
	font-size: 0.75rem;
	line-height: 1rem;
	display: none;
}
.installation-item__text-content {
	box-sizing: border-box;
}
.installation-post__wrapper {
	background: rgba(236, 236, 236, 0.7);
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
}
.installation-post__video {
	width: 100%;
	border: none;
}
.installation-post__title {
	font-weight: 700;
}

.catalog__list {
	column-gap: 2%;
	row-gap: 10px;
}
.catalog__card {
	border: 1px solid rgba(95, 95, 95, 0.30);
	box-sizing: border-box;
	transition: all .2s ease-in-out;
}
.catalog__card-link {
	box-sizing: border-box;
	height: 100%;
	padding: 15px;
	row-gap: 15px;
	text-decoration: none;
	text-align: center;
}
.catalog__card-title {
	color: var(--color-black);
	font-weight: 700;
}
.catalog__card-img {
	object-fit: contain;
	width: 100%;
}

.categories-widget {
	background-color: var(--color-gray-3);
	border-radius: 20px;
	overflow: hidden;
}
.categories-widget .tns-ovh {
	overflow: visible !important;
}
.categories-widget__item {
	background-color: #FFF;
	border-radius: 20px;
	box-sizing: border-box;
	display: block;
	padding: 15px;
	width: 320px;
}
.categories-widget__image {
	display: block;
}
.categories-widget__image > img {
	display: block;
	height: 170px;
	margin: 0 auto;
}
.categories-widget__name {
	color: var(--color-black);
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	height: 2.25rem;
	line-height: 1.125rem;
	margin-top: 30px;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
}

.filter__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3rem;
}
.filter__reset-btn {
	color: var(--color-gray-1);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3rem;
	padding-left: 18px;
	position: relative;
	text-decoration: none;
}
.filter__reset-btn::before,
.filter__reset-btn::after {
    background-color: var(--color-gray-1);
    border-radius: 2px;
    content: '';
    height: 2px;
	left: 0;
	position: absolute;
    width: 15px;
}
.filter__reset-btn::before {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.filter__reset-btn::after {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}
.filter__container {
	border-radius: 10px;
	box-shadow: 0 0 10px 0 rgba(95, 95, 95, 0.30);
	box-sizing: border-box;
	padding: 16px;
}
.filter-scroll {
	height: 188px;
	overflow-y: scroll;
}
.filter__attribute:not(:last-child) {
	margin-bottom: 20px;
}
.filter__attribute-title {
	column-gap: 5px;
	cursor: pointer;
	font-weight: 600;
	margin-bottom: 10px;
}
.filter__attribute-arrow {
	fill: var(--color-black);
	flex: 0 0 auto;
	height: 5px;
	transform: rotate(-180deg);
	transition: all .2s ease-in-out;
	width: 10px;
	position: relative;
	top: 9px;
}
.filter__attribute:not(.active) .filter__attribute-arrow {
	transform: rotate(0);
}
.filter__attribute:not(.active) .filter__attribute-values {
	opacity: 0;
	z-index: -1;
	position: absolute;
}
.filter__container:not(.active) .filter__attribute-additional {
	opacity: 0;
	z-index: -1;
	position: absolute;
}
.filter__checkbox {
	cursor: pointer;
	display: block;
}
.filter__checkbox:not(:last-child) {
	margin-bottom: 8px;
}
.filter__checkbox-choice {
	display: none;
}
.filter__checkbox-span {
	padding-left: 20px;
	position: relative;
	display: block;
	line-height: 1.25rem;
}
.filter__checkbox-span::before {
    background: #FFF;
    border: 1px solid var(--color-gray-1);
    border-radius: 4px;
    box-sizing: border-box;
    content: '';
    display: block;
    height: 15px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
}
.filter__checkbox-choice[type="radio"] + .filter__checkbox-span::before {
	border-radius: 10px;
}
.filter__checkbox-choice:checked + .filter__checkbox-span::before {
    background: var(--color-green-1 );
    border: none;
}
.filter__checkbox-choice:checked + .filter__checkbox-span::after {
    background: transparent;
    border: 0 solid #FFF;
    border-bottom-width: 2px;
    border-left-width: 2px;
    content: '';
	display: block;
    height: 4px;
    left: 5px;
    position: absolute;
    top: calc(50% - 2px);
    transform: rotate(-45deg) translateY(-50%);
    width: 7px;
}
.filter__show-more-btn {
	color: var(--color-green-1);
	column-gap: 6px;
	cursor: pointer;
	font-weight: 600;
}
.filter__attribute-arrow_green {
	fill: var(--color-green-1);
	transform: rotate(0);
}

.filter__container.active .filter__show-more-btn .filter__attribute-arrow_green {
	transform: rotate(180deg);
}

/* noUi slider */
.products-filter__range-inputs {
	font-size: .875rem;
}
.products-filter__input {
	border: 1px solid var(--color-gray-1);
	border-radius: 5px;
	box-sizing: border-box;
	color: var(--color-black);
	font-size: 1rem;
	outline: none;
	padding: 5px;
	text-align: center;
	width: 90px;
}
.products-filter__input:focus {
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
}
.products-filter__range-slider {
	margin: 5px 0 15px 4px;
}
.noUi-target,
.noUi-target * {
	box-sizing:border-box;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-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{
	background:#FFF;
	height:4px;
	position:relative;
}
.noUi-base {
	background: var(--color-gray-5);
	border-radius: 6px;
}
.noUi-base,
.noUi-connects {
	height: 100%;
	position:relative;
	width:95%;
	z-index:1
}
.noUi-connect,
.noUi-origin {
	position:absolute;
	top:0;
	-webkit-transform-origin:0 0;
	transform-origin:0 0;
	-webkit-transform-style:preserve-3d;
	transform-style:flat;
	width:100%;
	will-change:transform;
	z-index:1
}
.noUi-connect {
	background: var(--color-gray-5);
	left:0;
	height:100%
}
.noUi-origin {
	left:auto;
	height:0
}
.noUi-handle {
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	background: var(--color-green-1);
	border-radius:50%;
	cursor:pointer;
	position:absolute;
	right:-12px;top:-6px;
	width:16px;height:16px
}
.noUi-tooltip {
	font-size: .875rem;
	position:absolute;
	left:50%;top:-19px;
	text-align:center;
	transform:translate(-50%, 0);
	white-space:nowrap
}
.filter__attribute-values .noUi-tooltip {
	display: none;
}

.search-presets {
	column-gap: 10px;
	display: flex;
	margin-bottom: 15px;
	overflow-x: auto;
}
.search-presets__item {
	background-color: var(--color-gray-3);
	border-radius: 8px;
	color: var(--color-gray-2);
	font-size: .875rem;
	font-weight: 500;
	padding: 6px 15px;
	text-decoration: none;
	white-space: nowrap;
}
.search-presets__item.active {
	background-color: var(--color-green-4);
}

.products__grid {
	display: grid;
}
.products__item {
	border: 1px solid #D2D2D2;
	border-radius: 10px;
	box-sizing: border-box;
	position: relative;
}
.products__item .tns-nav {
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}
.product__container {
	margin-bottom: 10px;
	position: relative;
}
.product__favorite {
	background-color: var(--color-gray-2);
	bottom: 0;
	position: absolute;
	right: 0;
}
.product__favorite[data-is-in-bookmarks="1"] {
	background-color: var(--color-green-1);
}
.icon-favorite {
	height: 15px;
	fill: transparent;
	stroke: #FFF;
	width: 15px;
}
.product__favorite[data-is-in-bookmarks="1"] .icon-favorite {
	fill: #FFF;
}
.product__slider {
	margin: 0 auto;
	max-width: 250px;
	position: relative;
}
.product__slider-img {
	display: block;
	object-fit: contain;
	width: 100%;
}
.product .tns-nav {
	column-gap: 5px;
	display: flex;
	justify-content: center;
}
.product .tns-nav button {
	background-color: var(--color-gray-1);
	border: none;
	border-radius: 50%;
	height: 8px;
	padding: 0;
	width: 8px;
}
.product .tns-nav button.tns-nav-active {
	background-color: var(--color-gray-2);
}
.product__code {
	color: var(--color-gray-2);
	font-size: .875rem;
	margin-bottom: 5px;
}
.product__name {
	color: var(--color-black);
	overflow: hidden;
	text-decoration: none;
	text-overflow: ellipsis;
}
.product__statistics {
	color: var(--color-gray-2);
	column-gap: 25px;
	font-size: .875rem;
	font-weight: 500;
}
.product__icon_star {
	fill: #FED700;
}
.product__icon_review {
	fill: #FFF;
	stroke: var(--color-black);
}
.product__price {
	font-weight: 600;
}
.product__old-price {
	font-weight: 600;
	white-space: nowrap;
	color: var(--color-gray-2);
	text-decoration: line-through;
}
.product__price-title {
	color: #A0A0A0;
}

.product__status {
	font-size: .875rem;
	line-height: 1.5rem;
}
.product__status_green {
	color: var(--color-green-1);
}
.product__status_red {
	color: var(--color-red-1);
}
.product__in-basket {
	background-color: var(--color-green-1);
	position: relative;
}
.product__in-basket::before,
.product__in-basket::after {
	background-color: #FFF;
	border-radius: 2px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
}
.product__in-basket::before {
	top: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
}
.product__in-basket::after {
	top: 50%;
	transform: translate(-50%, -50%);
}

.filter .slider-inner {
	background: #EAEAEA;
	border: none;
}
.filter .slider-handle {
	background: #369E06;
	border-radius: 50%;
	box-shadow: 0 1px 4px #363636;
  }

.products-slider {
	position: relative;
}
.products-slider__item {
	box-sizing: border-box;
	padding: .6%;
}

.product-reviews__list {
	row-gap: 10px;
}
.product-reviews__item {
	border: 1px solid var(--color-gray-1);
	border-radius: 20px;
	box-sizing: border-box;
	height: 100%;
	padding: 15px;
}
.product-reviews__avatar {
	margin-right: 10px;
}
.product-reviews__avatar_ph {
	background-color: var(--color-green-2);
	border-radius: 50%;
	font-size: 1.125rem;
	font-weight: 700;
	height: 55px;
	width: 55px;
}
.product-reviews__head {
	overflow: hidden;
	position: relative;
}
.product-reviews__name {
	color: var(--color-black);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 5px;
	white-space: nowrap;
}
.product-reviews__content {
	padding-bottom: 18px;
	position: relative;
}
.product-reviews__text {
	color: var(--color-gray-2);
	font-size: .875rem;
	line-height: 20px;
	min-height: 40px;
	overflow-y: hidden;
}
.product-reviews__item:not(.active) .product-reviews__text {
	max-height: 40px;
}

.product-reviews__readmore {
	bottom: 0;
	color: var(--color-black);
	font-size: .875rem;
	line-height: 1;
	position: absolute;
	right: 0;
	text-decoration: underline;
}
.product-reviews__readmore::before {
	content: "Подробнее";
}
 .product-reviews__item.active .product-reviews__readmore::before {
	 content: "Свернуть";
 }

.product-slider-shadow {
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
}
.product-slider-wrapper {
	position: relative;
}
.product-slider-wrapper .tns-controls button {
	height: 23px;
	width: 23px;
}
.product-slider-wrapper .tns-controls button::before {
	left: 8px;
	top: 8px;
	height: 7px;
	width: 7px;
}
.product-slider-img {
	display: block;
	outline: none;
}
.product-slider-img > img {
	display: block;
	height: 325px;
	margin: 0 auto;
	width: 100%;
	object-fit: contain;
}
.product-slider-wrapper .tns-controls button[data-controls="prev"] {
	left: 10px;
	transform: translateY(-50%) rotate(-45deg);
}
.product-slider-wrapper .tns-controls button[data-controls="next"] {
	right: 10px;
	transform: translateY(-50%) rotate(135deg);
}

.product__properties {
	top: 15px;
	height: 40px;
	position: relative;
	margin-bottom: 15px;
}
.product__properties .product__property {
	margin-left: 15px;
}
.product__property {
	color: #FFF;
	font-weight: 700;
	font-size: .875rem;
	border-radius: 30px 2px;
}
.product__property_inverter {
	width: 107px;
	background: #E6B110;
}
.product__property_guarantee {
	width: auto;
	padding: 0 20px;
	background: var(--color-gray-2);
}
.product__info_name {
	margin: 0;
	line-height: 2rem;
}
.product__info_code {
	font-weight: 600;
	font-size: .875rem;
	margin-bottom: 5px;
	color: var(--color-gray-2);
}
.product-favorite {
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	color: var(--color-gray-2);
}
.product-favorite .icon-favorite {
	width: 24px;
	height: 24px;
	margin-right: 5px;
	stroke: var(--color-green-1);
}
.product-favorite[data-is-in-bookmarks="1"] .icon-favorite {
	fill: var(--color-green-1);
}
.product__info_status {
	font-weight: 600;
	font-size: .875rem;
}
.product__info_status-title {
	margin-right: 4px;
	color: var(--color-gray-2);
}
.product__info_status-green {
	color: var(--color-green-1);
}
.product__info_status-red {
	color: var(--color-red-1);
}
.product__info .product__info_item:not(:last-child) {
	margin-bottom: 12px;
}
.product__statistics .product__statistics_item:not(:last-of-type) {
	margin-right: 10px;
}
.product__info_offers {
	margin-top: 8px;
	column-gap: 8px;
	row-gap: 10px;
	flex-wrap: wrap;
}
.product__info_offer {
	width: 70px;
	height: 27px;
	padding: 4px 0;
	cursor: default;
	text-align: center;
	border-radius: 8px;
	font-size: .875rem;
	white-space: nowrap;
	text-decoration: none;
	display: inline-block;
	box-sizing: border-box;
	color: var(--color-gray-2);
}
.product__info_offer:not(.active) {
	border: 1px solid var(--color-gray-1);
	cursor: pointer;
}
.product__info_offer.active {
	color: #FFF;
	font-weight: 600;
	background: var(--color-green-1);
	border: 1px solid var(--color-green-1);
}
.product__info_specifications .product-specifications__item {
	line-height: 19px;
	font-size: .875rem;
	color: var(--color-gray-2);
}
.product-specifications__item-name {
	border-bottom: 1px dashed #D4D4D4;
}

.flags {
	width: 90%;
	z-index: 1;
	position: absolute;
}
.flags .flag:not(:first-child) {
	margin-left: 10px;
}
.flag {
	width: fit-content;
	position: relative;
	line-height: normal;
}
.flag-ico {
	width: 50px;
	height: 20px;
	display: block;
}
.flag_markup .flag-ico {
	fill: var(--color-red-1);
}
.flag_discount .flag-ico {
	fill: #CA2F23;
}
.flag-content {
	top: 4px;
	width: 100%;
	display: block;
	padding-left: 8%;
	text-align: center;
	color: #FFFFFF;
	font-size: 9px;
	font-weight: 400;
	position: absolute;
}

.old-price__value {
	text-decoration-line: line-through;
}

.product__info_item .price__item {
	color: #A0A0A0;
	font-weight: 600;
}
.product__info_item .price__title {
	width: 105px;
	margin-right: 5px;
	font-size: .875rem;
}
.product__info_item .price__value-default {
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 24px;
}
.price {
	white-space: nowrap;
	line-height: 18px;
	column-gap: 8%;
}
.price .flag {
	padding-bottom: 5px;
}
.product__info_item .price:not(:last-child) {
	margin-bottom: 10px;
}

.buy {
	font-size: 1.125rem;
	min-width: 200px;
	padding: 15px;
}
.buy__ico {
	fill: #FFF;
	height: 16px;
	margin-right: 10px;
	width: 17px;
}
.buy.active {
	background: #FFF;
	border: 2px solid var(--color-green-1);
	color: var(--color-black);
	font-size: .875rem;
	text-shadow: none;
}
.buy.active .buy__ico {
	fill: var(--color-green-1);
}
.buy__text {
	white-space: nowrap;
}
.buy__text::before {
	content: 'В корзину';
}
.buy.active .buy__text::before {
	content: 'Перейти в корзину';
}

.product-tabs__header {
	cursor: pointer;
	font-weight: 400;
	user-select: none;
	padding: 12px 17px;
	display: inline-block;
	color: var(--color-gray-2);
}
.product-tabs__content {
	padding: 30px 0 0 20px;
}
.product-tabs__content_text {
	font-weight: 400;
	line-height: 22px;
	color: var(--color-gray-2);
}
.product-tabs__content_limited {
	width: 55%;
}
.product-tabs__header.active {
	cursor: default;
	font-weight: 500;
	color: var(--color-black);
	border-radius: 0 0 5px 5px;
	background-color: var(--color-gray-1);
}
.product-tabs__content .full-specification:not(:last-child) {
	margin-bottom: 20px;
}
.product-tabs__content .full-specification .product-specifications__item:not(:last-child) {
	margin-bottom: 10px;
}
.product-tabs__content .full-specification__group-name {
	font-size: 1.125rem;
	color: var(--color-black);
}
.product-tabs__content .product-specifications__item {
	font-size: 1rem;
}
.product-tabs__content_specifications {
	padding-left: 0;
}
.bottom-content {
	margin-top: 40px;
}
.to-all-specifications {
	cursor: pointer;
	font-size: .875rem;
}
.bottom-content .products-slider__item {
	padding: .3%;
}
.markdown_reason {
	padding: 12px;
	border-radius: 10px;
	background: rgba(230, 230, 230, 0.5);
}
.markdown_reason__title {
	font-weight: 600;
	margin-bottom: 5px;
}
.markdown_reason__text {
	color: #6C6C6C;
}
.product-tabs {
	border-top: 1px solid var(--color-gray-1);
	margin-top: 20px;
	position: relative;
}
.sort {
	color: var(--color-gray-2);
	font-size: .875rem;
	font-weight: 600;
	position: relative;
	z-index: 1;
}
.sort:not(.active) .sort__items {
	opacity: 0;
	pointer-events: none;
}
.sort__items {
	padding: 10px;
	margin-top: 5px;
	background: #FFF;
	position: absolute;
	border-radius: 10px;
	transition: all .2s ease-in-out;
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
}
.sort__items .sort__item:not(:first-child) {
	margin-top: 10px;
}
.sort__title {
	cursor: pointer;
	user-select: none;
	color: var(--color-green-1);
}
.sort__title:hover {
	text-decoration: underline;
}
.sort__item {
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
	color: var(--color-gray-2);
}
.sort__item:hover {
	color: var(--color-green-1);
}
.sort__arrow {
	fill: var(--color-gray-2);
	flex: 0 0 auto;
	height: 5px;
	transform: rotate(-180deg);
	transition: all .2s ease-in-out;
	width: 10px;
	margin-left: 8px;
}
.sort:not(.active) .sort__arrow {
	transform: rotate(0);
}

.no_photo {
	display: block;
	object-fit: scale-down;
	width: 100%;
}
.no_photo.no_photo-card {
	height: 155px;
}
.no_photo.no_photo-one_product {
	height: 325px;
}

.cart-empty {
	padding: 200px 0;
}
.list-empty__title-text {
	margin: 5px 0;
	font-weight: 700;
	font-size: 1.5rem;
}
.list-empty__main-text {
	font-weight: 500;
	line-height: 22px;
	text-align: center;
	color: var(--color-gray-2);
}
.list-empty__buttons {
	margin-top: 20px;
}
.list-empty__buttons .button:first-child {
	margin-right: 20px;
}
.list-empty__buttons .button {
	width: 175px;
	line-height: 19px;
}
.back-to-shopping {
	cursor: pointer;
	font-weight: 600;
	width: fit-content;
	text-decoration: none;
	color: var(--color-gray-2);
}
.back-to-shopping__arrow {
	width: 14px;
	height: 7px;
	margin-right: 8px;
	fill: var(--color-gray-2);
}

.cart {
	width: 67%;
	margin-right: 30px;
}
.order-info {
	width: 33%;
}
.title-cart {
	font-size: 1.5rem;
	font-weight: 700;
}
.delete-all {
	cursor: pointer;
	font-size: .875rem;
	color: var(--color-gray-2);
}
.cart__products .cart__product:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--color-gray-1);
}
.cart__product .code {
	font-weight: 400;
	font-size: .875rem;
	color: var(--color-gray-2);
}
.cart__product .name {
	display: block;
	font-weight: 600;
	font-size: 1.125rem;
	text-decoration: none;
	color: var(--color-black);
}
.cart__product img {
	width: 160px;
	height: 160px;
	margin-right: 20px;
	border-radius: 10px;
	object-fit: scale-down;
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
}
.in-stock-quantity,
.in-stock-text {
	font-weight: 600;
	font-size: .875rem;
}
.in-stock-text {
	margin-right: 5px;
	color: var(--color-gray-2);
}
.cart__product .price__title {
	color: var(--color-gray-2);
}
.cart__product .price__value {
	font-weight: 600;
	font-size: 1.25rem;
}
.cart__product-direction {
	width: 100%;
}
.cart__product-wrapper {
	width: 100%;
}
.cart__remove-product {
	padding: 3px;
}
.cart__remove-product svg {
	display: block;
	height: 14px;
	width: 14px;
}
.order-info__title {
	font-weight: 700;
	font-size: 1.25rem;
}
.underlined-line {
	line-height: 19px;
	font-size: .875rem;
	color: var(--color-gray-2);
}
.underlined-line__name {
	padding: 0 30px 2px 0;
	border-bottom: 1px dashed #D4D4D4;
}
.underlined-line__value {
	padding-left: 5px;
}
.total-sum {
	margin-top: 30px;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--color-black);
}
.total-sum .underlined-line__name {
	border-bottom: 1px dashed var(--color-black);
}
.make-purchase {
	width: 100%;
	padding: 22px;
	font-weight: 700;
	font-size: 1.125rem;
}
.cart__product .price__title {
	margin-right: 30px;
}
.contact-details__connection .user-form__row {
	width: 49%;
}

.count-blk {
	background-color: #FFF;
	border: 1px solid var(--color-gray-1);
	border-radius: 5px;
	overflow: hidden;
	width: 100px;
}
.count-blk__wrapper {
	align-items: center;
	display: flex;
}
.count-blk__but {
	align-items: center;
	color: var(--color-black);
	display: flex;
	flex: none;
	font-size: 1rem;
	height: 28px;
	justify-content: center;
	opacity: 1;
	text-decoration: none;
	width: 28px;
}
.count-blk__but:first-child {
	border-right: 1px solid var(--color-gray-1);
}
.count-blk__but:last-child {
	border-left: 1px solid var(--color-gray-1);
}
.count-blk__field {
	border: none;
	box-sizing: border-box;
	color: var(--color-gray-1);
	display: block;
	font-size: .875rem;
	height: 28px;
	line-height: 1.1875rem;
	padding: 0 8px;
	text-align: center;
	width: 100%;
}
.count-blk__field:focus {
	outline: none;
}

.radio-btn {
	cursor: pointer;
	display: inline-block;
}
.radio-btn__choice {
	opacity: 0;
	position: absolute;
	visibility: hidden;
}
.radio-btn__span {
	display: block;
	line-height: 1.2;
	padding: 4px 0 3px 30px;
	position: relative;
}
.radio-btn__span::before,
.radio-btn__span::after {
	top: 50%;
	content: '';
	position: absolute;
	border-radius: 50%;
	transform: translateY(-50%);
}
.radio-btn__span::before {
	background: #FFF;
	box-sizing: border-box;
	border: 1px solid var(--color-gray-2);
	height: 20px;
	left: 0;
	width: 20px;
}
.radio-btn__span::after {
	background: transparent;
	left: 4px;
	width: 12px;
	height: 12px;
	transition: .4s;
}
.radio-btn__choice:checked + .radio-btn__span::after {
	background: var(--color-green-1);
}

.cart__delivery-address {
	margin-left: 30px;
	color: var(--color-gray-2);
}
.delivery-option__title {
	font-weight: 600;
}
.delivery-option__text {
	font-size: .875rem;
	color: var(--color-gray-2);
}
.delivery-option {
	margin-top: 12px;
}
.contact-details .user-form__textarea {
	resize: vertical;
	min-height: 70px;
	line-height: 16px;
}
.cart__product-main {
	width: 72%;
}
.order-info-bg {
	padding: 20px;
	border-radius: 10px;
	background-color: #F4F4F4;
}
.order-info_position {
	position: sticky;
	top: 5px;
}
.filter__search {
	z-index: 1;
	bottom: 10px;
	padding: 10px;
	position: sticky;
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(95, 95, 95, 0.3);
}
.filter__search-btn {
	width: 100%;
}

.counter-widget {
	position: relative;
}
.counter-widget:not(.active) .counter-widget__value {
	display: none;
}
.counter-widget.active .counter-widget__bg {
	top: 5%;
	right: 5%;
	padding: 11px;
	max-width: 20px;
	max-height: 20px;
	position: absolute;
	border-radius: 50%;
	background: #5376CE;
	box-sizing: border-box;
}
.counter-widget__value {
	line-height: 2px;
	font-size: .875rem;
	color: #FFF;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
	appearance: none;
}
.history-table {
	border-radius: 8px;
	border: 1px solid var(--color-gray-1);
}
.history-table__title {
	padding: 15px 20px;
	border-radius: 8px 8px 0 0;
	background-color: var(--color-gray-3);
	border-bottom: 1px solid var(--color-gray-1);
}
.history-table__title .history-table__col {
	font-weight: 600;
}
.history-table__col {
	width: 25%;
}
.history-table__item {
	padding: 10px 20px;
	text-decoration: none;
	color: var(--color-black);
	border-top: 1px solid var(--color-gray-1);
}
.show-orders .history-table__item:hover {
	transition: .2s;
	color: #369E06;
	background: rgb(54, 158, 6, 0.1);
}
.history-table__item .history-table__col-name:hover {
	color: #369E06;
}
.order-data {
	width: 40%;
}
.order-data .underlined-line__value {
	color: var(--color-black);
}
.order-number {
	font-weight: 600;
	font-size: 1.25rem;
}
.show-order .history-table__col {
	width: 15%;
}
.show-order .history-table__col-name {
	width: 40%;
}
.history-table__col-name {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.history-table__col.link {
	text-decoration: none;
	color: var(--color-black);
}
.show-order .history-table__col.link {
	font-weight: 600;
}
.history-table__col-code {
	font-weight: 600;
	font-size: .875rem;
}
.text-gray {
	color: var(--color-gray-2);
}
.text-price {
	white-space: nowrap;
}

.paginator__page {
	border: 1px solid #BABABA;
}
.paginator__page:focus,
.paginator__page:hover,
.paginator__page:active,
.paginator__page.selected {
	border-color: #369E06;
	background-color: #369E06;
	color: #FFF;
}
.paginator__page.selected {
	cursor: default;
}

.tariffs__title {
	font-size: 1.125rem;
	font-weight: 700;
}
.tariffs__item {
	display: block;
	padding: 5px 0;
}
.tariffs__item_price {
	font-weight: 600;
}

.points__title {
	font-size: 1.125rem;
	font-weight: 700;
}
.points__list {
	box-sizing: border-box;
	max-height: 90vh;
	overflow-y: auto;
}
.points__item {
	display: block;
	font-size: .875rem;
	padding: 3px 0;
}

.franchise__list {
	background-color: var(--color-gray-3);
	border-radius: 30px;
	position: relative;
}
.franchise__list .tns-nav {
	column-gap: 4px;
	display: flex;
	justify-content: center;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}
.franchise__list .tns-nav button {
	background-color: var(--color-gray-1);
	border: none;
	border-radius: 50%;
	height: 10px;
	padding: 0;
	width: 10px;
}
.franchise__list .tns-nav button.tns-nav-active {
	background-color: var(--color-green-1);
}
.franchise__slide {
	border-radius: 30px;
	border: 1px solid var(--color-gray-1);
}

.academy-banner__subtitle {
	margin: 0 0 10px 0;
}
.academy-banner__title {
	font-weight: 600;
	margin: 0;
}
.academy-banner__title_bold {
	font-weight: 800;
	text-transform: uppercase;
}
.academy-banner__title_uppercase {
	text-transform: uppercase;
}

.academy-banner__pluses {
	display: flex;
}
.academy-banner__plus {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.academy-how-work__title {
	margin: 0;
}
.academy-how-work__descr {
	margin: 0;
}
.academy-how-work__descr:not(:last-child) {
	margin-bottom: 15px;
}

.about-academy__title {
	margin: 0;
}
.about-academy__descr {
	margin: 0;
}
.about-academy__descr_bold {
	font-weight: 700;
	margin-bottom: 15px;
}
.academy-training__img {
	border-radius: 30px;
}
.academy-training__text {
	row-gap: 15px;
}
.academy-training__title {
	margin: 0;
}
.academy-training__title_green {
	color: var(--color-green-1);
}
.academy-training__descr {
	margin: 0;
}
.academy-training__descr_big-green {
	color: var(--color-green-1);
}

.academy-directions__title {
	margin: 0;
}
.academy-directions__descr {
	margin: 0;
}
.academy-directions__item {
	background-color: var(--color-gray-3);
	border-radius: 30px;
	box-sizing: border-box;
	row-gap: 20px;
}
.academy-directions__subtitle {
	margin: 0;
	text-align: center;
}
.academy-directions__img {
	border-radius: 30px;
}
.academy-info {
	background-color: var(--color-gray-3);
	border-radius: 20px;
}
.academy-info__grid {
	display: grid;
	gap: 20px;
}
.academy-info__item {
	background-color: #FFF;
	border-radius: 20px;
	box-sizing: border-box;
}
.academy-info__title {
	font-weight: 600;
	margin: 0;
}
.academy-info__descr {
	margin: 0;
}
.academy-info__img {
    object-fit: contain;
}
.academy-process {
	row-gap: 40px;
}
.academy-process__text {
	row-gap: 15px;
}
.academy-process__title {
	margin: 0;
	position: relative;
}
.academy_process__title-bg {
	color: var(--color-gray-3);
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.academy-process__descr {
	margin: 0;
}
.academy-process__subtitle {
	color: var(--color-green-1);
	margin: 0;
}
.academy-process__img {
	border-radius: 10px;
}
.academy-program__item {
	border-top: 2px solid var(--color-green-1);
	border-bottom: 2px solid var(--color-green-1);
	margin-bottom: -2px;
}
.academy-program__item.active {
	border-bottom: none;
}
.academy-program__control {
	background-color: transparent;
	border: none;
	column-gap: 15px;
	cursor: pointer;
	width: 100%;
}
.academy-program__item-name {
	font-weight: 600;
}
.academy-program__icon {
	height: 17px;
	position: relative;
	transition: transform .3s;
	width: 17px;
}
.academy-program__item.active .academy-program__icon {
	transform: rotate(45deg);
}
.academy-program__icon::before {
	background-color: var(--color-gray-1);
	bottom: 0;
	content: '';
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 2px;
}
.academy-program__icon::after {
	background-color: var(--color-gray-1);
	content: '';
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.academy-program__item-text {
	padding: 0 20px 20px;
}
.academy-program__item:not(.active) .academy-program__item-text {
	display: none;
}

.academy-questionnaire {
	background-color: var(--color-gray-3);
	border-radius: 20px;
	overflow: hidden;
}
.academy-questionnaire__form {
	row-gap: 20px;
}
.academy-questionnaire__title {
	margin: 0;
}
.academy-questionnaire__form .sf__input {
	background-color: #FFF;
}
.academy-questionnaire__btn {
	display: block;
	margin: 0 auto;
}
.academy-questionnaire__img {
	object-fit: cover;
}

.become-dealer-steps__step {
	border: 1px solid var(--color-gray-1);
	box-sizing: border-box;
}
.become-dealer-steps__text {
	color: #666;
}
.become-dealer-steps__number {
	font-size: .875rem;
	font-weight: 500;
	line-height: 1.375rem;
	margin: 0 0 3px;
}
.become-dealer-steps__title {
	font-size: 1.25rem;
	line-height: 1.625rem;
	margin: 0;
}
.become-dealer-steps__descr {
	margin: 10px 0 0 0;
}
.become-dealer-steps__btn {
	font-size: 1.125rem;
	line-height: 1.625rem;
}
.become-dealer-purpose {
	color: #666;
}
.become-dealer-purpose__descr_bold {
	font-weight: 700;
}

.jGrowl {
	color: #000;
	font: normal 400 1.25rem/1.3 'Nunito', Arial, sans-serif;
}
.jGrowl-notification,
.jGrowl-closer {
	background-color: #FFF;
	box-sizing: border-box;
	margin-left: 15px;
	margin-right: 15px;
	width: 450px;
}
.jGrowl-notification {
	box-shadow: 0 0 5px 2px var(--color-green-1);
	margin-bottom: 25px;
	margin-top: 10px;
	padding: 20px;
}
.jGrowl-closer {
	box-shadow: 0 0 5px 2px #555;
}
.jGrowl-error {
	box-shadow: 0 0 5px 2px var(--color-red-1);
}

.response-msg {
	text-align: center;
}
.response-msg__title {
	color: var(--color-green-1);
	font-size: 1.5rem;
	font-weight: 700;
}

.search-autocomplete__dropdown {
	background-color:#FFF;
	-webkit-box-shadow:0 2px 8px 0 rgba(0,0,0,.1);
	box-shadow:0 2px 8px 0 rgba(0,0,0,.1);
	border: 1px solid #d4d4d4;
	left: 0;
	overflow: auto;
	position: absolute;
	right: 0;
	transform: scaleY(0);
	transform-origin: 50% 0;
	transition: transform .2s ease;
	z-index: 20;
}
.search-autocomplete__dropdown.active {
	transform: scaleY(1);
}

.search-autocomplete__dropdown .title {
	border-bottom: 1px solid #d4d4d4;
	font-size: 1rem;
	font-weight: 700;
	padding: 5px;
}

.search-autocomplete__item {
	background-color: #fff;
	border-bottom: 1px solid #d4d4d4;
	color: #333;
	padding: 6px 4px;
	text-decoration: none;
}
.search-autocomplete__item:active,
.search-autocomplete__item:focus,
.search-autocomplete__item:hover,
.search-autocomplete__item.active {
	background-color: var(--color-gray-1);
	color: var(--color-green-1);
}
.search-autocomplete__item > img {
	height: 35px;
	margin-right: 5px;
	object-fit: cover;
	object-position: 50%;
	width: 50px;
}

.search-autocomplete__item_img {
	margin-right: 10px;
	width: 60px;
}
.search-autocomplete__item_img > img {
	display: block;
	margin: 0 auto;
	max-height: 80px;
	max-width: 100%;
}

.search-autocomplete__item_name {
	font-size: .875rem;
	font-weight: 600;
	line-height: 1;
}

.user-city {
	position: relative;
}

.user-city__current {
	align-items: center;
	color: var(--color-green-1);
	column-gap: 8px;
	cursor: pointer;
	display: flex;
	font-size: .875rem;
}
.user-city__mark-ico {
	fill: var(--color-green-1);
	height: 14px;
	width: 10px;
}
.user-city__arrow-ico {
	fill: var(--color-green-1);
	height: 5px;
	width: 8px;
}

.user-city__text {
	font-size: 1.25rem;
	font-weight: 700;
}

.user-city__confirm-dialog {
	background-color: #FFF;
	background-position: 8px 10px;
	border-radius: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
	box-sizing: border-box;
	color: #222;
	padding: 20px 20px;
	position: absolute;
	top: calc(100% + 10px);
	width: 350px;
	z-index: 100;
}
.user-city__confirm-dialog:not(.active) {
	display: none;
}

.user-city__open-select-dialog {
	color: var(--color-green-1);
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
}

.user-city__modal {
	background: rgba(0, 0, 0, .5);
	inset: 0;
	position: fixed;
	z-index: 101;
}
.user-city__modal:not(.active) {
	display: none;
}
.user-city__modal_container {
	background-color: #FFF;
	border-radius: 20px;
	left: 50%;
	padding: 30px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 300px;
}

.user-city__close {
	cursor: pointer;
	height: 25px;
	position: absolute;
	right: 8px;
	top: 8px;
	width: 25px;
}
.user-city__close::before,
.user-city__close::after {
	background: var(--color-gray-2);
	border-radius: 2px;
	content: '';
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 18px;
}
.user-city__close::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.user-city__close::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.user-city__city {
	color: var(--color-gray-2);
	display: block;
	font-size: 1.25rem;
	font-weight: 600;
	padding: 5px 5px 5px 25px;
	position: relative;
	text-decoration: none;
}
.user-city__city:active,
.user-city__city:focus,
.user-city__city:hover,
.user-city__city.active {
	color: var(--color-green-1);
}

.user-city__city_ico {
	fill: var(--color-green-1);
	height: 12px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
}

.cookies-popup {
	background-color: #FFF;
	box-shadow: 0 -1px 12px -1px rgba(0, 0, 0, .4);
	box-sizing: border-box;
	display: flex;
	gap: 15px 30px;
	left: 50%;
	max-width: 95%;
	position: fixed;
	transform: translateX(-50%);
	z-index: 2000;
}
.cookies-popup__text {
	font-size: .875rem;
	font-weight: 500;
}
.cookies-popup__button {
	font-size: 1.125rem;
}

.our-office__certificates .photogallery-images-container {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.our-office__certificates .photogallery-photo-item {
	aspect-ratio: 215 / 300;
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
	border-radius: 10px;
}