/* Generated by vite-plugin-svg-spritemap */
.menu {
    background-color: var(--blockBg);
    position: relative;
    z-index: 2;
}

.menu__top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px 0 24px;
}

    .menu__top:not(:last-child) {
        margin-bottom: 15px;
    }

.menu__image {
    width: 53px;
    height: 53px;
    flex: 0 0 53px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .menu__image img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
    }

.menu__topname {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
    font-weight: 500;
    color: #fbf8f1;
}

    .menu__topname:not(:last-child) {
        margin-bottom: 4px;
    }

.menu__topbutton {
    font-weight: 500;
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    color: var(--yellowColor);
    transition: color 0.3s;
}

.menu__balance {
    margin-left: 20px;
    margin-right: 20px;
    border: 1px dashed #383838;
    background-color: var(--bgColor);
    padding: 11px 19px;
    border-radius: 8px;
}

.menu__balancetop {
    color: var(--grayColor);
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    font-weight: 500;
}

    .menu__balancetop:not(:last-child) {
        margin-bottom: 6px;
    }

.menu__balancebalance {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
    font-weight: 500;
}

.menu__list {
    padding: 24px 0;
}

.menu__link {
    padding: 21px 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border-right: 3px solid transparent;
}

    .menu__link.menu__link--active {
        background-color: var(--blackColor);
        color: var(--yellowColor);
        border-color: var(--yellowColor);
    }

.icon-menu {
    display: none;
}
/* Generated by vite-plugin-svg-spritemap */

@media (max-width: 89.99875em) and (any-hover: none) {
    .icon-menu {
        cursor: default;
    }
}

@media (max-width: 89.99875em) {
    .menu__content {
        padding: 16px;
    }

    .menu__body {
        position: fixed;
        width: 290px;
        height: 100svh;
        left: -100%;
        top: 0;
        overflow: auto;
        transition: left 0.3s;
        background-color: #1e1e1e;
        z-index: 4;
    }

    [data-fls-menu-open] .menu__body {
        left: 64px;
    }

    .icon-menu {
        display: block;
        position: relative;
        width: 2rem;
        height: 2rem;
        z-index: 5;
    }

        .icon-menu span, .icon-menu::before, .icon-menu::after {
            content: "";
            transition: all 0.3s ease 0s;
            right: 3px;
            position: absolute;
            width: calc(100% - 6px);
            height: 2px;
            background-color: var(--mainColor);
            border-radius: 2px;
        }

        .icon-menu::before {
            top: 7px;
        }

        .icon-menu::after {
            bottom: 7px;
        }

        .icon-menu span {
            top: calc(50% - 1px);
        }

    [data-fls-menu-open] .icon-menu span {
        width: 0;
    }

    [data-fls-menu-open] .icon-menu::before {
        top: calc(50% - 1px);
        transform: rotate(-45deg);
    }

    [data-fls-menu-open] .icon-menu::after {
        bottom: calc(50% - 1px);
        transform: rotate(45deg);
    }
}

@media (max-width: 52.12375em) {
    .menu__body {
        top: 56px;
        width: 100%;
    }

    [data-fls-menu-open] .menu__body {
        left: 0;
    }

    .icon-menu {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 52.12375em) {
    .menu {
        width: 64px;
        flex: 0 0 64px;
    }

    .menu__content {
        position: sticky;
        top: 0;
    }
}

@media (min-width: 89.99875em) {
    .menu {
        flex: 0 0 290px;
        width: 290px;
    }
}

@media (any-hover: hover) {
    .menu__topbutton:hover {
        color: var(--hoverYellow);
    }

    .menu__link:hover {
        background-color: rgba(168, 168, 168, 0.2);
    }
}