.#{$CLASS_PREFIX}-menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style-type: none;

  position: absolute;
  left: 0;
  width: 100%;

  background: white;
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  color: #595959;
  z-index: 3;
  cursor: pointer;

  &.visible {
    display: block;
  }
  &.small {
    li {
      padding: 0px 12px;
    }
  }
  &.medium {
    li {
      padding: 5px 12px;
    }
  }
  &.large {
    li {
      padding: 8px 12px;
    }
  }

  li {
    display: flex;
    align-items: center;
    user-select: none;

    &:hover {
      background: #e6efff;
    }

    &.active {
      font-weight: semibold;
      background: #f5f5f5;
    }
  }
}
