templates/components/header.html.twig line 1

Open in your IDE?
  1. {% if public_base_url is not defined %}{% set public_base_url = "" %}{% endif %}
  2. {% set currentCity = app.request.attributes.get('city', default_city()) %}
  3. {% set currentStation = app.request.attributes.get('station') %}
  4. {% set activeUri = app.request.requestUri %}
  5. {% set isMainPage = app.request.pathInfo == '/'  %}
  6. {% set isRussianPage = page_metadata_variant == 'russia' %}
  7. {% set isMoscowCity = page_metadata_variant == 'default' %}
  8. {% set linkToMainProfileList = isMoscowCity ? path("homepage") : path("profile_list.list_by_city", {"city": currentCity.uriIdentity}) %}
  9. <header class="main">
  10.     <div class="content content-fixed">
  11.         <div class="header-height d-flex align-items-center justify-content-between justify-content-md-start">
  12.             <div class="header-navbar header-nav-margin">
  13.                 {% if not (isMainPage and isRussianPage) %}<button id="main_menu_button" class="navbar-toggler d-flex align-items-center justify-content-center d-xl-none" data-toggle="collapse" data-target="#navbarToggle" aria-controls="navbarToggle" aria-expanded="false" aria-label="Toggle navigation">
  14.                     <svg class="navbar-toggler__open" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  15.                         <path fill-rule="evenodd" clip-rule="evenodd" d="M3 6V4H21V6H3ZM3 13H21V11H3V13ZM3 20H21V18H3V20Z" fill="#3A3A3A"/>
  16.                     </svg>
  17.                     <svg class="navbar-toggler__close" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 36 36"  fill="none">
  18.                         <path fill="#3A3A3A" d="M28.5 9.6l-2.1-2.1-8.4 8.4-8.4-8.4-2.1 2.1 8.4 8.4-8.4 8.4 2.1 2.1 8.4-8.4 8.4 8.4 2.1-2.1-8.4-8.4 8.4-8.4z"/>
  19.                     </svg>
  20.                 </button>
  21.                 {% endif %}
  22.                 {% if app.request.attributes.get('_route') and app.request.attributes.get('_route') == 'profile_preview.page' %}
  23.                     <button class="page-back d-flex align-items-center justify-content-center" type="button" onclick="location.href = '{{ linkToMainProfileList }}'">
  24.                         <svg class="navbar-toggler__back" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 31.5 31.5" width="25" height="25">
  25.                             <defs/>
  26.                             <path fill="#3A3A3A" d="M10.3 5c.4-.4 1.1-.4 1.6 0 .4.4.4 1.2 0 1.6l-8 8h26.5a1.1 1.1 0 110 2.3H3.8l8 8c.5.4.5 1.2 0 1.6-.4.4-1 .4-1.5 0l-10-10C0 16.1 0 15.4.3 15l10-10z"/>
  27.                         </svg>
  28.                     </button>
  29.                 {% endif %}
  30.                 <div class="collapse header-navigation" id="navbarToggle">
  31.                     <div class="header-navigation__content header-menu" id="list-group-parent">
  32.                         {% if is_granted('ROLE_USER') %}
  33.                             {# ----- Если юзер залогинился ------ #}
  34.                             {# Дополнительно выводим табы переключения вида с меню паблика на лк #}
  35.                             <div class="menu-tabs d-flex w-100 justify-between align-center" role="tablist" id="menu-tabs">
  36.                                 <button class="d-flex align-center current" type="button" role="tab" data-toggle="menu-public">
  37.                                     <svg class="icon mr-2">
  38.                                         <use xlink:href="#icon-menu-public"></use>
  39.                                     </svg>
  40.                                     <span>Главное меню</span>
  41.                                 </button>
  42.                                 <button class="d-flex align-center" type="button" role="tab" data-toggle="menu-account">
  43.                                     <svg class="icon mr-2">
  44.                                         <use xlink:href="#icon-menu-account"></use>
  45.                                     </svg>
  46.                                     <span>Личный кабинет</span>
  47.                                 </button>
  48.                             </div>
  49.                             <div class="menu-view account-view " id="menu-account">
  50.                                 {% if is_user_advertiser(app.user) %}
  51.                                     {# Баланс #}
  52.                                     <div class="balance-block">
  53.                                         <div class="navigation-item-payment">
  54.                                             <p class="d-flex align-items-center">
  55.                                                 Ваш баланс:
  56.                                                 <span class="ml-2"><b>{{ app.user.currentBalance|money_format }}</b></span>
  57.                                             </p>
  58.                                             <p class="d-flex align-items-center">
  59.                                                 Расход в час:
  60.                                                 <span class="ml-2">{{ owner_charges()|money_format }}</span>
  61.                                             </p>
  62.                                             {# Пополнить Баланс #}
  63.                                             <a href="{{ path('account.finances.pay') }}" class="navigation-item d-flex align-items-center w-100">
  64.                                                 <svg class="icon mr-3">
  65.                                                     <use xlink:href="#icon-ruble"></use>
  66.                                                 </svg>
  67.                                                 <span>Пополнить баланс</span>
  68.                                             </a>
  69.                                         </div>
  70.                                     </div>
  71.                                     {# ----- ссылки в ЛК ------- #}
  72.                                     <a href="{{ path('account.profile_management.list') }}" class="navigation-item first d-flex align-items-center w-100">
  73.                                         <svg class="icon mr-3">
  74.                                             <use xlink:href="#icon-navigation-profiles"></use>
  75.                                         </svg>
  76.                                         <span class="d-flex align-items-center w-100" id="girl-count-to">Анкеты <em class="ml-auto"></em></span>
  77.                                     </a>
  78.                                     <a href="{{ path('account.paid_services.info_page') }}" class="navigation-item d-flex align-items-center w-100">
  79.                                         <svg class="icon mr-3">
  80.                                             <use xlink:href="#icon-navigation-profileup"></use>
  81.                                         </svg>
  82.                                         <span>Стать заметнее</span>
  83.                                     </a>
  84.                                     <a href="{{ path('account.support_messages.list') }}" class="navigation-item d-flex align-items-center w-100">
  85.                                         <svg class="icon mr-3">
  86.                                             <use xlink:href="#icon-navigation-messages"></use>
  87.                                         </svg>
  88.                                         <span class="d-flex align-items-center w-100" id="message-count-to">Сообщения <em class="ml-auto"></em></span>
  89.                                     </a>
  90.                                     <a href="{{ path('account.profile_management.commented_profiles') }}" class="navigation-item d-flex align-items-center w-100">
  91.                                         <svg class="icon mr-3">
  92.                                             <use xlink:href="#icon-navigation-comments"></use>
  93.                                         </svg>
  94.                                         <span>Отзывы</span>
  95.                                     </a>
  96.                                     <a href="{{ path('account.phone_review') }}" class="navigation-item d-flex align-items-center w-100">
  97.                                         <svg class="icon mr-3">
  98.                                             <use xlink:href="#icon-navigation-blacklist"></use>
  99.                                         </svg>
  100.                                         <span>Чёрный список</span>
  101.                                     </a>
  102.                                     <a href="{{ path('account.finances.transactions') }}" class="navigation-item d-flex align-items-center w-100">
  103.                                         <svg class="icon">
  104.                                             <use xlink:href="#icon-navigation-history"></use>
  105.                                         </svg>
  106.                                         <span>История платежей</span>
  107.                                     </a>
  108.                                     {# <a href="{{ path('account') }}" class="navigation-item d-flex align-items-center w-100">
  109.                                         <svg class="icon">
  110.                                             <use xlink:href="#icon-menu-stat"></use>
  111.                                         </svg>
  112.                                         <span>Статистика</span>
  113.                                     </a> #}
  114.                                     <a href="{{ path('account.settings') }}" class="navigation-item d-flex align-items-center w-100">
  115.                                         <svg class="icon">
  116.                                             <use xlink:href="#icon-menu-gear"></use>
  117.                                         </svg>
  118.                                         <span>Настройка</span>
  119.                                     </a>
  120.                                     <a href="{{ path('account.finances.transactions') }}" class="navigation-item d-flex align-items-center w-100">
  121.                                         <svg class="icon">
  122.                                             <use xlink:href="#icon-header-exit"></use>
  123.                                         </svg>
  124.                                         <span>Выйти</span>
  125.                                     </a>
  126.                                 {% else %}
  127.                                     <a href="{{ path('account.preferred_profiles.list') }}" class="navigation-item d-flex align-items-center w-100">
  128.                                         <svg class="icon" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
  129.                                         <path d="M17.8565 11.2346L16.6837 10.0491C16.4897 9.85086 16.1733 9.85086 15.975 10.0449L11.5537 14.4324L9.6342 12.5002C9.44014 12.302 9.12373 12.302 8.92545 12.496L7.73998 13.673C7.5417 13.8671 7.5417 14.1835 7.73577 14.3818L11.1825 17.8538C11.3765 18.0521 11.693 18.0521 11.8912 17.8581L17.8523 11.9434C18.0464 11.7451 18.0506 11.4287 17.8565 11.2346Z" fill="#F27900"/>
  130.                                         <path d="M7.2 8.0999C9.18822 8.0999 10.8 6.48813 10.8 4.4999C10.8 2.51168 9.18822 0.899902 7.2 0.899902C5.21177 0.899902 3.6 2.51168 3.6 4.4999C3.6 6.48813 5.21177 8.0999 7.2 8.0999Z" fill="#F27900"/>
  131.                                         <path d="M7.515 9.9089C5.058 9.8189 0 11.0429 0 13.4999V15.2999H5.85C5.85 14.0896 5.92295 10.9567 9.12682 10.9567C9.72263 10.9567 9.66865 10.9567 10.35 10.9567C10.35 10.674 10.35 10.5444 10.35 10.3499C9.45 9.8999 7.49818 9.95095 7.515 9.9089Z" fill="#F27900"/>
  132.                                         </svg>
  133.                                         <span>Для Вас</span>
  134.                                     </a>
  135.                                     <a href="{{ path('account.city_profiles') }}" class="navigation-item d-flex align-items-center w-100">
  136.                                         <svg class="icon" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
  137.                                         <path d="M17.8565 11.2346L16.6837 10.0491C16.4897 9.85086 16.1733 9.85086 15.975 10.0449L11.5537 14.4324L9.6342 12.5002C9.44014 12.302 9.12373 12.302 8.92545 12.496L7.73998 13.673C7.5417 13.8671 7.5417 14.1835 7.73577 14.3818L11.1825 17.8538C11.3765 18.0521 11.693 18.0521 11.8912 17.8581L17.8523 11.9434C18.0464 11.7451 18.0506 11.4287 17.8565 11.2346Z" fill="#F27900"/>
  138.                                         <path d="M7.2 8.0999C9.18822 8.0999 10.8 6.48813 10.8 4.4999C10.8 2.51168 9.18822 0.899902 7.2 0.899902C5.21177 0.899902 3.6 2.51168 3.6 4.4999C3.6 6.48813 5.21177 8.0999 7.2 8.0999Z" fill="#F27900"/>
  139.                                         <path d="M7.515 9.9089C5.058 9.8189 0 11.0429 0 13.4999V15.2999H5.85C5.85 14.0896 5.92295 10.9567 9.12682 10.9567C9.72263 10.9567 9.66865 10.9567 10.35 10.9567C10.35 10.674 10.35 10.5444 10.35 10.3499C9.45 9.8999 7.49818 9.95095 7.515 9.9089Z" fill="#F27900"/>
  140.                                         </svg>
  141.                                         <span>В Вашем городе</span>
  142.                                     </a>
  143.                                     <a href="{{ path('account.favourites.profiles') }}" class="navigation-item d-flex align-items-center w-100">
  144.                                         <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  145.                                         <path d="M15.3 18V1.8C15.3 0.8073 14.4927 0 13.5 0H4.50001C3.50731 0 2.70001 0.8073 2.70001 1.8V18L9.00001 13.8006L15.3 18ZM5.40541 5.4504C5.40541 4.9392 5.60701 4.4757 5.93191 4.14C6.25681 3.8052 6.70591 3.5973 7.20271 3.5973C7.20271 3.5973 8.09911 3.5946 9.00001 4.5234C9.90091 3.5946 10.7973 3.5973 10.7973 3.5973C11.2941 3.5973 11.7432 3.8043 12.0681 4.14C12.393 4.4757 12.5946 4.9392 12.5946 5.4504C12.5946 5.9616 12.393 6.426 12.0681 6.7608L9.00001 10.0827L5.93191 6.7608C5.59231 6.40933 5.40339 5.93913 5.40541 5.4504Z" fill="#F27900"/>
  146.                                         </svg>
  147.                                         <span>Избранные</span>
  148.                                     </a>
  149.                                     <a href="{{ path('account.profile_preferences') }}" class="navigation-item d-flex align-items-center w-100">
  150.                                         <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  151.                                             <path d="M14.0625 2.25H11.25C11.25 1.00898 10.241 0 9 0C7.75898 0 6.75 1.00898 6.75 2.25H3.9375C3.00586 2.25 2.25 3.00586 2.25 3.9375V16.3125C2.25 17.2441 3.00586 18 3.9375 18H14.0625C14.9941 18 15.75 17.2441 15.75 16.3125V3.9375C15.75 3.00586 14.9941 2.25 14.0625 2.25ZM9 1.40625C9.46758 1.40625 9.84375 1.78242 9.84375 2.25C9.84375 2.71758 9.46758 3.09375 9 3.09375C8.53242 3.09375 8.15625 2.71758 8.15625 2.25C8.15625 1.78242 8.53242 1.40625 9 1.40625ZM13.2609 9.55547L8.23359 14.5406C8.06836 14.7059 7.80117 14.7023 7.63594 14.5371L4.73203 11.6086C4.5668 11.4434 4.57031 11.1762 4.73555 11.0109L5.73398 10.0195C5.89922 9.8543 6.16641 9.85781 6.33164 10.023L7.94883 11.6543L11.6754 7.95586C11.8406 7.79063 12.1078 7.79414 12.273 7.95937L13.2645 8.95781C13.4297 9.12656 13.4262 9.39023 13.2609 9.55547Z" fill="#F27900"/>
  152.                                         </svg>
  153.                                         <span>Предпочтения</span>
  154.                                     </a>
  155.                                     <a href="{{ path('account.reviews.profile') }}" class="navigation-item d-flex align-items-center w-100">
  156.                                         <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  157.                                         <path d="M1.8 0.899902H16.2C17.1927 0.899902 18 1.7072 18 2.6999V17.9999L14.4 14.3999H1.8C0.807301 14.3999 0 13.5926 0 12.5999V2.6999C0 1.7072 0.807301 0.899902 1.8 0.899902ZM4.5 9.8999H10.8V8.0999H4.5V9.8999ZM4.5 6.2999H13.5V4.4999H4.5V6.2999Z" fill="#F27900"/>
  158.                                         </svg>
  159.                                         <span>Отзывы к анкетам</span>
  160.                                     </a>
  161.                                     <a href="{{ path('account.settings') }}" class="navigation-item d-flex align-items-center w-100">
  162.                                         <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  163.                                         <path d="M10.9516 10.5571L12.2116 8.37907C12.2926 8.24407 12.2566 8.07307 12.1396 7.97407L10.8076 6.93007C10.8346 6.73207 10.8526 6.52507 10.8526 6.31807C10.8526 6.11107 10.8346 5.90407 10.8076 5.69707L12.1396 4.65307C12.2566 4.55407 12.2926 4.38307 12.2116 4.24807L10.9516 2.07007C10.8706 1.93507 10.7086 1.88107 10.5646 1.93507L8.99856 2.56507C8.67456 2.31307 8.32356 2.10607 7.93656 1.94407L7.70256 0.279066C7.68746 0.206276 7.64805 0.140787 7.59081 0.0933564C7.53357 0.0459261 7.46189 0.0193756 7.38756 0.0180664H4.86756C4.71456 0.0180664 4.57956 0.135066 4.55256 0.288066L4.31856 1.95307C3.94056 2.11507 3.58056 2.32207 3.25656 2.57407L1.69056 1.94407C1.54656 1.89007 1.38456 1.94407 1.30356 2.07907L0.0435626 4.25707C-0.0374374 4.39207 -0.00143729 4.56307 0.115563 4.66207L1.44756 5.70607C1.42056 5.90407 1.40256 6.11107 1.40256 6.31807C1.40256 6.52507 1.42056 6.73207 1.44756 6.93907L0.115563 7.98307C-0.00143729 8.08207 -0.0374374 8.25307 0.0435626 8.38807L1.30356 10.5661C1.38456 10.7011 1.54656 10.7551 1.69056 10.7011L3.25656 10.0711C3.58056 10.3231 3.93156 10.5301 4.31856 10.6921L4.55256 12.3571C4.57956 12.5011 4.71456 12.6181 4.86756 12.6181H7.38756C7.54056 12.6181 7.67556 12.5011 7.70256 12.3481L7.93656 10.6831C8.31456 10.5211 8.67456 10.3141 8.99856 10.0621L10.5646 10.6921C10.7086 10.7461 10.8706 10.6921 10.9516 10.5571ZM6.12756 8.11807C5.13756 8.11807 4.32756 7.30807 4.32756 6.31807C4.32756 5.32807 5.13756 4.51807 6.12756 4.51807C7.11756 4.51807 7.92756 5.32807 7.92756 6.31807C7.92756 7.30807 7.11756 8.11807 6.12756 8.11807ZM17.9266 15.0211L17.0626 14.3551C17.0806 14.2291 17.0986 14.0941 17.0986 13.9591C17.0986 13.8241 17.0896 13.6891 17.0626 13.5631L17.9176 12.8971C17.9896 12.8341 18.0166 12.7261 17.9626 12.6361L17.1526 11.2411C17.1076 11.1511 16.9996 11.1241 16.9006 11.1511L15.9016 11.5561C15.6946 11.3941 15.4696 11.2591 15.2176 11.1601L15.0646 10.0981C15.061 10.05 15.0397 10.0049 15.0048 9.97163C14.9698 9.93837 14.9238 9.91927 14.8756 9.91807H13.2646C13.1656 9.91807 13.0756 9.99007 13.0666 10.0891L12.9136 11.1511C12.6706 11.2591 12.4366 11.3851 12.2296 11.5471L11.2306 11.1421C11.1847 11.1248 11.1342 11.1244 11.0881 11.1409C11.0419 11.1574 11.0031 11.1897 10.9786 11.2321L10.1686 12.6271C10.1236 12.7171 10.1326 12.8251 10.2136 12.8881L11.0686 13.5541C11.0314 13.8168 11.0314 14.0834 11.0686 14.3461L10.2136 15.0121C10.1416 15.0751 10.1146 15.1831 10.1686 15.2731L10.9786 16.6681C11.0236 16.7581 11.1316 16.7851 11.2306 16.7581L12.2296 16.3531C12.4366 16.5151 12.6616 16.6501 12.9136 16.7491L13.0666 17.8111C13.0846 17.9101 13.1656 17.9821 13.2646 17.9821H14.8756C14.9746 17.9821 15.0646 17.9101 15.0736 17.8111L15.2266 16.7491C15.4696 16.6411 15.7036 16.5151 15.9016 16.3531L16.9096 16.7581C16.9996 16.7941 17.1076 16.7581 17.1616 16.6681L17.9716 15.2731C18.0256 15.1921 17.9986 15.0841 17.9266 15.0211ZM14.0656 15.1651C13.7432 15.1649 13.4341 15.0368 13.2062 14.8088C12.9784 14.5807 12.8504 14.2715 12.8506 13.9492C12.8507 13.6268 12.9789 13.3177 13.2069 13.0898C13.4349 12.862 13.7441 12.734 14.0665 12.7342C14.3888 12.7343 14.6979 12.8625 14.9258 13.0905C15.1536 13.3185 15.2816 13.6277 15.2815 13.9501C15.2813 14.2724 15.1532 14.5815 14.9251 14.8094C14.6971 15.0372 14.3879 15.1652 14.0656 15.1651Z" fill="#F27900"/>
  164.                                         </svg>
  165.                                         <span>Настройки</span>
  166.                                     </a>
  167.                                 {% endif %}
  168.                             </div>
  169.                         {% endif %}
  170.                         {% if not (isMainPage and isRussianPage) %}
  171.                         <div class="menu-view current public-view{% if not is_granted('ROLE_USER') %} public-view-unlogin{% endif %}{% if '/account/' == app.request.requestUri|slice(0,9) %} public-menu-in-account{% endif %}" id="menu-public">
  172.                             {# ---- Public Desktop -----#}
  173.                            {#<div class="public-view-desktop">#}
  174.                                {# ---- то что видно на паблике - ссылки ---- #!}
  175.                                <a href="{% if not currentCity.equals(default_city()) %}{{ path("profile_list.list_by_city", {"city": currentCity.uriIdentity}) }}{% else %}{{ path("homepage") }}{% endif %}" class="navigation-item d-flex align-items-center w-100 ">
  176.                                    <svg class="icon mr-3">
  177.                                        <use xlink:href="#icon-home"></use>
  178.                                    </svg>
  179.                                    <span>Главная</span>
  180.                                </a>
  181.                                <a href="{{ path('profile_search.page', {'city': currentCity.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/search/' in activeUri %} current{% endif %}">
  182.                                    <svg class="icon mr-3">
  183.                                        <use xlink:href="#icon-search-navigation"></use>
  184.                                    </svg>
  185.                                    <span>Расширенный поиск</span>
  186.                                </a>
  187.                                <a href="{{ path('station_list.page', {'city': currentCity.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/stations/' in activeUri %} current{% endif %}">
  188.                                    <svg class="icon mr-3">
  189.                                        <use xlink:href="#icon-metro"></use>
  190.                                    </svg>
  191.                                    <span>По метро</span>
  192.                                </a>
  193.                                <a href="{{ path('district_list.page', {'city': currentCity.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/main-district/' in activeUri %} current{% endif %}">
  194.                                    <svg class="icon mr-3">
  195.                                        <use xlink:href="#icon-district"></use>
  196.                                    </svg>
  197.                                    <span>По районам</span>
  198.                                </a>
  199.                                <a href="{{ path('map.page', {'city': currentCity.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/map/' in activeUri %} current{% endif %}">
  200.                                    <svg class="icon mr-3">
  201.                                        <use xlink:href="#icon-map"></use>
  202.                                    </svg>
  203.                                    <span>Интим-карта</span>
  204.                                </a>
  205.                                {# ---------------------------------- #}
  206.                                {# --- нижняя часть --- кнопки вход выход регистрация #!}
  207.                                <div class="navigation-item__content-button p-2">
  208.                                    {% if is_granted('ROLE_USER') %}
  209.                                        <a href="{{ path('logout') }}" class="btn btn-secondary btn-block">Выйти</a>
  210.                                    {% else %}
  211.                                        <a href="{{ path('register', {'city': city.uriIdentity}) }}" class="btn btn-danger btn-block mb-2" rel="nofollow">Зарегистрироваться</a>
  212.                                        <a href="{{ path('login') }}" class="btn btn-secondary btn-block" aria-expanded="false" rel="nofollow">Войти</a>
  213.                                    {% endif %}
  214.                                </div>
  215.                                {# ---------------------------------- #}
  216.                            {#</div>#}
  217.                             {#  ---------------------------------- #}
  218.                             {# ----- Public Mobile ------#}
  219.                             <div class="public-view-mobile">
  220.                                 {# ---- то что видно на паблике ---- #}
  221.                                 <div class="metro-and-city">
  222.                                     {# {% if not isMoscowCity %} #}
  223.                                     <button type="button" class="btn btn-outline-danger d-flex align-items-center justify-content-center mb-2 w-100{% if city.stations|length == 0 %} only-city{% endif %}" id="account-menu-city">
  224.                                         <svg class="icon mr-2">
  225.                                             <use xlink:href="#icon-header-city"></use>
  226.                                         </svg>
  227.                                         <span>{{ (isMainPage and isRussianPage) ? 'Город' : currentCity.name }}</span>
  228.                                     </button>
  229.                                     {# {% endif %} #}
  230.                                     {% if city.stations|length > 0 and not (isMainPage and isRussianPage) %}
  231.                                         <button type="button" class="btn btn-outline-danger d-flex align-items-center justify-content-center w-100" id="account-menu-metro">
  232.                                             <svg class="icon mr-2">
  233.                                                 <use xlink:href="#icon-header-metro"></use>
  234.                                             </svg>
  235.                                             <span>{{ metro ? metro : 'Метро' }}</span>
  236.                                         </button>
  237.                                     {% endif %}
  238.                                 </div>
  239.                                 {# ---- то что видно на паблике - ссылки ---- #}
  240.                                 <a href="{{ linkToMainProfileList }}" class="navigation-item d-flex align-items-center w-100 ">
  241.                                     <svg class="icon mr-3">
  242.                                         <use xlink:href="#icon-home"></use>
  243.                                     </svg>
  244.                                     <span>Главная</span>
  245.                                 </a>
  246.                                 <a href="{{ path('profile_list.list_approved', {'city': currentCity.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/checked/' in activeUri %} current{% endif %}">
  247.                                     <svg class="icon mr-3">
  248.                                         <use xlink:href="#icon-verify"></use>
  249.                                     </svg>
  250.                                     <span>Проверенные анкеты</span>
  251.                                 </a>
  252.                                 <a href="{{ path('profile_list.list_new', {'city': currentCity.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/new/' in activeUri %} current{% endif %}">
  253.                                     <svg class="icon mr-3">
  254.                                         <use xlink:href="#icon-new-profiles"></use>
  255.                                     </svg>
  256.                                     <span>Новые анкеты</span>
  257.                                 </a>
  258.                                 <a href="{{ path('profile_list.list_with_comments', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/comments/' in activeUri %} current{% endif %}">
  259.                                     <svg class="icon">
  260.                                         <use xlink:href="#icon-comments"></use>
  261.                                     </svg>
  262.                                     <span>Анкеты с отзывами</span>
  263.                                 </a>
  264.                                 <a href="{{ path('profile_list.list_with_video', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/video/' in activeUri %} current{% endif %}">
  265.                                     <svg class="icon">
  266.                                         <use xlink:href="#icon-video"></use>
  267.                                     </svg>
  268.                                     <span>Анкеты с видео</span>
  269.                                 </a>
  270.                                 <a href="{{ path('profile_list.list_with_selfie', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/selfie/' in activeUri %} current{% endif %}">
  271.                                     <svg class="icon">
  272.                                         <use xlink:href="#icon-selfie"></use>
  273.                                     </svg>
  274.                                     <span>Анкеты с селфи</span>
  275.                                 </a>
  276.                                 <a href="{{ path('profile_list.list_price_high', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/price/high/' in activeUri %} current{% endif %}">
  277.                                     <svg class="icon">
  278.                                         <use xlink:href="#icon-elite"></use>
  279.                                     </svg>
  280.                                     <span>Элитные</span>
  281.                                 </a>
  282.                                 <a href="{{ path('profile_list.list_price_low', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/price/low/' in activeUri %} current{% endif %}">
  283.                                     <svg class="icon">
  284.                                         <use xlink:href="#icon-cheap"></use>
  285.                                     </svg>
  286.                                     <span>Дешёвые</span>
  287.                                 </a>
  288.                                 <a href="{{ path('map.page', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/map/' in activeUri %} current{% endif %}">
  289.                                     <svg class="icon">
  290.                                         <use xlink:href="#icon-symbol-map"></use>
  291.                                     </svg>
  292.                                     <span>Интим-карта</span>
  293.                                 </a>
  294.                                 {% if city.stations|length > 0 %}
  295.                                 <a href="{{ path('station_list.page', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/stations/' in activeUri %} current{% endif %}">
  296.                                     <svg class="icon">
  297.                                         <use xlink:href="#icon-symbol-metro"></use>
  298.                                     </svg>
  299.                                     <span>По метро</span>
  300.                                 </a>
  301.                                 {% endif %}
  302.                                 {% if city.districts.snapshot %}
  303.                                     <a href="{{ path('district_list.page', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/main-district/' in activeUri %} current{% endif %}">
  304.                                         <svg class="icon">
  305.                                             <use xlink:href="#icon-menu-district"></use>
  306.                                         </svg>
  307.                                         <span>По районам</span>
  308.                                     </a>
  309.                                 {% endif %}
  310.                                 {% if not isMoscowCity %}
  311.                                 <a href="{{ path('city_list.by_country', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/cities/' in activeUri %} current{% endif %}">
  312.                                     <svg class="icon">
  313.                                         <use xlink:href="#icon-menu-city"></use>
  314.                                     </svg>
  315.                                     <span>По городам</span>
  316.                                 </a>
  317.                                 {% endif %}
  318.                                 <a href="{{ path('masseur_list.page', {'city': city.uriIdentity}) }}" class="navigation-item d-flex align-items-center w-100{% if '/massagers/' in activeUri %} current{% endif %}">
  319.                                     <svg class="icon">
  320.                                         <use xlink:href="#icon-masseur"></use>
  321.                                     </svg>
  322.                                     <span>Массажистки</span>
  323.                                 </a>
  324.                                 {# <div class="block-navigation in-header">
  325.                                     <div class="filter-list" id="filter-list">
  326.                                     </div>
  327.                                     <div class="services-list" id="services-list">
  328.                                     </div>
  329.                                 </div> #}
  330.                             </div>
  331.                             {# ---------------------------------- #}
  332.                         </div>
  333.                         {% endif %}
  334.                     </div>
  335.                 </div>
  336.             </div>
  337.             <div class="header-logo header-nav-margin">
  338.                 <a href="{{ linkToMainProfileList }}">
  339.                     <img class="logo__img" src="{{ asset('assets/images/logo-header.png') }}"
  340.                     {% if isMoscowCity %}alt="Проститутки Москвы - Стрелочки24.info"{% else %}alt="Проститутки России - Стрелочки"{% endif %}
  341.                     width="166" height="46">
  342.                 </a>
  343.             </div>
  344.             {% if not (isMainPage and isRussianPage) %} {# not isMoscowCity and  #}
  345.                 <div class="header-city header-nav-margin align-items-center d-none d-md-flex">
  346.                     <button type="button" class="btn btn-outline-danger d-inline-block" id="city-header">
  347.                         <svg class="icon mr-2">
  348.                             <use xlink:href="#icon-header-city"></use>
  349.                         </svg>
  350.                         {{ (isMainPage and isRussianPage) ? 'Город' : currentCity ? currentCity : '' }}
  351.                     </button>
  352.                 </div>
  353.             {% endif %}
  354.             {% if city.stations|length > 0 and not (isMainPage and isRussianPage) %}
  355.                 <div class="header-metro header-nav-margin align-items-center d-none d-md-flex">
  356.                     <button type="button" class="btn btn-outline-danger d-inline-block" id="metro-header">
  357.                         <svg class="icon mr-2">
  358.                             <use xlink:href="#icon-header-metro"></use>
  359.                         </svg>
  360.                         {{ metro ? metro : 'Все станции' }}
  361.                     </button>
  362.                 </div>
  363.             {% endif %}
  364.             {#<div class="header-search header-nav-margin flex-fill d-none d-xl-block position-relative">
  365.                 <form>
  366.                     <div class="header-search__group">
  367.                         <input type="text" class="form-control" placeholder="Поиск по имени, номеру, метро и тд">
  368.                         <button class="btn d-flex align-items-center justify-content-center">
  369.                             <svg class="icon">
  370.                                 <use xlink:href="#icon-search"></use>
  371.                             </svg>
  372.                         </button>
  373.                     </div>
  374.                 </form>
  375.             </div>#}
  376.             <div class="header-profile ml-md-auto">
  377.                 <div class="dropdown header-profile__dropdown">
  378.                     {% if is_granted('ROLE_USER') %}
  379.                         {% if '/account/' != app.request.requestUri|slice(0,9) %}
  380.                             <a class="btn btn-danger profile-button d-flex align-items-center" href="{{ path('account') }}">
  381.                                 <span class="d-none d-sm-flex align-items-center">
  382.                                     <svg class="icon mr-2">
  383.                                         <use xlink:href="#icon-header-user"></use>
  384.                                     </svg>
  385.                                     Войти в кабинет
  386.                                 </span>
  387.                                 <span class="d-block d-sm-none">
  388.                                     <svg class="icon">
  389.                                         <use xlink:href="#icon-header-user"></use>
  390.                                     </svg>
  391.                                 </span>
  392.                             </a>
  393.                         {% else %}
  394.                             <a class="btn btn-light profile-button d-flex align-items-center" href="{{ path('logout') }}">
  395.                                 <span class="d-none d-sm-block">
  396.                                     <div class="d-flex align-items-center">
  397.                                         <svg class="icon mr-2">
  398.                                             <use xlink:href="#icon-header-exit"></use>
  399.                                         </svg>
  400.                                         Выйти
  401.                                     </div>
  402.                                 </span>
  403.                                 <span class="d-block d-sm-none">
  404.                                     <svg class="icon">
  405.                                         <use xlink:href="#icon-header-exit"></use>
  406.                                     </svg>
  407.                                 </span>
  408.                             </a>
  409.                         {% endif %}
  410.                     {% else %}
  411.                         <a class="btn btn-danger profile-button d-flex align-items-center" href="{{ path('account') }}" aria-expanded="false">
  412.                             <span class="d-none d-sm-flex align-items-center">
  413.                                 <svg class="icon mr-2">
  414.                                     <use xlink:href="#icon-header-user"></use>
  415.                                 </svg>
  416.                                 Войти в кабинет
  417.                             </span>
  418.                             <span class="d-block d-sm-none">
  419.                                 <svg class="icon">
  420.                                     <use xlink:href="#icon-header-user"></use>
  421.                                 </svg>
  422.                             </span>
  423.                         </a>
  424.                     {% endif %}
  425.                 </div>
  426.             </div>
  427.         </div>
  428.     </div>
  429.     <div class="container-xl flex-row justify-content-between d-none">
  430.         {# <div class="navbar-brand">
  431.             <button role="button" type="button" class="btn level is-flex main-menu" aria-label="menu" aria-expanded="false" id="main-menu">
  432.                 <svg xmlns="http://www.w3.org/2000/svg" class="show" width="36" height="36" fill="none"><path fill="#fff" fill-rule="evenodd" d="M4.5 12V9h27v3h-27zm0 7.5h27v-3h-27v3zm0 7.5h27v-3h-27v3z" clip-rule="evenodd"/></svg>
  433.                 <svg xmlns="http://www.w3.org/2000/svg" class="close" width="36" height="36" fill="none"><path fill="#fff" d="M28.5 9.6l-2.1-2.1-8.4 8.4-8.4-8.4-2.1 2.1 8.4 8.4-8.4 8.4 2.1 2.1 8.4-8.4 8.4 8.4 2.1-2.1-8.4-8.4 8.4-8.4z"/></svg>
  434.             </button>
  435.             <a class="navbar-item logo" href="{%if app.request.requestUri == '/'%}{{ path('homepage') }}{% elseif '/account/' == app.request.requestUri|slice(0,9) %}{{ path('account') }}{% else %}{{ path('profile_list.list_by_city', {"city": city.uriIdentity}) }}{% endif %}">
  436.                 <svg xmlns="http://www.w3.org/2000/svg" width="166" height="46" fill="none">
  437.                     <path fill="#000"
  438.                           d="M22.5 32V13.4h-3.6L12 25 5 13.4H1.4V32h4V21.1l5.6 9h2l5.4-9.2V32h4.1zm13 .4c2 0 3.7-.5 5.2-1.3a9.4 9.4 0 003.7-13.3 9.4 9.4 0 00-3.7-3.5c-1.5-.8-3.3-1.2-5.2-1.2-2 0-3.7.4-5.3 1.2a9.3 9.3 0 00-5 8.4 9.3 9.3 0 005 8.4 11 11 0 005.3 1.3zm0-3.7a6 6 0 01-3-.8 5.4 5.4 0 01-2.1-2c-.5-1-.8-2-.8-3.2 0-1.1.3-2.2.8-3 .5-1 1.2-1.7 2.1-2.2a6 6 0 013-.7 6 6 0 013 .7c.9.5 1.6 1.2 2 2.1a6.2 6.2 0 010 6.2c-.4 1-1.1 1.6-2 2.1a6 6 0 01-3 .8zm19.1 3.7a11 11 0 004.4-.8 6 6 0 002.7-2.1 5 5 0 00.9-3c0-1.2-.4-2.1-1-2.9a5.8 5.8 0 00-2.4-1.6l-3.5-1c-1.3-.3-2.4-.6-3-.9-.7-.3-1-.8-1-1.4 0-.7.3-1.2.8-1.6.6-.4 1.5-.5 2.7-.5 1.8 0 3.5.4 5.2 1.4l1.4-3.3c-.9-.5-1.9-.9-3-1.2-1.2-.3-2.3-.4-3.5-.4-1.7 0-3.2.2-4.4.8a6 6 0 00-2.6 2c-.6 1-1 2-1 3 0 1.2.4 2.2 1 3 .7.7 1.5 1.3 2.4 1.6.9.3 2 .7 3.5 1l2.2.6c.5.2 1 .4 1.3.7.4.3.6.7.6 1.1 0 .6-.3 1-1 1.5-.5.3-1.4.5-2.7.5a10.8 10.8 0 01-6.1-2L47 30.3c.8.6 2 1.2 3.3 1.6 1.4.4 2.8.6 4.3.6z" />
  439.                     <path fill="#fff"
  440.                           d="M67 32h8.5c2 0 3.8-.3 5.3-1.1a8.7 8.7 0 005-8.2 8.7 8.7 0 00-5-8.2 12 12 0 00-5.3-1H67V32zm4.3-3.5V16.9h4c1.8 0 3.3.6 4.4 1.6 1.1 1 1.7 2.5 1.7 4.2 0 1.8-.6 3.2-1.7 4.2a6.3 6.3 0 01-4.5 1.6h-4zm26.3 3.9c2 0 3.7-.5 5.2-1.3a9.4 9.4 0 003.7-13.3 9.4 9.4 0 00-3.7-3.5c-1.5-.8-3.3-1.2-5.2-1.2-2 0-3.7.4-5.3 1.2a9.3 9.3 0 00-5 8.4 9.4 9.4 0 005 8.4 11 11 0 005.3 1.3zm19.1 0a11 11 0 004.4-.8 6 6 0 002.7-2.1 5 5 0 00.8-3c0-1.2-.3-2.1-1-2.9a5.8 5.8 0 00-2.3-1.6l-3.5-1c-1.3-.3-2.4-.6-3-.9-.7-.3-1-.8-1-1.4 0-.7.3-1.2.8-1.6.6-.4 1.5-.5 2.7-.5 1.7 0 3.5.4 5.2 1.4l1.3-3.3c-.8-.5-1.8-.9-3-1.2-1-.3-2.3-.4-3.5-.4-1.7 0-3.1.2-4.3.8a6 6 0 00-2.7 2c-.6 1-.8 2-.8 3 0 1.2.3 2.2 1 3 .6.7 1.4 1.3 2.3 1.6.9.3 2 .7 3.5 1l2.2.6c.5.2 1 .4 1.3.7.4.3.5.7.5 1.1 0 .6-.3 1-.8 1.5-.6.3-1.5.5-2.8.5a10.8 10.8 0 01-6.1-2l-1.5 3.3c.8.6 2 1.2 3.3 1.6 1.4.4 2.8.6 4.3.6zm18.7 0c2.7 0 4.8-.8 6.2-2.3 1.5-1.4 2.3-3.5 2.3-6.3V13.4h-4.3v10.3c0 1.7-.4 3-1 3.8-.8.8-1.8 1.2-3.2 1.2-2.8 0-4.1-1.7-4.1-5V13.4h-4.4v10.4c0 2.8.8 4.9 2.3 6.3a8.5 8.5 0 006.2 2.3zm24.9-4.5a7 7 0 01-3.4.8c-1.2 0-2.2-.3-3.1-.8-1-.5-1.7-1.2-2.2-2-.5-1-.8-2-.8-3.2 0-1.1.3-2.2.8-3 .5-1 1.2-1.7 2.2-2.2.9-.5 2-.7 3.2-.7 1.8 0 3.5.7 4.8 2l2.8-2.5c-1-1-2-1.8-3.4-2.4-1.3-.5-2.8-.8-4.5-.8-2 0-3.7.4-5.3 1.2a9.2 9.2 0 00-5 8.4c0 1.9.5 3.5 1.4 5a9.2 9.2 0 003.6 3.4 11 11 0 005.3 1.3c1.3 0 2.7-.2 4-.7 1.3-.4 2.5-1 3.5-1.7v-7.6h-4V28z" />
  441.                     <path fill="#000"
  442.                           d="M104.3 9.3c-.1.6-.5 1.6-.5 2.2v1c.2.1.7.5.8 1.3 0 .9-.8 1.4-.8 1.4l-.1 1.4c-.2.6-.8 1.4-.8 1.7-.1.2-.6 1.5-.6 2 0 .6.2 1.8 0 2.6-.2.7-.7 1.4-.9 1.6l-.4.9a12 12 0 01-1.4 2l-.8 1.2c-.3.3-.4.7-.4 1 0 .3.1.8.3 1 .2.2.8 1 1 1.7l.6 2.7.3 2.4c0 .6.2 1.5.5 1.8l1 .9-.1.7-.8 1-.1 1.2c0 .2-.4.4-.5.5l-1 .1c-.3 0-.4.3-.5.2a.4.4 0 01-.3-.2c-.1 0-.3.2-.4 0H98c0-.2 0-.4.3-.5l.7-.2.2-.4.2-.7H99l-.2.6c0 .1-.3.3-.5.2l-1.2.1c-.1 0-.3.1-.3-.1 0-.3.2-.6.4-.7.2-.1.4-.7.4-.8l.3-.9.4-.9c0-.4-.3-1.1-.5-1.3l-1.6-2.7c-.6-1-.6-2.1-.6-2.3l-.1-.6-.3-1.2-.3-1a17 17 0 01-.7-2c-.1-.4-1.1-2.3-1.5-4.8-.1-1.3.1-2.1.4-2.8a11 11 0 00-.6-1c-.2-.1-.7-1.2-.9-1.3-.1-.2-.4-.8-.3-1.2a31.1 31.1 0 012.2-5.4c0-.2.7-1.5 1-1.7.2-.3 1-.5 1.5-.4v-.1c-1.3-.3-.8-2-.8-2l.2-1.4.2-1.2v-1l-.5.6-.2.2-.2.2c0 .1-.1 0-.2 0l-.2-.8h-.2v.4l-.3.3v-.3V4l.1-.3.4-.4.3-.6s0-.2.3-.2l.6-.1c.4 0 1.2-.5 1.3-.6l.5-.2h.4a62 62 0 016.6.8l.2 1c0 .3.3 1.8.3 2.9 0 1-.5 2.4-.6 3zm-9.2-6l-.2.3V4h.2v-.6zm.6 5.6a2 2 0 01-.2-.7V9c0 .2.4.4.5.4l-.3-.4zm.7 5.4l-.9-1-1.1 1.6c-.4.4-.7 1.4-1.2 2-.4.3 0 .5 0 .5a35.7 35.7 0 001 1.8c.5-.7 1.7-1.6 2-1.9l.8-.5c.2-.3.2-.7.2-1.1-.8-.2-.8-1.2-.8-1.4zm4.8-11L99.9 3c.2.2.7.6.8 1 .2.6.4 1.4.4 2 0 .7.2 2.2.5 3l.6-1.1.4-.8.2-3.3-1.6-.4z" />
  443.                 </svg>
  444.             </a>
  445.             <div class="menu level">
  446.                 {% if is_granted('ROLE_USER') %}
  447.                     <button type="button" class="level-item has-text-centered" id="right-menu-btn-2">
  448.                         <svg viewport="0 0 36 36" xmlns="http://www.w3.org/2000/svg" width="36" height="36" fill="none">
  449.                             <path fill="#fff" fill-rule="evenodd"
  450.                                   d="M18 3a15 15 0 100 30 15 15 0 000-30zm-7.4 24.4c.7-1.3 4.6-2.6 7.4-2.6 2.8 0 6.8 1.3 7.4 2.6a11.8 11.8 0 01-14.8 0zm7.4-5.6c2.2 0 7.4.8 9.5 3.4a12 12 0 10-19 0c2.1-2.6 7.3-3.4 9.5-3.4zM18 9c-3 0-5.3 2.3-5.3 5.3 0 2.9 2.4 5.2 5.3 5.2 3 0 5.3-2.3 5.3-5.3 0-2.9-2.4-5.2-5.3-5.2zm-2.3 5.3a2.2 2.2 0 104.5 0 2.2 2.2 0 00-4.4 0z"
  451.                                   clip-rule="evenodd" /></svg>
  452.                     </button>
  453.                     <nav class="right-menu-list" id="right-menu-list-2">
  454.                         <ul>
  455.                             {% if is_user_advertiser(app.user) %}
  456.                                 <li>
  457.                                     <a href="{{ path('account') }}" class="is-flex level">
  458.                                         <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M15.75 15H13.5V3h2.25v12zm-7.5 0H6V5.25h2.25V15zm-6 0H4.5v-4.5H2.25V15zm7.5 0V8.25H12V15H9.75z" clip-rule="evenodd"/></svg></i>
  459.                                         <span>Статистика</span>
  460.                                     </a>
  461.                                 </li>
  462.                                 <li>
  463.                                     <a href="{{ path('account_girls') }}" class="is-flex level">
  464.                                         <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M14.25 3h-3.13A2.26 2.26 0 009 1.5c-.97 0-1.8.63-2.12 1.5H3.75c-.83 0-1.5.67-1.5 1.5V15c0 .82.67 1.5 1.5 1.5h10.5c.82 0 1.5-.68 1.5-1.5V4.5c0-.83-.68-1.5-1.5-1.5zM9 2.81c.16 0 .3.08.41.19.1.1.15.23.15.38 0 .3-.25.56-.56.56a.57.57 0 01-.56-.56c0-.15.06-.28.15-.38.1-.11.25-.19.41-.19zM3.75 4.5V15h10.5V4.5H3.75zM9 5.25A2.26 2.26 0 006.75 7.5 2.26 2.26 0 009 9.75a2.26 2.26 0 002.25-2.25A2.26 2.26 0 009 5.25zM8.25 7.5c0 .41.34.75.75.75s.75-.34.75-.75A.75.75 0 009 6.75a.75.75 0 00-.75.75zM4.5 13.1v1.15h9V13.1c0-1.87-2.98-2.68-4.5-2.68s-4.5.8-4.5 2.68zM9 11.91c-.98 0-2.25.42-2.77.84h5.54A5.24 5.24 0 009 11.91z" clip-rule="evenodd"/></svg></i>
  465.                                         <span>Мои анкеты</span>
  466.                                     </a>
  467.                                 </li>
  468.                                 <li>
  469.                                     <a href="{{ path('account.profile_management.commented_profiles') }}" class="is-flex level">
  470.                                         <i><svg class="icon">
  471.                                             <use xlink:href="#icon-navigation-comments"></use>
  472.                                         </svg></i>
  473.                                         <span>Отзывы</span>
  474.                                     </a>
  475.                                 </li>
  476.                                 <li>
  477.                                     <a href="{{ path('account.support_messages.write') }}" class="is-flex level">
  478.                                         <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M1.5 9a7.5 7.5 0 1115 0 7.5 7.5 0 01-15 0zm8.25 3v1.5h-1.5V12h1.5zM9 15a6 6 0 11.02-12.02A6 6 0 019 15zM6 7.5a3 3 0 116 0c0 .96-.6 1.48-1.17 1.98-.55.48-1.08.95-1.08 1.77h-1.5c0-1.37.7-1.9 1.33-2.38.49-.38.92-.71.92-1.37C10.5 6.67 9.82 6 9 6s-1.5.67-1.5 1.5H6z" clip-rule="evenodd"/></svg></i>
  479.                                         <span>Помощь</span></a>
  480.                                 </li>
  481.                                 <li>
  482.                                     <a href="{{ path('account.settings') }}" class="is-flex level">
  483.                                         <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M14.63 9c0 .26-.03.5-.06.73l1.59 1.24c.14.12.18.32.09.48l-1.5 2.6a.37.37 0 01-.33.18c-.04 0-.09 0-.13-.02l-1.87-.75c-.39.3-.8.55-1.27.74l-.28 1.98a.37.37 0 01-.37.32h-3a.37.37 0 01-.37-.32l-.28-1.98a5.48 5.48 0 01-1.27-.74l-1.87.75a.37.37 0 01-.46-.17l-1.5-2.59a.38.38 0 01.1-.48l1.58-1.24a5.95 5.95 0 010-1.46L1.85 7.03a.37.37 0 01-.1-.48l1.5-2.6c.07-.12.2-.19.33-.19.04 0 .09.01.13.03l1.87.75c.4-.3.81-.55 1.27-.74l.28-1.98a.37.37 0 01.37-.32h3c.19 0 .35.14.37.31l.28 2c.46.18.88.43 1.27.73l1.87-.75a.37.37 0 01.46.17l1.5 2.59c.09.16.05.37-.1.48l-1.58 1.24c.03.24.06.47.06.73zm-1.5 0a4 4 0 00-.04-.55l-.1-.84.66-.53.8-.64-.52-.9-.95.38-.8.32-.68-.53c-.3-.22-.6-.4-.92-.53l-.8-.32-.12-.85L9.52 3H8.48l-.15 1.01-.12.85-.8.32c-.3.13-.61.31-.94.55l-.67.51-.78-.32-.95-.38-.53.91.81.63.67.53-.1.84a5.74 5.74 0 000 1.1l.1.85-.67.53-.8.63.52.9.95-.38.8-.32.68.53c.3.22.6.4.92.53l.8.32.11.85.15 1.01h1.05l.15-1.01.12-.85.8-.32c.3-.13.6-.31.93-.55l.67-.51.78.31.96.39.52-.91-.8-.63-.68-.53.1-.84c.03-.23.05-.4.05-.55zM9 6a3 3 0 100 6 3 3 0 000-6zM7.5 9c0 .82.68 1.5 1.5 1.5.83 0 1.5-.68 1.5-1.5S9.83 7.5 9 7.5c-.82 0-1.5.68-1.5 1.5z" clip-rule="evenodd"/></svg></i>
  484.                                         <span>Настройка</span>
  485.                                     </a>
  486.                                 </li>
  487.                             {% else %}
  488.                                     <a href="{{ path('account.preferred_profiles.list') }}" class="navigation-item d-flex align-items-center w-100">
  489.                                                                                 <svg class="icon" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
  490.                                         <path d="M17.8565 11.2346L16.6837 10.0491C16.4897 9.85086 16.1733 9.85086 15.975 10.0449L11.5537 14.4324L9.6342 12.5002C9.44014 12.302 9.12373 12.302 8.92545 12.496L7.73998 13.673C7.5417 13.8671 7.5417 14.1835 7.73577 14.3818L11.1825 17.8538C11.3765 18.0521 11.693 18.0521 11.8912 17.8581L17.8523 11.9434C18.0464 11.7451 18.0506 11.4287 17.8565 11.2346Z" fill="#F27900"/>
  491.                                         <path d="M7.2 8.0999C9.18822 8.0999 10.8 6.48813 10.8 4.4999C10.8 2.51168 9.18822 0.899902 7.2 0.899902C5.21177 0.899902 3.6 2.51168 3.6 4.4999C3.6 6.48813 5.21177 8.0999 7.2 8.0999Z" fill="#F27900"/>
  492.                                         <path d="M7.515 9.9089C5.058 9.8189 0 11.0429 0 13.4999V15.2999H5.85C5.85 14.0896 5.92295 10.9567 9.12682 10.9567C9.72263 10.9567 9.66865 10.9567 10.35 10.9567C10.35 10.674 10.35 10.5444 10.35 10.3499C9.45 9.8999 7.49818 9.95095 7.515 9.9089Z" fill="#F27900"/>
  493.                                         </svg>
  494.                                         <span>Для Вас</span>
  495.                                     </a>
  496.                                     <a href="{{ path('account.city_profiles') }}" class="navigation-item d-flex align-items-center w-100">
  497.                         <svg class="icon" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
  498.                         <path d="M17.8565 11.2346L16.6837 10.0491C16.4897 9.85086 16.1733 9.85086 15.975 10.0449L11.5537 14.4324L9.6342 12.5002C9.44014 12.302 9.12373 12.302 8.92545 12.496L7.73998 13.673C7.5417 13.8671 7.5417 14.1835 7.73577 14.3818L11.1825 17.8538C11.3765 18.0521 11.693 18.0521 11.8912 17.8581L17.8523 11.9434C18.0464 11.7451 18.0506 11.4287 17.8565 11.2346Z" fill="#F27900"/>
  499.                         <path d="M7.2 8.0999C9.18822 8.0999 10.8 6.48813 10.8 4.4999C10.8 2.51168 9.18822 0.899902 7.2 0.899902C5.21177 0.899902 3.6 2.51168 3.6 4.4999C3.6 6.48813 5.21177 8.0999 7.2 8.0999Z" fill="#F27900"/>
  500.                         <path d="M7.515 9.9089C5.058 9.8189 0 11.0429 0 13.4999V15.2999H5.85C5.85 14.0896 5.92295 10.9567 9.12682 10.9567C9.72263 10.9567 9.66865 10.9567 10.35 10.9567C10.35 10.674 10.35 10.5444 10.35 10.3499C9.45 9.8999 7.49818 9.95095 7.515 9.9089Z" fill="#F27900"/>
  501.                         </svg>
  502.                                         <span>В Вашем городе</span>
  503.                                     </a>
  504.                                     <a href="{{ path('account.favourites.profiles') }}" class="navigation-item d-flex align-items-center w-100">
  505. <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  506. <path d="M15.3 18V1.8C15.3 0.8073 14.4927 0 13.5 0H4.50001C3.50731 0 2.70001 0.8073 2.70001 1.8V18L9.00001 13.8006L15.3 18ZM5.40541 5.4504C5.40541 4.9392 5.60701 4.4757 5.93191 4.14C6.25681 3.8052 6.70591 3.5973 7.20271 3.5973C7.20271 3.5973 8.09911 3.5946 9.00001 4.5234C9.90091 3.5946 10.7973 3.5973 10.7973 3.5973C11.2941 3.5973 11.7432 3.8043 12.0681 4.14C12.393 4.4757 12.5946 4.9392 12.5946 5.4504C12.5946 5.9616 12.393 6.426 12.0681 6.7608L9.00001 10.0827L5.93191 6.7608C5.59231 6.40933 5.40339 5.93913 5.40541 5.4504Z" fill="#F27900"/>
  507. </svg>
  508.                                         <span>Избранные</span>
  509.                                     </a>
  510.                                     <a href="{{ path('account.profile_preferences') }}" class="navigation-item d-flex align-items-center w-100">
  511. <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  512. <path d="M14.0625 2.25H11.25C11.25 1.00898 10.241 0 9 0C7.75898 0 6.75 1.00898 6.75 2.25H3.9375C3.00586 2.25 2.25 3.00586 2.25 3.9375V16.3125C2.25 17.2441 3.00586 18 3.9375 18H14.0625C14.9941 18 15.75 17.2441 15.75 16.3125V3.9375C15.75 3.00586 14.9941 2.25 14.0625 2.25ZM9 1.40625C9.46758 1.40625 9.84375 1.78242 9.84375 2.25C9.84375 2.71758 9.46758 3.09375 9 3.09375C8.53242 3.09375 8.15625 2.71758 8.15625 2.25C8.15625 1.78242 8.53242 1.40625 9 1.40625ZM13.2609 9.55547L8.23359 14.5406C8.06836 14.7059 7.80117 14.7023 7.63594 14.5371L4.73203 11.6086C4.5668 11.4434 4.57031 11.1762 4.73555 11.0109L5.73398 10.0195C5.89922 9.8543 6.16641 9.85781 6.33164 10.023L7.94883 11.6543L11.6754 7.95586C11.8406 7.79063 12.1078 7.79414 12.273 7.95937L13.2645 8.95781C13.4297 9.12656 13.4262 9.39023 13.2609 9.55547Z" fill="#F27900"/>
  513. </svg>
  514.                                         <span>Предпочтения</span>
  515.                                     </a>
  516.                                     <a href="{{ path('account.reviews.profile') }}" class="navigation-item d-flex align-items-center w-100">
  517. <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  518. <path d="M1.8 0.899902H16.2C17.1927 0.899902 18 1.7072 18 2.6999V17.9999L14.4 14.3999H1.8C0.807301 14.3999 0 13.5926 0 12.5999V2.6999C0 1.7072 0.807301 0.899902 1.8 0.899902ZM4.5 9.8999H10.8V8.0999H4.5V9.8999ZM4.5 6.2999H13.5V4.4999H4.5V6.2999Z" fill="#F27900"/>
  519. </svg>
  520.                                         <span>Отзывы к анкетам</span>
  521.                                     </a>
  522.                                     <a href="{{ path('account.settings') }}" class="navigation-item d-flex align-items-center w-100">
  523. <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  524. <path d="M10.9516 10.5571L12.2116 8.37907C12.2926 8.24407 12.2566 8.07307 12.1396 7.97407L10.8076 6.93007C10.8346 6.73207 10.8526 6.52507 10.8526 6.31807C10.8526 6.11107 10.8346 5.90407 10.8076 5.69707L12.1396 4.65307C12.2566 4.55407 12.2926 4.38307 12.2116 4.24807L10.9516 2.07007C10.8706 1.93507 10.7086 1.88107 10.5646 1.93507L8.99856 2.56507C8.67456 2.31307 8.32356 2.10607 7.93656 1.94407L7.70256 0.279066C7.68746 0.206276 7.64805 0.140787 7.59081 0.0933564C7.53357 0.0459261 7.46189 0.0193756 7.38756 0.0180664H4.86756C4.71456 0.0180664 4.57956 0.135066 4.55256 0.288066L4.31856 1.95307C3.94056 2.11507 3.58056 2.32207 3.25656 2.57407L1.69056 1.94407C1.54656 1.89007 1.38456 1.94407 1.30356 2.07907L0.0435626 4.25707C-0.0374374 4.39207 -0.00143729 4.56307 0.115563 4.66207L1.44756 5.70607C1.42056 5.90407 1.40256 6.11107 1.40256 6.31807C1.40256 6.52507 1.42056 6.73207 1.44756 6.93907L0.115563 7.98307C-0.00143729 8.08207 -0.0374374 8.25307 0.0435626 8.38807L1.30356 10.5661C1.38456 10.7011 1.54656 10.7551 1.69056 10.7011L3.25656 10.0711C3.58056 10.3231 3.93156 10.5301 4.31856 10.6921L4.55256 12.3571C4.57956 12.5011 4.71456 12.6181 4.86756 12.6181H7.38756C7.54056 12.6181 7.67556 12.5011 7.70256 12.3481L7.93656 10.6831C8.31456 10.5211 8.67456 10.3141 8.99856 10.0621L10.5646 10.6921C10.7086 10.7461 10.8706 10.6921 10.9516 10.5571ZM6.12756 8.11807C5.13756 8.11807 4.32756 7.30807 4.32756 6.31807C4.32756 5.32807 5.13756 4.51807 6.12756 4.51807C7.11756 4.51807 7.92756 5.32807 7.92756 6.31807C7.92756 7.30807 7.11756 8.11807 6.12756 8.11807ZM17.9266 15.0211L17.0626 14.3551C17.0806 14.2291 17.0986 14.0941 17.0986 13.9591C17.0986 13.8241 17.0896 13.6891 17.0626 13.5631L17.9176 12.8971C17.9896 12.8341 18.0166 12.7261 17.9626 12.6361L17.1526 11.2411C17.1076 11.1511 16.9996 11.1241 16.9006 11.1511L15.9016 11.5561C15.6946 11.3941 15.4696 11.2591 15.2176 11.1601L15.0646 10.0981C15.061 10.05 15.0397 10.0049 15.0048 9.97163C14.9698 9.93837 14.9238 9.91927 14.8756 9.91807H13.2646C13.1656 9.91807 13.0756 9.99007 13.0666 10.0891L12.9136 11.1511C12.6706 11.2591 12.4366 11.3851 12.2296 11.5471L11.2306 11.1421C11.1847 11.1248 11.1342 11.1244 11.0881 11.1409C11.0419 11.1574 11.0031 11.1897 10.9786 11.2321L10.1686 12.6271C10.1236 12.7171 10.1326 12.8251 10.2136 12.8881L11.0686 13.5541C11.0314 13.8168 11.0314 14.0834 11.0686 14.3461L10.2136 15.0121C10.1416 15.0751 10.1146 15.1831 10.1686 15.2731L10.9786 16.6681C11.0236 16.7581 11.1316 16.7851 11.2306 16.7581L12.2296 16.3531C12.4366 16.5151 12.6616 16.6501 12.9136 16.7491L13.0666 17.8111C13.0846 17.9101 13.1656 17.9821 13.2646 17.9821H14.8756C14.9746 17.9821 15.0646 17.9101 15.0736 17.8111L15.2266 16.7491C15.4696 16.6411 15.7036 16.5151 15.9016 16.3531L16.9096 16.7581C16.9996 16.7941 17.1076 16.7581 17.1616 16.6681L17.9716 15.2731C18.0256 15.1921 17.9986 15.0841 17.9266 15.0211ZM14.0656 15.1651C13.7432 15.1649 13.4341 15.0368 13.2062 14.8088C12.9784 14.5807 12.8504 14.2715 12.8506 13.9492C12.8507 13.6268 12.9789 13.3177 13.2069 13.0898C13.4349 12.862 13.7441 12.734 14.0665 12.7342C14.3888 12.7343 14.6979 12.8625 14.9258 13.0905C15.1536 13.3185 15.2816 13.6277 15.2815 13.9501C15.2813 14.2724 15.1532 14.5815 14.9251 14.8094C14.6971 15.0372 14.3879 15.1652 14.0656 15.1651Z" fill="#F27900"/>
  525. </svg>
  526.                                         <span>Настройки</span>
  527.                                     </a>
  528.                                 {% endif %}
  529.                             <li>
  530.                                 <a href="{{ path('logout') }}" class="is-flex level">
  531.                                     <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M9 1.5a7.5 7.5 0 10-.01 14.99A7.5 7.5 0 009 1.5zM9 15a6 6 0 11.02-12.02A6 6 0 019 15zm0-7.06l2.7-2.69 1.05 1.06L10.05 9l2.7 2.7-1.06 1.05L9 10.05l-2.7 2.7-1.05-1.06L7.95 9l-2.7-2.7 1.06-1.05L9 7.95z" clip-rule="evenodd"/></svg></i>
  532.                                     <span>Выход</span>
  533.                                 </a>
  534.                             </li>
  535.                         </ul>
  536.                     </nav>
  537.                 {% else %}
  538.                     <button type="button" class="level-item has-text-centered" id="right-login-btn-2">
  539.                         <svg viewport="0 0 36 36" xmlns="http://www.w3.org/2000/svg" width="36" height="36" fill="none">
  540.                             <path fill="#fff" fill-rule="evenodd"
  541.                                   d="M18 3a15 15 0 100 30 15 15 0 000-30zm-7.4 24.4c.7-1.3 4.6-2.6 7.4-2.6 2.8 0 6.8 1.3 7.4 2.6a11.8 11.8 0 01-14.8 0zm7.4-5.6c2.2 0 7.4.8 9.5 3.4a12 12 0 10-19 0c2.1-2.6 7.3-3.4 9.5-3.4zM18 9c-3 0-5.3 2.3-5.3 5.3 0 2.9 2.4 5.2 5.3 5.2 3 0 5.3-2.3 5.3-5.3 0-2.9-2.4-5.2-5.3-5.2zm-2.3 5.3a2.2 2.2 0 104.5 0 2.2 2.2 0 00-4.4 0z"
  542.                                   clip-rule="evenodd" /></svg>
  543.                     </button>
  544.                 {% endif %}
  545.             </div>
  546.         </div> #}
  547.         <div class="navbar-menu-block">
  548.             {% if '/account/' != app.request.requestUri|slice(0,9) %}
  549.                 <div class="button-list">
  550.                     <div class="navbar-item">
  551.                         <button type="button" class="btn-border-style level level-item has-text-centered" id="city-header">
  552.                             <svg xmlns="http://www.w3.org/2000/svg" width="14" height="20" fill="none">
  553.                                 <path fill="#fff" fill-rule="evenodd"
  554.                                       d="M7 0a7 7 0 00-7 7c0 5.3 7 13 7 13s7-7.8 7-13a7 7 0 00-7-7zM2 7a5 5 0 0110 0c0 2.9-2.9 7.2-5 9.9-2-2.7-5-7-5-9.9zm2.5 0a2.5 2.5 0 115 0 2.5 2.5 0 01-5 0z"
  555.                                       clip-rule="evenodd" /></svg>
  556.                             <span>{{ city.name }}</span>
  557.                         </button>
  558.                     </div>
  559.                     {% if city.stations|length > 0 %}
  560.                         <div class="navbar-item">
  561.                             <button type="button" class="btn-border-style level level-item has-text-centered" id="metro-header">
  562.                                 <svg xmlns="http://www.w3.org/2000/svg" viewport="0 0 20 20" width="20" height="20" fill="none">
  563.                                     <path fill="#fff" fill-rule="evenodd"
  564.                                           d="M10 2.5a10 10 0 018.7 15H1.3c-.8-1.4-1.3-3.1-1.3-5a10 10 0 0110-10zM3 14H2v1.5h5.7V14h-.9l.9-2.3 2.3 3.9 2.4-4 .8 2.4h-.8v1.5H18V14H17l-3.8-9.5L10 10 6.8 4.5 3.1 14z"
  565.                                           clip-rule="evenodd" /></svg>
  566.                                 <span>{{ metro ? metro : 'Все станции' }}</span>
  567.                             </button>
  568.                         </div>
  569.                     {% endif %}
  570.                 </div>
  571.             {% endif %}
  572.             <div class="menu level">
  573.                 {% if is_granted('ROLE_USER') %}
  574.                     <button type="button" class="btn-fill-style level level-item has-text-centered dropdown-icon right-menu-btn" id="right-menu-btn">
  575.                         <span>Личный кабинет</span>
  576.                     </button>
  577.                     <nav class="right-menu-list" id="right-menu-list">
  578.                         <ul>
  579.                             {% if is_user_advertiser(app.user) %}
  580.                                 {# <li>
  581.                                     <a href="{{ path('account') }}" class="is-flex level">
  582.                                         <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M15.75 15H13.5V3h2.25v12zm-7.5 0H6V5.25h2.25V15zm-6 0H4.5v-4.5H2.25V15zm7.5 0V8.25H12V15H9.75z" clip-rule="evenodd"/></svg></i>
  583.                                         <span>Статистика</span>
  584.                                     </a>
  585.                                 </li> #}
  586.                                 <li>
  587.                                     <a href="{{ path('account_girls') }}" class="is-flex level">
  588.                                         <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M14.25 3h-3.13A2.26 2.26 0 009 1.5c-.97 0-1.8.63-2.12 1.5H3.75c-.83 0-1.5.67-1.5 1.5V15c0 .82.67 1.5 1.5 1.5h10.5c.82 0 1.5-.68 1.5-1.5V4.5c0-.83-.68-1.5-1.5-1.5zM9 2.81c.16 0 .3.08.41.19.1.1.15.23.15.38 0 .3-.25.56-.56.56a.57.57 0 01-.56-.56c0-.15.06-.28.15-.38.1-.11.25-.19.41-.19zM3.75 4.5V15h10.5V4.5H3.75zM9 5.25A2.26 2.26 0 006.75 7.5 2.26 2.26 0 009 9.75a2.26 2.26 0 002.25-2.25A2.26 2.26 0 009 5.25zM8.25 7.5c0 .41.34.75.75.75s.75-.34.75-.75A.75.75 0 009 6.75a.75.75 0 00-.75.75zM4.5 13.1v1.15h9V13.1c0-1.87-2.98-2.68-4.5-2.68s-4.5.8-4.5 2.68zM9 11.91c-.98 0-2.25.42-2.77.84h5.54A5.24 5.24 0 009 11.91z" clip-rule="evenodd"/></svg></i>
  589.                                         <span>Мои анкеты</span>
  590.                                     </a>
  591.                                 </li>
  592.                                 <li>
  593.                                     <a href="{{ path('account.profile_management.commented_profiles') }}" class="is-flex level">
  594.                                         <i><svg class="icon">
  595.                                             <use xlink:href="#icon-navigation-comments"></use>
  596.                                         </svg></i>
  597.                                         <span>Отзывы</span>
  598.                                     </a>
  599.                                 </li>
  600.                                 <li>
  601.                                     <a href="{{ path('account.support_messages.write') }}" class="is-flex level">
  602.                                         <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M1.5 9a7.5 7.5 0 1115 0 7.5 7.5 0 01-15 0zm8.25 3v1.5h-1.5V12h1.5zM9 15a6 6 0 11.02-12.02A6 6 0 019 15zM6 7.5a3 3 0 116 0c0 .96-.6 1.48-1.17 1.98-.55.48-1.08.95-1.08 1.77h-1.5c0-1.37.7-1.9 1.33-2.38.49-.38.92-.71.92-1.37C10.5 6.67 9.82 6 9 6s-1.5.67-1.5 1.5H6z" clip-rule="evenodd"/></svg></i>
  603.                                         <span>Помощь</span></a>
  604.                                 </li>
  605.                                 <li>
  606.                                     <a href="{{ path('account.settings') }}" class="is-flex level">
  607.                                         <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M14.63 9c0 .26-.03.5-.06.73l1.59 1.24c.14.12.18.32.09.48l-1.5 2.6a.37.37 0 01-.33.18c-.04 0-.09 0-.13-.02l-1.87-.75c-.39.3-.8.55-1.27.74l-.28 1.98a.37.37 0 01-.37.32h-3a.37.37 0 01-.37-.32l-.28-1.98a5.48 5.48 0 01-1.27-.74l-1.87.75a.37.37 0 01-.46-.17l-1.5-2.59a.38.38 0 01.1-.48l1.58-1.24a5.95 5.95 0 010-1.46L1.85 7.03a.37.37 0 01-.1-.48l1.5-2.6c.07-.12.2-.19.33-.19.04 0 .09.01.13.03l1.87.75c.4-.3.81-.55 1.27-.74l.28-1.98a.37.37 0 01.37-.32h3c.19 0 .35.14.37.31l.28 2c.46.18.88.43 1.27.73l1.87-.75a.37.37 0 01.46.17l1.5 2.59c.09.16.05.37-.1.48l-1.58 1.24c.03.24.06.47.06.73zm-1.5 0a4 4 0 00-.04-.55l-.1-.84.66-.53.8-.64-.52-.9-.95.38-.8.32-.68-.53c-.3-.22-.6-.4-.92-.53l-.8-.32-.12-.85L9.52 3H8.48l-.15 1.01-.12.85-.8.32c-.3.13-.61.31-.94.55l-.67.51-.78-.32-.95-.38-.53.91.81.63.67.53-.1.84a5.74 5.74 0 000 1.1l.1.85-.67.53-.8.63.52.9.95-.38.8-.32.68.53c.3.22.6.4.92.53l.8.32.11.85.15 1.01h1.05l.15-1.01.12-.85.8-.32c.3-.13.6-.31.93-.55l.67-.51.78.31.96.39.52-.91-.8-.63-.68-.53.1-.84c.03-.23.05-.4.05-.55zM9 6a3 3 0 100 6 3 3 0 000-6zM7.5 9c0 .82.68 1.5 1.5 1.5.83 0 1.5-.68 1.5-1.5S9.83 7.5 9 7.5c-.82 0-1.5.68-1.5 1.5z" clip-rule="evenodd"/></svg></i>
  608.                                         <span>Настройка</span>
  609.                                     </a>
  610.                                 </li>
  611.                             {% else %}
  612.                                     <a href="{{ path('account.preferred_profiles.list') }}" class="navigation-item d-flex align-items-center w-100">
  613.                                         <svg class="icon" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
  614.                                         <path d="M17.8565 11.2346L16.6837 10.0491C16.4897 9.85086 16.1733 9.85086 15.975 10.0449L11.5537 14.4324L9.6342 12.5002C9.44014 12.302 9.12373 12.302 8.92545 12.496L7.73998 13.673C7.5417 13.8671 7.5417 14.1835 7.73577 14.3818L11.1825 17.8538C11.3765 18.0521 11.693 18.0521 11.8912 17.8581L17.8523 11.9434C18.0464 11.7451 18.0506 11.4287 17.8565 11.2346Z" fill="#F27900"/>
  615.                                         <path d="M7.2 8.0999C9.18822 8.0999 10.8 6.48813 10.8 4.4999C10.8 2.51168 9.18822 0.899902 7.2 0.899902C5.21177 0.899902 3.6 2.51168 3.6 4.4999C3.6 6.48813 5.21177 8.0999 7.2 8.0999Z" fill="#F27900"/>
  616.                                         <path d="M7.515 9.9089C5.058 9.8189 0 11.0429 0 13.4999V15.2999H5.85C5.85 14.0896 5.92295 10.9567 9.12682 10.9567C9.72263 10.9567 9.66865 10.9567 10.35 10.9567C10.35 10.674 10.35 10.5444 10.35 10.3499C9.45 9.8999 7.49818 9.95095 7.515 9.9089Z" fill="#F27900"/>
  617.                                         </svg>
  618.                                         <span>Для Вас</span>
  619.                                     </a>
  620.                                     <a href="{{ path('account.city_profiles') }}" class="navigation-item d-flex align-items-center w-100">
  621.                         <svg class="icon" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
  622.                         <path d="M17.8565 11.2346L16.6837 10.0491C16.4897 9.85086 16.1733 9.85086 15.975 10.0449L11.5537 14.4324L9.6342 12.5002C9.44014 12.302 9.12373 12.302 8.92545 12.496L7.73998 13.673C7.5417 13.8671 7.5417 14.1835 7.73577 14.3818L11.1825 17.8538C11.3765 18.0521 11.693 18.0521 11.8912 17.8581L17.8523 11.9434C18.0464 11.7451 18.0506 11.4287 17.8565 11.2346Z" fill="#F27900"/>
  623.                         <path d="M7.2 8.0999C9.18822 8.0999 10.8 6.48813 10.8 4.4999C10.8 2.51168 9.18822 0.899902 7.2 0.899902C5.21177 0.899902 3.6 2.51168 3.6 4.4999C3.6 6.48813 5.21177 8.0999 7.2 8.0999Z" fill="#F27900"/>
  624.                         <path d="M7.515 9.9089C5.058 9.8189 0 11.0429 0 13.4999V15.2999H5.85C5.85 14.0896 5.92295 10.9567 9.12682 10.9567C9.72263 10.9567 9.66865 10.9567 10.35 10.9567C10.35 10.674 10.35 10.5444 10.35 10.3499C9.45 9.8999 7.49818 9.95095 7.515 9.9089Z" fill="#F27900"/>
  625.                         </svg>
  626.                                         <span>В Вашем городе</span>
  627.                                     </a>
  628.                                     <a href="{{ path('account.favourites.profiles') }}" class="navigation-item d-flex align-items-center w-100">
  629. <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  630. <path d="M15.3 18V1.8C15.3 0.8073 14.4927 0 13.5 0H4.50001C3.50731 0 2.70001 0.8073 2.70001 1.8V18L9.00001 13.8006L15.3 18ZM5.40541 5.4504C5.40541 4.9392 5.60701 4.4757 5.93191 4.14C6.25681 3.8052 6.70591 3.5973 7.20271 3.5973C7.20271 3.5973 8.09911 3.5946 9.00001 4.5234C9.90091 3.5946 10.7973 3.5973 10.7973 3.5973C11.2941 3.5973 11.7432 3.8043 12.0681 4.14C12.393 4.4757 12.5946 4.9392 12.5946 5.4504C12.5946 5.9616 12.393 6.426 12.0681 6.7608L9.00001 10.0827L5.93191 6.7608C5.59231 6.40933 5.40339 5.93913 5.40541 5.4504Z" fill="#F27900"/>
  631. </svg>
  632.                                         <span>Избранные</span>
  633.                                     </a>
  634.                                     <a href="{{ path('account.profile_preferences') }}" class="navigation-item d-flex align-items-center w-100">
  635. <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  636. <path d="M14.0625 2.25H11.25C11.25 1.00898 10.241 0 9 0C7.75898 0 6.75 1.00898 6.75 2.25H3.9375C3.00586 2.25 2.25 3.00586 2.25 3.9375V16.3125C2.25 17.2441 3.00586 18 3.9375 18H14.0625C14.9941 18 15.75 17.2441 15.75 16.3125V3.9375C15.75 3.00586 14.9941 2.25 14.0625 2.25ZM9 1.40625C9.46758 1.40625 9.84375 1.78242 9.84375 2.25C9.84375 2.71758 9.46758 3.09375 9 3.09375C8.53242 3.09375 8.15625 2.71758 8.15625 2.25C8.15625 1.78242 8.53242 1.40625 9 1.40625ZM13.2609 9.55547L8.23359 14.5406C8.06836 14.7059 7.80117 14.7023 7.63594 14.5371L4.73203 11.6086C4.5668 11.4434 4.57031 11.1762 4.73555 11.0109L5.73398 10.0195C5.89922 9.8543 6.16641 9.85781 6.33164 10.023L7.94883 11.6543L11.6754 7.95586C11.8406 7.79063 12.1078 7.79414 12.273 7.95937L13.2645 8.95781C13.4297 9.12656 13.4262 9.39023 13.2609 9.55547Z" fill="#F27900"/>
  637. </svg>
  638.                                         <span>Предпочтения</span>
  639.                                     </a>
  640.                                     <a href="{{ path('account.reviews.profile') }}" class="navigation-item d-flex align-items-center w-100">
  641. <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  642. <path d="M1.8 0.899902H16.2C17.1927 0.899902 18 1.7072 18 2.6999V17.9999L14.4 14.3999H1.8C0.807301 14.3999 0 13.5926 0 12.5999V2.6999C0 1.7072 0.807301 0.899902 1.8 0.899902ZM4.5 9.8999H10.8V8.0999H4.5V9.8999ZM4.5 6.2999H13.5V4.4999H4.5V6.2999Z" fill="#F27900"/>
  643. </svg>
  644.                                         <span>Отзывы к анкетам</span>
  645.                                     </a>
  646.                                     <a href="{{ path('account.settings') }}" class="navigation-item d-flex align-items-center w-100">
  647. <svg class="icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
  648. <path d="M10.9516 10.5571L12.2116 8.37907C12.2926 8.24407 12.2566 8.07307 12.1396 7.97407L10.8076 6.93007C10.8346 6.73207 10.8526 6.52507 10.8526 6.31807C10.8526 6.11107 10.8346 5.90407 10.8076 5.69707L12.1396 4.65307C12.2566 4.55407 12.2926 4.38307 12.2116 4.24807L10.9516 2.07007C10.8706 1.93507 10.7086 1.88107 10.5646 1.93507L8.99856 2.56507C8.67456 2.31307 8.32356 2.10607 7.93656 1.94407L7.70256 0.279066C7.68746 0.206276 7.64805 0.140787 7.59081 0.0933564C7.53357 0.0459261 7.46189 0.0193756 7.38756 0.0180664H4.86756C4.71456 0.0180664 4.57956 0.135066 4.55256 0.288066L4.31856 1.95307C3.94056 2.11507 3.58056 2.32207 3.25656 2.57407L1.69056 1.94407C1.54656 1.89007 1.38456 1.94407 1.30356 2.07907L0.0435626 4.25707C-0.0374374 4.39207 -0.00143729 4.56307 0.115563 4.66207L1.44756 5.70607C1.42056 5.90407 1.40256 6.11107 1.40256 6.31807C1.40256 6.52507 1.42056 6.73207 1.44756 6.93907L0.115563 7.98307C-0.00143729 8.08207 -0.0374374 8.25307 0.0435626 8.38807L1.30356 10.5661C1.38456 10.7011 1.54656 10.7551 1.69056 10.7011L3.25656 10.0711C3.58056 10.3231 3.93156 10.5301 4.31856 10.6921L4.55256 12.3571C4.57956 12.5011 4.71456 12.6181 4.86756 12.6181H7.38756C7.54056 12.6181 7.67556 12.5011 7.70256 12.3481L7.93656 10.6831C8.31456 10.5211 8.67456 10.3141 8.99856 10.0621L10.5646 10.6921C10.7086 10.7461 10.8706 10.6921 10.9516 10.5571ZM6.12756 8.11807C5.13756 8.11807 4.32756 7.30807 4.32756 6.31807C4.32756 5.32807 5.13756 4.51807 6.12756 4.51807C7.11756 4.51807 7.92756 5.32807 7.92756 6.31807C7.92756 7.30807 7.11756 8.11807 6.12756 8.11807ZM17.9266 15.0211L17.0626 14.3551C17.0806 14.2291 17.0986 14.0941 17.0986 13.9591C17.0986 13.8241 17.0896 13.6891 17.0626 13.5631L17.9176 12.8971C17.9896 12.8341 18.0166 12.7261 17.9626 12.6361L17.1526 11.2411C17.1076 11.1511 16.9996 11.1241 16.9006 11.1511L15.9016 11.5561C15.6946 11.3941 15.4696 11.2591 15.2176 11.1601L15.0646 10.0981C15.061 10.05 15.0397 10.0049 15.0048 9.97163C14.9698 9.93837 14.9238 9.91927 14.8756 9.91807H13.2646C13.1656 9.91807 13.0756 9.99007 13.0666 10.0891L12.9136 11.1511C12.6706 11.2591 12.4366 11.3851 12.2296 11.5471L11.2306 11.1421C11.1847 11.1248 11.1342 11.1244 11.0881 11.1409C11.0419 11.1574 11.0031 11.1897 10.9786 11.2321L10.1686 12.6271C10.1236 12.7171 10.1326 12.8251 10.2136 12.8881L11.0686 13.5541C11.0314 13.8168 11.0314 14.0834 11.0686 14.3461L10.2136 15.0121C10.1416 15.0751 10.1146 15.1831 10.1686 15.2731L10.9786 16.6681C11.0236 16.7581 11.1316 16.7851 11.2306 16.7581L12.2296 16.3531C12.4366 16.5151 12.6616 16.6501 12.9136 16.7491L13.0666 17.8111C13.0846 17.9101 13.1656 17.9821 13.2646 17.9821H14.8756C14.9746 17.9821 15.0646 17.9101 15.0736 17.8111L15.2266 16.7491C15.4696 16.6411 15.7036 16.5151 15.9016 16.3531L16.9096 16.7581C16.9996 16.7941 17.1076 16.7581 17.1616 16.6681L17.9716 15.2731C18.0256 15.1921 17.9986 15.0841 17.9266 15.0211ZM14.0656 15.1651C13.7432 15.1649 13.4341 15.0368 13.2062 14.8088C12.9784 14.5807 12.8504 14.2715 12.8506 13.9492C12.8507 13.6268 12.9789 13.3177 13.2069 13.0898C13.4349 12.862 13.7441 12.734 14.0665 12.7342C14.3888 12.7343 14.6979 12.8625 14.9258 13.0905C15.1536 13.3185 15.2816 13.6277 15.2815 13.9501C15.2813 14.2724 15.1532 14.5815 14.9251 14.8094C14.6971 15.0372 14.3879 15.1652 14.0656 15.1651Z" fill="#F27900"/>
  649. </svg>
  650.                                         <span>Настройки</span>
  651.                                     </a>
  652.                                 {% endif %}
  653.                             <li>
  654.                                 <a href="{{ path('logout') }}" class="is-flex level">
  655.                                     <i><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M9 1.5a7.5 7.5 0 10-.01 14.99A7.5 7.5 0 009 1.5zM9 15a6 6 0 11.02-12.02A6 6 0 019 15zm0-7.06l2.7-2.69 1.05 1.06L10.05 9l2.7 2.7-1.06 1.05L9 10.05l-2.7 2.7-1.05-1.06L7.95 9l-2.7-2.7 1.06-1.05L9 7.95z" clip-rule="evenodd"/></svg></i>
  656.                                     <span>Выход</span>
  657.                                 </a>
  658.                             </li>
  659.                         </ul>
  660.                     </nav>
  661.                 {% else %}
  662.                     <button type="button" class="btn-fill-style level level-item has-text-centered dropdown-icon right-login-btn" id="right-login-btn">
  663.                         <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 16" width="18"><path fill="#333" fill-rule="evenodd" d="M11.5 4.67a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm.38 3A4.15 4.15 0 009 .5a4.17 4.17 0 00-2.88 7.18A8.35 8.35 0 00.67 15.5h16.66a8.35 8.35 0 00-5.45-7.82zM9 8.84c3.1 0 5.72 2.13 6.46 5H2.54c.74-2.87 3.35-5 6.46-5z" clip-rule="evenodd"/></svg>
  664.                         <span>Войти в кабинет</span>
  665.                     </button>
  666.                 {% endif %}
  667.             </div>
  668.         </div>
  669.     </div>
  670. </header>