

/* Start:/local/templates/аrbq/components/bitrix/menu/left_menu/style.css?17644392643101*/
.menu-wrapper {
    width: 100%;
}

.responsive-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    height: 38px;
    background-color: var(--light-gray-bg);
    color: var(--main-red);
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid var(--main-red);
    box-shadow: 0 4px 10px 0 var(--drop-shadow);
    transition: all var(--transition-speed) ease;
    width: 100%;
    margin-top: 40px;
}

.selectedItemText {
    color: var(--main-red);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
}

.responsive-menu-toggle .arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-speed) ease;
}

.responsive-menu-toggle.open .arrow-icon {
    transform: rotate(180deg);
}

ul.left-static-menu-container {
    list-style: none;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 260px;
    border-radius: 0 0 6px 6px;
    transition: max-height var(--transition-speed) ease-out, opacity var(--transition-speed) ease-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

ul.left-static-menu-container.is-open {
    display: flex;
    max-height: 300px;
    opacity: 1;
    padding: 12px 20px 20px 20px;
    box-shadow: 0 7px 20px 0 var(--drop-shadow);
}

ul.left-static-menu-container li {
    margin: 0;
}

ul.left-static-menu-container li a {
    color: var(--main-darck);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    margin: 0;
    max-height: 50px;
    min-height: 50px;
    padding: 10px 16px;
    background-color: var(--light-gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease var(--transition-speed);
    border-radius: 6px;
    width: 100%;
}

ul.left-static-menu-container li a:visited {
    color: var(--main-darck);
}

ul.left-static-menu-container li a:hover {
    color: var(--text-white);
    background-color: var(--main-red);
}


ul.left-static-menu-container li a.selected:link,
ul.left-static-menu-container li a.selected:visited,
ul.left-static-menu-container li a.selected:active,
ul.left-static-menu-container li a.selected:hover {
    color: var(--text-white);
    background-color: var(--main-red);
}

@media (max-width: 1025px) {
    ul.left-static-menu-container {
        width: 100%;
    }

    ul.left-static-menu-container li a {
        font-size: 14px;
        line-height: 100%;
        max-height: 30px;
        min-height: 30px;
    }
}

@media (min-width: 1025px) {

    .responsive-menu-toggle {
        display: none;
    }

    ul.left-static-menu-container {
        display: flex !important;
        max-height: none !important;
        opacity: 1 !important;
        padding: 20px;
        box-shadow: 0 7px 20px 0 var(--drop-shadow);
        width: 100%;
        border-radius: 6px;
        min-width: 260px;
    }

    ul.left-static-menu-container.is-open {
        box-shadow: 0 7px 20px 0 var(--drop-shadow);
    }
}
/* End */
/* /local/templates/аrbq/components/bitrix/menu/left_menu/style.css?17644392643101 */
