.menu_box {
  position: relative;
  text-decoration: none;
  width: 32px;
  height: 32px;
  margin: 0 5px 0 5px;
  border-radius: 50%;
  fill: var(--icn_fill);
}


.dropdown {
  display: none;
}

.dropdown.open {
  display: flex;
  flex-direction: column;
  z-index: 10;
  position: absolute;
  top: 100%;
  left: -8px;
  border-radius: 8px;
  min-width: 150px;
  background-color: var(--bkgr);
  box-shadow: 0 8px 1rem 0 rgba(0, 0, 0, 0.2);
}

.dropdown li {
  display: block;
  height: 42px;
  cursor: pointer;
  line-height: 42px;
  font-weight: 500;
  padding-left: 15px;
  text-align: left;
  color: var(--det_txt);
}

/*
li:not(:last-child) {
  border-bottom: 1px solid var(--nav_line);
}

li:hover {
  background-color: var(--color90);
}*/