/*
Default styling for mega-menu-trees.
*/

.menu_parent.expandable {
    font-weight: 500;
}

.breakHandle {
    cursor: pointer;
    position: relative;
}

.breakHandle::after {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    transform: rotate(-45deg);
    content: ' ';
    position: absolute;
    left: 6em;
    top: 0;
}
.breakHandle.expanded::after {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    transform: rotate(135deg);
    content: ' ';
    position: absolute;
    left: 6em;
    top: 5px;
}