<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.menu-mobile {
    left: 100%;
    background: linear-gradient(89.85deg, #005AAA 26.74%, #022E5E 126.45%);
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.menu-mobile__phone {
    font: bold 20px/140% "Open Sans", sans-serif;
    letter-spacing: 0.34px;
    margin-top: 25px;
}

.menu-mobile__phone a {
    color: white;
}

.menu-mobile__phone-link:not(:last-child) {
    margin-bottom: 10px;
}

.menu-mobile.active {
    left: 0;
}

.menu-mobile__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: wrap row;
    flex-flow: wrap row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 10px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.menu-mobile__logo {
    margin-right: 20px;
}

.menu-mobile__logo img {
    max-width: 156px;
}

.menu-mobile__city {
    display: flex;
    flex-direction: row;
    margin: 0 35px 0 auto;
}

.menu-mobile__city .header-top-line__city-desc {
    color: #fff;
    font-weight: 400;
}

.menu-mobile__cart-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
}

.menu-mobile__cart-btn svg {
    width: 13px;
}

.menu-mobile__button-search {
    width: 32px;
    height: 32px;
    display: block;
    background-color: transparent;
    outline: 0 none;
    border: 0 none;
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 1;
}

.menu-mobile__button-search:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 21px;
    width: 20px;
    background-image: url("/local/static/build/img/search.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.menu-mobile__form-search {
    position: relative;
    width: 100%;
}

.menu-mobile__dropdown {
    display: none;
    position: relative;
    font-weight: normal;
    text-transform: none;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #ABCAE9;
    margin: 0 15px;
}

.menu-mobile__dropdown li + li {
    margin-top: 15px;
}

.menu-mobile__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 100%;
}

.menu-mobile__top {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.menu-mobile .header-top-line__lk {
    margin-bottom: 20px;
}

.menu-mobile .header-top-line__lk a {
    color: white;
    text-decoration: none;
}

.menu-mobile .header-top-line__lk .quit-lk {
    text-decoration: none;
}

.menu-mobile-sub-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: wrap row;
    flex-flow: wrap row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.menu-mobile-sub-header__close {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
}

.menu-mobile-sub-header__close svg {
    width: 19px;
    height: 19px;
}

.menu-mobile-sub-header__search {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    margin-right: 16px;
}

.menu-mobile-form-search__input {
    background: transparent;
    border: solid 2px white;
    position: relative;
    border-radius: 16px;
    height: 32px;
    width: 100%;
    padding: 0 50px 0 16px;
    font: 400 16px/40px "Open Sans", sans-serif;
    color: white;
}

.menu-mobile-list {
    list-style: none;
    margin: 40px 0 15px;
    padding: 0;
    font: bold 14px/143% "Open Sans", sans-serif;
    text-transform: uppercase;
}

.menu-mobile-list li {
    padding: 0;
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 4px;
}

.menu-mobile-list li &gt; a {
    display: block;
    font-weight: 700;
    width: 100%;
    height: 100%;
    padding: 15px;
}
.menu-mobile-list li &gt; a.li-parent:after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 8px;
    background-image: url(/local/static/build/img/svg/arrow-down-white.svg);
    top: 21px;
    right: 15px;
    background-position: 50% 50%;
    background-size: cover;
    transition: 0.5s;
}
.menu-mobile-list li &gt; a.li-parent.li-open:after {
    transform: rotate(180deg);
    transition: 0.5s;
}

.menu-mobile-list li &gt; a:active,
.menu-mobile-list li &gt; a:hover {
    color: inherit;
}
.menu-mobile-list li &gt; ul.menu-mobile__dropdown li {
    background-color: unset;
    border-radius: unset;
}
.menu-mobile-list li &gt; ul.menu-mobile__dropdown li &gt; a {
    display: inherit;
    background-color: unset;
    font-weight: inherit;
    width: inherit;
    height: inherit;
    padding: unset;
}

.menu-mobile-list li:before {
    content: unset;
    display: none;
}

.menu-mobile-list a {
    color: white;
}

.menu-mobile-footer {
    padding: 20px 0;
}

.menu-mobile-footer .header-top-line__city-desc {
    color: white;
}

.menu-mobile-footer .city-link {
    color: white;
}

@media (max-width: 480px) {
    .menu-mobile .menu-mobile__logo img {
        height: 34px;
    }

    .menu-mobile .menu-mobile__city {
        margin: 0 15px 0 auto;
    }

    .menu-mobile .menu-mobile-sub-header__close svg {
        width: 17px;
        height: 17px;
    }
}</pre></body></html>