.header-fixed {
    position: fixed;
    display: flex;
    justify-content: center;
    z-index: 9999;
    left: 5vw;
    width: 90vw;
}

.header-fixed {
    top: 68px;
}

body.has-admin-panel .header-fixed {
    top: 160px;
}

.page.has-admin-panel {
    margin-top: 74px;
}

.header-top-panel {
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background: none;
    border-radius: 40px;
    max-width: 90vw;
}

.header-top-panel__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--main-blue-secondary__50);
    border-radius: 40px;
    padding: 10px 28px;
    max-width: 90vw;
}

.header-brand {
    display: flex;
}

.brand-logo {
    height: 90%;
}

.header-menu {
    flex: 0 1 auto;
    transition: width .4s ease, flex-basis .4s ease, opacity .3s ease, transform .3s ease;
    will-change: width, flex-basis, opacity, transform;
    visibility: visible;
}

.header-menu.hidden {
    opacity: 0;
    visibility: hidden;
    margin: 0;
    width: 0;
}

.top-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--white);
    border-radius: 4px;
}

.top-menu li {
    position: relative;
}

.top-menu a {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 12px;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-blue);
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, .1);
    width: 100%;
}

.top-menu li:last-child a {
    border-right: none;
}

.top-menu a:hover {
    color: var(--main-blue-secondary);
}

.top-menu a.current {
    background: rgba(255, 255, 255, .15);
    font-weight: 700;
}

.top-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 0 0 6px 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    z-index: 999;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.top-menu .submenu li a {
    display: block;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background .3s;
}

.top-menu .submenu li:last-child a {
    border-bottom: none;
}

.top-menu .submenu li:last-child a::after {
    content: 'pisdec';
    color: black;
}

.top-menu .submenu li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.top-menu li {
    position: relative;
}

.top-menu .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--white);
    min-width: 220px;
    overflow: hidden;
    z-index: 1001;
    list-style: none;
    border-end-end-radius: 20px;
    border-end-start-radius: 20px;
    padding-bottom: 16px;
}

.top-menu>li {
    position: relative;
}

.top-menu li.has-sub.is-open,
.top-menu li.has-sub:hover>.sub-menu {
    display: block;
}

.top-menu li.has-sub>a {
    cursor: pointer;
}

.top-menu .sub-menu li {
    width: 100%;
}

ul {
    -webkit-padding-start: 0;
    padding-left: 0;
    list-style: none;
}

.top-menu .sub-menu a {
    height: auto;
    padding: 8px 16px;
    border-right: none;
    white-space: nowrap;
}

.sub-menu li a[data-icon="location"] {
    font-weight: 800;
}

.sub-menu li a[data-icon="location"]::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 2px;
    margin-left: 4px;
    background: url('../../../images/ico/location.svg') no-repeat center / contain;
}

.sub-menu li a[data-icon="open-right"] {
    color: var(--main-blue);
    font-weight: 800;
}

.sub-menu li a[data-icon="open-right"]::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    background: url('../../../images/ico/open-right.svg') no-repeat center / contain;
}