
.subtreeWidgetWrap {
  position: relative;
  z-index: 2;
  margin-left: -50vw;
  left: 50%;
  width: 100vw;
  border: 1px solid #E0E0E0;
  background: #FFF;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .subtreeWidgetWrap {margin-bottom: 100px;}
}
@media screen and (max-width: 767px) {
  .subtreeWidgetWrap .xe-container{
    padding: 0 7px;
  }
}

.subtreeWidget {
  display: flex;
  height: 60px;
  width: 100%;
}

.subtreeWidget > *.xe_menu-show {
  display: none;
  padding: 0 15px;
  width: calc(100% - 60px);
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.subtreeWidget > *.xe_menu-show span {
  color: #B7B7B7;
  text-overflow: ellipsis;
  overflow:hidden;
  white-space: nowrap;
  width: 90%;
}

.subtreeWidget > *.xe_menu-show.active {
  display: flex;
  border-bottom: 2px solid #009A63;
}

@media screen and (min-width: 768px) {
  .subtreeWidget > *.xe_menu-show {
    display: flex;
    width: 307px;
  }
}

.subtreeWidget > *.xe_menu-show.active span {
  color: #484848;
}

.subtreeWidget > div {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  border-right: 1px solid #E0E0E0;
}

.subtreeWidget .xe-menu_list {
  display: none;
  flex-direction: column;
  position: absolute;
  left: -1px;
  top: calc(100% + 2px);
  width: calc(100% + 2px);
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
  border-left: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
}

.subtreeWidget .xe-menu_list.on {
  display: flex;;
}


.subtreeWidget .xe-menu_list > * {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 20px 15px;
  border-bottom: 1px solid #E0E0E0;
}


.subtreeWidget .xe-menu_list > *.active {
  color: #009A63;
  background: #009a6410;
}

.subtreeWidget .xe-menu_list > *:hover {
  color: #009A63;
}

.subtreeWidget .home {
  width: 60px;
  min-width: 60px;
  justify-content: center;
  border-left: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
}
.subtreeWidget .home svg {
  width: 32px;
  height: 32px;
}


.subtreeWidget > * {
  display: flex;
  align-items: center;
}

.subtreeWidget  * {
  text-decoration: none;
  cursor: pointer;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #484848;
}