.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: 10px;
  min-width: 150px;
  background-color: hsl(270, 50%, 95%);
  box-shadow: 0 8px 1rem 0 rgba(0, 0, 0, 0.2);
}

ul.dropdown li a {
  display: block;
  height: 42px;
  cursor: pointer;
  line-height: 42px;
  font-weight: 500;
  padding-left: 15px;
  text-align: left;
}

ul.dropdown li a:active {
  color: hsl(270, 50%, 30%);
  font-weight: 600;
}

