.map--list {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 2vw ,2rem);
}

.map--item-button{
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.map--list-submenu{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
}

.map--item.active--menu .map--list-submenu{
    margin-top: var(--g3);
}
.map--item-submenu.active--menu .map--list-child{
    margin-top: var(--g2);
}


.map--list-child{
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
}

.map--item *:hover{
    cursor: pointer;
}

.map--item-name:hover,
.map--item-submenu-name:hover,
.map--item-child-name:hover{
    color: #3761E9;
}



.map--item-name {
    font-weight: 600;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 26px;
    color: #333338;
}

.map--item-submenu-name{
    font-weight: 400;
    font-size: clamp(14px, 2vw ,16px);
    line-height: clamp(24px, 3vw, 26px);
    color: #333338;
}

.map--item-child-name{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #333338;
}

.menu-button--dropdown:hover{
    cursor: pointer;
}

.menu-button--dropdown:hover svg path {
    stroke: #333338;
}

.active--button.menu-button--dropdown{
    transform: rotate(180deg);
}

.menu-button--dropdown{
    display: block;
}

@media screen and (max-width: 600px){
    .map--item-button{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        word-break: break-word;
    }
    .menu-button--dropdown{
        display: inline-block;
        position: relative;
        top: 2px;
        left: 8px;
    }
}