nav.greedy {
  position: relative;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

nav.greedy button {
  align-self: flex-start;
  transition: all .4s ease-out;
  padding: 0 1rem 0px 1rem;
  outline: 0;
  border: 0;

  font-weight: bold;
/*  background: #c8c8c8; */
}
nav.greedy button.hidden {
  transition: none;
/*  border-right: 0.5rem solid #b6b6b6;*/
  width: 0;
  padding: 0;
  overflow: hidden;
}
nav.greedy button::after {
/*  content: attr(count); */
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  background: #9f9f9f;
  color: #f2f2f2;

  line-height: 0px;
  margin-left: 10px;
  margin-right: calc(-1rem + -8px);
}
nav.greedy ul.links {
  display: flex;
  justify-content: flex-start;
  flex: 1;
  overflow: hidden;
  margin-left:-30px;
}
nav.greedy ul.links li {
  flex: none;
  padding:5px 12px 0px 0px;
  list-style-type: none;
/*border-bottom: 3px solid;*/
}

nav.greedy ul.links li a {
  color: #404040;
  text-decoration: none;;


}

nav.greedy ul.links li :hover {
color: #002147;
border-bottom: 3px solid #002147;
}

nav.greedy ul.hidden-links {
  position: absolute;
  background: #b2b2b2;
  right: 0;
  top: 100%;
  margin-top: -10px;
  z-index: 999;
}
nav.greedy ul.hidden-links.hidden {
  display: none;
}
nav.greedy ul.hidden-links li {
    list-style-type: none;
    padding: 5px;
}
