

/* Start:/local/templates/norlift/assets/css/modern-normalize.css?17652693353581*/
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
	box-sizing: border-box;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the line height in all browsers.
3. Prevent adjustments of font size after orientation changes in iOS.
4. Use a more readable tab size (opinionated).
*/

html {
	font-family:
		system-ui,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji'; /* 1 */
	line-height: 1.15; /* 2 */
	-webkit-text-size-adjust: 100%; /* 3 */
	tab-size: 4; /* 4 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
	margin: 0;
}

/*
Text-level semantics
====================
*/

/**
Add the correct font weight in Chrome and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
Tabular data
============
*/

/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	border-color: currentcolor;
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}

/* End */


/* Start:/local/templates/norlift/assets/css/style.css?17655265122976*/
:root {
    --bg-color-main: #fff;
    --bg-color-secondary: #1ba029;
    --bg-color-main-darker: #F8F8FC;
    --bg-color-3: #F3F4F7;
    --bg-blur-color: color-mix(in oklab, var(--bg-color-main), transparent 40%);
    --text-color-main: #222228;
    --text-color-secondary: #8D8D8D;
    --text-color-3: #7e7e7e;
    --text-color-error: #FF4F64;
    --util-color-1:#B8B8B9;
    --shadow-color: #EBECEF;
    --input-border-unfocus-color:#d7d8da;
    --input-border-hover-color: var(--util-color-1);
    --input-border-focus-color: var(--text-color-secondary);
    --delimiter-color:#EBECEF;
    --backdrop-color:rgb(58 63 68 / 70%);
    --page-width: 1296px;
    --page-padding: 32px;
    --page-padding-small: calc(var(--page-padding)/2);
    --border-radius-main: 12px;
    --border-radius-secondary: 6px;
    --gap:12px;
    --side-menu-width: 376px;
    --font-size-13: calc(1rem - 3px);
    --line-height-13: calc(1em + 5px);
}

body {
    overflow-x: hidden;

    height: 100%;

    font-family: "Golos Text", Arial, sans-serif;
    line-height: calc(1em + 8px);
    color: var(--text-color-main);

    background: var(--bg-color-main);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

i {
    display: inline-grid;
    place-content: center;
}

svg {
    position: relative;

    display: inline-block;

    aspect-ratio: 1;

    vertical-align: middle;

    background-repeat: no-repeat;
    background-position: center center;
}

button {
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
}

dialog {
    max-height: 100%;
    padding: 0;
    border: none;
    border-radius: var(--border-radius-main);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

label{
    position: relative;
}

input {
    border: none;

    color:inherit;

    appearance: none;
    background: transparent;
    outline: none;

    &:focus{
        outline: none;
    }

    &[type="checkbox"] {
        cursor:pointer;
    }
}

p {
    margin: 0;
}

h1{
    overflow: hidden;

    margin: 0;

    font-size: clamp(1rem + 10px, 3vw, 1rem + 20px);
    font-weight: 500;
    line-height: calc(1em + 8px);
    word-break: break-word;

}

h2{
    font-size: clamp(1rem + 4px, 2vw, 1rem + 8px); 
    font-weight: 500;
    line-height: calc(1em + 8px);
        word-break: break-word;
}

h3{
    margin: 0;

    font-size: clamp(1rem + 2px, 2vw, 1rem + 4px);
    font-weight: 500;
    line-height: calc(1em + 8px);
    word-break: break-word;
}

h4{
    margin: 0;
    font-size: clamp(1rem + 4px, 2vw, 1rem + 8px);
    font-weight: 500;
    line-height: calc(1em + 8px);
}

h5 {
    display: flex;
    align-items: center;

    margin: 0;

    font-size: clamp(1rem, 2vw, 1rem + 2px);
    font-weight: 500;
    line-height: calc(1em + 8px);
}
/* End */


/* Start:/local/templates/norlift/assets/css/utils.css?17666469326737*/
.text-color-secondary {
    color: var(--text-color-secondary);
}

.flex-h {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-h-sb {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-v {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.bg-wide {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
}

.block-height{
    padding-block: 100px;
}

.block-width {
    width: 100%;
    max-width: calc(var(--page-width) + calc(2 * var(--page-padding)));
    padding-inline: var(--page-padding);


    @media (width <=991px) {
        padding-inline: var(--page-padding-small);
    }
    
}

.on-hover-fade {
    --text-opacity: 100%;

    color: color-mix(in oklab, var(--text-color-main) var(--text-opacity), transparent);

    &:hover,
    .selected {
        --text-opacity: 72%;
    }

    & svg {
        fill: color-mix(in oklab, var(--text-color-main) var(--text-opacity), transparent);
    }

    & svg.stroke {
        stroke: color-mix(in oklab, var(--text-color-main) var(--text-opacity), transparent);
    }
}

.fade-2 {
    --text-color-main: var(--bg-color-main);
}

.on-hover-unfade {
    --text-opacity: 40%;

    color: color-mix(in oklab, var(--text-color-main) var(--text-opacity), transparent);

    &:hover,
    .selected {
        --text-opacity: 100%;
    }

    button&:hover {
        background: var(--bg-color-3);
    }

    & svg {
        fill: color-mix(in oklab, var(--text-color-main) var(--text-opacity), transparent);
    }

    & svg.stroke {
        stroke: color-mix(in oklab, var(--text-color-main) var(--text-opacity), transparent);
    }
}

.on-hover-color-change:hover {
    & svg {
        fill: var(--bg-color-secondary);
        stroke: var(--bg-color-secondary);
    }
}

.border-radius-20px {
    border-radius: 20px;
}

.fw-500 {
    font-weight: 500;
}

.font-12 {
    font-size: 12px;
    line-height: calc(1em + 4px);
}

.font-13 {
    font-size: calc(1rem - 3px);
    line-height: calc(1em + 5px);
}

.font-14 {
    font-size: calc(1rem - 2px);
    line-height: calc(1em + 6px);
}

.font-15 {
    font-size: calc(1rem - 1px);
    line-height: calc(1em + 7px);
}

.font-18{
    font-size: clamp(1rem, 2vw, 1rem + 2px);
    line-height: calc(1em + 8px);
}

.font-24{
    font-size: clamp(1rem + 4px, 2vw, 1rem + 8px);
    line-height: calc(1em + 8px);
}

.email {
    text-decoration: underline;
}

.delimiter {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--delimiter-color);
}

.button-1 {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 40px;
    padding-inline: 20px;
    border-radius: var(--border-radius-secondary);

    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1em;
    color: var(--bg-color-main);

    background: var(--bg-color-secondary);

    transition: .1s ease;

    &:hover {
        background-color: color-mix(in oklab, var(--bg-color-secondary), black 10%);
    }
}

.button-1-inverse{
    color: var(--bg-color-secondary);
    background: var(--bg-color-main);

    &:hover {
        color: var(--bg-color-main);
    background: var(--bg-color-secondary);
    }
}

.button-1-grey{
    color: var(--text-color-main);
    background: var(--shadow-color);

    &:hover {
    background: var(--util-color-1);
    }
}

.button-1-disabled{
    pointer-events: none;
    color: var(--text-color-main);
    background: var(--shadow-color);

    &:hover {
    background: var(--util-color-1);
    }
}

.button-1-fixed{
    width: 200px;
}

#backdrop {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    visibility: hidden;
    background: var(--backdrop-color);
    backdrop-filter: blur(3px);
}

.input-1 {
    position: relative;

    border: 1px solid var(--input-border-unfocus-color);
    border-radius: var(--border-radius-secondary);

    font-size: .9375rem;
    line-height: 1.47;

    transition: .2s ease;

    &[type="text"],
    &[type="password"],
    &[type="tel"],
    &[type="email"],
    &[type="textarea"]{
        width: 100%;
        height: 44px;
        padding: 6px 16px;

        &:focus-within {
            border-color: var(--input-border-focus-color);
            box-shadow: 0 1px 1px rgb(0 0 0 / 1.5%) inset;
        }
    }

    &[type="textarea"]{
        resize: none;
        height: auto;
        min-height:44px;

        field-sizing: content;
    }

    &[type="checkbox"] {
        --checkbox-height: 20px;

        position: relative;
        aspect-ratio: 1;
        height: var(--checkbox-height);
        transition: border 0.2s ease;

        &~.checkmark-1 {
            cursor: pointer;

            position: absolute;
            left: 0;
            transform: scaleX(0);

            width: 20px;
            height: 15px;

            fill: var(--bg-color-main);

            transition: transform 0.2s 0.2s ease;
        }

        &:checked {
            --checked-bg-size: calc(var(--checkbox-height)/2);

            border: var(--checked-bg-size) solid var(--bg-color-secondary);

            &~.checkmark-1 {
                transform: scaleX(1);
            }
        }
    }

    &:hover {
        border-color: var(--input-border-hover-color);
    }
}

.input-1-switch-color {
    border-color:  var(--input-border-focus-color);
    color: var(--bg-color-main);

    &[type="email"]{
        &:focus-within {
            border-color: var(--input-border-unfocus-color);
        }
    }
}

.margin-auto-top {
    margin-top: auto;
}

.margin-auto-bottom {
    margin-bottom: auto;
}

.margin-auto-left {
    margin-left: auto;
}

.margin-auto-right {
    margin-right: auto;
}

.align-center{
            text-align: center;
}

.error {
    color: var(--text-color-error);

}

.hidden {
    display: none;
}

.disabled {
    pointer-events: none;
}

.invisible{
    visibility: collapse;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.page-wrapper-standart{
     display: flex;
    flex-direction: column;
    gap:32px;

    .block-width:has(&){
        padding-block: 20px 80px;
    }
}

.collapsed-vertical{
    max-height: 0;
    padding-block: 0;
}
/* End */


/* Start:/local/templates/norlift/assets/css/header.css?1765269335946*/
.header {
    position: sticky;
    top:0;
    backdrop-filter: blur(10px);
    background: color-mix(in oklab, var(--bg-color-main), transparent 40%);;
    z-index: 2;
}

#header__phone-dropdown-fullscreen {
    position: absolute;
    z-index: 3;
    top: calc(100% + 1px);
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap:10px;

    width: 100%;
    height: 0;
    padding-top:17px 23px 23px;


    background: var(--bg-color-main);
    transition: 0.2s ease-in-out;
    overflow-y: hidden;

    scrollbar-gutter: stable;

    &>div:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 62px;
    }

    & svg {
        width: 16px;
        height: 16px;
    }
}

#header__phone-dropdown-fullscreen.phone-dropdonw-fullscreen-toggle {
    height: calc(100vh - 100% - 1px);
}


/* End */


/* Start:/local/templates/norlift/assets/css/fonts.css?17652693351767*/
@font-face {
    font-family: "Golos Text";
    src: 
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-500.ttf),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-500.woff),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-500.woff2),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-500.eot),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-500.svg),
    ;
    font-weight: 500;
}

@font-face {
    font-family: "Golos Text";
    src: 
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-600.ttf),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-600.woff),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-600.woff2),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-600.eot),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-600.svg),
    ;
}

@font-face {
    font-family: "Golos Text";
    src: 
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-700.ttf),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-700.woff),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-700.woff2),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-700.eot),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-700.svg),
    ;
}

@font-face {
    font-family: "Golos Text";
    src: 
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-regular.ttf),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-regular.woff),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-regular.woff2),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-regular.eot),
    url(/local/templates/norlift/assets/css/../fonts/golos-text/golos-text-v4-cyrillic-ext_latin-regular.svg),
    ;
}
/* End */


/* Start:/local/templates/norlift/assets/css/lone-includes.css?1765269335543*/
.top-lone-includes{
    margin-block: 19px 40px;
    height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lone-include{
    padding-bottom: 80px;

    & h3 {
        margin: 32px 0 16px;
        font-size: clamp(1rem + 4px, 2vw, 1rem + 8px);
    line-height: calc(1em + 8px);
    }


& p{
    margin-block: 16px;
}

    & li {
        margin: 8px 0;
        list-style: unset;
        list-style-position: inside;
    }

    & ul{
        padding: unset;
    }
}

/* End */


/* Start:/local/templates/norlift/elements/header/burger-menu/burger-menu.css?1765269336970*/
.header__burger-menu {
    /* display: none; */
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 10;
    
    max-width: 100%;
    width: var(--side-menu-width);
    height: 100dvh;

    transition: left .3s;

    overflow-x: hidden;

    background: var(--bg-color-main);
    box-shadow: 0px -1px 0 0 rgba(255, 255, 255, .1);
}

.header__burger-menu-toggle{
    left: 0;
}

.burger-menu-mover{
    position: relative;
    height: 100%;
    width: 100%;
    padding: 20px 12px 32px;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-self: flex-start;
    align-items: flex-start;
    gap: 20px;

    transition: left .2s;

    

    &>a{
        display: flex;
        gap: 8px;
    }

    &>button{
        margin-left:auto;
    }

     &>div,&>a,&>nav{
        padding-inline: 12px;
    }

    &>button svg,
    &>a svg{
        width: 16px;
        height: 16px;
    }

}
/* End */


/* Start:/local/templates/norlift/components/bitrix/menu/burger-menu/style.css?17652693361932*/
.burger-menu-0 {
    width: 100%;
    gap: 16px;

    nav:has(&) {
        width: 100%;
        margin-right: auto;
    }
}

.burger-menu__menu-item {
    width: 100%;
    height: 42px;
    gap: 6px;
    justify-content: space-between;

    &>button {
        cursor: pointer;
        width: 50px;
        height: 100%;
    }

    &>button svg {
        width: 15px;
        height: 9px;
    }

}

.burger-menu__menu-item-0 {
    position: relative;
    height: 100%;
}

.burger-menu-1 {
    top: calc(100% + 4px);
    left: 0;
}

.burger-menu-2 {
    top: calc(-1*var(--submenu-offset));
    left: calc(100% + var(--submenu-offset));
    /* top: 0;
    left: 100%; */
}

.burger-menu__submenu {
    --submenu-offset: 8px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    overflow: visible;
    width: 100%;
    padding: var(--submenu-offset);
    gap: 2px;

    & a {
        padding: 9px 16px 10px 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* & i {
        margin-left: auto;
    } */

}

.selected {
    opacity: 78%;
}

.burger-menu-container {
    position: absolute;
    top: 0;
    left: 100%;

    height: 100dvh;
    width: 100%;
    padding: 20px 12px;

    background: var(--bg-color-main);

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    visibility: collapse;

    &>button {
        display: flex;
        gap: 12px;

        height: 48px;
        padding-left: 7px;

        & svg {
            width: 6px;
            height: 12px;
        }
    }

    &>a {
        gap: 16px;
        justify-content: flex-start;
        height: 48px;
        padding-inline: 12px;

        & svg {
            width: 12px;
            height: 10px;
        }
    }
}



/* End */


/* Start:/local/templates/norlift/components/smelchakov/service/burger-contact/style.css?17652693361978*/
.header__phone-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    padding: 20px;
    background: var(--bg-color);
    box-shadow: 0px 5px 30px rgba(34, 34, 40, .08);
    top: -12px;
    left: -20px;

    @media (max-width: 1200px) {
        & {
            left: -112px;
        }
    }
}

.header__phone-panel-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 24px;

    & a {
        display: flex;
        justify-content: center;
    }

    &>div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px
    }
}

.header__phone-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;

    & a {
        flex-direction: column;
    }

    &>li {
        height: 40px;
        width: 100%;

        &>button {
            margin-left: auto;
            width: 50px;
            height: 100%;
        }

        &>button svg {
            width: 15px;
            height: 9px;
        }
    }
}

.header__phone-list-element {
    flex-direction: column;
    gap: 2px;
}

.delimiter {
    width: 100%;
    background: var(--delimiter-color);
    height: 1px;

}

.burger-menu__phone-container {
    position: absolute;
    top: 0;
    left: 100%;

    height: 100dvh;
    width: 100%;
    padding: 20px 12px;

    background: var(--bg-color-main);

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    visibility: collapse;

    &>h5 {
        height: 64px;
    }


    &>button:first-child {
        display: flex;
        gap: 12px;

        height: 48px;
        padding-left: 7px;

        & svg {
            width: 6px;
            height: 12px;
        }
    }

    &>button:last-child{
        margin-top: 24px;
    }
}
/* End */


/* Start:/local/templates/norlift/components/bitrix/form.result.new/norlift-callback/style.css?17655442161364*/
.callback-panel {
    position: relative;
    width: 480px;
    padding: 32px;
    background: var(--bg-color-main);
    border: none;
    border-radius: var(--border-radius-main);
    display: flex;
    flex-direction: column;
    gap: 32px;

    &>div {
        display: flex;
        flex-direction: column;
        gap:12px;
        &>label {
            gap: 4px;
        }
    }


    &>button:first-child {
        position: absolute;
        top: 18px;
        right: 18px;

        height: 32px;
        width: 32px;
    }

    & a {
        text-decoration: underline;
    }

    & svg {
        width: 14px;
        height: 14px;
    }

    & .error {
        display: none;
    }

    & input:user-invalid+span.error {
        display: block;
    }

    &:open {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    &::backdrop {
        background: var(--backdrop-color);
        backdrop-filter: blur(3px);
    }

}

.callback-sucsess {
    align-items: center;

    &>h2{
        margin: 0;
    }

    &>p{
        text-align: center;
    }

    &>.sucsess-mark {
        fill: var(--bg-color-secondary);
        height: 80px;
        width: 80px;
    }
}

@media (max-width: 768px){ 
    .callback-panel {
        width: 90vw;
    }
}
/* End */


/* Start:/local/templates/norlift/components/bitrix/sender.subscribe/norlift-callback/style.css?17657924351364*/
.callback-panel {
    position: relative;
    width: 480px;
    padding: 32px;
    background: var(--bg-color-main);
    border: none;
    border-radius: var(--border-radius-main);
    display: flex;
    flex-direction: column;
    gap: 32px;

    &>div {
        display: flex;
        flex-direction: column;
        gap:12px;
        &>label {
            gap: 4px;
        }
    }


    &>button:first-child {
        position: absolute;
        top: 18px;
        right: 18px;

        height: 32px;
        width: 32px;
    }

    & a {
        text-decoration: underline;
    }

    & svg {
        width: 14px;
        height: 14px;
    }

    & .error {
        display: none;
    }

    & input:user-invalid+span.error {
        display: block;
    }

    &:open {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    &::backdrop {
        background: var(--backdrop-color);
        backdrop-filter: blur(3px);
    }

}

.callback-sucsess {
    align-items: center;

    &>h2{
        margin: 0;
    }

    &>p{
        text-align: center;
    }

    &>.sucsess-mark {
        fill: var(--bg-color-secondary);
        height: 80px;
        width: 80px;
    }
}

@media (max-width: 768px){ 
    .callback-panel {
        width: 90vw;
    }
}
/* End */


/* Start:/local/templates/norlift/components/bitrix/system.auth.form/norlift-auth/style.css?17652693371125*/
.modal-auth__container{
    position: relative;
    width: 480px;
    /* height: 442px; */
    padding: 32px;
    background: var(--bg-color-main);
    border: none;
    border-radius: var(--border-radius-main);

    &>button:first-child{
        position: absolute;
        top: 18px;
        right: 18px;

        height: 32px;
        width: 32px;
    }

    & a {
        text-decoration: underline;
    }
    
    & svg{
        width: 20px;
        height: 14px;
    }

    & .error{
        display: none;
    }

    & input:user-invalid + span.error{
        display: block;
    }
    
    & label {
        gap:4px;
    }
    
    &>p{
        text-align: center;
    }

    &>div{
        justify-content: space-between;
    }
    
    &:open{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    &::backdrop{
        background: var(--backdrop-color);
        backdrop-filter: blur(3px);
    }

}

#password-input-modal{
    width: 100%;
    
    &[type="text"] ~ .hide-password{
        display: none;
    }

    &[type="password"] ~ .show-password{
        display: none;
    }

}
/* End */


/* Start:/local/templates/norlift/elements/header/top-part/top-part.css?17654594331587*/
.header__top-part {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    max-width: calc(var(--page-width) + calc(2 * var(--page-padding)));
    padding-inline: var(--page-padding);

    .bg-wide:has(&) {
        height: 38px;
        box-shadow: inset 0px 3px 10px rgba(0, 0, 0, .1);

        @media (width <=991px) {

            &,
            &+.delimiter {
                display: none;
            }
        }
    }


}

.header__geo {
    display: flex;
    gap: 12px;

    & svg {
        height: 11px;
    }
}

.header__phone-block {
    display: flex;
    position: relative;
    height: 100%;
    gap: 12px;
}

.header__phone-number {
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;

    & svg {
        width: 5px;
        height: 3px;
    }

    &:hover>.header__phone-dropdown {
        visibility: visible;
        opacity: 100;

    }
}

.header__callback-btn {
    font-size: .8125rem;
    line-height: calc(1em + 4px);

    @media (width <=1200px) {
        display: none;
    }
}

.header__phone-dropdown {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    display: flex;
    width: 280px;
    padding: 9px 20px 20px 20px;
    border-radius: 0 0 var(--border-radius-main) var(--border-radius-main);
    background: var(--bg-color-main);
    visibility: collapse;
    opacity: 0;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
}
/* End */


/* Start:/local/templates/norlift/components/smelchakov/service/contact-dropdown/style.css?17652693361073*/
.header__phone-panel {
    display: none;
    position: absolute;
    top:0;
    left:0;
    width:280px;
    padding:20px;
    background: var(--bg-color);
    box-shadow: 0px 5px 30px rgba(34, 34, 40, .08);
    top: -12px;
    left: -20px; 

    @media (max-width: 1200px) {
        & {
            left: -112px;
        }
    }
}

.header__phone-panel-container{
    display: flex;
    flex-direction: column;
    width:100%;
    height:100%;
    gap:24px;
    & a {
        display: flex;
        justify-content: center;
    }
    &>div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap:4px

    }
}

.header__phone-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap:20px;

    & a {
        flex-direction: column;
    }
}

.header__phone-list-element {
    flex-direction: column;
    gap:2px;
}

.delimiter{
    width: 100%;
    background: var(--delimiter-color);
    height: 1px;

}
/* End */


/* Start:/local/templates/norlift/elements/header/main-part/main-part.css?17652693361031*/
.header__main-part {
    position: relative;
    z-index: 4;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;

    .bg-wide:has(&) {
        height: 88px;
        box-shadow: inset 0px 3px 10px rgba(0, 0, 0, .1);
        overflow: visible;

        @media (width <=991px) {
            height: 62px;
        }
    }

    & svg {
        height: 18px;
    }

    @media (width <=576px) {
        gap: 15px;
    }
}

.header__main-part>p {
    @media (width <=1300px) {
        display: none;
    }
}

.logo {
    width: 210px;
}

#header__phone-btn {
    display: none;
    margin-left: auto;

    @media (width <=991px) {
        display: block;
    }
}

#header__burger {
    --burger-padding: 20px;
    padding: var(--burger-padding);
    margin: calc(-1*var(--burger-padding));
    display: none;

    & svg {
        width: 16px;
        height: 12px;
    }

    @media (width <=991px) {
        display: block;
    }

}
/* End */


/* Start:/local/templates/norlift/components/bitrix/menu/top-menu/style.css?17652693361764*/
.top-menu-0 {
    position: relative;
    height: 100%;
    gap: 16px;

    & li {
        gap: 6px;
        cursor: pointer;
    }

    & svg {
        width: 5px;
        height: 3px;
    }

    nav:has(&) {
        height: 100%;
        margin-right: auto;


        @media (width <=991px) {
            display: none;
        }
    }
}

.top-menu__menu-item {
    position: relative;
    height: 100%;
}

.top-menu__menu-item-0 {
    position: relative;
    height: 100%;
}

.top-menu__on-hover {
    &:hover>.top-menu__submenu {
        opacity: 1;
        visibility: visible;
    }
}

.top-menu-1 {
    top: calc(100% + 4px);
    left: 0;
}

.top-menu-2 {
    top: calc(-1*var(--submenu-offset));
    left: calc(100% + var(--submenu-offset));
    /* top: 0;
    left: 100%; */
}

.top-menu__submenu {
    --submenu-offset: 8px;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    visibility: collapse;
    opacity: 0;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
    text-align: left;
    box-shadow: 0px 5px 30px rgba(34, 34, 40, .08);
    overflow: visible;
    max-width: 450px;
    min-width: 280px;
    padding: var(--submenu-offset);
    gap: 2px;
    border-radius: var(--border-radius-secondary);

    background: var(--bg-color-main);

    & a {
        padding: 9px 16px 10px 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    & li {
        width: 100%;
        justify-content: flex-start;
    }

    & svg {
        width: 5px;
        height: 3px;
    }

    & i {
        margin-left: auto;
    }

}

.selected {
    opacity: 78%;
}
/* End */


/* Start:/local/templates/norlift/components/bitrix/search.form/norlift-search/style.css?17652693361629*/
#header__search-form {
    --search-form-height: 92px;
    --search-form-shadow: 20px;
    display: flex;
    position: fixed;
    z-index: 10;
    top: calc(-1*(var(--search-form-height) + 2*var(--search-form-shadow)));
    right: 0;
    background-color: var(--bg-color-main);
    box-shadow: 0px -1px 0 var(--shadow-color), 0 var(--search-form-shadow) var(--search-form-shadow) rgba(0, 0, 0, .1);
    transition:top .3s ease;
    width: 100%;
    max-width: 100%;
    height: var(--search-form-height);
    border: none;
    margin: 0;
    padding: 0 24px;
    background: var(--bg-color-main);

    &::backdrop {
        background: transparent;
    }

    & button {
        height: 100%;
        padding: 0 16px;
    }
}

.search-form-container {
    max-width: 1296px;
    width: 100%;
    min-width: fit-content;
    height: 44px;
    border: 1px solid var(--input-border-unfocus-color);
    border-radius: var(--border-radius-secondary);
    font-size: .9375rem;
    line-height: 1.47;
    transition: .2s ease;
    justify-content: flex-start;

    &:hover {
        border-color: var(--input-border-hover-color);
    }

    &:focus-within {
        box-shadow: 0 1px 1px rgba(0, 0, 0, .015) inset;
        border-color: var(--input-border-focus-color);
    }

    &>* {
        height: 100%;
    }

    &>.search-field {
        padding-left: 6px;
        width: 100%;
        border-radius: var(--border-radius-secondary);
    }

    &>svg {
        width: 18px;
        height: 18px;
    }
}

#header__search-form.search-form-toggle {
    top: 0;
}
/* End */


/* Start:/local/templates/norlift/assets/css/footer.css?17652693351037*/
footer{
    background: var(--text-color-main);
    color:var(--bg-color-main);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    overflow-y: hidden;

    & h5{
        margin-bottom: 8px;
    }

    &>.block-width{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-block:46px ;
        gap: 46px;
    }

    &>.block-width>.info-1{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 28px;
        width: 100%;
    }
}

.info-1{
    @media (width < 992px) {
            flex-direction: column-reverse;
        }
}

.footer__info-2{
    height: 40px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    & .lexcorp-logo{
        height: 100%;
    }

    & a,
    & span {
        height: 100%;
        display: flex;
        align-items: center;
        gap:12px;
    }
}
/* End */


/* Start:/local/templates/norlift/components/bitrix/sender.subscribe/norlift-subscribe/style.css?1765269336719*/
.footer__subscribe-form{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	gap: var(--gap);

	& form {
		flex: 1 1 275px;
		max-width: 860px;
	}

	& button{
		height: 100%;
		aspect-ratio: 1;

		&:hover{
			background: transparent;
		}
	}

	& svg{
        max-height: 100%;
		height: 16px;
		aspect-ratio: 1;
		/* width: 20px; */
    }

    & .error{
        display: none;
    }

	& .input-1{
		display: flex;
		align-items: center;
	}

    & div:has(input:user-invalid) ~ span.error{
        display: block;
    }

	& div:focus-within ~ span.invisible{
        visibility: visible;
		opacity: 100%;
    }

	& input{
		width: 100%;
		height: 100%;
	}
}
/* End */


/* Start:/local/templates/norlift/components/smelchakov/service/footer-contact/style.css?17652693361304*/
.footer__contacts {
    gap: 12px;
    
    & svg {
        width: 5px;
        height: 3px;
    }


    &>div {
        position: relative;
    }

    &>div:hover {
        &>.footer__phone-panel-container {

            display: flex;
        }
    }
}

.footer__phone-panel-container {
    --phone-panel-padding: 20px;
    position: absolute;
    width: 280px;
    height: fit-content;
    padding: var(--phone-panel-padding);
    border-radius: var(--border-radius-main);

    top: calc(-1*var(--phone-panel-padding));
    left : calc(-1*var(--phone-panel-padding));

    background: var(--bg-color-main);

    display: none;
    flex-direction: column;
    gap: 20px;

    & a {
        display: flex;
        justify-content: center;
    }

    &>div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px
    }
}

.footer__phone-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;

    & a {
        flex-direction: column;
    }
}

.footer__phone-list-element {
    flex-direction: column;
    gap: 2px;
}

.delimiter {
    width: 100%;
    background: var(--delimiter-color);
    height: 1px;

}
/* End */


/* Start:/local/templates/norlift/components/bitrix/menu/footer-menu/style.css?17652693371800*/
.footer-menu-0 {
    position: relative;
    height: 100%;
    width: 100%;
    gap: 12px;
    align-items: flex-start;

    @media (width < 768px) {
        flex-direction: column;
    }

    & h5 {
        text-wrap: nowrap;
    }

    & button {
        width: 100%;
        text-align: end;
    }

    &>li {
        gap: 12px;
        cursor: pointer;
        max-width: 206px;
        width: 100%;

        @media (width < 768px) {
            max-width: 100%
        }
    }

    & svg {
        display: none;
        width: 7px;
        height: 5px;
        transform: rotate(0deg);
        transition: 0.2s;

        @media (width <768px) {
            display: inline;
        }

    }

    nav:has(&) {
        height: 100%;
        width: 100%;
        max-width: 860px;
    }
}

.footer-menu__menu-item {
    &>h5{
        width: 100%;
    }
}

.top-menu__on-hover {
    &:hover>.top-menu__submenu {
        opacity: 1;
        visibility: visible;
    }
}

.top-menu-1 {
    top: calc(100% + 4px);
    left: 0;
}

.top-menu-2 {
    top: calc(-1*var(--submenu-offset));
    left: calc(100% + var(--submenu-offset));
    /* top: 0;
    left: 100%; */
}

.footer-menu__submenu {
    display: grid;
    gap: 12px;

    text-align: left;

    

    transition: height 0.4s ease;


    & li {
        width: 100%;
        justify-content: flex-start;
    }

    & svg {
        width: 5px;
        height: 3px;
    }

    & i {
        margin-left: auto;
    }

    @media (width < 768px) {
        height: 0;
        overflow-y: hidden;
        /* display: none; */
    }

}

svg.footer-menu__button__toggle {
    transform: rotate(180deg);
}

.selected {
    opacity: 78%;
}
/* End */


/* Start:/local/templates/norlift/elements/footer/payment-block/payment-block.css?17652693361073*/
div.footer__payment-block {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap:16px;
    height: 20px;
    width: 100%;
}

.payment-icon {
    height: 100%;
    background: url("/local/templates/norlift/elements/footer/payment-block/../../../assets/images/svg/payment.svg") 0 0 no-repeat
}

.payment-icon:nth-child(1) {
    width: 20px;
    background-position-x: 0;
}

.payment-icon:nth-child(2) {
    width: 32px;
    background-position-x: -92px;
}

.payment-icon:nth-child(3) {
    width: 24px;
    background-position-x: -132px;
}

.payment-icon:nth-child(4) {
    width: 32px;
    background-position-x: -236px;

}

.payment-icon:nth-child(5) {
    width: 20px;
    background-position-x: -479px;
}

.payment-icon:nth-child(6) {
    width: 20px;
    background-position-x: -423px;
}

.payment-icon:nth-child(7) {
    width: 30px;
    background-position-x: -1320px;
}

.payment-icon:nth-child(8) {
    width: 16px;
    background-position-x: -453px;
}

.payment-icon:nth-child(9) {
    width: 20px;
    background-position-x: -1077px;
}
/* End */
/* /local/templates/norlift/assets/css/modern-normalize.css?17652693353581 */
/* /local/templates/norlift/assets/css/style.css?17655265122976 */
/* /local/templates/norlift/assets/css/utils.css?17666469326737 */
/* /local/templates/norlift/assets/css/header.css?1765269335946 */
/* /local/templates/norlift/assets/css/fonts.css?17652693351767 */
/* /local/templates/norlift/assets/css/lone-includes.css?1765269335543 */
/* /local/templates/norlift/elements/header/burger-menu/burger-menu.css?1765269336970 */
/* /local/templates/norlift/components/bitrix/menu/burger-menu/style.css?17652693361932 */
/* /local/templates/norlift/components/smelchakov/service/burger-contact/style.css?17652693361978 */
/* /local/templates/norlift/components/bitrix/form.result.new/norlift-callback/style.css?17655442161364 */
/* /local/templates/norlift/components/bitrix/sender.subscribe/norlift-callback/style.css?17657924351364 */
/* /local/templates/norlift/components/bitrix/system.auth.form/norlift-auth/style.css?17652693371125 */
/* /local/templates/norlift/elements/header/top-part/top-part.css?17654594331587 */
/* /local/templates/norlift/components/smelchakov/service/contact-dropdown/style.css?17652693361073 */
/* /local/templates/norlift/elements/header/main-part/main-part.css?17652693361031 */
/* /local/templates/norlift/components/bitrix/menu/top-menu/style.css?17652693361764 */
/* /local/templates/norlift/components/bitrix/search.form/norlift-search/style.css?17652693361629 */
/* /local/templates/norlift/assets/css/footer.css?17652693351037 */
/* /local/templates/norlift/components/bitrix/sender.subscribe/norlift-subscribe/style.css?1765269336719 */
/* /local/templates/norlift/components/smelchakov/service/footer-contact/style.css?17652693361304 */
/* /local/templates/norlift/components/bitrix/menu/footer-menu/style.css?17652693371800 */
/* /local/templates/norlift/elements/footer/payment-block/payment-block.css?17652693361073 */
