@charset "UTF-8";

.lg-header {
    background: #FFFFFF;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 21;
    -webkit-transition: -webkit-box-shadow 0.5s;
    transition: -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s;
    transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}

.toolbar-horizontal .lg-header {
    top: 80px;
}

.toolbar-vertical .lg-header {
    top: 39px;
}

.lg-header_shadow {
    -webkit-box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.15);
}

.lg-header .lg-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@media (max-width: 767px) {
    .lg-header .lg-center > *:not(.lg-menu) {
        position: relative;
        z-index: 2;
    }
}

@media (min-width: 768px) {
    .lg-header .lg-center > * {
        position: relative;
        z-index: 2;
    }
}

.lg-header .lg-center:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 1;
    content: "";
}

.lg-header_back {
    background: #f7f7f7;
}

.lg-header_back .lg-center:after {
    background: #f7f7f7;
}

.lg-header_search-opened {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}

.lg-header_search-opened .lg-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lg-header_search-opened .lg-center:after {
    display: none;
}

@media (max-width: 767px) {
    .lg-header {
        height: 72px;
    }
}

@media (min-width: 768px) {
    .lg-header {
        height: 84px;
    }
}

.lg-logo__img {
    display: block;
}

@media (min-width: 768px) {
    .lg-header_search-opened .lg-logo {
        pointer-events: none;
        cursor: default;
        opacity: 0;
    }
}

.lg-menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.lg-menu__link {
    color: #000000;
    position: relative;
}

@media (min-width: 768px) {
    .lg-menu__link {
        margin-left: 36px;
        border-bottom: solid 5px #FFFFFF;
        padding-bottom: 4px;
    }

    .lg-header_back .lg-menu__link {
        border-color: #f7f7f7;
    }

    .lg-menu__link:hover, .lg-menu__link_active {
        border-bottom-color: #E1312F !important;
    }
}

.lg-menu__link_active {
    color: #E1312F;
}

@media (min-width: 1024px) {
    .lg-menu__link {
        margin-left: 60px;
    }
}

.lg-menu__link:first-child {
    margin-left: 0;
}

.lg-menu__link_user {
    color: #E1312F;
}

.lg-menu__link_user:hover {
    color: #000000;
}

.lg-menu__link_user-icon {
    border: none;
}

.lg-menu__link_user-icon:hover .lg-menu__link__icon {
    stroke: #E1312F;
}

.lg-menu__link__icon {
    width: 18px;
    height: 24px;
    stroke: #333333;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 767px) {
    .lg-menu__link {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    .lg-menu__link {
        margin-top: 40px;
    }

    .lg-menu__link:first-child {
        margin-top: 0;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .lg-menu__link {
        display: inline-block;
        vertical-align: middle;
        margin: 16px 0 0 72px;
    }

    .lg-menu__link:first-child {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .lg-menu__link {
        font-size: 1.125rem;
        line-height: 1.5rem;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .lg-header_search-opened .lg-menu__link {
        pointer-events: none;
        cursor: default;
    }
}

.lg-menu__center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 767px) {
    .lg-menu__center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    .lg-menu__center {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: calc(100vh - 72px);
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .lg-menu__center {
        padding: 0 72px;
        display: block;
        text-align: center;
        margin-top: -56px;
    }
}

@media (min-width: 768px) {
    .lg-menu__center {
        margin-top: 12px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .lg-menu {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        background: #FFFFFF;
        height: 0;
        overflow: hidden;
        -webkit-transition: height 0.5s;
        transition: height 0.5s;
    }
}

.lg-header_search-opened .lg-menu {
    opacity: 0;
}

@media (max-width: 767px) and (orientation: landscape) {
    .lg-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.lg-search-btn {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    min-width: 20px;
    height: 20px;
}

.lg-search-btn__closer {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.4s 0.1s;
    transition: all 0.4s 0.1s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@media (max-width: 767px) {
    .lg-search-btn__closer {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 768px) {
    .lg-search-btn__closer {
        width: 20px;
        height: 20px;
    }
}

.lg-search-btn__closer:before, .lg-search-btn__closer:after {
    content: "";
    position: absolute;
    background: #E1312F;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.4s 0.1s;
    transition: all 0.4s 0.1s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 2px;
    transform-origin: 50% 2px;
}

.lg-search-btn__closer:before {
    width: 0;
}

@media (max-width: 767px) {
    .lg-search-btn__closer:before {
        height: 4px;
    }
}

@media (min-width: 768px) {
    .lg-search-btn__closer:before {
        height: 3px;
    }
}

@media (max-width: 767px) {
    .lg-search-btn_opened .lg-search-btn__closer:before {
        width: 34px;
    }
}

@media (min-width: 768px) {
    .lg-search-btn_opened .lg-search-btn__closer:before {
        width: 24px;
    }
}

.lg-search-btn__closer:after {
    height: 0;
}

@media (max-width: 767px) {
    .lg-search-btn__closer:after {
        width: 4px;
    }
}

@media (min-width: 768px) {
    .lg-search-btn__closer:after {
        width: 3px;
    }
}

@media (max-width: 767px) {
    .lg-search-btn_opened .lg-search-btn__closer:after {
        height: 34px;
    }
}

@media (min-width: 768px) {
    .lg-search-btn_opened .lg-search-btn__closer:after {
        height: 24px;
    }
}

.lg-no-touch .lg-search-btn__closer:hover:before, .lg-no-touch .lg-search-btn__closer:hover:after {
    background: #7D2B29;
}

.lg-search-btn_opened .lg-search-btn__closer {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 767px) {
    .lg-search-btn {
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .lg-search-btn {
        margin-left: 32px;
        margin-top: 4px;
    }
}

@media (min-width: 1024px) {
    .lg-search-btn {
        margin-left: 48px;
    }
}

.lg-search-btn__img {
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    fill: #333333;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.lg-search-btn_opened .lg-search-btn__img {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 0;
    height: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .lg-search-btn__img {
        width: 32px;
        height: 36px;
        margin: -16px 0 0 -18px;
    }
}

@media (min-width: 768px) {
    .lg-search-btn__img {
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
    }
}

.lg-search-btn__img:hover {
    fill: #E1312F;
}

.lg-menu-handler {
    position: relative;
    cursor: pointer;
}

@media (max-width: 767px) {
    .lg-menu-handler {
        margin-left: 40px;
        height: 24px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
        flex: 0 0 32px;
        min-width: 32px;
    }
}

@media (min-width: 768px) {
    .lg-menu-handler {
        margin-left: 40px;
        height: 20px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
        flex: 0 0 24px;
        min-width: 24px;
        margin-top: 4px;
    }
}

@media (min-width: 1024px) {
    .lg-menu-handler {
        margin-left: 48px;
    }
}

.lg-menu-handler__burger {
    height: 100%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.lg-menu-handler__burger g {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.lg-no-touch .lg-menu-handler .lg-menu-handler__burger:hover g {
    fill: #E1312F;
}

.lg-menu-handler__closer {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.4s 0.1s;
    transition: all 0.4s 0.1s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@media (max-width: 767px) {
    .lg-menu-handler__closer {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 768px) {
    .lg-menu-handler__closer {
        width: 20px;
        height: 20px;
    }
}

.lg-menu-handler__closer:before, .lg-menu-handler__closer:after {
    content: "";
    position: absolute;
    background: #E1312F;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.4s 0.1s;
    transition: all 0.4s 0.1s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 2px;
    transform-origin: 50% 2px;
}

.lg-menu-handler__closer:before {
    width: 0;
}

@media (max-width: 767px) {
    .lg-menu-handler__closer:before {
        height: 4px;
    }
}

@media (min-width: 768px) {
    .lg-menu-handler__closer:before {
        height: 3px;
    }
}

@media (max-width: 767px) {
    .lg-menu-handler_opened .lg-menu-handler__closer:before {
        width: 34px;
    }
}

@media (min-width: 768px) {
    .lg-menu-handler_opened .lg-menu-handler__closer:before {
        width: 24px;
    }
}

.lg-menu-handler__closer:after {
    height: 0;
}

@media (max-width: 767px) {
    .lg-menu-handler__closer:after {
        width: 4px;
    }
}

@media (min-width: 768px) {
    .lg-menu-handler__closer:after {
        width: 3px;
    }
}

@media (max-width: 767px) {
    .lg-menu-handler_opened .lg-menu-handler__closer:after {
        height: 34px;
    }
}

@media (min-width: 768px) {
    .lg-menu-handler_opened .lg-menu-handler__closer:after {
        height: 24px;
    }
}

.lg-no-touch .lg-menu-handler__closer:hover:before, .lg-no-touch .lg-menu-handler__closer:hover:after {
    background: #7D2B29;
}

.lg-menu-handler_opened .lg-menu-handler__closer {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.lg-menu-handler_opened .lg-menu-handler__burger {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
}

.lg-no-touch .lg-menu-handler_opened:hover .lg-menu-handler__line {
    background: #7D2B29;
}

.lg-header_search-transition .lg-menu-handler {
    width: 0;
    margin-left: 0;
}

.lg-sitemap {
    position: absolute;
    z-index: 20;
    background: #FBFBFB;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}

.lg-sitemap_no-transition {
    -webkit-transition: none;
    transition: none;
}

.lg-sitemap__inner {
    overflow: hidden;
}

@media (max-width: 767px) {
    .lg-sitemap__inner {
        padding-top: 112px;
        padding-bottom: 40px;
    }
}

@media (min-width: 768px) {
    .lg-sitemap__inner {
        padding-top: 164px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .toolbar-horizontal .lg-sitemap__inner {
        padding-top: 192px;
    }
}

@media (min-width: 768px) {
    .toolbar-horizontal .lg-sitemap__inner {
        padding-top: 244px;
    }
}

@media (max-width: 767px) {
    .toolbar-vertical .lg-sitemap__inner {
        padding-top: 151px;
    }
}

@media (min-width: 768px) {
    .toolbar-vertical .lg-sitemap__inner {
        padding-top: 203px;
    }
}

.lg-sitemap__list {
    margin: 0 auto;
    list-style: none;
    padding: 0;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
    text-align: left;
}

@media (max-width: 767px) {
    .lg-sitemap__list {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        width: 62%;
    }
}

@media (min-width: 768px) {
    .lg-sitemap__list {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        width: 480px;
    }
}

@media (min-width: 1024px) {
    .lg-sitemap__list {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
        width: 1120px;
    }
}

.lg-sitemap__group {
    display: inline-block;
    margin-bottom: 20px;
}

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

.lg-sitemap__group .lg-sitemap__item:last-child {
    margin-bottom: 0;
}

.lg-sitemap__link {
    color: #000000;
    display: inline-block;
}

.lg-sitemap__link:hover {
    color: #E1312F;
}

@media (max-width: 767px) {
    .lg-sitemap__login, .lg-sitemap__profile {
        font-size: 1.375rem;
        line-height: 1.75rem;
        font-weight: 700;
        text-align: left;
        width: 62%;
        margin: 0 auto 20px;
    }

    .lg-sitemap__login__link, .lg-sitemap__profile__link {
        color: #E1312F;
    }

    .lg-sitemap__login__link:hover, .lg-sitemap__profile__link:hover {
        color: #000000;
    }

    .lg-sitemap__login__link:hover path, .lg-sitemap__profile__link:hover path {
        fill: #000000;
    }

    .lg-sitemap__login__icon, .lg-sitemap__profile__icon {
        display: inline-block;
        vertical-align: middle;
        margin-left: 4px;
    }

    .lg-sitemap__login__icon path, .lg-sitemap__profile__icon path {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
}

@media (min-width: 768px) {
    .lg-sitemap__login, .lg-sitemap__profile {
        display: none;
    }
}

.lg-sitemap__item {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #000000;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .lg-sitemap__item {
        max-width: 200px;
    }
}

.lg-sitemap__item_decor {
    padding-left: 20px;
    margin-left: -20px;
}

.lg-sitemap__item_decor .lg-sitemap__link {
    padding-top: 22px;
    position: relative;
}

.lg-sitemap__item_decor .lg-sitemap__link:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 6px;
    background-color: #e63131;
    background-image: -webkit-gradient(linear, left top, right top, from(#e63131), to(#ff6a00));
    background-image: linear-gradient(90deg, #e63131 0%, #ff6a00 100%);
    content: "";
}

.lg-sitemap__item_decor + .lg-sitemap__item {
    margin-top: 16px;
}

.lg-sitemap__item_title {
    font-size: 1.375rem;
    line-height: 1.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .lg-sitemap__item_login + .lg-sitemap__item_title {
        margin-top: 0;
    }
}

.lg-sitemap_vertical-decor .lg-sitemap__item_decor .lg-sitemap__link {
    padding-top: 0;
}

.lg-sitemap_vertical-decor .lg-sitemap__item_decor .lg-sitemap__link:before {
    left: -20px;
    top: 50%;
    width: 6px;
    height: 80%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #e63131;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#e63131), to(#ff6a00));
    background-image: linear-gradient(0deg, #e63131 0%, #ff6a00 100%);
}

.lg-sitemap__closer {
    display: none;
}

.lg-touch .lg-sitemap__closer {
    font-size: 1.125rem;
    line-height: 2.375rem;
    height: 40px;
    background: #FFFFFF;
    color: #7b7b7b;
    border: solid 1px #D8D8D8;
    display: inline-block;
    text-align: center;
    margin-top: 40px;
    width: 136px;
}

.lg-touch .lg-sitemap__closer__cross {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin: -2px 8px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.lg-touch .lg-sitemap__closer__cross:before, .lg-touch .lg-sitemap__closer__cross:after {
    position: absolute;
    background: #E1312F;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.lg-touch .lg-sitemap__closer__cross:before {
    width: 2px;
    height: 100%;
}

.lg-touch .lg-sitemap__closer__cross:after {
    height: 2px;
    width: 100%;
}