.menu_top_catalog {
    position: relative;
    list-style: none;
    padding: 0;
    border-radius: var(--border-radius)
}

.menu_top_catalog .menu_item {
    position: relative;
}

.menu_top_catalog .menu_item .menu_item_header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu_top_catalog .menu_item .menu_item_header .menu_item_link {
    padding: .8rem;
    padding-right: 0;

    color: var(--secondary-color);
    font-size: var(--text-md);
    font-weight: 600;
    text-decoration: none;

    position: relative;
}

.menu_top_catalog .menu_item .menu_item_header .menu_item_link:hover {
    color: var(--primary-color)
}

.menu_top_catalog .menu_item.menu_item_top > .menu_item_header .menu_item_link::after {
    content: '';

    position: absolute;

    top: 50%;
    left: 0;

    height: 4px;
    width: 4px;

    border-radius: 50%;

    transform: translateY(-50%);

    background-color: var(--secondary-color)
}

.menu_top_catalog .menu_item .menu_item_header .btn-dropdown-trigger {
    height: 100%;
    color: var(--secondary-color);
    padding: .6rem;
}

.menu_top_catalog .menu_item.menu_item_top.open > .menu_item_header .btn-dropdown-trigger,
.menu_top_catalog .menu_item.menu_item_top.open > .menu_item_header .menu_item_link {
    color: var(--primary-color)
}

.menu_top_catalog .menu_item.menu_item_top.open > .menu_item_header .menu_item_link::after {
    background-color: var(--primary-color);
}

.menu_top_catalog .menu_item.menu_item_top.selected > .menu_item_header .menu_item_link {
    font-size: 1.1rem;
}

.menu_top_catalog .menu_item.menu_item_top:last-child {
    border-bottom: none;
}

.menu_top_catalog .menu_item_top .menu_item_children {
    display: none;
    padding-bottom: .8rem;
}

.menu_top_catalog .menu_item_children .menu_item_children_list {
    list-style: none;
    padding: 0;
    padding-left: .8rem;
    padding-right: .4rem;
}

.menu_top_catalog .menu_item_children .menu_item_children_list .menu_item {
    margin-bottom: .8rem;
}

.menu_top_catalog .menu_item_children .menu_item_children_list .menu_item.selected .menu_item_header .menu_item_link {
    font-weight: 600;
}

.menu_top_catalog .menu_item_children .menu_item_children_list .menu_item:last-child {
    margin-bottom: 0;
}

.menu_top_catalog .menu_item_children .menu_item_children_list .menu_item .menu_item_header .menu_item_link {
    padding: 0;
    font-weight: 500;
}