.greedy-nav {
  position: relative;
  margin-top:38px;
  min-width: 250px;
  background: -webkit-linear-gradient(#432d27, #250f09); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#432d27, #250f09); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#432d27, #250f09); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#432d27, #250f09); /* Standard syntax (must be last) */
  }
.greedy-nav a {
  display: block;
  padding: 20px 30px;
  background: #1d1d1d;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.greedy-nav a:hover {
  color: #F60;
}
.greedy-nav button {
  position: absolute;
  height: 100%;
  right: 0;
  padding: 0 15px;
  border: 0;
  outline: none;
  background: -webkit-linear-gradient(#432d27, #250f09); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#432d27, #250f09); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#432d27, #250f09); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#432d27, #250f09); /* Standard syntax (must be last) */
  color: #fff;
  cursor: pointer;
}
.greedy-nav button:hover {
    background: #250f09;
	}
.greedy-nav button::after {
  content: attr(count);
  position: absolute;
  width: 30px;
  height: 30px;
  left: -16px;
  top: 12px;
  text-align: center;
    background: #432d27;
	color: #fff;
  font-size: 14px;
  line-height: 28px;
  border-radius: 50%;
  border: 3px solid #fff;
  font-weight: bold;
}
.greedy-nav button:hover::after {
  transform: scale(1.075);
}
.greedy-nav .hamburger {
  position: relative;
  width: 32px;
  height: 4px;
  background: #fff;
  margin: auto;
}
.greedy-nav .hamburger:before,
.greedy-nav .hamburger:after {
  content: '';
  position: absolute;
  left: 0;
  width: 32px;
  height: 4px;
  background: #fff;
}
.greedy-nav .hamburger:before {
  top: -8px;
}
.greedy-nav .hamburger:after {
  bottom: -8px;
}
.greedy-nav .visible-links {
  display: inline-table;
}
.greedy-nav .visible-links li {
  display: table-cell;
  border-left: 1px solid #000;
}
.greedy-nav .hidden-links {
  position: absolute;
  right: 0px;
  top: 100%;
    z-index:2;

}
.greedy-nav .hidden-links li {
  display: block;
  border-top: 1px solid #000;
}
.greedy-nav .visible-links li:first-child {
  font-weight: bold;
}
.greedy-nav .hidden {
  visibility: hidden;
}
