.menu {
    font-size: 16px;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
}

.menu__list,
.menu__sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu__sublist {
    display: none;
    padding-left: 20px;
}

.menu__item--active > .menu__sublist {
    display: block;
}

.menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    opacity: 0.5;
    font-weight: 600;
    line-height: 1.37;
    transition: color 0.3s, opacity 0.3s;
}

.menu__link:hover {
    opacity: 1;
    color: #ab1542;
}

.menu__item--active > .menu__link {
    opacity: 1;
}

.menu__link--denied {
    cursor: not-allowed;
}

.menu__toggle {
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 8px;
}

.menu__toggle--down {
    background-image: url('path/to/angle-down.svg');
}

.menu__toggle--right {
    background-image: url('path/to/angle-right.svg');
}