@charset "UTF-8";
body.has-drawer::before {
    content: "";
    transition: 0.2s ease all;
    background-color: transparent;
    backdrop-filter: blur(0px);
}

body.drawer-open {
    overflow: hidden;
}
body.drawer-open::before {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    backdrop-filter: blur(1px);
    inset: 0;
}

.nav-left-side {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 10px;
}
@media (max-width: 470px) {
    .nav-left-side {
        margin-top: 0;
    }
}

/* Бургер */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 7px;
    position: relative;
    width: 32px;
    height: 24px;
    cursor: pointer;
    top: 0;
    left: 100%;
    padding: 1rem 0;
    box-sizing: content-box;
    z-index: 1002;
}
@media (max-width: 1700px) {
    .burger-btn {
        display: flex;
        position: sticky;
    }
}
.burger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #498cda;
    border-radius: 2px;
    transition: all 0.25s;
}

/* Навигация */
.aside-menu {
    position: sticky;
    top: 0;
    right: 0;
    min-width: 200px;
    width: 263px;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
    scrollbar-width: thin;
    z-index: 1001;
    box-shadow: none;
    height: 100vh;
    order: 3;
    transition: 0.2s ease all;
    padding: 1rem 0;
    margin-top: 3rem;
}

@media (max-width: 1700px) {
    .aside-menu {
        position: fixed;
        padding: 1rem;
        margin-top: 0;
        box-shadow: 3px 0 12px rgba(0, 0, 0, 0.25);
        z-index: 1003;
        transform: translateX(100%);
    }
    .aside-menu.open {
        transform: translateX(0);
    }
}
.menu-header {
    display: none;
    justify-content: flex-end;
    padding-top: 1px;
}
@media (max-width: 1700px) {
    .menu-header {
        display: flex;
    }
}

.close-btn {
    font-size: 32px !important;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

/* Меню */
.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
}

.menu-list > .menu-item > .menu-item-head .menu-toggle,
.menu-list > .menu-item > .menu-item-head .menu-link {
    padding: 0.45rem 0.75rem;
}

.menu-list > .menu-item > .menu-item-head {
    font-size: 14px;
    transition: 0.2s ease all;
}

.menu-list .menu-item > .menu-item-head:hover {
    background: rgba(73, 140, 218, 0.15);
}

.menu-list .menu-item--success > .menu-item-head:hover {
    background: rgba(34, 99, 54, 0.15);
}

.menu-list .menu-item--danger > .menu-item-head:hover {
    background: rgba(183, 28, 28, 0.15);
}

.menu-list > .open.menu-item > .menu-item-head {
    background-color: #498cda;
}
.menu-list > .open.menu-item--success > .menu-item-head {
    background-color: rgb(34, 99, 54);
}
.menu-list > .open.menu-item--danger > .menu-item-head {
    background-color: #b71c1c;
}

.menu-list > .open.menu-item > .menu-item-head .menu-toggle,
.menu-list > .open.menu-item > .menu-item-head .menu-link {
    color: white;
}

.menu-item-head {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    transition: 0.2s ease all;
}

.menu-item--current .menu-heading-wrapper {
    font-weight: 500 !important;
    color: #498cda;
}

.menu-heading-wrapper,
.open .menu-heading-wrapper {
    display: inline;
    font-weight: 300;
    width: 100%;
}
.menu-item.open .menu-heading-wrapper {
    font-weight: 300 !important;
    color: white;
}

.menu-link,
.menu-toggle {
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: black;
    text-decoration: none !important;
    transition: 0.2s ease all;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: transparent;
    border: none;
    text-align: left;
    flex-grow: 2;
    flex-direction: row;
    word-break: break-word;
    hyphens: auto;
}

.menu-toggle {
    align-items: flex-start;
    flex-grow: 1;
    font-family: inherit;
}

.menu-item {
    width: 100%;
}

.menu-item--success .menu-link,
.menu-item--success .menu-toggle {
    color: rgb(34, 99, 54);
}
.menu-item--danger .menu-link,
.menu-item--danger .menu-toggle {
    color: #b71c1c;
}
.menu-item--active {
    pointer-events: none;
}
.menu-item--active .menu-link,
.menu-item--active .menu-toggle {
    font-weight: 500 !important;
    color: #498cda;
}

.submenu--1-level .menu-link,
.submenu--1-level .menu-toggle,
.submenu--2-level .menu-link,
.submenu--2-level .menu-toggle {
    padding: 4px 8px;
    font-size: 12px;
}

.spacer {
    width: 80%;
    height: 1px;
    background: #d6d6d6;
    margin: 0.75rem 1rem;
}

.arrow-wrapper {
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
    position: relative;
    transition: transform 0.25s;
    transform: rotate(-90deg);
    top: 2px;
}

.menu-item.open > .menu-item-head .arrow-wrapper {
    transform: rotate(0deg);
}

.submenu {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease-out,
        opacity 0.3s ease-out;
    list-style: none;
    padding: 0;
    margin-left: 0.8rem;
    position: relative;
}
.submenu::before {
    height: 100%;
    width: 1px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #d6d6d6;
}
.open > .submenu {
    display: block;
    max-height: 500px;
    opacity: 1;
} /*# sourceMappingURL=aside-menu.styles.css.map */
