﻿:root {
    --app-easing: cubic-bezier(0.25, 0.25, 0, 1);
    --x-offset: 40px;
    --header-main-content: 56px;
    --header-top-content-height: 52px;
    --header-y-offset: 16px;
    --scrollbar-width: 15px;
    --header-main-height: calc( var(--header-main-content) + var(--header-y-offset) * 2 );
    --header-height: calc( var(--header-main-height) + var(--header-top-content-height) );
    --content-width: 1820px;
}

@media (max-width: 1920px) {
    :root {
        --content-width: 95%;
    }
}

@media (max-width: 1819px) {
    :root {
        --x-offset: 32px;
    }
}

@media (max-width: 1499px) {
    :root {
        --x-offset: 20px;
        --content-width: 98%;
    }
}

@media (max-width: 1440px) {
    :root {
        --header-main-content: 45px;
        --header-y-offset: 16px;
    }
}

@media (max-width: 1024px) {
    :root {
        --x-offset: 24px;
    }
}

@media (max-width: 767px) {
    :root {
        --x-offset: 10px;
        --header-main-content: 35px;
        --header-y-offset: 10px;
    }
}

/* .new-header * {
  box-sizing: border-box;
} */

@font-face {
    font-display: swap;
    font-family: "SFUIDisplay";
    font-weight: 400;
    src: url("fonts/SFUIDisplay-Regular.woff2") format("woff2"), url("fonts/SFUIDisplay-Regular.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-family: "SFUIDisplay";
    font-weight: 500;
    src: url("fonts/SFUIDisplay-Medium.woff2") format("woff2"), url("fonts/SFUIDisplay-Medium.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-family: "SFUIDisplay";
    font-weight: 600;
    src: url("fonts/SFUIDisplay-Semibold.woff2") format("woff2"), url("fonts/SFUIDisplay-Semibold.woff") format("woff");
}

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

.header-wrapper {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767px) {
    .header-wrapper {
        display: block;
        width: 100%;
        max-width: 100%;
    }

        .header-wrapper.header-top {
            padding-inline: 10px;
        }

    /*.page__submenu .sub-menu__inner {
        padding-inline: 10px;
    }*/
}

/*@media (max-width: 1024px) {
    .page__submenu .sub-menu__inner {
        padding-inline: 10px;
    }
}*/

.header-wrapper__inner {
    height: 94%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 8px;
    justify-content: space-between;
}

.light-btn {
    border: none;
    outline: none;
    padding: 0;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background-color: #f2f2f2;
    color: inherit;
    font: inherit;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round-btn {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    border: none;
}

@media screen and (max-width: 1440px) {
    .light-btn {
        font-size: 12px;
        height: 40px;
        min-width: 40px;
    }

    .round-btn {
        height: 40px;
        width: 40px;
    }

        .round-btn svg {
            width: 14px;
            height: auto;
        }
}

@media screen and (max-width: 1024px) {
    .light-btn {
        font-size: 14px;
        height: 50px;
        min-width: 50px;
    }

    .round-btn {
        height: 50px;
        width: 50px;
    }

        .round-btn svg {
            width: 16px;
        }
}

@media screen and (max-width: 767px) {
    .light-btn {
        font-size: 12px;
        height: 32px;
        min-width: 32px;
    }

    .round-btn {
        height: 32px;
        width: 32px;
    }

        .round-btn svg {
            width: 12px;
        }
}

.link-arrow {
    border: none;
    font: inherit;
    display: flex;
    align-items: center;
    line-height: 1.2;
    letter-spacing: normal;
    padding: 0;
    background-color: transparent;
    color: inherit;
}

.social-block__link {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-block__link--light:focus svg path,
.social-block__link--light:active svg path {
    fill: #0078a8;
}

.link-arrow:focus .link-arrow__text,
.link-arrow:active .link-arrow__text {
    box-shadow: inset 0 -1px 0 0 #1f1f22;
}

.link-arrow:focus .link-arrow__icon,
.link-arrow:active .link-arrow__icon {
    background-color: #1f1f22;
}

    .link-arrow:focus .link-arrow__icon svg path,
    .link-arrow:active .link-arrow__icon svg path {
        stroke: #fff;
    }

@media screen and (min-width: 1025px) {
    .link-arrow:hover .link-arrow__text {
        box-shadow: inset 0 -1px 0 0 #1f1f22;
    }

    .link-arrow:hover .link-arrow__icon {
        background-color: #1f1f22;
    }

        .link-arrow:hover .link-arrow__icon svg path {
            stroke: #fff;
        }
}

.link-arrow__text {
    transition: box-shadow 0.3s var(--app-easing);
}

    .link-arrow__text.link-arrow__text--underline {
        box-shadow: inset 0 -1px 0 0 #1f1f22;
    }

.link-arrow__icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    transition: background-color 0.3s var(--app-easing);
}

    .link-arrow__icon svg {
        transform: rotate(-90deg);
    }

        .link-arrow__icon svg path {
            transition: stroke 0.3s var(--app-easing);
        }

@media screen and (max-width: 1440px) {
    .link-arrow__icon {
        width: 30px;
        height: 30px;
    }
}

.link-arrow--yellow .link-arrow__icon {
    background-color: #ffd530;
    transition: opacity 0.3s var(--app-easing);
}

.link-arrow--yellow:focus .link-arrow__text,
.link-arrow--yellow:active .link-arrow__text {
    box-shadow: inset 0 -1px 0 0 #1f1f22;
}

.link-arrow--yellow:focus .link-arrow__icon,
.link-arrow--yellow:active .link-arrow__icon {
    background-color: #ffd530;
    opacity: 0.8;
}

    .link-arrow--yellow:focus .link-arrow__icon svg path,
    .link-arrow--yellow:active .link-arrow__icon svg path {
        stroke: #1f1f22;
    }

@media screen and (min-width: 1025px) {
    .link-arrow--yellow:hover .link-arrow__text {
        box-shadow: inset 0 -1px 0 0 #1f1f22;
    }

    .link-arrow--yellow:hover .link-arrow__icon {
        background-color: #ffd530;
        opacity: 0.8;
    }

        .link-arrow--yellow:hover .link-arrow__icon svg path {
            stroke: #1f1f22;
        }
}

.header {
    font-family: "SFUIDisplay", "Arial", "sans-serif";
    letter-spacing: -0.04em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    margin-bottom: 5px;
}

.icon--subtrack {
    z-index: 2;
}

.icon-bg {
    background-color: #d0d0d0;
}

.new-header .header-icon {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-icon:hover {
    background-color: #0078a8;
    transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-header .header-icon svg * {
    fill: #fff;
}

.new-header .header-icon:hover svg * {
    fill: #fff;
}

.header-icon:last-child {
    margin-right: 0;
}

.icon--inner {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .icon--inner svg {
        width: 12px;
        height: 12px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

.header.is-disabled {
    pointer-events: none;
    opacity: 0.8;
}

.header-wrapper__top {
    width: 100%;
    background-color: #f2f2f2;
    box-sizing: border-box;
}

@media screen and (max-width: 1920px) {
    .header-wrapper__top {
        margin: 0 auto;
    }

    .header-wrapper {
        padding: 0 20px;
    }
}

@media screen and (min-width: 1920px) {
    .header-wrapper__top {
        padding: 0 32px;
    }
}

.header-wrapper__bot {
    width: 100%;
}

.header-top {
    height: var(--header-top-content-height);
    display: flex;
    flex-direction: row;
    align-items: end;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
}

.header-top__button-text {
    font-size: 14px;
    text-align: left;
    transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1), width 2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    font-weight: 500;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 1180px) {
    .header-top__link {
        padding: 15px 10px;
    }

    .header-top__button-text {
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-top__button--location .header-top__button-text {
        display: none;
    }

    .header-top__button--location .header-top__button-icon.auth-icon-active {
        margin-right: 0;
    }
}

.header-top__button--location {
    justify-content: flex-end;
    /* max-width: 120px; */
    max-width: max-content;
    /* min-width: 70px; */
    transition: max-width 0.6s cubic-bezier(0.25, 0.25, 0, 1), color 0.3s var(--app-easing);
}

@media screen and (max-width: 767px) {
    .header-top__button-text {
        font-size: 12px;
    }
}

.header-top__left-inner {
    height: 100%;
}

.header-top__left {
    display: flex;
    margin-right: auto;
}

@media screen and (max-width: 576px) {
    .header__top {
        padding-left: 0;
        padding-right: 0;
        position: relative;
        z-index: 1;
    }

    /*.page__submenu {
        z-index: 0;
    }*/

    .header-top__left-inner {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        top: 0;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s var(--app-easing), visibility 0.3s var(--app-easing);
    }

    .header-top__left {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        top: 40px;
        transform: translateY(-100%);
        transition: transform 0.3s var(--app-easing);
    }

    .header-top__left-inner.is-open {
        opacity: 1;
        visibility: visible;
    }

        .header-top__left-inner.is-open .header-top__left {
            transform: translateY(1px);
        }

    .header-top__left::after {
        position: absolute;
        content: "";
        top: 0;
        left: 16px;
        right: 16px;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
}

.header-top__item {
    display: flex;
    align-items: end;
}

.header-top__link {
    display: block;
    height: 100%;
    padding: 12px 16px 12px;
    color: rgba(31, 31, 34, 0.5);
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s var(--app-easing);
    box-sizing: border-box;
}

.header-top__item:first-child .header-top__link {
    padding-left: 0;
}

.header-top__link-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 576px) {
    .header-top__link {
        display: block;
        height: max-content;
        padding: 12px 16px 12px;
    }

    .header-top__link-icon svg path {
        stroke: #000;
    }

    .header-top__item:first-child .header-top__link {
        padding-left: 10px;
    }
}

.header-top__right {
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    margin-left: 40px;
    height: 100%;
    align-items: center;
    gap: 15px;
}

@media screen and (max-width: 1440px) {
    .header-top__link {
        padding: 14px 12px;
    }
}

.header-top__link:focus,
.header-top__link:active {
    color: rgba(31, 31, 34, 1);
}

@media screen and (max-width: 576px) {
    .header-top__link:focus,
    .header-top__link:active {
        color: #fff;
        text-decoration: underline;
    }
}

@media screen and (min-width: 1025px) {
    .header-top__link:hover {
        color: rgba(31, 31, 34, 1);
    }
}

.header-top__link.is-active {
    color: #0078a8;
    pointer-events: none;
    background-color: #fff;
    border-radius: 12px 12px 0px 0px;
}

/* Р°РєС‚РёРІРЅР°СЏ СЃСЃС‹Р»РєР° РјРµРЅСЋ РІ С€Р°РїРєРµ */
.header-top__item.is-active > .header-top__item--decor__left {
    height: 20px;
    width: 10px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.header-top__item.is-active > .header-top__item--decor__right {
    height: 20px;
    width: 10px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.header-top__item.is-active > .header-top__item--decor__left::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f2f2f2;
    border-radius: 0 0 10px 0;
    z-index: 1;
}

.header-top__item.is-active > .header-top__item--decor__right::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f2f2f2;
    border-radius: 0 0 0 10px;
    z-index: 1;
}

@media screen and (max-width: 1440px) {
    .header-top__link.is-active {
        border-width: 1px;
    }
}

@media screen and (min-width: 577px) {
    .header-top__global-nav {
        flex: none;
        margin-right: 20px;
    }

    .header-top__nav-btn {
        display: none;
    }

    .header-top__link-icon {
        display: none;
    }

    .header-top__nav-overlay {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .header-top__global-nav {
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .header-wrapper.header-top {
        padding-inline: 0;
    }

    .header-top {
        height: fit-content;
    }

    .header-top__nav-btn {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
        background-color: #fff;
        color: #000;
        z-index: 2;
        font-size: 12px;
        position: relative;
        font-family: "SFUIDisplay", "Arial", "sans-serif";
        letter-spacing: -0.04em;
        padding-right: 20px;
    }

    /*.page__submenu {
        font-size: 12px;
    }*/

    .header-top__global-nav {
        border-bottom: 1px solid #ececee;
    }

    .header-top__nav-btn .header-top__link-icon {
        transform: rotate(90deg);
        transform-origin: 50%;
        transition: transform 0.3s var(--app-easing);
    }

    .header-top__nav-btn.is-active .header-top__link-icon {
        transform: rotate(-90deg);
    }

    .header-top__link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
        background-color: #fff;
        color: #000;
        font-size: 12px;
    }

        .header-top__link.is-active {
            display: none;
        }

    /* .header-top__item:first-child .header-top__link {
    padding-top: 15px;
  } */

    .header-top__nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        z-index: 1;
    }

    .header-top__item--decor__left {
        display: none;
    }

    .header-top__item--decor__right {
        display: none;
    }

    .header-top__item.is-active {
        display: none;
    }

        .header-top__item.is-active > .header-top__item--decor__left::before {
            content: none;
            display: none;
        }

        .header-top__item.is-active > .header-top__item--decor__right::after {
            content: none;
            display: none;
        }

    .header-top__left {
        z-index: 2;
    }

    .header-top__button-text {
        display: none;
    }
}

.header-top__social {
    margin-left: auto;
}

.social-block__list {
    display: flex;
}

@media screen and (max-width: 1439px) {
    .header-top__social {
        display: none;
    }
}

.social-block__item {
    height: 24px;
    width: 24px;
    position: relative;
}

.social-block__link {
    height: 24px;
}

.social-block__item svg {
    width: 100%;
    height: auto;
}

.social-block__item + .social-block__item {
    margin-left: 12px;
}

@media screen and (max-width: 1790px) {
    .social-block__item {
        width: 16px;
        height: 16px;
    }

    .social-block__link {
        height: 16px;
    }

    .social-block__item + .social-block__item {
        margin-left: 8px;
    }
}

@media screen and (max-width: 1270px) {
    .social-block__link {
        width: 42px;
        height: 42px;
    }

    .social-block__item svg {
        width: 24px;
    }
}

@media screen and (max-width: 956px) {
    .social-block__link {
        width: 38px;
        height: 38px;
    }
}

@media screen and (max-width: 767px) {
    .social-block__item {
        width: 30px;
        height: 30px;
        margin: 5px 8px;
    }

    .social-block__link {
        height: 30px;
        width: 30px;
    }

    .social-block__item + .social-block__item {
        margin-left: 8px;
    }

    .social-block__item svg {
        width: 100%;
    }
}

.social-block__link--light svg path {
    transition: fill 0.3s var(--app-easing);
    fill: rgba(0, 0, 0, 0.21);
}

    .social-block__link--light svg path.vk-path {
        fill: #f2f2f2;
    }

.social-block__link--light:focus svg path,
.social-block__link--light:active svg path {
    fill: #0078a8;
}

@media screen and (min-width: 1025px) {
    .header__top .social-block__link--light:hover {
        opacity: 1;
    }

    .social-block__link--light:hover svg path {
        fill: #0078a8;
    }

        .social-block__link--light:hover svg path.vk-path {
            fill: #f2f2f2;
        }
}

.social-block__link--light:focus svg path.vk-path,
.social-block__link--light:active svg path.vk-path {
    fill: #f2f2f2;
}

.header-top__button {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    background-color: transparent;
    color: inherit;
    transition: max-width 0.6s cubic-bezier(0.25, 0.25, 0, 1), color 0.3s var(--app-easing);
}

.header-top__button--mobile {
    font-size: 12px;
    margin-right: 8px;
    margin-left: auto;
}

.header-top__button--profile {
    color: inherit;
    transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 767px) {
    .header-top__button--profile {
        display: none;
    }

    .header-top__right {
        display: none;
    }
}

@media screen and (max-width: 820px) {
    .header-top__right {
        margin-left: 10px;
    }
}

@media screen and (min-width: 768px) {
    .header-top__button--location-epp {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .header-top__button--location {
        right: 96px;
    }

    .header-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .header-top__link {
        padding: 12px 12px auto 12px;
    }
}

@media screen and (min-width: 768px) {
    .header-top__button--mobile {
        display: none;
    }
}

.header-top__button:focus,
.header-top__button:active {
    color: #0078a8;
}

@media screen and (min-width: 1025px) {
    .header-top__button:hover {
        color: #0078a8;
        cursor: pointer;
    }
}

@media screen and (min-width: 768px) {
    .header-top__cabinet-epp {
        display: none;
    }
}

.header-top__button-icon {
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #d0d0d0;
    border-radius: 50%;
    flex-shrink: 0;
}

    .header-top__button-icon svg {
        width: 19px;
        height: 19px;
    }

        .header-top__button-icon svg path {
            stroke: #1f1f22;
        }

    .header-top__button-icon.auth-icon-active {
        background-color: #0078a8;
    }

        .header-top__button-icon.auth-icon-active svg path {
            stroke: #fff;
        }

.main-header {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-top: var(--header-y-offset);
    padding-bottom: var(--header-y-offset);
    height: var(--header-main-height);
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    box-sizing: border-box;
}

@media screen and (max-width: 1440px) {
    .main-header {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .main-header {
        padding: 12px 10px;
        position: relative;
        padding-right: 20px;
    }

    .header-top__button-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }

        .header-top__button-icon svg {
            width: 100%;
            height: 100%;
            padding: 7px;
        }
}

.main-header__logo {
    margin-right: 48px;
    flex-shrink: 0;
    max-height: 56px;
    display: flex;
}

    .main-header__logo a {
        max-height: 56px;
    }

    .main-header__logo a {
        width: 100%;
    }

@media screen and (max-width: 1440px) {
    .main-header__logo {
        margin-right: 10px;
        width: 141px;
        max-height: 45px;
    }

        .main-header__logo a {
            max-height: 45px;
        }

        .main-header__logo svg {
            width: 100%;
            height: auto;
        }
}

@media screen and (max-width: 767px) {
    .main-header__logo {
        width: 100px;
        margin: 0;
    }
}

.main-header__nav {
    display: inline-block;
    overflow: hidden;
    padding-inline: 5px;
}

@media screen and (max-width: 767px) {
    .main-header__nav {
        position: static;
        justify-content: flex-end;
        margin-left: auto;
        display: flex;
        gap: 5px;
        flex-direction: row;
    }
}

.menu-nav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

    .menu-nav::before {
        content: "";
        position: absolute;
        left: -1px;
        top: 0;
        width: 15px;
        height: 100%;
        background: linear-gradient( 270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100% );
        z-index: 1;
    }

    .menu-nav::after {
        content: "";
        position: absolute;
        right: -1px;
        top: 0;
        width: 15px;
        height: 100%;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100% );
        z-index: 1;
    }

@media screen and (max-width: 767px) {
    .menu-nav {
        display: none;
    }
}

.menu-nav__list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    scrollbar-width: thin;
    overflow-x: auto; /* Р”РѕР±Р°РІР»СЏРµРј РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅСѓСЋ РїРѕР»РѕСЃСѓ РїСЂРѕРєСЂСѓС‚РєРё РїСЂРё РїРµСЂРµРїРѕР»РЅРµРЅРёРё */
    /* white-space: nowrap; РЈСЃС‚Р°РЅР°РІР»РёРІР°РµРј СЌР»РµРјРµРЅС‚С‹ СЃРїРёСЃРєР° РІ РѕРґРЅСѓ СЃС‚СЂРѕРєСѓ */
    scroll-behavior: smooth; /* РџР»Р°РІРЅР°СЏ РїСЂРѕРєСЂСѓС‚РєР° */
    scrollbar-width: none;
}

    .menu-nav__list::-webkit-scrollbar {
        background-color: green;
        background: red;
    }

    .menu-nav__list::-webkit-scrollbar-track {
        background: red;
    }

    /* @media screen and (max-width: 1024px) {
  .menu-nav__list {
    
  }
} */

    /* .js-menu-nav__list.menu-nav__list::-webkit-scrollbar{
  width: 0;
  display: none;
} */

    .menu-nav__list:active {
        cursor: grabbing;
        cursor: grabbing;
        cursor: -moz-grabbing;
        cursor: -webkit-grabbing;
    }

.menu-nav__item {
    flex: none;
}

    .menu-nav__item + .menu-nav__item {
        margin-left: 10px;
    }

.menu-nav__link {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: transparent;
    font-size: 16px;
    color: #1f1f22;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s var(--app-easing);
}

    .menu-nav__link.is-active {
        color: #0078a8;
        background-color: #e2eef5;
    }

.is-active.menu-nav__link:last-child {
    margin-right: 10px;
}

.is-active.menu-nav__link:first-child {
    margin-left: 10px;
}

@media screen and (min-width: 1025px) {
    .menu-nav__link:hover {
        color: #0078a8;
        background-color: #e2eef5;
        z-index: 2;
        position: relative;
    }
}

@media screen and (max-width: 1440px) {
    .menu-nav__item + .menu-nav__item {
        margin-left: 8px;
    }

    .menu-nav__link {
        font-size: 14px;
        border-radius: 10px;
        padding: 8px 12px;
    }
}

.main-header__search {
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .main-header__search {
        margin-left: 0;
    }
}

.search-btn {
    cursor: pointer;
    transition: opacity 0.3s var(--app-easing);
}

.main-header__menu {
    margin-left: 26px;
    display: flex;
    align-items: center;
    flex: none;
    margin-left: auto;
}

.menu-btn {
    cursor: pointer;
    padding: 0 20px;
    transition: opacity 0.3s var(--app-easing);
}

.search-block__close {
    transition: opacity 0.3s var(--app-easing);
    z-index: 1;
}

    .search-btn:focus,
    .search-block__close:focus,
    .menu-btn:focus,
    .search-block__close:active,
    .search-btn:active,
    .menu-btn:active {
        opacity: 0.7;
    }

@media screen and (min-width: 1025px) {
    .search-btn:hover {
        opacity: 0.7;
    }

    .menu-btn:hover {
        opacity: 0.7;
    }

    .search-block__close:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 1440px) {
    .menu-btn {
        padding: 0 16px;
    }

    .main-header__menu {
        margin-left: 16px;
        height: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .menu-btn {
        padding: 0 20px;
    }

    .main-header__menu {
        margin-left: 24px;
    }
}

@media screen and (max-width: 767px) {
    .menu-btn {
        padding: 0;
        width: 32px;
        height: 32px;
        border-radius: 100%;
    }

    .main-header__menu {
        margin-left: 0;
    }

    .menu-btn__text {
        display: none;
    }
}

.menu-btn__icon {
    margin-left: 5px;
}

.menu-btn__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1f1f22;
}

    .menu-btn__line:first-child {
        width: 15px;
        margin-bottom: 3px;
    }

@media screen and (max-width: 1440px) {
    .menu-btn__icon {
        margin-left: 10px;
    }

    .menu-btn__line {
        width: 18px;
    }

        .menu-btn__line:first-child {
            width: 12px;
            margin-bottom: 2px;
        }
}

@media screen and (max-width: 767px) {
    .menu-btn__icon {
        margin-left: 0;
    }

    .menu-btn__line {
        width: 15px;
        height: 1px;
    }

        .menu-btn__line:first-child {
            width: 10px;
        }
}

.search-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: opacity 0.3s var(--app-easing), visibility 0.3s var(--app-easing);
}

    .search-block.is-open {
        opacity: 1;
        visibility: visible;
    }

.search-block__form {
    width: 100%;
    height: 100%;
    position: relative;
    margin-right: 16px;
    z-index: 2;
}

    .search-block__form:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background-color: rgba(255, 255, 255, 0.5);
        z-index: 1;
        display: none;
    }

    .search-block__form:after {
        position: absolute;
        z-index: 2;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -20px;
        margin-top: -20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        animation: rotate infinite linear 1.2s;
        will-change: transform;
        border: 4px solid;
        border-top-color: #0078a8;
        border-right-color: #ffd530;
        border-bottom-color: #5bad5b;
        border-left-color: #ef4056;
        display: none;
    }

    .search-block__form.is-load:before,
    .search-block__form.is-load:after {
        display: block;
    }

.search-block__inner {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #f2f2f2;
    height: 100%;
    border-radius: 12px;
    position: relative;
    padding: 10px 16px;
}

.search-block__input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font: inherit;
    background-color: transparent;
}

/*.search-block__submit {
    flex: none;
}

.search-block__submit-mobile {
    display: none;
}*/

.search-input__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    opacity: 0.5;
}

@media screen and (max-width: 1440px) {
    .search-block__form {
        margin-right: 8px;
    }

    .search-block__inner {
        border-radius: 10px;
        padding: 8px 10px;
    }
}

@media screen and (max-width: 767px) {
    .search-block {
        padding: 8px 16px;
    }

    .search-block__form {
        background-color: #fff;
        display: flex;
        align-items: center;
        margin-right: 0;
    }

    .search-block__inner {
        margin-right: 9px;
    }

        .search-block__inner .search-block__submit {
            display: none;
        }

    .search-block__submit-mobile {
        display: flex;
    }

    .search-block__close {
        display: none;
    }
}

.header-top__button.main-header__tags {
    margin-left: auto;
}

    .header-top__button.main-header__tags + .main-header__search {
        margin-left: 48px;
    }

@media screen and (max-width: 767px) {
    .header-top__button.main-header__tags {
        display: none;
    }

        .header-top__button.main-header__tags + .main-header__search {
            margin-left: 0;
        }
}

.city-popup {
    position: absolute;
    top: 100%;
    right: 48px;
    width: 432px;
    padding: 0;
    opacity: 0;
    color: #1f1f22;
    visibility: hidden;
    transition: opacity 0.5s var(--app-easing), visibility 0.5s var(--app-easing);
}

.city-popup__form {
    position: relative;
    background-color: #f2f2f2;
    padding: 15px 24px 24px;
    border-radius: 14px;
    border: 1px solid #d2d2d3;
    z-index: 2;
    min-width: 550px;
    box-sizing: border-box;
}

.city-popup.is-open {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.city-popup__head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.city-popup__title {
    margin-right: auto;
    padding-right: 20px;
    font-size: 20px;
}

.city-popup__close {
    border: none;
    font: inherit;
    background-color: #fff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s var(--app-easing);
}

    .city-popup__close:focus,
    .city-popup__close:active {
        background-color: #1f1f22;
    }

        .city-popup__close:focus svg path,
        .city-popup__close:active svg path {
            stroke: #fff;
        }

@media screen and (max-width: 1440px) {
    .city-popup {
        right: 32px;
        width: 380px;
    }

    .city-popup__form {
        padding: 16px;
        border-radius: 10px;
    }

    .city-popup__title {
        padding-right: 16px;
        font-size: 14px;
    }

    .city-popup__close {
        width: 32px;
        height: 32px;
    }

        .city-popup__close svg {
            width: 16px;
            height: auto;
        }
}

@media screen and (max-width: 767px) {
    .city-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .city-popup__overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #1f1f22;
        opacity: 0.6;
        z-index: 1;
    }
}

@media screen and (min-width: 1921px) {
    .city-popup {
        right: 50px;
    }
}

@media screen and (min-width: 1025px) {
    .city-popup__close:hover {
        background-color: #1f1f22;
    }

        .city-popup__close:hover svg path {
            stroke: #fff;
        }
}

.city-popup__ctrl {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    flex-direction: column;
}

/* .city-popup__bottom {
  display: none;
} */
.city-popup__bottom {
    transition: height 0.2s ease;
}

.city-popup__cookie {
    margin-top: 33px;
    color: rgba(31, 31, 34, 0.5);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.city-popup__cookie-link {
    color: #0078a8;
    text-decoration: underline;
    transition: color 0.3s var(--app-easing);
}

    .city-popup__cookie-link:focus,
    .city-popup__cookie-link:active {
        cursor: pointer;
        color: #0078a8;
        text-decoration: none;
    }

.city-popup__button {
    margin-top: 22px;
}

.city-popup__btn {
    display: block;
    border: none;
    font: inherit;
    background-color: #0078a8;
    color: #fff;
    border-radius: 14px;
    padding: 0 16px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 165px;
    transition: opacity 0.3s var(--app-easing);
}

    .city-popup__btn:focus,
    .city-popup__btn:active {
        opacity: 0.8;
    }

@media screen and (min-width: 1025px) {
    .city-popup__btn:hover {
        opacity: 0.8;
    }

    .city-popup__cookie-link:hover {
        cursor: pointer;
        color: #0078a8;
        text-decoration: none;
    }
}

@media screen and (max-width: 1440px) {
    .city-popup__btn {
        height: 40px;
    }

    .city-popup__cookie {
        margin-top: 9px;
        font-size: 10px;
    }

    .city-popup__button {
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .city-popup__btn {
        width: 100%;
        max-width: 165px;
    }
}

.select-drop .choices {
    width: 100%;
    padding: 0;
    background-color: transparent;
}

    .select-drop .choices[data-type*="select-one"] .choices__inner,
    .city-select .ss-single-selected {
        width: 100%;
        border: none;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #d2d2d3;
        border-radius: 14px;
    }

@media screen and (max-width: 1440px) {
    .select-drop .choices[data-type*="select-one"] .choices__inner,
    .city-select .ss-single-selected {
        padding: 14px;
        border-radius: 10px;
    }
}

.city-select .ss-single-selected {
    transition: border-color 0.3s var(--app-easing), box-shadow 0.3s var(--app-easing);
}

    .city-select .ss-single-selected:hover {
        border-color: #8ec0d8;
        box-shadow: 0 0 0 1px #8ec0d8;
    }

@media (any-hover: hover) and (hover: hover) and (pointer: fine) {
    .select-drop .choices[data-type*="select-one"] .choices__inner,
    .city-select .ss-single-selected,
    .ss-main {
        padding: 14px;
        border-radius: 10px;
    }
}

.city-select .ss-main,
.city-select .ss-list {
    color: #1f1f22;
}

.select-drop .choices__list--single {
    padding: 0;
    line-height: 1;
}

.choices[data-type*="select-one"]:after {
    height: 10px;
    width: 10px;
    border-color: #1f1f22 #1f1f22 transparent transparent;
    border-width: 1px;
    right: 20px;
    top: calc(50% - 3px);
    margin-top: 0;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.3s var(--app-easing);
}

.choices[data-type*="select-one"].is-open:after {
    margin-top: 0;
    border-color: #1f1f22 #1f1f22 transparent transparent;
    transform: translateY(-50%) rotate(-45deg);
}

.select-drop .choices__list,
.city-select .ss-list {
    width: 100%;
    border: none;
}

.city-popup .choices__list,
.city-select .ss-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

    .city-popup .choices__list--dropdown .choices__item,
    .city-select .ss-list .ss-option {
        width: 50%;
        padding: 10px 20px;
        font-weight: 500;
        line-height: 1.5;
    }

.city-select.city-select--single .ss-list .ss-option {
    width: 100%;
}

.city-popup .select-drop .choices.is-open[data-type*="select-one"],
.select-drop .ss-single-selected.ss-open-below {
    border-radius: 14px;
}

    .city-popup
    .select-drop
    .choices.is-open[data-type*="select-one"]
    .choices__inner,
    .city-select .ss-single-selected.ss-open-below {
        border-radius: 14px 14px 0 0;
        background-color: #e2eef5;
        border-bottom-color: transparent;
        box-shadow: 0px 0px 1px rgba(10, 31, 68, 0.08), 0px 3px 4px rgba(10, 31, 68, 0.1);
    }

.city-select .ss-content.ss-open .ss-list {
    border-top-color: #e2eef5;
    box-shadow: 0px 0px 1px rgba(10, 31, 68, 0.08), 0px 3px 4px rgba(10, 31, 68, 0.1);
}

@media screen and (max-width: 1440px) {
    .city-popup .choices__list--dropdown .choices__item,
    .city-select .ss-list .ss-option {
        padding: 10px;
    }

    .select-drop .choices[data-type*="select-one"] .choices__inner,
    .city-select .ss-single-selected {
        padding: 14px;
        border-radius: 8px;
    }

        .city-popup
        .select-drop
        .choices.is-open[data-type*="select-one"]
        .choices__inner,
        .city-select .ss-single-selected.ss-open-below {
            border-radius: 8px 8px 0 0;
        }
}

.city-popup .choices__list--dropdown,
.city-select .ss-list {
    margin-top: 0;
    border: 1px solid #d2d2d3;
    border-radius: 0 0 14px 14px;
    padding: 0 0 10px;
}

    .city-popup .choices__list--dropdown .choices__list,
    .city-select .ss-list {
        max-height: 400px;
    }

.city-popup .is-flipped .choices__list--dropdown {
    top: 100%;
    bottom: auto;
}

.city-select .ss-list .ss-option:hover {
    background-color: #e2eef5;
    color: #1f1f22;
}

.city-popup .choices__list--dropdown .choices__item:hover,
.city-popup .choices__list--dropdown .choices__item.is-highlighted,
.city-select .ss-list .ss-option.ss-option-selected {
    background-color: #e2eef5;
    color: #0078a8;
}

/*.sub-menu {
    width: 100%;
    background-color: #0078a8;
    border-bottom: 2px solid #3393b9;
}

@media screen and (min-width: 1271px) {
    .sub-menu--main-page {
        display: none;
    }
}

@media screen and (min-width: 1500px) {
    .sub-menu__inner,
    .sub-menu__inner {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.sub-menu--online {
    background-color: #f2f2f2;
}

.sub-menu--page {
    margin-left: calc(var(--x-offset) * -1);
    margin-right: calc(var(--x-offset) * -1);
}

.sub-menu__inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8px;*/
/* overflow: hidden; */
/*padding-inline: 32px;
    height: 100%;
}

.sub-menu__previous-link {
    flex: none;
    padding-right: 34px;
    border-right: 1px solid #d2d2d3;
}

.sub-menu__list .sub-menu__previous-link {
    border-right: 1px solid rgba(210, 210, 210, 0.3);
}

@media screen and (max-width: 1440px) {
    .sub-menu__previous-link {
        padding-right: 16px;
    }
}

.sub-menu__list {
    width: 100%;
    display: flex;
    height: 100%;
}

@media screen and (min-width: 1500px) {
    .sub-menu__list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 1279px) {
    .sub-menu__list {
        width: 100%;
        display: flex;*/
/* overflow-y: hidden; */
/*overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.sub-menu__list .header-instruction__icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
}

@media screen and (max-width: 1440px) {
    .sub-menu__list .header-instruction__icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

.sub-menu__item {
    flex: none;
}

    .sub-menu__item:not(.subnav__item) {
        display: none;
    }*/

@media screen and (max-width: 1024px) {
    /*.sub-menu__list::-webkit-scrollbar {
        display: none;
    }

    .sub-menu__item + .sub-menu__item {
        margin-left: 16px;
    }

    .new-header .sub-menu__link-back {
        padding-right: 0;
    }*/

    .city-popup__form {
        min-width: auto;
    }
}

/*.sub-menu__link {
    display: block;
    height: 100%;
    width: 100%;
    padding: 17px 0 15px;
    color: #fff;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color 0.3s var(--app-easing);
    letter-spacing: 0;
    opacity: 0.6;
}

.sub-menu--epp .sub-menu__link,
.sub-menu--epp .sub-menu__link.is-active {
    display: flex;
    align-items: center;
}

.page__head--primary .sub-menu__link,
.page__head--entity .sub-menu__link {
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 767px) {
    .sub-menu__link {
        padding: 12px 0 10px;
    }

    .sub-menu__item:not(.subnav__item) {
        display: block;
    }
}

.sub-menu__link.is-active {
    display: block;
    color: #0078a8;
    font-weight: 700;
    border-color: #fff;
    opacity: 1;
}

.sub-menu__link:hover {
    color: #fff;
    opacity: 0.9;
}

.page__head--primary .sub-menu__link:hover,
.page__head--entity .sub-menu__link:hover {
    color: rgba(255, 255, 255, 1);
}

.sub-menu--epp .sub-menu__link.is-active {
    color: #fff;
}

.sub-menu--online .sub-menu__link.is-active {
    color: #1f1f22;
    border-color: #343a4a;
}

.page__head--primary .sub-menu__link.is-active,
.page__head--entity .sub-menu__link.is-active {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

.sub-menu__link-back {
    display: block;
    height: 100%;
    padding-left: 34px;
    padding-right: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1025px) {
    .sub-menu__link-back {
        opacity: 0;
        visibility: hidden;
        width: 0;
        display: none;
    }
}

.sub-menu__link-back::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 35px;
    background-color: #1f1f22;
    opacity: 0.4;
}

.page__head--primary .sub-menu__link-back::before,
.page__head--entity .sub-menu__link-back::before {
    background-color: rgba(210, 210, 210, 0.3);
}

.sub-menu__left {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient( to right, rgba(236, 240, 248, 1) 20%, rgba(236, 240, 248, 0) );
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--app-easing), visibility 0.4s var(--app-easing);
}

    .sub-menu__left.is-show {
        opacity: 1;
        visibility: visible;
        z-index: 5;
    }

.header .sub-menu--epp .sub-menu__left {
    background: rgb(255, 255, 255);
    background: linear-gradient( 270deg, rgba(255, 255, 255, 0) 0%, rgba(0, 120, 168, 0.3) 20%, rgba(0, 120, 168, 0.95) 40%, rgba(0, 120, 168, 1) 100% );
}

.page__head--primary .sub-menu--epp .sub-menu__left,
.page__head--entity .sub-menu--epp .sub-menu__left {
    background: linear-gradient(to right, #0078a8 20%, rgba(255, 255, 255, 0));
}

    .page__head--primary .sub-menu--epp .sub-menu__left svg path,
    .page__head--entity .sub-menu--epp .sub-menu__left svg path {
        stroke: #fff;
    }

.sub-menu__left-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 10px;
}

    .sub-menu__left-inner svg {
        transform: rotate(90deg);
    }

@media screen and (max-width: 1440px) {
    .sub-menu__link-back {
        padding-left: 16px;
    }

        .sub-menu__link-back::before {
            height: 30px;
        }
}*/

.social-popup {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #d2d2d3;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15), 0px 5px 17px rgba(0, 0, 0, 0.20);
    width: 260px;
    top: calc(100% + 18px);
    right: auto;
    left: 0;
    max-height: 80vh;
    overflow: auto;
}

.social-block__item:last-child .social-popup,
.social-block__item:nth-last-child(2) .social-popup {
    width: 216px;
}

.social-block__item .soc-dropdown__link {
    display: block;
    padding: 20px;
    border-bottom: 1px solid #f2f2f2;
    transition: color 0.3s var(--app-easing);
}

    .social-block__item .soc-dropdown__link:focus,
    .social-block__item .soc-dropdown__link:active {
        color: #0078a8;
    }

@media screen and (min-width: 1025px) {
    .social-block__item .soc-dropdown__link:hover {
        color: #0078a8;
        cursor: pointer;
    }
}

.dropdown-menu {
    background-clip: padding-box;
    background-color: #161616;
    border: 0;
    border-radius: 0;
    display: none;
    float: left;
    left: 0;
    list-style: none;
    margin: 2px 0 0;
    min-width: 160px;
    padding: 5px 0;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1000;
    will-change: auto !important;
}

.open > .dropdown-menu {
    display: block;
}

.filter__line + .filter__line {
    margin-top: 38px;
}

.filter__sub {
    width: 240px;
}

@media (min-width: 1025px) {
    .filter__line--row {
        display: flex;
        flex-direction: row-reverse;
    }

    .filter__sub {
        flex: none;
        margin-left: auto;
        margin-top: -13px;
    }
}

@media (max-width: 1024px) {
    .filter__sub {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 576px) {
    .lc-modal .h3 {
        font-size: 17px;
    }
}

.lc-modal .dropdown-menu {
    background-color: #f3f3f3;
    border-radius: calc(0.25rem - 1px);
    font-size: 14px;
    font-weight: bold;
    line-height: 17px;
    margin-top: 0;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .lc-modal .dropdown-menu {
        font-size: 12px;
    }
}

@media screen and (max-width: 350px) {
    .lc-modal .dropdown-menu {
        font-size: 10px;
    }
}

.lc-modal .dropdown-menu li a {
    background-color: #f3f3f3;
    border-radius: calc(0.25rem - 1px);
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    margin-top: 0;
    padding: 0;
    padding-bottom: 9px;
    padding-top: 9px;
}

    .lc-modal .dropdown-menu li a.active,
    .lc-modal .dropdown-menu li a:active {
        color: #fff;
        text-decoration: none;
        background-color: #0078a8;
    }

.lc-modal .b-select__picker .dropdown-menu.show .dropdown-menu.inner {
    column-gap: 0;
    columns: 2;
    width: 100%;
}

    .lc-modal .b-select__picker .dropdown-menu.show .dropdown-menu.inner > li {
        break-inside: avoid;
    }

    .lc-modal .b-select__picker .dropdown-menu.show .dropdown-menu.inner .inner {
        max-width: 320px;
    }

.lc-close__btn {
    align-items: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 11px;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    z-index: 1;
}

    .lc-close__btn svg path {
        fill: #000;
        height: auto;
        width: 100%;
    }

@media screen and (max-width: 768px) {
    .lc-close__btn {
        padding: 12px;
    }
}

.modal-content__title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 27px;
}

@media screen and (max-width: 1024px) {
    .modal-content__title {
        font-size: 17px;
    }
}

.lc-modal-content {
    color: #42484f;
    border-radius: 5px;
    left: 50%;
    max-width: 465px;
    padding: 32px 54px 36px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

@media (max-width: 1499px) and (min-width: 960px) {
    .lc-modal-content {
        transform: translate(-50%, -70%);
    }
}

@media screen and (max-width: 768px) {
    .lc-modal-content {
        padding: 22px 22px 26px;
    }
}

.lc-modal-content {
    background: #f2f2f2;
}

.account-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-wrapper__welcome {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

    .account-wrapper__welcome .button-icon--th-main {
        max-width: 40px;
        min-width: 40px;
        height: 40px;
        margin-left: 10px;
    }

.account-popup {
    position: absolute;
    top: 100%;
    right: 48px;
    width: 432px;
    padding: 0;
    opacity: 0;
    color: #1f1f22;
    visibility: hidden;
    transition: opacity 0.5s var(--app-easing), visibility 0.5s var(--app-easing);
}

.account-menu__item__icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 20px;
    transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

.account-menu__item {
    list-style: none;
    padding-left: 0;
}

    .account-menu__item:hover
    .account-menu__item-link
    .account-menu__item__icon-wrapper {
        transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: #0078a8;
    }

        .account-menu__item:hover
        .account-menu__item-link
        .account-menu__item__icon-wrapper
        .account-menu__item__icon
        svg
        path {
            transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
            stroke: #fff;
        }

        .account-menu__item:hover
        .account-menu__item-link
        .account-menu__item__icon-wrapper
        .account-menu__item__icon
        svg
        rect {
            transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
            stroke: #fff;
        }

        .account-menu__item:hover
        .account-menu__item-link
        .account-menu__item__icon-wrapper
        .account-menu__item__icon
        .st0 {
            transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
            fill: #fff;
            stroke: none;
        }

.account-menu__item__icon {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.33s cubic-bezier(0.4, 0, 0.2, 1), color 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

    .account-menu__item__icon svg {
        height: 100%;
        width: 100%;
    }

.account-menu__item-title__wrapper {
    display: flex;
}

.account-menu__item__title {
    color: #343a4a;
    font-family: "SF UI Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.2px;
}

.account-menu__item__title-counter {
    color: #343a4a;
    font-family: "SF UI Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.2px;
}

.account-popup__menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 20px;
    margin: 0;
}

.account-menu__item-link {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.button--exit {
    width: 100%;
}

.auth-route__head {
    margin-bottom: 27px;
}

.auth-route__form {
    margin-bottom: 30px;
}

.auth-type {
    font-size: 14px;
    text-align: center;
}

.auth-type__line + .auth-type__line {
    margin-top: 30px;
}

.auth-type__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -24px -30px 0;
}

.auth-type__col {
    box-sizing: border-box;
    padding-bottom: 30px;
    padding-right: 24px;
    width: 50%;
}

.txt-input {
    width: 100%;
}

.txt-input__required {
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    padding-top: 5px;
    position: relative;
}

.txt-input__required--error {
    animation: fadeIn 0.25s ease-in;
    color: red;
    display: none;
    position: absolute;
}

.lc-input {
    background: none;
    border: 0;
    border-bottom: 2px solid;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
    display: block;
    font-size: 16px;
    height: 40px;
    padding: 0;
    width: 100%;
}

    .lc-input:focus {
        outline: none;
    }

    .lc-input::-webkit-contacts-auto-fill-button {
        display: none !important;
        pointer-events: none;
        position: absolute;
        right: 0;
        visibility: hidden;
    }

.txt-input__field {
    border-bottom-width: 2px;
    border-color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    transition: 0.35s ease-in;
}

.button {
    display: inline-block;
    border: 0;
    border-radius: 50px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    overflow: hidden;
    padding: 0 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: 0.45s cubic-bezier(0.61, 0, 0.4, 1.01);
    vertical-align: middle;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .button {
        font-size: 12px;
    }
}

@media screen and (max-width: 350px) {
    .button {
        font-size: 10px;
    }
}

.button.button--action {
    background-color: #ffe079;
    color: #42484f;
    padding: 0 28px;
    width: 100%;
}

    .button.button--action:hover {
        background-color: #ffdb65;
        color: #42484f;
    }

    .button.button--action.disabled {
        background-color: #fff0bc;
        color: #79828d;
    }

.modal {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: fadeZoomIn 0.3s;
    animation-timing-function: ease-out;
    transform-origin: 50% 0;
}

.modal--second {
    background: #f3f3f3;
}

.modal.is-open {
    display: block;
}

.modal.is-out {
    animation: fadeOut 0.35s ease-in forwards;
}

.modal__close {
    padding-top: 24px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
}

.new-header {
    max-width: 1920px;
    padding-inline: 40px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 1819px) {
    .new-header {
        padding-inline: 32px;
    }
}

@media (max-width: 1499px) {
    .new-header {
        width: 100%;
        padding-inline: 0;
    }
}

.lc-modal--city .lc-modal {
    position: absolute;
    top: 0;
    right: 0;
}

.lc-modal--city-wrapper {
    max-width: 550px;
    height: auto;
}

.lc-modal--city .lc-modal--city-wrapper {
    position: absolute;
    top: var(--header-top-content-height);
    right: calc((100% - var(--content-width)) / 2);
}

.modal__inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    /*background: #ffffff;*/
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.lc-modal-content .modal__container {
    background: #f2f2f2;
    border-color: #f2f2f2;
    height: 100%;
    box-shadow: none;
    animation: fadeIn 0.2s 0.28s backwards ease-in;
}

.modal__inner--second {
    background: #f3f3f3;
}

@media (min-width: 960px) {
    .modal--short {
        animation: none;
    }

        .modal--short .modal__close {
            animation: fadeIn 0.2s 0.63s backwards ease-in;
        }

    .modal__inner--form {
        margin-left: auto;
        max-width: 720px;
        padding-bottom: 35px;
        transform-origin: 100% 50%;
        animation: slideIn-x 0.35s 0.35s ease-in backwards;
    }

        .modal__inner--form .modal__container {
            animation-delay: 0.63s;
        }

    .modal--short.is-out {
        animation: none;
    }

        .modal--short.is-out .modal__overlay {
            animation: slideOut-x 0.2s 0.2s ease-in forwards, fadeOut 0.2s 0.2s ease-in forwards;
        }

        .modal--short.is-out .modal__inner {
            animation: slideOut-x 0.2s 0.1s ease-in forwards, fadeOut 0.2s 0.1s ease-in forwards;
        }

        .modal--short.is-out .modal__container {
            animation: fadeOut 0.2s forwards;
        }

        .modal--short.is-out .modal__close {
            animation: fadeOut 0.2s forwards;
        }
}

@media (max-width: 1439px) and (min-width: 960px) {
    .modal__container.section {
        padding-top: 55px;
    }

    .modal__inner--form {
        max-width: 560px;
    }
}

.modal--ctrl {
    flex-direction: column;
    transform-origin: 50% 0;
}

    .modal--ctrl.is-open {
        display: flex;
    }

    .modal--ctrl .modal__overlay {
        transform-origin: 50% 0;
    }

    .modal--ctrl .modal__inner {
        max-width: 428px;
        padding: 32px 54px 36px;
        margin: auto;
        height: auto;
        min-height: auto;
        overflow: visible;
        border-radius: 5px;
        transform-origin: 50% 0;
        animation: fadeIn 0.2s 0.28s backwards ease-in;
    }

    .modal--ctrl .modal__close {
        position: absolute;
        padding-top: 10px;
        padding-right: 10px;
    }

@media (max-width: 768px) {
    .modal--ctrl .modal__inner {
        padding: 22px 22px 26px;
    }
}

.auth-route__footer {
    height: 0;
    overflow: hidden;
    will-change: height;
}

[data-ozp] {
    transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0, 1);
    display: none;
}

    [data-ozp].is-show {
        display: block;
        opacity: 1;
    }

    [data-ozp].is-hide {
        opacity: 0;
    }

a.disabled {
    pointer-events: none;
}

.city-select .ss-single-selected {
    height: auto;
}

.city-select .ss-content .ss-list {
    max-height: unset;
    border: 1px solid #d2d2d3;
    background-color: #fff;
}

.city-select .ss-content {
    background-color: transparent;
    border: none;
}

.header-top__app .button-icon--th-second {
    background: transparent;
    color: rgba(31, 31, 34, 0.5);
    border-color: rgba(31, 31, 34, 0.5);
}

    .header-top__app .button-icon--th-second:hover {
        color: #f2f2f2;
        background: rgba(31, 31, 34, 0.5);
    }

.header-top__app .app-links,
.header-top__app .app-links .button-icon__caption {
    color: rgba(31, 31, 34, 0.5);
}

@media (max-width: 1100px) {
    .header-top__app {
        display: none;
        margin-right: 0;
    }

    /*    .page__submenu .sub-menu__left {
        color: #fff;
    }

        .page__submenu .sub-menu__left svg path {
            stroke: currentColor;
        }*/
}

/*.sub-menu__instruction {
    margin-left: auto;
    display: flex;
    align-items: center;
}*/

/*.subnav__drop .sub-menu__link {
    position: relative;
    display: block;
    padding: 18px 20px;
    white-space: nowrap;
    color: #53627c;
    transition: 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

    .subnav__drop .sub-menu__link.is-active,
    .subnav__drop .sub-menu__link:hover {
        color: #1f1f22;
        background: #f1f2f4;
        color: #53627c;
    }

.subnav .sub-menu__link {
    padding: 18px 20px;
    color: #53627c;
}

    .subnav .sub-menu__link.is-active,
    .subnav .sub-menu__link:hover {
        background: #f1f2f4;
        color: #53627c;
    }*/

@media screen and (max-width: 768px) {
    .header-top__button {
        margin-left: 0;
    }

        .header-top__button + .header-top__button {
            margin: 0;
        }

    .header-top__button--location-epp {
        margin: 0;
    }

    .header-top__button-icon {
        margin: 0;
        margin-right: 5px;
    }

    .header-top__button-text {
        font-size: 14px;
        margin-right: 10px;
    }

    /*    .header .page__submenu {
        display: block;
    }*/
}

@media screen and (max-width: 767px) {
    /*    .header .page__submenu {
        display: block;
    }*/

    .header-top__button .header-top__button-text {
        display: block;
    }
}

/*.new-header .sub-menu__link-back {
    transform: scale(-1, 1);
}

.sub-menu__link-back__icon {
    width: 30px;
    height: 30px;
    transform: scale(-1, 1);
}

    .sub-menu__link-back__icon svg path {
        width: 100%;
        height: 100%;
    }*/

.lc-modal--header .lc-modal-content {
    padding: 20px;
    transform: none;
    left: auto;
    right: calc((100% - var(--content-width)) / 2 + 7vw);
    top: var(--header-top-content-height);
    width: max-content;
    border-radius: 6px;
    border: 1px solid #d2d2d3;
    background: #f2f2f2;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.15);
    color: #42484f;
}

.header-top__button-wrapper {
    position: relative;
}

@media screen and (max-width: 1180px) {
    .new-header .lit-popup {
        position: absolute;
        left: -50%;
        bottom: -35px;
        top: auto;
    }
}

.header-top__button-icon-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.account-wrapper__title {
    pointer-events: none;
}

.lit-popup:not(.is-open) {
    opacity: 0;
    visibility: hidden;
}

.header-icon .tooltiptext__header {
    opacity: 0;
    pointer-events: none;
    width: 120px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 15px;
    position: absolute;
    z-index: 2;
    top: 150%;
    left: 50%;
    margin-left: -60px;
    transition: opacity 0.2s var(--app-easing), visibility 0.5s var(--app-easing);
    color: #1f1f22;
    text-align: center;
    font-family: "SF UI Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.56px;
}

    .header-icon .tooltiptext__header::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #fff transparent;
    }

.header-icon:hover .tooltiptext__header {
    opacity: 1;
    transition: opacity 0.6s var(--app-easing), visibility 0.5s var(--app-easing);
}

.lc-modal--header .modal__overlay {
    display: block;
    opacity: 0;
}

.lc-modal--city .modal__overlay {
    display: block;
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .lc-modal--header .modal__overlay {
        display: block;
        opacity: 0.2;
    }

    .lc-modal--city .modal__overlay {
        display: block;
        opacity: 0.2;
    }

    .lc-modal--header .lc-modal-content {
        right: 0;
        --header-top-content-height: 111px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }

    .lc-modal--city .lc-modal--city-wrapper {
        right: 0;
        --header-top-content-height: 111px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }

    .lit-popup:not(.is-open) {
        margin-left: 0;
    }
}

.modal-menu__header-row {
    height: fit-content;
}

@media (min-width: 768px) {
    .modal-menu__header-row .header__title {
        display: none;
    }
}

@media (max-width: 767px) {
    .modal-menu__inner .header__logo {
        width: 100px;
        margin: 0;
    }

    .modal-menu__inner .header__title {
        display: flex;
        align-items: center;
        height: fit-content;
        font-size: 12px;
        height: 40px;
        padding-inline: 10px;
        width: 100%;
        color: #000;
        font-weight: 400;
    }

    .modal-menu__inner .block {
        padding-inline: 0;
    }

    .modal-menu__inner .header__logo svg {
        width: 100%;
        height: auto;
    }

    .modal-menu__inner .modal-menu__close {
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .modal-menu__inner .header__top-menu {
        height: auto;
        padding: 12px 10px;
    }

    .modal-menu__inner .modal-menu__header-row .header {
        margin-bottom: 0;
    }

    .modal-menu__inner .main-menu__link--default {
        padding-inline: 10px;
    }

    .modal-menu__inner .main-menu__link--section {
        padding-inline: 10px;
    }
}

/*.subnav__drop-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sub-menu__item.subnav__item .subnav__drop .sub-menu__item {
    display: block;
}

.sub-menu__item.subnav__item .subnav__drop .sub-menu {
    height: auto;
}*/

.account-menu__item__counter-wrapper {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #fff;
    color: #fff;
    position: absolute;
    top: -3px;
    right: -3px;
}

.account-menu__item__counter-conteiner {
    color: #fff;
    position: relative;
    width: 100%;
    height: 100%;
}

    .account-menu__item__counter-conteiner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        scale: 0.8;
        border-radius: 50%;
        width: 100%;
        height: 100%;
    }

.account-menu__item__counter--blue
.account-menu__item__counter-conteiner::before {
    background-color: #0078a8;
}

.account-menu__item__counter--red
.account-menu__item__counter-conteiner::before {
    background-color: #c91128;
}

.account-menu__item__counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    font-size: 12px;
}

.modal__overlay-cookies {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
    /* z-index: 1; */
    transition: opacity 0.3s ease;
}

.city-popup__form .ss-main {
    position: absolute;
    z-index: -1;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.city-popup__form .ss-content {
    border-radius: 14px;
}

.city-popup__form .ss-list {
    scrollbar-width: thin;
}

.ss-content.ss-relative {
    max-height: 100%;
}

.city-popup__form .city-select .ss-content .ss-list {
    max-height: unset;
    border: 1px solid #d2d2d3;
    background-color: #fff;
    border-radius: 14px;
}

.ss-content .ss-list .ss-option {
    box-sizing: border-box;
}

.city-popup__ctrl {
    pointer-events: all;
}

.not-active {
    pointer-events: none;
    position: relative;
    transition: opacity 0.4s ease;
}

.ss-list {
    opacity: 1;
    transition: opacity 4s ease;
}

.not-active .ss-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    z-index: 1;
}

.ss-list::before {
    content: "";
    position: absolute;
    top: -150%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    z-index: 1;
}

.not-active .ss-content {
    z-index: 0;
}

.new-header .new-year__logo-inner-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    height: 100%;
}

    .new-header .new-year__logo-inner-icons .new-year__logo-icon {
        padding-bottom: 10%;
        z-index: 1;
    }

@media (max-width: 767px) {
    .new-header .new-year__logo-inner-icons .new-year__logo-icon {
        z-index: 0;
        padding-bottom: 6%;
    }
}

div#cityPickerMobile {
    display: none;
}

@media screen and (max-width: 767px) {
    div#cityPickerMobile {
        display: flex;
    }
}
